diff --git a/crawler/1_dump_listings.py b/crawler/1_dump_listings.py index 94ab514..43ac753 100644 --- a/crawler/1_dump_listings.py +++ b/crawler/1_dump_listings.py @@ -45,28 +45,24 @@ async def dump_listings( listings.append(listing) # if listing is already in db, do not fetch details again - all_listings = await repository.get_listings( - only_ids=[listing.identifier for listing in listings], - query_parameters=parameters, - ) - all_listing_ids = {listing.id for listing in all_listings} - - listings_without_details = [ - listing for listing in listings if not listing.path_detail_json().exists() + all_listing_ids = [l.id for l in await repository.get_listings()] + missing_listing = [ + listing for listing in listings if listing.identifier not in all_listing_ids ] listing_details = await tqdm.gather( *[ _fetch_detail_with_semaphore(semaphore, listing.identifier) - for listing in listings_without_details - if listing.identifier not in all_listing_ids + for listing in missing_listing ], desc="Fetching details (only missing)", ) - for listing, detail in zip(listings_without_details, listing_details): + for listing, detail in zip(missing_listing, listing_details): listing._details_object = detail - await dump_listings_to_fs(listings) - model_listings = await repository.upsert_listings_legacy(listings) # upsert in db + await dump_listings_to_fs(missing_listing) + model_listings = await repository.upsert_listings_legacy( + missing_listing + ) # upsert in db return model_listings @@ -104,9 +100,8 @@ async def _fetch_detail_with_semaphore( async def dump_listings_to_fs(listings: list[Listing]) -> None: - for listing in listings: - if not listing.path_listing_json().exists(): - listing.dump_listing() - if not listing.path_detail_json().exists(): - with open(listing.path_detail_json(), "w") as f: - json.dump(listing._details_object, f, indent=4) + for listing in tqdm(listings, desc="Dumping listings to FS"): + listing.dump_listing() + # if not listing.path_detail_json().exists(): + with open(listing.path_detail_json(), "w") as f: + json.dump(listing._details_object, f, indent=4) diff --git a/crawler/alembic/versions/042751f52538_add_more_fields_to_tables.py b/crawler/alembic/versions/042751f52538_add_more_fields_to_tables.py new file mode 100644 index 0000000..f7131c2 --- /dev/null +++ b/crawler/alembic/versions/042751f52538_add_more_fields_to_tables.py @@ -0,0 +1,38 @@ +"""add more fields to tables + +Revision ID: 042751f52538 +Revises: 72b7410ff3e6 +Create Date: 2025-06-08 17:49:25.347510 + +""" +from typing import Sequence, Union + +from alembic import op +import sqlalchemy as sa +from sqlalchemy.dialects import sqlite + +# revision identifiers, used by Alembic. +revision: str = '042751f52538' +down_revision: Union[str, None] = '72b7410ff3e6' +branch_labels: Union[str, Sequence[str], None] = None +depends_on: Union[str, Sequence[str], None] = None + + +def upgrade() -> None: + """Upgrade schema.""" + # ### commands auto generated by Alembic - please adjust! ### + op.add_column('buylisting', sa.Column('price_history_json', sa.String(), nullable=False)) + op.drop_column('buylisting', 'price_history') + op.add_column('rentlisting', sa.Column('price_history_json', sa.String(), nullable=False)) + op.drop_column('rentlisting', 'price_history') + # ### end Alembic commands ### + + +def downgrade() -> None: + """Downgrade schema.""" + # ### commands auto generated by Alembic - please adjust! ### + op.add_column('rentlisting', sa.Column('price_history', sqlite.JSON(), nullable=False)) + op.drop_column('rentlisting', 'price_history_json') + op.add_column('buylisting', sa.Column('price_history', sqlite.JSON(), nullable=False)) + op.drop_column('buylisting', 'price_history_json') + # ### end Alembic commands ### diff --git a/crawler/data_access.py b/crawler/data_access.py index 7493bf1..a99e6f1 100644 --- a/crawler/data_access.py +++ b/crawler/data_access.py @@ -259,17 +259,16 @@ class Listing: @property def detailobject(self) -> dict[str, Any]: - if self._details_object is None: - if self.path_detail_json().exists(): - with open(self.path_detail_json()) as f: - self._details_object = json.load(f) - return self._details_object # type: ignore - else: - raise ValueError( - f"Detail object for listing {self.identifier} not found." - ) - else: + if self._details_object is not None: return self._details_object + if ( + self.path_detail_json().exists() + and json.load(self.path_detail_json().open()).get("property") is not None + ): + with open(self.path_detail_json()) as f: + self._details_object = json.load(f) + return self._details_object # type: ignore + raise ValueError(f"Detail object for listing {self.identifier} not found.") @property def price(self) -> float: diff --git a/immoweb/data/london_geojs.js b/immoweb/data/london_geojs.js deleted file mode 100644 index ee391e2..0000000 --- a/immoweb/data/london_geojs.js +++ /dev/null @@ -1,586621 +0,0 @@ -var data = { - "type": "FeatureCollection", - "features": [ - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/102450272", - "info": { - "identifier": 102450272, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/102450272", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 41, - "status": null, - "last_seen": 0, - "agency": "Empire Chase Estate Agent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128062/102450272/128062_jjkkkn_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.189802", - "last_seen": "2025-06-01T22:05:41.251924", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29599, - 51.5525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/102835640", - "info": { - "identifier": 102835640, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/102835640", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "NH Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143456/102835640/143456_Hallowelle_IMG_29_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.646627", - "last_seen": "2025-06-01T22:05:51.173464", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42194, - 51.6101 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3295.0, - "url": "https://www.rightmove.co.uk/properties/104750624", - "info": { - "identifier": 104750624, - "sqm_ocr": null, - "price": 3295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/104750624", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "NEWAY ESTATE AGENTS", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58151/104750624/58151_for_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.985770", - "last_seen": "2025-06-01T22:05:56.894414", - "price": 3295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12427, - 51.62101 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.4, - "qmprice": 32.38, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/105072260", - "info": { - "identifier": 105072260, - "sqm_ocr": 66.4, - "price": 2150.0, - "price_per_sqm": 32.37951807228915, - "url": "https://www.rightmove.co.uk/properties/105072260", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Linus Jackson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65394/105072260/65394_bakershill_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.922278", - "last_seen": "2025-06-01T22:05:47.493265", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05261, - 51.56705 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/106188767", - "info": { - "identifier": 106188767, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/106188767", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11475/106188767/11475_0439_FJL043903085_IMG_11_0001_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.349715", - "last_seen": "2025-06-01T22:06:02.314117", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005788, - 51.512806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/106269269", - "info": { - "identifier": 106269269, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/106269269", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 58, - "status": null, - "last_seen": 0, - "agency": "Crown House Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235946/106269269/235946_387_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.155734", - "last_seen": "2025-06-01T22:06:05.184413", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105206, - 51.501328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3857.0, - "url": "https://www.rightmove.co.uk/properties/106849493", - "info": { - "identifier": 106849493, - "sqm_ocr": null, - "price": 3857.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/106849493", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Land Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3198/106849493/3198_6013_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.675330", - "last_seen": "2025-06-01T22:06:11.532850", - "price": 3856 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027818, - 51.507214 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.19, - "qmprice": 29.35, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/107192960", - "info": { - "identifier": 107192960, - "sqm_ocr": 85.19, - "price": 2500.0, - "price_per_sqm": 29.346167390538795, - "url": "https://www.rightmove.co.uk/properties/107192960", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57956/107192960/57956_LAD210090_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.056200", - "last_seen": "2025-06-01T22:05:57.550070", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211181, - 51.526306 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/108358442", - "info": { - "identifier": 108358442, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/108358442", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/108358442/181787_181787_580_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.294437", - "last_seen": "2025-06-01T22:06:06.017820", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07982, - 51.5033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/108431267", - "info": { - "identifier": 108431267, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/108431267", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/108431267/176261_102708000218_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.773303", - "last_seen": "2025-06-01T22:05:49.667703", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10942, - 51.58894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2015.0, - "url": "https://www.rightmove.co.uk/properties/109234808", - "info": { - "identifier": 109234808, - "sqm_ocr": null, - "price": 2015.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/109234808", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Millennium Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61036/109234808/61036_MHOW_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.482487", - "last_seen": "2025-06-01T22:06:07.973486", - "price": 2015 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02615, - 51.49827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/110001992", - "info": { - "identifier": 110001992, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/110001992", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11470/110001992/11470_0459_FJL045902295_IMG_03_0001_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:40.589975", - "last_seen": "2025-06-01T22:06:07.977836", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021333, - 51.519077 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.59, - "qmprice": 29.16, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/110128151", - "info": { - "identifier": 110128151, - "sqm_ocr": 68.59, - "price": 2000.0, - "price_per_sqm": 29.1587694999271, - "url": "https://www.rightmove.co.uk/properties/110128151", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Mile", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/179k/178880/110128151/178880_101541005883_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.008756", - "last_seen": "2025-06-01T22:05:39.803885", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25222, - 51.59574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/110621528", - "info": { - "identifier": 110621528, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/110621528", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11465/110621528/11465_0421_HRT042100948_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.848706", - "last_seen": "2025-06-01T22:06:03.911342", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.057453, - 51.60721 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3388.0, - "url": "https://www.rightmove.co.uk/properties/111551258", - "info": { - "identifier": 111551258, - "sqm_ocr": null, - "price": 3388.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/111551258", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 105, - "status": null, - "last_seen": 0, - "agency": "Girlings Retirement Rentals", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6455/111551258/6455_26869_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.440104", - "last_seen": "2025-06-01T22:06:07.811297", - "price": 3388.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.156862, - 51.377735 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2791.0, - "url": "https://www.rightmove.co.uk/properties/111552332", - "info": { - "identifier": 111552332, - "sqm_ocr": null, - "price": 2791.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/111552332", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 105, - "status": null, - "last_seen": 0, - "agency": "Girlings Retirement Rentals", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6455/111552332/6455_26871_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.357770", - "last_seen": "2025-06-01T22:06:07.734911", - "price": 2791.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15576, - 51.37817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.7, - "qmprice": 47.35, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/112019174", - "info": { - "identifier": 112019174, - "sqm_ocr": 51.7, - "price": 2448.0, - "price_per_sqm": 47.350096711798834, - "url": "https://www.rightmove.co.uk/properties/112019174", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/112019174/119137_CHSE17_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.900198", - "last_seen": "2025-06-01T22:06:06.324744", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09482, - 51.48933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.81, - "qmprice": 38.38, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/112841786", - "info": { - "identifier": 112841786, - "sqm_ocr": 93.81, - "price": 3600.0, - "price_per_sqm": 38.37543971858011, - "url": "https://www.rightmove.co.uk/properties/112841786", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Alliance London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77148/112841786/77148_200037_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.507741", - "last_seen": "2025-06-01T22:06:04.996437", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104501, - 51.49941 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.0, - "qmprice": 23.64, - "rooms": 4, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/113239496", - "info": { - "identifier": 113239496, - "sqm_ocr": 114.0, - "price": 2695.0, - "price_per_sqm": 23.640350877192983, - "url": "https://www.rightmove.co.uk/properties/113239496", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Websters Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/122k/121999/113239496/121999_2613704_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.118385", - "last_seen": "2025-06-01T22:06:04.189547", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33802, - 51.42442 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/113354258", - "info": { - "identifier": 113354258, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/113354258", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Pure Realty", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106120/113354258/106120_CIR_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:09.728868", - "last_seen": "2025-06-01T22:06:09.728868", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.9, - "qmprice": 37.34, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/113577815", - "info": { - "identifier": 113577815, - "sqm_ocr": 54.9, - "price": 2050.0, - "price_per_sqm": 37.340619307832426, - "url": "https://www.rightmove.co.uk/properties/113577815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11470/113577815/11470_0459_FJL045903064_IMG_04_0001_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.464374", - "last_seen": "2025-06-01T22:06:08.980738", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020093, - 51.525887 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 45.88, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/113897009", - "info": { - "identifier": 113897009, - "sqm_ocr": 85.0, - "price": 3900.0, - "price_per_sqm": 45.88235294117647, - "url": "https://www.rightmove.co.uk/properties/113897009", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/113897009/119137_29Jessen_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.311901", - "last_seen": "2025-06-01T22:06:07.114157", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08973, - 51.49042 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.4, - "qmprice": 34.16, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/114015509", - "info": { - "identifier": 114015509, - "sqm_ocr": 64.4, - "price": 2200.0, - "price_per_sqm": 34.16149068322981, - "url": "https://www.rightmove.co.uk/properties/114015509", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Imperial Dragon Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209960/114015509/209960_2704814_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.055183", - "last_seen": "2025-06-01T22:05:39.618893", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24354, - 51.59339 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/114180491", - "info": { - "identifier": 114180491, - "sqm_ocr": null, - "price": 2195.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/114180491", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "NEWAY ESTATE AGENTS", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58151/114180491/58151_PatFlo_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.423038", - "last_seen": "2025-06-01T22:05:49.859863", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14805, - 51.59387 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/115202483", - "info": { - "identifier": 115202483, - "sqm_ocr": null, - "price": 2395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/115202483", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79624/115202483/79624_0615_FJL061500796_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.192712", - "last_seen": "2025-06-01T22:05:53.649435", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118218, - 51.54472 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.05, - "qmprice": 31.06, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/115498835", - "info": { - "identifier": 115498835, - "sqm_ocr": 74.05, - "price": 2300.0, - "price_per_sqm": 31.060094530722488, - "url": "https://www.rightmove.co.uk/properties/115498835", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58897/115498835/58897_TOO210529_L_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.235279", - "last_seen": "2025-06-01T22:06:14.008111", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151653, - 51.421185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.7, - "qmprice": 30.66, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/115583312", - "info": { - "identifier": 115583312, - "sqm_ocr": 89.7, - "price": 2750.0, - "price_per_sqm": 30.657748049052397, - "url": "https://www.rightmove.co.uk/properties/115583312", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Antony Roberts", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36579/115583312/36579_KEW210064_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.500819", - "last_seen": "2025-06-01T22:06:04.349979", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.278144, - 51.479153 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/115892231", - "info": { - "identifier": 115892231, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/115892231", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brockenhurst Property Specialists", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58355/115892231/58355_RL0206_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.875176", - "last_seen": "2025-06-01T22:05:50.808760", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.329001, - 51.584976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/116118887", - "info": { - "identifier": 116118887, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/116118887", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57096/116118887/57096_KQP210567_L_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.550287", - "last_seen": "2025-06-01T22:05:41.020576", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.249831, - 51.539356 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 36.36, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/116154554", - "info": { - "identifier": 116154554, - "sqm_ocr": 77.0, - "price": 2800.0, - "price_per_sqm": 36.36363636363637, - "url": "https://www.rightmove.co.uk/properties/116154554", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "McBryer Beg", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235769/116154554/235769_BEG89221_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.319574", - "last_seen": "2025-06-01T22:06:10.997449", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06231, - 51.51884 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/116890901", - "info": { - "identifier": 116890901, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/116890901", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Beaufort Park Colindale", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141893/116890901/141893_000016393_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.743819", - "last_seen": "2025-06-01T22:05:39.111855", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23836, - 51.59571 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 34.48, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/117101861", - "info": { - "identifier": 117101861, - "sqm_ocr": 87.0, - "price": 3000.0, - "price_per_sqm": 34.48275862068966, - "url": "https://www.rightmove.co.uk/properties/117101861", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Imperial Dragon Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209960/117101861/209960_2788261_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.624670", - "last_seen": "2025-06-01T22:06:11.902726", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04235, - 51.58769 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.3, - "qmprice": 31.08, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/117944816", - "info": { - "identifier": 117944816, - "sqm_ocr": 93.3, - "price": 2900.0, - "price_per_sqm": 31.082529474812436, - "url": "https://www.rightmove.co.uk/properties/117944816", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "Imperial Dragon Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209960/117944816/209960_2181868137_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.303345", - "last_seen": "2025-06-01T22:05:55.231674", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2457, - 51.59418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.04, - "qmprice": 32.07, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/118367765", - "info": { - "identifier": 118367765, - "sqm_ocr": 67.04, - "price": 2150.0, - "price_per_sqm": 32.07040572792363, - "url": "https://www.rightmove.co.uk/properties/118367765", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brockenhurst Property Specialists", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58355/118367765/58355_RL0290_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.267131", - "last_seen": "2025-06-01T22:05:44.234289", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.306993, - 51.501534 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 39.52, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/118531712", - "info": { - "identifier": 118531712, - "sqm_ocr": 62.0, - "price": 2450.0, - "price_per_sqm": 39.516129032258064, - "url": "https://www.rightmove.co.uk/properties/118531712", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/118531712/176261_102708023774_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.748919", - "last_seen": "2025-06-01T22:05:56.513587", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19617, - 51.55631 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.0, - "qmprice": 29.28, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/118579475", - "info": { - "identifier": 118579475, - "sqm_ocr": 111.0, - "price": 3250.0, - "price_per_sqm": 29.27927927927928, - "url": "https://www.rightmove.co.uk/properties/118579475", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Litchfields", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93337/118579475/93337_10249862_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.507200", - "last_seen": "2025-06-01T22:05:38.503427", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187528, - 51.57384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/118721000", - "info": { - "identifier": 118721000, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/118721000", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 90, - "status": null, - "last_seen": 0, - "agency": "Apple Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151424/118721000/151424_APV1000579_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.224638", - "last_seen": "2025-06-01T22:05:50.883221", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.22117, - 51.58881 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.96, - "qmprice": 40.47, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/118774151", - "info": { - "identifier": 118774151, - "sqm_ocr": 88.96, - "price": 3600.0, - "price_per_sqm": 40.46762589928058, - "url": "https://www.rightmove.co.uk/properties/118774151", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 66, - "status": null, - "last_seen": 0, - "agency": "Niche Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/197k/196184/118774151/196184_489_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.934998", - "last_seen": "2025-06-01T22:05:57.325083", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13918, - 51.54238 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 42.2, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/119105060", - "info": { - "identifier": 119105060, - "sqm_ocr": 69.9, - "price": 2950.0, - "price_per_sqm": 42.20314735336194, - "url": "https://www.rightmove.co.uk/properties/119105060", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Shaws Kensington", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41814/119105060/41814_SHW_SHW_LFSYCL_354_508124424_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.034689", - "last_seen": "2025-06-01T22:05:54.772253", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212515, - 51.490406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/119455106", - "info": { - "identifier": 119455106, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/119455106", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81595/119455106/81595_0618_HRT061800462_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.991619", - "last_seen": "2025-06-01T22:06:04.086045", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.084316, - 51.591103 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/119733992", - "info": { - "identifier": 119733992, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/119733992", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/119733992/176261_102708024095_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.952468", - "last_seen": "2025-06-01T22:05:54.341348", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1144, - 51.55574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/120115214", - "info": { - "identifier": 120115214, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/120115214", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Citidwell Limited.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90728/120115214/90728_WHFLT023_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.104660", - "last_seen": "2025-06-01T22:05:47.927661", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05667, - 51.5394 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 45.83, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/120158630", - "info": { - "identifier": 120158630, - "sqm_ocr": 78.0, - "price": 3575.0, - "price_per_sqm": 45.833333333333336, - "url": "https://www.rightmove.co.uk/properties/120158630", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Wedgewood Estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102385/120158630/102385_2628872_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.063539", - "last_seen": "2025-06-01T22:05:57.765263", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20129, - 51.49965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/120248465", - "info": { - "identifier": 120248465, - "sqm_ocr": null, - "price": 3142.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/120248465", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/120248465/17888_38181_IMG_09_0003_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.942445", - "last_seen": "2025-06-01T22:06:14.347247", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15756, - 51.52307 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/120509504", - "info": { - "identifier": 120509504, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/120509504", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71263/120509504/71263_0604_HRT060401486_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.068647", - "last_seen": "2025-06-01T22:05:40.277884", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.261712, - 51.59479 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/121813133", - "info": { - "identifier": 121813133, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/121813133", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Alter & Cope", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80460/121813133/80460_RL0034_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.237508", - "last_seen": "2025-06-01T22:06:02.462523", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.020441, - 51.51706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/121974380", - "info": { - "identifier": 121974380, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/121974380", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "View Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43275/121974380/43275_4182852_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.676689", - "last_seen": "2025-06-01T22:05:59.580677", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11937, - 51.48359 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.9, - "qmprice": 41.8, - "rooms": 2, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/122269490", - "info": { - "identifier": 122269490, - "sqm_ocr": 78.9, - "price": 3298.0, - "price_per_sqm": 41.79974651457541, - "url": "https://www.rightmove.co.uk/properties/122269490", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/122269490/136148_2634278_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.759802", - "last_seen": "2025-06-01T22:06:12.746861", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13422, - 51.48043 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/122563967", - "info": { - "identifier": 122563967, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/122563967", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Empire Chase Estate Agent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128062/122563967/128062_418metro_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.008143", - "last_seen": "2025-06-01T22:05:40.079415", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29644, - 51.55205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/122603804", - "info": { - "identifier": 122603804, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/122603804", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Nathan Andrews Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112669/122603804/112669_28huntclose_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.151093", - "last_seen": "2025-06-01T22:05:58.475263", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21791, - 51.50952 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3549.0, - "url": "https://www.rightmove.co.uk/properties/122690720", - "info": { - "identifier": 122690720, - "sqm_ocr": null, - "price": 3549.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/122690720", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57498/122690720/57498_2578187_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.081938", - "last_seen": "2025-06-01T22:06:09.965643", - "price": 3549 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06884, - 51.513763 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/122995106", - "info": { - "identifier": 122995106, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/122995106", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97178/122995106/97178_0613_HRT061300853_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.353731", - "last_seen": "2025-06-01T22:05:41.593351", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.101972, - 51.37164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/123482063", - "info": { - "identifier": 123482063, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/123482063", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "CP Papas Property Centre", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78719/123482063/78719_Woodgr4_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.415770", - "last_seen": "2025-06-01T22:05:55.225111", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10002, - 51.59283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/123534776", - "info": { - "identifier": 123534776, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/123534776", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Andrews And Stacey Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143252/123534776/143252_73climegrove_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.932994", - "last_seen": "2025-06-01T22:05:49.143491", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22749, - 51.504 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/124336598", - "info": { - "identifier": 124336598, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/124336598", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77524/124336598/77524_0428_FJL042800710_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.512069", - "last_seen": "2025-06-01T22:05:47.051007", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013392, - 51.474686 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.56, - "qmprice": 33.96, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/124879544", - "info": { - "identifier": 124879544, - "sqm_ocr": 76.56, - "price": 2600.0, - "price_per_sqm": 33.960292580982234, - "url": "https://www.rightmove.co.uk/properties/124879544", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11478/124879544/11478_0425_FJL042501443_IMG_03_0001_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.778792", - "last_seen": "2025-06-01T22:05:56.665316", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100162, - 51.525967 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.0, - "qmprice": 46.51, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/124972547", - "info": { - "identifier": 124972547, - "sqm_ocr": 86.0, - "price": 4000.0, - "price_per_sqm": 46.51162790697674, - "url": "https://www.rightmove.co.uk/properties/124972547", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11475/124972547/11475_0439_FJL043903071_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.586855", - "last_seen": "2025-06-01T22:06:09.094605", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017299, - 51.50094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3199.0, - "url": "https://www.rightmove.co.uk/properties/125183432", - "info": { - "identifier": 125183432, - "sqm_ocr": null, - "price": 3199.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/125183432", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Tony Alan Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250175/125183432/250175_101757006376_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.178899", - "last_seen": "2025-06-01T22:06:09.265051", - "price": 3199.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01824, - 51.50128 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2875.0, - "url": "https://www.rightmove.co.uk/properties/125183447", - "info": { - "identifier": 125183447, - "sqm_ocr": null, - "price": 2875.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/125183447", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Tony Alan Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250175/125183447/250175_101757006381_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.205336", - "last_seen": "2025-06-01T22:06:09.222981", - "price": 2875.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0191, - 51.50139 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/125391152", - "info": { - "identifier": 125391152, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/125391152", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77524/125391152/77524_0428_FJL042800690_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.572570", - "last_seen": "2025-06-01T22:05:46.997035", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.014942, - 51.495884 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/12541224", - "info": { - "identifier": 12541224, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/12541224", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Lawlors Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19332/12541224/19332_Col_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.469207", - "last_seen": "2025-06-01T22:05:51.408834", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.41204, - 51.51312 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.67, - "qmprice": 63.53, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/125863523", - "info": { - "identifier": 125863523, - "sqm_ocr": 56.67, - "price": 3600.0, - "price_per_sqm": 63.52567496029645, - "url": "https://www.rightmove.co.uk/properties/125863523", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/125863523/55234_GLRE3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.495483", - "last_seen": "2025-06-01T22:05:56.790777", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10266, - 51.5364 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/126494363", - "info": { - "identifier": 126494363, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/126494363", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36728/126494363/36728_0467_HRT046700868_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.188474", - "last_seen": "2025-06-01T22:06:06.796785", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068931, - 51.443916 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/126546149", - "info": { - "identifier": 126546149, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/126546149", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "City and Town Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80802/126546149/80802_NorthdownRd-4Bed_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.257503", - "last_seen": "2025-06-01T22:05:39.884437", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.11334, - 51.46445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/126650672", - "info": { - "identifier": 126650672, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/126650672", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 185, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93848/126650672/93848_0619_HRT061901084_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.552051", - "last_seen": "2025-06-01T22:06:11.673950", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0385, - 51.59991 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.06, - "qmprice": 47.12, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/126658199", - "info": { - "identifier": 126658199, - "sqm_ocr": 53.06, - "price": 2500.0, - "price_per_sqm": 47.11647191858273, - "url": "https://www.rightmove.co.uk/properties/126658199", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56712/126658199/56712_SHO180043_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.197383", - "last_seen": "2025-06-01T22:06:11.002527", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074388, - 51.516724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.4, - "qmprice": 64.81, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/126762953", - "info": { - "identifier": 126762953, - "sqm_ocr": 59.4, - "price": 3850.0, - "price_per_sqm": 64.81481481481481, - "url": "https://www.rightmove.co.uk/properties/126762953", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48606/126762953/48606_MYL210074_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.597122", - "last_seen": "2025-06-01T22:06:14.317584", - "price": 3848 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150748, - 51.515778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/127104203", - "info": { - "identifier": 127104203, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/127104203", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Net Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43665/127104203/43665_101793000300_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.796680", - "last_seen": "2025-06-01T20:19:56.472589", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06154, - 51.51406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/127119917", - "info": { - "identifier": 127119917, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/127119917", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Brian Thomas Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54989/127119917/54989_wragby52_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.678316", - "last_seen": "2025-06-01T22:06:11.851537", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00943, - 51.5572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/127568036", - "info": { - "identifier": 127568036, - "sqm_ocr": null, - "price": 2496.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/127568036", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11478/127568036/11478_0425_FJL042501408_IMG_04_0001_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.188861", - "last_seen": "2025-06-01T22:05:47.429288", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080751, - 51.534237 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.28, - "qmprice": 42.84, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/127811186", - "info": { - "identifier": 127811186, - "sqm_ocr": 68.28, - "price": 2925.0, - "price_per_sqm": 42.838312829525485, - "url": "https://www.rightmove.co.uk/properties/127811186", - "bedrooms": 2, - "travel_time_fastest": "Meta_Brock_Office__UK_by_BICYCLE in 13min", - "travel_time_second": "Meta_Brock_Office__UK_by_BICYCLE in 13min", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49127/127811186/49127_CLK220137_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.830041", - "last_seen": "2025-06-01T22:05:53.891008", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109386, - 51.527298 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/127990382", - "info": { - "identifier": 127990382, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/127990382", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Humphriss & Ryde", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72832/127990382/72832_103463000357_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.346629", - "last_seen": "2025-06-01T22:05:41.766792", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06795, - 51.41589 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/128176283", - "info": { - "identifier": 128176283, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/128176283", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11475/128176283/11475_0439_FJL043902827_IMG_35_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.511292", - "last_seen": "2025-06-01T20:19:58.332005", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015726, - 51.495956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.2, - "qmprice": 36.17, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/128384456", - "info": { - "identifier": 128384456, - "sqm_ocr": 62.2, - "price": 2250.0, - "price_per_sqm": 36.173633440514465, - "url": "https://www.rightmove.co.uk/properties/128384456", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lloyds Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15950/128384456/15950_LLY_BTH_LFSYCL_415_569192021_IMG_11_0001_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.332278", - "last_seen": "2025-06-01T22:06:10.962324", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019582, - 51.526634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.0, - "qmprice": 32.5, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/128488853", - "info": { - "identifier": 128488853, - "sqm_ocr": 110.0, - "price": 3575.0, - "price_per_sqm": 32.5, - "url": "https://www.rightmove.co.uk/properties/128488853", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Litchfields", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93337/128488853/93337_11723013_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.133191", - "last_seen": "2025-06-01T22:05:39.407074", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199376, - 51.59229 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/128562407", - "info": { - "identifier": 128562407, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/128562407", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11488/128562407/11488_0462_FJL046200647_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.655747", - "last_seen": "2025-06-01T22:06:06.492263", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075727, - 51.50375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.46, - "qmprice": 29.39, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/128832683", - "info": { - "identifier": 128832683, - "sqm_ocr": 71.46, - "price": 2100.0, - "price_per_sqm": 29.387069689336695, - "url": "https://www.rightmove.co.uk/properties/128832683", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11470/128832683/11470_0459_FJL045903870_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.978601", - "last_seen": "2025-06-01T22:06:10.004541", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022654, - 51.53322 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.24, - "qmprice": 31.48, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/128925266", - "info": { - "identifier": 128925266, - "sqm_ocr": 103.24, - "price": 3250.0, - "price_per_sqm": 31.48004649360713, - "url": "https://www.rightmove.co.uk/properties/128925266", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/128925266/163859_2342816_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.083373", - "last_seen": "2025-06-01T22:06:03.047831", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02836, - 51.49932 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/129945368", - "info": { - "identifier": 129945368, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/129945368", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11495/129945368/11495_0435_FJL043502127_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.609100", - "last_seen": "2025-06-01T22:06:09.032785", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065501, - 51.513058 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.9, - "qmprice": 27.3, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/130352549", - "info": { - "identifier": 130352549, - "sqm_ocr": 120.9, - "price": 3300.0, - "price_per_sqm": 27.295285359801486, - "url": "https://www.rightmove.co.uk/properties/130352549", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43002/130352549/43002_BAL220054_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.526019", - "last_seen": "2025-06-01T22:06:04.389179", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.318056, - 51.43426 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.07, - "qmprice": 41.9, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/130389050", - "info": { - "identifier": 130389050, - "sqm_ocr": 93.07, - "price": 3900.0, - "price_per_sqm": 41.903943268507575, - "url": "https://www.rightmove.co.uk/properties/130389050", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/130389050/136148_2644599_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.506691", - "last_seen": "2025-06-01T22:06:13.611818", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129255, - 51.48147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/130688738", - "info": { - "identifier": 130688738, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/130688738", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 110, - "status": null, - "last_seen": 0, - "agency": "Hinton Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69686/130688738/69686_102800004014_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.119919", - "last_seen": "2025-06-01T22:05:50.231150", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33971, - 51.58774 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/130762046", - "info": { - "identifier": 130762046, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/130762046", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Shaws Kensington", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41814/130762046/41814_SHW_SHW_LFSYCL_354_508208461_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.883004", - "last_seen": "2025-06-01T22:05:49.401505", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212888, - 51.478863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.92, - "qmprice": 48.8, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/130917623", - "info": { - "identifier": 130917623, - "sqm_ocr": 79.92, - "price": 3900.0, - "price_per_sqm": 48.7987987987988, - "url": "https://www.rightmove.co.uk/properties/130917623", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/130917623/136148_2655338_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.215410", - "last_seen": "2025-06-01T22:06:12.490996", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14607, - 51.48278 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/131245454", - "info": { - "identifier": 131245454, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/131245454", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/131245454/136148_2477349_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.011927", - "last_seen": "2025-06-01T22:05:59.347418", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126033, - 51.48558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/131434583", - "info": { - "identifier": 131434583, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/131434583", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Gibson Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/178k/177572/131434583/177572_1502_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.259691", - "last_seen": "2025-06-01T22:05:51.965986", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35537, - 51.4618 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.31, - "qmprice": 52.82, - "rooms": 2, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/131494019", - "info": { - "identifier": 131494019, - "sqm_ocr": 64.31, - "price": 3397.0, - "price_per_sqm": 52.822267143523554, - "url": "https://www.rightmove.co.uk/properties/131494019", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57498/131494019/57498_2656613_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.767410", - "last_seen": "2025-06-01T22:05:53.490205", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095606, - 51.52859 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/131546573", - "info": { - "identifier": 131546573, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/131546573", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 124, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/128k/127549/131546573/127549_P259077_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.859526", - "last_seen": "2025-06-01T22:06:13.968686", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20033, - 51.45089 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/131671013", - "info": { - "identifier": 131671013, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/131671013", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 110, - "status": null, - "last_seen": 0, - "agency": "Hinton Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.092722", - "last_seen": "2025-06-01T22:05:50.824865", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34886, - 51.60217 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/131759534", - "info": { - "identifier": 131759534, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/131759534", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Truepenny's", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49874/131759534/49874_2766_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.566801", - "last_seen": "2025-06-01T22:05:46.218192", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.067316, - 51.494682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/131790374", - "info": { - "identifier": 131790374, - "sqm_ocr": null, - "price": 2925.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/131790374", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76580/131790374/76580_SKN140530_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.091117", - "last_seen": "2025-06-01T22:05:58.411163", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191961, - 51.49067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.64, - "qmprice": 42.28, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/132046076", - "info": { - "identifier": 132046076, - "sqm_ocr": 75.64, - "price": 3198.0, - "price_per_sqm": 42.279217345319935, - "url": "https://www.rightmove.co.uk/properties/132046076", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57498/132046076/57498_2657698_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.256267", - "last_seen": "2025-06-01T22:06:06.870526", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098619, - 51.490868 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/132124949", - "info": { - "identifier": 132124949, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/132124949", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CKB Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/187k/186113/132124949/186113_CKBE_000038_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.800128", - "last_seen": "2025-06-01T22:06:05.493030", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.060022, - 51.470848 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.0, - "qmprice": 34.72, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/132839213", - "info": { - "identifier": 132839213, - "sqm_ocr": 108.0, - "price": 3750.0, - "price_per_sqm": 34.72222222222222, - "url": "https://www.rightmove.co.uk/properties/132839213", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43002/132839213/43002_BAL230011_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.434383", - "last_seen": "2025-06-01T22:06:04.636744", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312507, - 51.436687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/132839228", - "info": { - "identifier": 132839228, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/132839228", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Property Inc", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191252/132839228/191252_PRI230074_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.818985", - "last_seen": "2025-06-01T22:05:53.863622", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129036, - 51.57138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3310.0, - "url": "https://www.rightmove.co.uk/properties/132935363", - "info": { - "identifier": 132935363, - "sqm_ocr": null, - "price": 3310.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/132935363", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 105, - "status": null, - "last_seen": 0, - "agency": "Girlings Retirement Rentals", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6455/132935363/6455_30111_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.712708", - "last_seen": "2025-06-01T22:06:07.801259", - "price": 3310.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15576, - 51.37817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.73, - "qmprice": 42.95, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/133146701", - "info": { - "identifier": 133146701, - "sqm_ocr": 80.73, - "price": 3467.0, - "price_per_sqm": 42.94562120649077, - "url": "https://www.rightmove.co.uk/properties/133146701", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/133146701/136148_2644309_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.395496", - "last_seen": "2025-06-01T22:05:59.491304", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128172, - 51.481453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/133203326", - "info": { - "identifier": 133203326, - "sqm_ocr": null, - "price": 2708.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/133203326", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/133203326/17882_38310_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.446989", - "last_seen": "2025-06-01T22:05:53.822297", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12758, - 51.5475 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.0, - "qmprice": 40.18, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/133356767", - "info": { - "identifier": 133356767, - "sqm_ocr": 56.0, - "price": 2250.0, - "price_per_sqm": 40.17857142857143, - "url": "https://www.rightmove.co.uk/properties/133356767", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33101/133356767/33101_SHE110571_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.722165", - "last_seen": "2025-06-01T22:05:49.510407", - "price": 2180.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228031, - 51.504498 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/133396592", - "info": { - "identifier": 133396592, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/133396592", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Selmans Lettings Ltd", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47609/133396592/47609_RL0111_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.904473", - "last_seen": "2025-06-01T22:05:45.844381", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124804, - 51.628536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/133521215", - "info": { - "identifier": 133521215, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/133521215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/133521215/242054_Southwark_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.842092", - "last_seen": "2025-06-01T22:06:06.759537", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09637, - 51.50743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/133812611", - "info": { - "identifier": 133812611, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/133812611", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Property Inc", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191252/133812611/191252_PRI220194_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.692193", - "last_seen": "2025-06-01T22:05:49.977730", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123626, - 51.583313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.43, - "qmprice": 59.75, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/134132204", - "info": { - "identifier": 134132204, - "sqm_ocr": 64.43, - "price": 3850.0, - "price_per_sqm": 59.75477262144963, - "url": "https://www.rightmove.co.uk/properties/134132204", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Aitch Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/193k/192560/134132204/192560_LongSt_IMG_15_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.939527", - "last_seen": "2025-06-01T22:05:47.835827", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07644, - 51.52892 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/134193725", - "info": { - "identifier": 134193725, - "sqm_ocr": null, - "price": 2383.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/134193725", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/134193725/17882_37184_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.697383", - "last_seen": "2025-06-01T22:05:53.761974", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09817, - 51.55755 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.1, - "qmprice": 38.42, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/134260808", - "info": { - "identifier": 134260808, - "sqm_ocr": 91.1, - "price": 3500.0, - "price_per_sqm": 38.41931942919869, - "url": "https://www.rightmove.co.uk/properties/134260808", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Allen Goldstein", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112351/134260808/112351_RL1755_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.084453", - "last_seen": "2025-06-01T22:06:07.941039", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019744, - 51.498543 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.5, - "qmprice": 39.94, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/134344034", - "info": { - "identifier": 134344034, - "sqm_ocr": 52.5, - "price": 2097.0, - "price_per_sqm": 39.94285714285714, - "url": "https://www.rightmove.co.uk/properties/134344034", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/134344034/119137_Tunstall_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.243519", - "last_seen": "2025-06-01T22:05:59.823931", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11725, - 51.46236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/134485613", - "info": { - "identifier": 134485613, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/134485613", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11466/134485613/11466_0402_FJL040202850_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.215587", - "last_seen": "2025-06-01T22:05:46.510905", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.072571, - 51.4935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.46, - "qmprice": 46.07, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/134537720", - "info": { - "identifier": 134537720, - "sqm_ocr": 69.46, - "price": 3200.0, - "price_per_sqm": 46.069680391592286, - "url": "https://www.rightmove.co.uk/properties/134537720", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Net Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43665/134537720/43665_101793000875_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.473488", - "last_seen": "2025-06-01T22:06:08.807646", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07383, - 51.51911 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/134554079", - "info": { - "identifier": 134554079, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/134554079", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 59, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/134554079/32793_38806_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.224014", - "last_seen": "2025-06-01T22:05:56.867849", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20774, - 51.55181 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 32.39, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/134574122", - "info": { - "identifier": 134574122, - "sqm_ocr": 71.0, - "price": 2300.0, - "price_per_sqm": 32.394366197183096, - "url": "https://www.rightmove.co.uk/properties/134574122", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45899/134574122/45899_FUP210102_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.081357", - "last_seen": "2025-06-01T22:05:56.880778", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192655, - 51.475163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/134580932", - "info": { - "identifier": 134580932, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/134580932", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Wren & co Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81351/134580932/81351_wren_1766098419_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.450724", - "last_seen": "2025-06-01T22:05:42.832686", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196626, - 51.554653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 35.89, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/134590445", - "info": { - "identifier": 134590445, - "sqm_ocr": 64.0, - "price": 2297.0, - "price_per_sqm": 35.890625, - "url": "https://www.rightmove.co.uk/properties/134590445", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/134590445/163859_2661931_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.865787", - "last_seen": "2025-06-01T22:06:02.690396", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.035773, - 51.5003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.0, - "qmprice": 41.04, - "rooms": 2, - "total_price": 2175.0, - "url": "https://www.rightmove.co.uk/properties/134643599", - "info": { - "identifier": 134643599, - "sqm_ocr": 53.0, - "price": 2175.0, - "price_per_sqm": 41.0377358490566, - "url": "https://www.rightmove.co.uk/properties/134643599", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33101/134643599/33101_SHE230276_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.626195", - "last_seen": "2025-06-01T22:05:49.040914", - "price": 2175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.230262, - 51.507515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/134732771", - "info": { - "identifier": 134732771, - "sqm_ocr": null, - "price": 3748.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/134732771", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/134732771/70038_3082_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.186980", - "last_seen": "2025-06-01T22:06:13.485882", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19377, - 51.444695 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/134795456", - "info": { - "identifier": 134795456, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/134795456", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Shaws Kensington", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41814/134795456/41814_SHW_SHW_LFSYCL_354_508122954_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.708411", - "last_seen": "2025-06-01T22:05:48.980244", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20825, - 51.489487 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.29, - "qmprice": 48.59, - "rooms": 3, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/135121502", - "info": { - "identifier": 135121502, - "sqm_ocr": 81.29, - "price": 3950.0, - "price_per_sqm": 48.591462664534376, - "url": "https://www.rightmove.co.uk/properties/135121502", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Next Home Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38072/135121502/38072_000647845_IMG_04_0000_max_656x437.png", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.094040", - "last_seen": "2025-06-01T22:05:47.889846", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05691, - 51.55427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.0, - "qmprice": 36.7, - "rooms": 3, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/135156050", - "info": { - "identifier": 135156050, - "sqm_ocr": 94.0, - "price": 3450.0, - "price_per_sqm": 36.702127659574465, - "url": "https://www.rightmove.co.uk/properties/135156050", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33101/135156050/33101_SHE210320_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.313991", - "last_seen": "2025-06-01T22:05:49.273269", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238708, - 51.50823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/135176939", - "info": { - "identifier": 135176939, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/135176939", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hue Homes Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/110k/109994/135176939/109994_Headbourne27_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.215034", - "last_seen": "2025-06-01T22:06:06.063959", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08699, - 51.49739 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/135559445", - "info": { - "identifier": 135559445, - "sqm_ocr": null, - "price": 2899.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/135559445", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/135559445/32793_33737_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.720890", - "last_seen": "2025-06-01T22:05:40.980671", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22076, - 51.55102 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.84, - "qmprice": 33.3, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/135632642", - "info": { - "identifier": 135632642, - "sqm_ocr": 74.84, - "price": 2492.0, - "price_per_sqm": 33.297701763762696, - "url": "https://www.rightmove.co.uk/properties/135632642", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/135632642/163859_2664028_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "25/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.618812", - "last_seen": "2025-06-01T22:05:46.497374", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0708, - 51.49226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/135706727", - "info": { - "identifier": 135706727, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/135706727", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Churchill Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10145/135706727/10145_31754518_IMG_22_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.706706", - "last_seen": "2025-06-01T22:06:11.618998", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039375, - 51.593895 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/135781037", - "info": { - "identifier": 135781037, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/135781037", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "ENS Property Group Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247784/135781037/247784_247784-45124_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.949477", - "last_seen": "2025-06-01T22:06:05.065623", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.082479, - 51.501575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/135789821", - "info": { - "identifier": 135789821, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/135789821", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33101/135789821/33101_SHE230201_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.578361", - "last_seen": "2025-06-01T22:05:48.951046", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23812, - 51.508156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.0, - "qmprice": 38.04, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/135800015", - "info": { - "identifier": 135800015, - "sqm_ocr": 92.0, - "price": 3500.0, - "price_per_sqm": 38.04347826086956, - "url": "https://www.rightmove.co.uk/properties/135800015", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Nova Haus London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240566/135800015/240566_NOV210025_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:09.693167", - "last_seen": "2025-06-01T22:06:09.693167", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.059142, - 51.524296 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/135800513", - "info": { - "identifier": 135800513, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/135800513", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Truepenny's", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49874/135800513/49874_4278_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.775038", - "last_seen": "2025-06-01T22:06:05.514208", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07098, - 51.43301 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.4, - "qmprice": 29.83, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/135880484", - "info": { - "identifier": 135880484, - "sqm_ocr": 70.4, - "price": 2100.0, - "price_per_sqm": 29.829545454545453, - "url": "https://www.rightmove.co.uk/properties/135880484", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Antony Roberts", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/194k/193835/135880484/193835_MAG181139_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.480017", - "last_seen": "2025-06-01T22:06:04.619701", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.339262, - 51.44617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 49.18, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/135908213", - "info": { - "identifier": 135908213, - "sqm_ocr": 61.0, - "price": 3000.0, - "price_per_sqm": 49.18032786885246, - "url": "https://www.rightmove.co.uk/properties/135908213", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 124, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210116/135908213/210116_P263842_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.563391", - "last_seen": "2025-06-01T22:05:42.802364", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19462, - 51.55179 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/136221731", - "info": { - "identifier": 136221731, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/136221731", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.496634", - "last_seen": "2025-06-01T22:05:53.470796", - "price": 2166 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09947, - 51.52646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/136270007", - "info": { - "identifier": 136270007, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/136270007", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "London Homes Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162716/136270007/162716_568_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.182111", - "last_seen": "2025-06-01T22:05:45.144144", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299184, - 51.5111 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/136385708", - "info": { - "identifier": 136385708, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/136385708", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kings Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65604/136385708/65604_32384371_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.424294", - "last_seen": "2025-06-01T22:05:47.788227", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.040558, - 51.55569 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3199.0, - "url": "https://www.rightmove.co.uk/properties/136554866", - "info": { - "identifier": 136554866, - "sqm_ocr": null, - "price": 3199.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/136554866", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Tony Alan Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250175/136554866/250175_101757006973_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.972894", - "last_seen": "2025-06-01T22:06:08.659277", - "price": 3199.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0191, - 51.50139 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3207.0, - "url": "https://www.rightmove.co.uk/properties/136592183", - "info": { - "identifier": 136592183, - "sqm_ocr": null, - "price": 3207.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/136592183", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/136592183/17882_38879_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.687875", - "last_seen": "2025-06-01T22:05:53.711408", - "price": 3206 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12902, - 51.56506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.88, - "qmprice": 37.19, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/136648502", - "info": { - "identifier": 136648502, - "sqm_ocr": 104.88, - "price": 3900.0, - "price_per_sqm": 37.18535469107552, - "url": "https://www.rightmove.co.uk/properties/136648502", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/136648502/136139_2665321_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "23/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.808153", - "last_seen": "2025-06-01T22:06:07.710533", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010777, - 51.53275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/136671572", - "info": { - "identifier": 136671572, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/136671572", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/136671572/136148_2665192_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.422574", - "last_seen": "2025-06-01T22:05:59.602588", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127251, - 51.481773 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/136715189", - "info": { - "identifier": 136715189, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/136715189", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Filey Properties", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54554/136715189/54554_2663707_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.385668", - "last_seen": "2025-06-01T22:05:47.272816", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065733, - 51.552914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/136736252", - "info": { - "identifier": 136736252, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/136736252", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "W PROPERTY CONSULTANTS", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256523/136736252/256523_L3AR_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.822972", - "last_seen": "2025-06-01T22:05:49.061587", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20711, - 51.49452 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/136869578", - "info": { - "identifier": 136869578, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/136869578", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Citian & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256973/136869578/256973_268492_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.022229", - "last_seen": "2025-06-01T22:06:00.186669", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12827, - 51.48142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.15, - "qmprice": 39.81, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/136998440", - "info": { - "identifier": 136998440, - "sqm_ocr": 100.15, - "price": 3987.0, - "price_per_sqm": 39.81028457314029, - "url": "https://www.rightmove.co.uk/properties/136998440", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/136998440/136148_2665618_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.883633", - "last_seen": "2025-06-01T22:06:14.041625", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136364, - 51.48247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2095.0, - "url": "https://www.rightmove.co.uk/properties/137035016", - "info": { - "identifier": 137035016, - "sqm_ocr": null, - "price": 2095.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/137035016", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Milegate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/124k/123322/137035016/123322_POINT_005998_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.599110", - "last_seen": "2025-06-01T22:05:40.566087", - "price": 2095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.274131, - 51.546776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.4, - "qmprice": 34.52, - "rooms": 3, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/137111402", - "info": { - "identifier": 137111402, - "sqm_ocr": 69.4, - "price": 2396.0, - "price_per_sqm": 34.524495677233425, - "url": "https://www.rightmove.co.uk/properties/137111402", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/137111402/119137_SHK31BG_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.736174", - "last_seen": "2025-06-01T22:06:00.169510", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1113, - 51.48438 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/137152796", - "info": { - "identifier": 137152796, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/137152796", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57096/137152796/57096_WIG140558_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.818022", - "last_seen": "2025-06-01T22:05:40.793112", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222735, - 51.53099 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.09, - "qmprice": 45.88, - "rooms": 2, - "total_price": 2665.0, - "url": "https://www.rightmove.co.uk/properties/137288261", - "info": { - "identifier": 137288261, - "sqm_ocr": 58.09, - "price": 2665.0, - "price_per_sqm": 45.87708727836116, - "url": "https://www.rightmove.co.uk/properties/137288261", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/137288261/17888_36806_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.211662", - "last_seen": "2025-06-01T22:05:42.233022", - "price": 2665 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12155, - 51.52933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 45.57, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/137329874", - "info": { - "identifier": 137329874, - "sqm_ocr": 79.0, - "price": 3600.0, - "price_per_sqm": 45.56962025316456, - "url": "https://www.rightmove.co.uk/properties/137329874", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Net Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43665/137329874/43665_101793000037_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.463552", - "last_seen": "2025-06-01T22:06:10.463552", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05843, - 51.51508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.7, - "qmprice": 22.23, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/137343119", - "info": { - "identifier": 137343119, - "sqm_ocr": 123.7, - "price": 2750.0, - "price_per_sqm": 22.231204527081648, - "url": "https://www.rightmove.co.uk/properties/137343119", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "jdm", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/169k/168275/137343119/168275_LLO210094_L_IMG_08_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.328725", - "last_seen": "2025-06-01T22:05:41.737307", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.039494, - 51.386913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/137463989", - "info": { - "identifier": 137463989, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/137463989", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/137463989/12070_26527492_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.107906", - "last_seen": "2025-06-01T22:05:46.310321", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017989, - 51.494328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/137496866", - "info": { - "identifier": 137496866, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/137496866", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Andre Joseph Estates Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74973/137496866/74973_515387_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.831724", - "last_seen": "2025-06-01T22:06:12.456631", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154764, - 51.433662 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/137553623", - "info": { - "identifier": 137553623, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/137553623", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Filey Properties", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54554/137553623/54554_2666966_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.151259", - "last_seen": "2025-06-01T22:05:47.389341", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074415, - 51.559196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.04, - "qmprice": 45.35, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/137793866", - "info": { - "identifier": 137793866, - "sqm_ocr": 74.04, - "price": 3358.0, - "price_per_sqm": 45.35386277687736, - "url": "https://www.rightmove.co.uk/properties/137793866", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/137793866/136148_2519332_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.066115", - "last_seen": "2025-06-01T22:06:13.987928", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1376, - 51.4822 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/137816381", - "info": { - "identifier": 137816381, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/137816381", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 997.0, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Zuker Property Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147848/137816381/147848_LLO0009_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.977306", - "last_seen": "2025-06-01T22:05:45.042738", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25018, - 51.51343 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/137944145", - "info": { - "identifier": 137944145, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/137944145", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "MoveHome", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78299/137944145/78299_69_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.558253", - "last_seen": "2025-06-01T22:05:54.102512", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11518, - 51.53337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.59, - "qmprice": 37.53, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/137949359", - "info": { - "identifier": 137949359, - "sqm_ocr": 74.59, - "price": 2799.0, - "price_per_sqm": 37.52513741788443, - "url": "https://www.rightmove.co.uk/properties/137949359", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11478/137949359/11478_0615_FJL061501016_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.415794", - "last_seen": "2025-06-01T22:05:54.379368", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11578, - 51.55028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.2, - "qmprice": 36.54, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/138071615", - "info": { - "identifier": 138071615, - "sqm_ocr": 60.2, - "price": 2200.0, - "price_per_sqm": 36.54485049833887, - "url": "https://www.rightmove.co.uk/properties/138071615", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94448/138071615/94448_EAL180119_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.810116", - "last_seen": "2025-06-01T22:05:44.151574", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290756, - 51.505844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/138193466", - "info": { - "identifier": 138193466, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/138193466", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "MS Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83081/138193466/83081_HAIL29_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.332924", - "last_seen": "2025-06-01T22:05:51.042416", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.21395, - 51.60963 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3163.0, - "url": "https://www.rightmove.co.uk/properties/138230975", - "info": { - "identifier": 138230975, - "sqm_ocr": null, - "price": 3163.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/138230975", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/138230975/105856_2994_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.387438", - "last_seen": "2025-06-01T22:06:05.075809", - "price": 3163 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095981, - 51.496223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.61, - "qmprice": 57.46, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/138388208", - "info": { - "identifier": 138388208, - "sqm_ocr": 69.61, - "price": 4000.0, - "price_per_sqm": 57.46300818847867, - "url": "https://www.rightmove.co.uk/properties/138388208", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56712/138388208/56712_ISL200226_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.786853", - "last_seen": "2025-06-01T22:05:55.165425", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087002, - 51.52473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/138471317", - "info": { - "identifier": 138471317, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/138471317", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "Under offer", - "last_seen": 0, - "agency": "Statuum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237224/138471317/237224_348_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.039413, - 51.521233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/138505733", - "info": { - "identifier": 138505733, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/138505733", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/138505733/17882_38931_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.927960", - "last_seen": "2025-06-01T22:06:07.926346", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05412, - 51.51816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/138505739", - "info": { - "identifier": 138505739, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/138505739", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/138505739/17882_36894_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.922959", - "last_seen": "2025-06-01T22:06:07.915080", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05668, - 51.51559 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2190.0, - "url": "https://www.rightmove.co.uk/properties/138683741", - "info": { - "identifier": 138683741, - "sqm_ocr": null, - "price": 2190.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/138683741", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71342/138683741/71342_0484_HRT048401284_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.470050", - "last_seen": "2025-06-01T22:05:40.032764", - "price": 2190.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.316937, - 51.553795 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/138716237", - "info": { - "identifier": 138716237, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/138716237", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.519266", - "last_seen": "2025-06-01T22:06:14.424129", - "price": 2166 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1604, - 51.52401 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.79, - "qmprice": 35.68, - "rooms": 2, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/138723890", - "info": { - "identifier": 138723890, - "sqm_ocr": 79.79, - "price": 2847.0, - "price_per_sqm": 35.68116305301416, - "url": "https://www.rightmove.co.uk/properties/138723890", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/138723890/136139_2395381_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.897862", - "last_seen": "2025-06-01T22:06:01.880234", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005331, - 51.512596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/138730457", - "info": { - "identifier": 138730457, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/138730457", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.885546", - "last_seen": "2025-06-01T22:05:53.205426", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10945, - 51.53255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.57, - "qmprice": 32.6, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/138875660", - "info": { - "identifier": 138875660, - "sqm_ocr": 76.57, - "price": 2496.0, - "price_per_sqm": 32.597623089983024, - "url": "https://www.rightmove.co.uk/properties/138875660", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/138875660/136139_2585820_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.959367", - "last_seen": "2025-06-01T22:06:09.096768", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.001834, - 51.509514 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/138939482", - "info": { - "identifier": 138939482, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/138939482", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11470/138939482/11470_0459_FJL045903680_IMG_03_0001_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.100781", - "last_seen": "2025-06-01T22:06:08.700257", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021183, - 51.530376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/138953078", - "info": { - "identifier": 138953078, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/138953078", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Brian Cox & Company", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156206/138953078/156206_11168934_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.038495", - "last_seen": "2025-06-01T22:05:50.791583", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.362635, - 51.59462 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/138984398", - "info": { - "identifier": 138984398, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/138984398", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 214, - "status": null, - "last_seen": 0, - "agency": "Hyde Park Agencies", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77287/138984398/77287_32548159_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.118880", - "last_seen": "2025-06-01T22:05:57.931151", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192921, - 51.50469 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3813.0, - "url": "https://www.rightmove.co.uk/properties/139118639", - "info": { - "identifier": 139118639, - "sqm_ocr": null, - "price": 3813.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/139118639", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/139118639/17882_38950_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.146438", - "last_seen": "2025-06-01T22:05:47.579027", - "price": 3813 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09967, - 51.56657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/139240409", - "info": { - "identifier": 139240409, - "sqm_ocr": null, - "price": 2448.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/139240409", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 185, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90035/139240409/90035_32560152_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.297569", - "last_seen": "2025-06-01T22:05:40.380991", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242497, - 51.540398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.8, - "qmprice": 43.37, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/139272629", - "info": { - "identifier": 139272629, - "sqm_ocr": 58.8, - "price": 2550.0, - "price_per_sqm": 43.36734693877551, - "url": "https://www.rightmove.co.uk/properties/139272629", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Sparrows Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237491/139272629/237491_14101_000328_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.504091", - "last_seen": "2025-06-01T22:06:00.207286", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136336, - 51.46108 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/139274072", - "info": { - "identifier": 139274072, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/139274072", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Bryants Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21740/139274072/21740_2854_BRYT_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.823436", - "last_seen": "2025-06-01T22:06:03.045878", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.042482, - 51.511383 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/139588499", - "info": { - "identifier": 139588499, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/139588499", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Hiltons Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242060/139588499/242060_102765000337_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.334899", - "last_seen": "2025-06-01T22:05:43.856646", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37606, - 51.53592 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/139702883", - "info": { - "identifier": 139702883, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/139702883", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Freshview Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.175518", - "last_seen": "2025-06-01T22:05:39.129271", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23456, - 51.58189 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/139712267", - "info": { - "identifier": 139712267, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/139712267", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/139712267/264878_CAN211089_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.120617", - "last_seen": "2025-06-01T22:06:02.534285", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.011387, - 51.516453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/139782710", - "info": { - "identifier": 139782710, - "sqm_ocr": null, - "price": 2925.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/139782710", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/139782710/17888_31242_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.299735", - "last_seen": "2025-06-01T22:06:15.464335", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1558, - 51.52025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/139783781", - "info": { - "identifier": 139783781, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/139783781", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Hiltons Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.191563", - "last_seen": "2025-06-01T22:05:45.056603", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34487, - 51.52127 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3077.0, - "url": "https://www.rightmove.co.uk/properties/139807511", - "info": { - "identifier": 139807511, - "sqm_ocr": null, - "price": 3077.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/139807511", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/139807511/17882_38971_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.893993", - "last_seen": "2025-06-01T22:05:54.023556", - "price": 3076 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12878, - 51.55696 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.77, - "qmprice": 48.76, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/139881317", - "info": { - "identifier": 139881317, - "sqm_ocr": 73.77, - "price": 3597.0, - "price_per_sqm": 48.75965839772265, - "url": "https://www.rightmove.co.uk/properties/139881317", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57498/139881317/57498_2669859_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.688458", - "last_seen": "2025-06-01T22:06:09.498399", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064661, - 51.50789 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 133.08, - "qmprice": 30.06, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/139990043", - "info": { - "identifier": 139990043, - "sqm_ocr": 133.08, - "price": 4000.0, - "price_per_sqm": 30.057108506161704, - "url": "https://www.rightmove.co.uk/properties/139990043", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49980/139990043/49980_SOU230239_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.769551", - "last_seen": "2025-06-01T22:06:12.513267", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218648, - 51.45909 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2526.0, - "url": "https://www.rightmove.co.uk/properties/140270447", - "info": { - "identifier": 140270447, - "sqm_ocr": null, - "price": 2526.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/140270447", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/140270447/163859_2620605_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.784629", - "last_seen": "2025-06-01T22:06:02.929956", - "price": 2526 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02733, - 51.49888 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/140273270", - "info": { - "identifier": 140273270, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/140273270", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.991239", - "last_seen": "2025-06-01T22:05:54.235464", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09529, - 51.554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 50.0, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/140320700", - "info": { - "identifier": 140320700, - "sqm_ocr": 68.0, - "price": 3400.0, - "price_per_sqm": 50.0, - "url": "https://www.rightmove.co.uk/properties/140320700", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Shared", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265295/140320700/265295_Camden2bedversion6_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.796212", - "last_seen": "2025-06-01T22:05:42.033688", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14024, - 51.54114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.6, - "qmprice": 78.63, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/140452517", - "info": { - "identifier": 140452517, - "sqm_ocr": 49.6, - "price": 3900.0, - "price_per_sqm": 78.62903225806451, - "url": "https://www.rightmove.co.uk/properties/140452517", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253316/140452517/253316_NHO050068_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.762404", - "last_seen": "2025-06-01T22:06:14.731645", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191046, - 51.51228 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/140687594", - "info": { - "identifier": 140687594, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/140687594", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Gibson Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/178k/177572/140687594/177572_091124_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.101733", - "last_seen": "2025-06-01T22:05:59.967074", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12109, - 51.47033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/140830343", - "info": { - "identifier": 140830343, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/140830343", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 408, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11489/140830343/11489_0420_HRT042002324_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.937645", - "last_seen": "2025-06-01T22:05:45.440395", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12135, - 51.63562 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/141047987", - "info": { - "identifier": 141047987, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/141047987", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/141047987/242054_VictoryCourtServicedApartments2Bed_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.621674", - "last_seen": "2025-06-01T22:06:01.148637", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16878, - 51.4013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 136.0, - "qmprice": 20.59, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/141049547", - "info": { - "identifier": 141049547, - "sqm_ocr": 136.0, - "price": 2800.0, - "price_per_sqm": 20.58823529411765, - "url": "https://www.rightmove.co.uk/properties/141049547", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Your London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89638/141049547/89638_COB2-t-299_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.099830", - "last_seen": "2025-06-01T22:05:47.069654", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05905, - 51.47612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/141197591", - "info": { - "identifier": 141197591, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/141197591", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/141197591/247697_102708032196_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.644191", - "last_seen": "2025-06-01T22:05:54.072417", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12562, - 51.54954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/141204896", - "info": { - "identifier": 141204896, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/141204896", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Willtons Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82281/141204896/82281_Mk3636C_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.163672", - "last_seen": "2025-06-01T22:05:42.277070", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18272, - 51.5499 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/141390422", - "info": { - "identifier": 141390422, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/141390422", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70025/141390422/70025_0477_HRT047707446_IMG_03_0001_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.268573", - "last_seen": "2025-06-01T22:05:51.026405", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.166013, - 51.592503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/141477584", - "info": { - "identifier": 141477584, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/141477584", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48618/141477584/48618_KNI170047_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.033457", - "last_seen": "2025-06-01T22:05:57.927745", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171273, - 51.491882 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.63, - "qmprice": 26.8, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/141558770", - "info": { - "identifier": 141558770, - "sqm_ocr": 88.63, - "price": 2375.0, - "price_per_sqm": 26.79679566738125, - "url": "https://www.rightmove.co.uk/properties/141558770", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48606/141558770/48606_MYL220061_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.528275", - "last_seen": "2025-06-01T22:06:02.648007", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012041, - 51.510033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/141573803", - "info": { - "identifier": 141573803, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/141573803", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/141573803/242054_WestLondonServicedApartments_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.201668", - "last_seen": "2025-06-01T22:05:52.519528", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30979, - 51.49052 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.2, - "qmprice": 32.55, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/141658106", - "info": { - "identifier": 141658106, - "sqm_ocr": 75.2, - "price": 2448.0, - "price_per_sqm": 32.5531914893617, - "url": "https://www.rightmove.co.uk/properties/141658106", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/141658106/136139_2672130_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.656996", - "last_seen": "2025-06-01T22:06:08.442827", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00597, - 51.51178 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/141917600", - "info": { - "identifier": 141917600, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/141917600", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Quintessentially Estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/208k/207578/141917600/207578_12190942_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.210103", - "last_seen": "2025-06-01T22:05:57.692414", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171274, - 51.49199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.8, - "qmprice": 32.57, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/141919505", - "info": { - "identifier": 141919505, - "sqm_ocr": 99.8, - "price": 3250.0, - "price_per_sqm": 32.565130260521045, - "url": "https://www.rightmove.co.uk/properties/141919505", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "FMX PROPERTIES LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264155/141919505/264155_Yeoman3bedlet_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.964760", - "last_seen": "2025-06-01T17:39:04.479871", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01091, - 51.52076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.7, - "qmprice": 26.93, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/141937004", - "info": { - "identifier": 141937004, - "sqm_ocr": 81.7, - "price": 2200.0, - "price_per_sqm": 26.927784577723376, - "url": "https://www.rightmove.co.uk/properties/141937004", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Drury & Cole", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46667/141937004/46667_1661_DRUC_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.537302", - "last_seen": "2025-06-01T22:06:01.666147", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219995, - 51.38271 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.0, - "qmprice": 20.95, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/141947630", - "info": { - "identifier": 141947630, - "sqm_ocr": 105.0, - "price": 2200.0, - "price_per_sqm": 20.952380952380953, - "url": "https://www.rightmove.co.uk/properties/141947630", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Carter & Willow", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/60k/59646/141947630/59646_CW0579A_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:43.983649", - "last_seen": "2025-06-01T22:05:38.187845", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.13682, - 51.53885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.2, - "qmprice": 41.58, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/142020893", - "info": { - "identifier": 142020893, - "sqm_ocr": 91.2, - "price": 3792.0, - "price_per_sqm": 41.578947368421055, - "url": "https://www.rightmove.co.uk/properties/142020893", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/142020893/136148_2610778_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.778350", - "last_seen": "2025-06-01T22:05:59.364401", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1252, - 51.48254 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/142022570", - "info": { - "identifier": 142022570, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/142022570", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102560/142022570/102560_0494_HRT049405215_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.220989", - "last_seen": "2025-06-01T22:06:02.846060", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06061, - 51.54687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/142094660", - "info": { - "identifier": 142094660, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/142094660", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233849/142094660/233849_2673315_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.277365", - "last_seen": "2025-06-01T22:05:52.272068", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.291604, - 51.492043 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2225.0, - "url": "https://www.rightmove.co.uk/properties/142193429", - "info": { - "identifier": 142193429, - "sqm_ocr": null, - "price": 2225.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/142193429", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/142193429/32793_37852_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.191171", - "last_seen": "2025-06-01T22:05:49.074077", - "price": 2225.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22591, - 51.50389 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/142212845", - "info": { - "identifier": 142212845, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/142212845", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "MY LONDON HOME", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6464/142212845/6464_WLT220094_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.013114", - "last_seen": "2025-06-01T22:05:42.859404", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136579, - 51.526394 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/142295519", - "info": { - "identifier": 142295519, - "sqm_ocr": null, - "price": 3650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/142295519", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "City & Urban", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15508/142295519/15508_2bedgloucestersw7_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.186599", - "last_seen": "2025-06-01T22:05:57.919029", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18294, - 51.49739 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.15, - "qmprice": 37.23, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/142359671", - "info": { - "identifier": 142359671, - "sqm_ocr": 79.15, - "price": 2947.0, - "price_per_sqm": 37.23310170562223, - "url": "https://www.rightmove.co.uk/properties/142359671", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/142359671/136139_2430034_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.884462", - "last_seen": "2025-06-01T22:06:02.692295", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005532, - 51.5118 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/142375643", - "info": { - "identifier": 142375643, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/142375643", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 235, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247496/142375643/247496_P366435_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.172649", - "last_seen": "2025-06-01T22:06:05.722568", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08159, - 51.47851 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/142427474", - "info": { - "identifier": 142427474, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/142427474", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Statuum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237224/142427474/237224_564_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.774109", - "last_seen": "2025-06-01T22:06:08.835736", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.047587, - 51.514915 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/142517243", - "info": { - "identifier": 142517243, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/142517243", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fresh", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266684/142517243/266684_CollegeRd_3Bed_113_IMG_06_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.688018", - "last_seen": "2025-06-01T22:05:43.642298", - "price": 2167.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09363, - 51.37341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2188.0, - "url": "https://www.rightmove.co.uk/properties/142738751", - "info": { - "identifier": 142738751, - "sqm_ocr": null, - "price": 2188.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/142738751", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fresh", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266684/142738751/266684_CollegeRd_3Bed_17_IMG_05_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.556956", - "last_seen": "2025-06-01T22:05:43.660724", - "price": 2188.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09363, - 51.37357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/142907681", - "info": { - "identifier": 142907681, - "sqm_ocr": null, - "price": 2535.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/142907681", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/142907681/17888_31609_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.944631", - "last_seen": "2025-06-01T22:06:16.065950", - "price": 2535 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1765, - 51.52525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.8, - "qmprice": 32.93, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/142992917", - "info": { - "identifier": 142992917, - "sqm_ocr": 66.8, - "price": 2200.0, - "price_per_sqm": 32.93413173652695, - "url": "https://www.rightmove.co.uk/properties/142992917", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Curchods Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13985/142992917/13985_CKT230135_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.780826", - "last_seen": "2025-06-01T22:05:58.712580", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277825, - 51.405216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.8, - "qmprice": 33.77, - "rooms": 2, - "total_price": 2425.0, - "url": "https://www.rightmove.co.uk/properties/143019707", - "info": { - "identifier": 143019707, - "sqm_ocr": 71.8, - "price": 2425.0, - "price_per_sqm": 33.77437325905293, - "url": "https://www.rightmove.co.uk/properties/143019707", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Woodfell", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256541/143019707/256541_ARU-679333_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.435463", - "last_seen": "2025-06-01T22:05:39.627072", - "price": 2425.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206545, - 51.605434 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/143217968", - "info": { - "identifier": 143217968, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/143217968", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "MX Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250115/143217968/250115_AdrianMews_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.550386", - "last_seen": "2025-06-01T22:05:58.201352", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18919, - 51.48507 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.8, - "qmprice": 40.43, - "rooms": 2, - "total_price": 2903.0, - "url": "https://www.rightmove.co.uk/properties/143274743", - "info": { - "identifier": 143274743, - "sqm_ocr": 71.8, - "price": 2903.0, - "price_per_sqm": 40.431754874651816, - "url": "https://www.rightmove.co.uk/properties/143274743", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 105, - "status": null, - "last_seen": 0, - "agency": "Farrar & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128314/143274743/128314_10818_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.970511", - "last_seen": "2025-06-01T22:05:57.910119", - "price": 2903 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18722, - 51.48747 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.4, - "qmprice": 33.2, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/143347004", - "info": { - "identifier": 143347004, - "sqm_ocr": 102.4, - "price": 3400.0, - "price_per_sqm": 33.203125, - "url": "https://www.rightmove.co.uk/properties/143347004", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Letio Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260273/143347004/260273_L20_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.523814", - "last_seen": "2025-06-01T22:06:01.566359", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.152468, - 51.419758 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/143414009", - "info": { - "identifier": 143414009, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/143414009", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Sho International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246449/143414009/246449_FulhamRoad2b1b3rdFloor_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.227679", - "last_seen": "2025-06-01T22:05:57.514971", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17134, - 51.49199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.7, - "qmprice": 46.59, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/143467511", - "info": { - "identifier": 143467511, - "sqm_ocr": 83.7, - "price": 3900.0, - "price_per_sqm": 46.59498207885304, - "url": "https://www.rightmove.co.uk/properties/143467511", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 80, - "status": null, - "last_seen": 0, - "agency": "Willtons Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82281/143467511/82281_Mk6116C_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.491830", - "last_seen": "2025-06-01T22:05:58.270142", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1964, - 51.50317 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 39.81, - "rooms": 3, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/143516315", - "info": { - "identifier": 143516315, - "sqm_ocr": 59.0, - "price": 2349.0, - "price_per_sqm": 39.813559322033896, - "url": "https://www.rightmove.co.uk/properties/143516315", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 185, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90035/143516315/90035_32813747_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.573731", - "last_seen": "2025-06-01T22:05:40.265426", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254118, - 51.54301 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2835.0, - "url": "https://www.rightmove.co.uk/properties/143663051", - "info": { - "identifier": 143663051, - "sqm_ocr": null, - "price": 2835.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/143663051", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94232/143663051/94232_P273877_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.488279", - "last_seen": "2025-06-01T22:06:04.477794", - "price": 2835.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32073, - 51.42894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/143750705", - "info": { - "identifier": 143750705, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/143750705", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Sho International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246449/143750705/246449_PelhamCourt2b2b2ndFloor_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.167701", - "last_seen": "2025-06-01T22:05:58.148981", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1709, - 51.49216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/143807906", - "info": { - "identifier": 143807906, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/143807906", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Anthony James", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53504/143807906/53504_12259867_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.275991", - "last_seen": "2025-06-01T22:05:39.901577", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.121501, - 51.465122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/143818292", - "info": { - "identifier": 143818292, - "sqm_ocr": null, - "price": 3597.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/143818292", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Nova Haus London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240566/143818292/240566_NOV220103_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.979192", - "last_seen": "2025-06-01T22:05:42.372613", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189354, - 51.5537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/144081773", - "info": { - "identifier": 144081773, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/144081773", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50457/144081773/50457_0602_FJL060201289_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.131632, - 51.47854 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.6, - "qmprice": 39.24, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/144132548", - "info": { - "identifier": 144132548, - "sqm_ocr": 101.6, - "price": 3987.0, - "price_per_sqm": 39.24212598425197, - "url": "https://www.rightmove.co.uk/properties/144132548", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/144132548/169658_366104_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.357486", - "last_seen": "2025-06-01T22:06:08.800138", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017683, - 51.49823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/144216887", - "info": { - "identifier": 144216887, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/144216887", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Sho International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246449/144216887/246449_FulhamRoad2b1bFloor3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.401636", - "last_seen": "2025-06-01T22:05:57.547916", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17134, - 51.49199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/144250493", - "info": { - "identifier": 144250493, - "sqm_ocr": null, - "price": 2747.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/144250493", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167687/144250493/167687_2656800_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.299066", - "last_seen": "2025-06-01T22:05:44.282283", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26166, - 51.52223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/144281480", - "info": { - "identifier": 144281480, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/144281480", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Freehold", - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Oryx Services UK Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.11721, - 51.58897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 42.86, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/144440543", - "info": { - "identifier": 144440543, - "sqm_ocr": 77.0, - "price": 3300.0, - "price_per_sqm": 42.857142857142854, - "url": "https://www.rightmove.co.uk/properties/144440543", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Shared", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265295/144440543/265295_CamdenFlat42_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.135411", - "last_seen": "2025-06-01T22:05:42.053503", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14024, - 51.54114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/144445976", - "info": { - "identifier": 144445976, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/144445976", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Madison Fox", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266474/144445976/266474_STF142523_L_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.672483", - "last_seen": "2025-06-01T22:06:12.040957", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039829, - 51.5942 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 42.86, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/144462359", - "info": { - "identifier": 144462359, - "sqm_ocr": 63.0, - "price": 2700.0, - "price_per_sqm": 42.857142857142854, - "url": "https://www.rightmove.co.uk/properties/144462359", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dimension Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87953/144462359/87953_1898_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.470512", - "last_seen": "2025-06-01T22:05:47.820521", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061296, - 51.5477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.8, - "qmprice": 49.44, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/144506915", - "info": { - "identifier": 144506915, - "sqm_ocr": 70.8, - "price": 3500.0, - "price_per_sqm": 49.43502824858757, - "url": "https://www.rightmove.co.uk/properties/144506915", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Wapping", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32766/144506915/32766_TEKACCSWPSS080224_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:11.545427", - "last_seen": "2025-06-01T22:06:11.545427", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07281, - 51.51595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/144605945", - "info": { - "identifier": 144605945, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/144605945", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Pure Realty", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106120/144605945/106120_22PF_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.687046", - "last_seen": "2025-06-01T22:05:48.468065", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22357, - 51.48245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.24, - "qmprice": 44.77, - "rooms": 2, - "total_price": 3727.0, - "url": "https://www.rightmove.co.uk/properties/144657821", - "info": { - "identifier": 144657821, - "sqm_ocr": 83.24, - "price": 3727.0, - "price_per_sqm": 44.774147044690054, - "url": "https://www.rightmove.co.uk/properties/144657821", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Goldschmidt & Howland", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73965/144657821/73965_2643861_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.928818", - "last_seen": "2025-06-01T22:06:14.418178", - "price": 3726 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167956, - 51.529533 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 36.5, - "qmprice": 67.12, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/144938468", - "info": { - "identifier": 144938468, - "sqm_ocr": 36.5, - "price": 2450.0, - "price_per_sqm": 67.12328767123287, - "url": "https://www.rightmove.co.uk/properties/144938468", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CKB Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/187k/186113/144938468/186113_CKBE_005007_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.294736", - "last_seen": "2025-06-01T22:05:41.672746", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.058112, - 51.36887 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.83, - "qmprice": 39.73, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/145053053", - "info": { - "identifier": 145053053, - "sqm_ocr": 62.83, - "price": 2496.0, - "price_per_sqm": 39.72624542416043, - "url": "https://www.rightmove.co.uk/properties/145053053", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3355/145053053/3355_32911453_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.061905", - "last_seen": "2025-06-01T22:05:53.089600", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120707, - 51.560574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/145062833", - "info": { - "identifier": 145062833, - "sqm_ocr": null, - "price": 3878.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/145062833", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Land Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3198/145062833/3198_6233_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.644136", - "last_seen": "2025-06-01T22:06:09.605354", - "price": 3878 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027818, - 51.507214 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.44, - "qmprice": 58.05, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/145103369", - "info": { - "identifier": 145103369, - "sqm_ocr": 63.44, - "price": 3683.0, - "price_per_sqm": 58.05485498108449, - "url": "https://www.rightmove.co.uk/properties/145103369", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90830/145103369/90830_SJD110544_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.926928", - "last_seen": "2025-06-01T22:06:15.440899", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177018, - 51.5331 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 41.13, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/145111238", - "info": { - "identifier": 145111238, - "sqm_ocr": 62.0, - "price": 2550.0, - "price_per_sqm": 41.12903225806452, - "url": "https://www.rightmove.co.uk/properties/145111238", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33101/145111238/33101_SHE230123_L_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.710016", - "last_seen": "2025-06-01T22:05:49.228725", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223109, - 51.50507 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/145114526", - "info": { - "identifier": 145114526, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/145114526", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Andre Joseph Estates Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74973/145114526/74973_546926_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.495496", - "last_seen": "2025-06-01T22:05:59.774739", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126566, - 51.424923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2232.0, - "url": "https://www.rightmove.co.uk/properties/145154192", - "info": { - "identifier": 145154192, - "sqm_ocr": null, - "price": 2232.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/145154192", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fresh", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266684/145154192/266684_ThreeBed_29_IMG_03_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.869797", - "last_seen": "2025-06-01T22:05:43.744434", - "price": 2232.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09363, - 51.37341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.45, - "qmprice": 34.13, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/145257035", - "info": { - "identifier": 145257035, - "sqm_ocr": 61.45, - "price": 2097.0, - "price_per_sqm": 34.125305126118796, - "url": "https://www.rightmove.co.uk/properties/145257035", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/145257035/119137_FlatACamberwellRd_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.982683", - "last_seen": "2025-06-01T22:06:06.205892", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09406, - 51.4833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/145270448", - "info": { - "identifier": 145270448, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/145270448", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hoopers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10007/145270448/10007_27341864_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.711635", - "last_seen": "2025-06-01T22:05:40.671872", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.236383, - 51.5674 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.84, - "qmprice": 35.69, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/145325459", - "info": { - "identifier": 145325459, - "sqm_ocr": 72.84, - "price": 2600.0, - "price_per_sqm": 35.694673256452496, - "url": "https://www.rightmove.co.uk/properties/145325459", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/145325459/163859_2388214_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.613149", - "last_seen": "2025-06-01T22:06:03.455169", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02837, - 51.49968 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/145431932", - "info": { - "identifier": 145431932, - "sqm_ocr": null, - "price": 2708.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/145431932", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/145431932/136139_2330013_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.107719", - "last_seen": "2025-06-01T22:06:11.176684", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.004571, - 51.51163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.92, - "qmprice": 40.28, - "rooms": 2, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/145812179", - "info": { - "identifier": 145812179, - "sqm_ocr": 76.92, - "price": 3098.0, - "price_per_sqm": 40.27561102444098, - "url": "https://www.rightmove.co.uk/properties/145812179", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/145812179/163859_2665286_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.453511", - "last_seen": "2025-06-01T22:06:03.021796", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02387, - 51.49894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.89, - "qmprice": 31.95, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/145914728", - "info": { - "identifier": 145914728, - "sqm_ocr": 93.89, - "price": 3000.0, - "price_per_sqm": 31.952284588348068, - "url": "https://www.rightmove.co.uk/properties/145914728", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Such Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238883/145914728/238883_270927_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.173821", - "last_seen": "2025-06-01T22:05:44.737773", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29032, - 51.51519 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/145945691", - "info": { - "identifier": 145945691, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/145945691", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Reach London Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271439/145945691/271439_412Siena_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.190472", - "last_seen": "2025-06-01T22:05:53.049933", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10005, - 51.53036 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.5, - "qmprice": 44.65, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/145950377", - "info": { - "identifier": 145950377, - "sqm_ocr": 79.5, - "price": 3550.0, - "price_per_sqm": 44.65408805031446, - "url": "https://www.rightmove.co.uk/properties/145950377", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Freehold", - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Reach London Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271439/145950377/271439_35Emery_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.904528", - "last_seen": "2025-06-01T20:19:57.859965", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0672, - 51.50875 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/145987160", - "info": { - "identifier": 145987160, - "sqm_ocr": null, - "price": 2899.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/145987160", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/145987160/17882_35697_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.468636", - "last_seen": "2025-06-01T22:05:47.238905", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07243, - 51.55569 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.1, - "qmprice": 35.02, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/146058884", - "info": { - "identifier": 146058884, - "sqm_ocr": 67.1, - "price": 2350.0, - "price_per_sqm": 35.02235469448585, - "url": "https://www.rightmove.co.uk/properties/146058884", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74966/146058884/74966_BOW180039_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.869307", - "last_seen": "2025-06-01T22:06:09.153106", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020183, - 51.52613 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.4, - "qmprice": 51.17, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/146192705", - "info": { - "identifier": 146192705, - "sqm_ocr": 68.4, - "price": 3500.0, - "price_per_sqm": 51.16959064327485, - "url": "https://www.rightmove.co.uk/properties/146192705", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46013/146192705/46013_KGL210024_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.724212", - "last_seen": "2025-06-01T22:05:53.019094", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124722, - 51.56862 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2253.0, - "url": "https://www.rightmove.co.uk/properties/146195744", - "info": { - "identifier": 146195744, - "sqm_ocr": null, - "price": 2253.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146195744", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fresh", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266684/146195744/266684_3bed2132_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.825891", - "last_seen": "2025-06-01T22:05:43.450749", - "price": 2253.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09363, - 51.37341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3423.0, - "url": "https://www.rightmove.co.uk/properties/146204792", - "info": { - "identifier": 146204792, - "sqm_ocr": null, - "price": 3423.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146204792", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/146204792/17882_15432_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.898726", - "last_seen": "2025-06-01T22:05:54.371920", - "price": 3423 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12809, - 51.54913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/146339420", - "info": { - "identifier": 146339420, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146339420", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/146339420/136139_2333002_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.698740", - "last_seen": "2025-06-01T22:06:03.308783", - "price": 2795 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.006011, - 51.51161 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 34.25, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/146394356", - "info": { - "identifier": 146394356, - "sqm_ocr": 73.0, - "price": 2500.0, - "price_per_sqm": 34.24657534246575, - "url": "https://www.rightmove.co.uk/properties/146394356", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CKB Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/187k/186113/146394356/186113_CKBE_003597_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.341242", - "last_seen": "2025-06-01T22:06:05.061686", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058341, - 51.465168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/146399549", - "info": { - "identifier": 146399549, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146399549", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/146399549/194222_HRP240186_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.361965", - "last_seen": "2025-06-01T22:06:01.361349", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232722, - 51.40597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2903.0, - "url": "https://www.rightmove.co.uk/properties/146427419", - "info": { - "identifier": 146427419, - "sqm_ocr": null, - "price": 2903.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146427419", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/146427419/49784_38755_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.379889", - "last_seen": "2025-06-01T22:06:05.559396", - "price": 2903 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07268, - 51.48816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/146434943", - "info": { - "identifier": 146434943, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146434943", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Bryants Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21740/146434943/21740_3023_BRYT_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.849925", - "last_seen": "2025-06-01T22:05:56.644284", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.041701, - 51.553284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 151.0, - "qmprice": 24.83, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/146525630", - "info": { - "identifier": 146525630, - "sqm_ocr": 151.0, - "price": 3750.0, - "price_per_sqm": 24.834437086092716, - "url": "https://www.rightmove.co.uk/properties/146525630", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "John Thoma Bespoke Estate Agency", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/122k/121954/146525630/121954_JT001058_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.996088", - "last_seen": "2025-06-01T22:06:04.080185", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.08579, - 51.58968 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.73, - "qmprice": 32.33, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/146538722", - "info": { - "identifier": 146538722, - "sqm_ocr": 123.73, - "price": 4000.0, - "price_per_sqm": 32.32845712438374, - "url": "https://www.rightmove.co.uk/properties/146538722", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45437/146538722/45437_HHI230107_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.480432", - "last_seen": "2025-06-01T22:05:59.879182", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121455, - 51.456966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/146558555", - "info": { - "identifier": 146558555, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146558555", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Glen Hall", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101969/146558555/101969_1506_IMG_10_0001_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.569337", - "last_seen": "2025-06-01T22:05:38.980722", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143542, - 51.61922 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.5, - "qmprice": 38.84, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/146618186", - "info": { - "identifier": 146618186, - "sqm_ocr": 60.5, - "price": 2350.0, - "price_per_sqm": 38.84297520661157, - "url": "https://www.rightmove.co.uk/properties/146618186", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hendon Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170990/146618186/170990_HE_FLSJM57166_IMG_04_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.043607", - "last_seen": "2025-06-01T22:06:15.003825", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13883, - 51.49085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/146668199", - "info": { - "identifier": 146668199, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146668199", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Heimstaden UK Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266630/146668199/266630_ARU-707183_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.399630", - "last_seen": "2025-06-01T22:05:39.669047", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175348, - 51.649395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/146689049", - "info": { - "identifier": 146689049, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146689049", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Streets Ahead", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/24k/23060/146689049/23060_SNW240100_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.002088", - "last_seen": "2025-06-01T22:06:00.783735", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038331, - 51.46466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/146785814", - "info": { - "identifier": 146785814, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146785814", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Reach London Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271439/146785814/271439_402Iris_IMG_31_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.976849", - "last_seen": "2025-06-01T22:06:10.787830", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00335, - 51.51569 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.7, - "qmprice": 24.78, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/146825513", - "info": { - "identifier": 146825513, - "sqm_ocr": 80.7, - "price": 2000.0, - "price_per_sqm": 24.783147459727385, - "url": "https://www.rightmove.co.uk/properties/146825513", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Neighbour Estate Agent", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227705/146825513/227705_NIVEN2_000895_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.881455", - "last_seen": "2025-06-01T22:05:43.651756", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112599, - 51.371166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/146840948", - "info": { - "identifier": 146840948, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146840948", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Letio Ltd", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260273/146840948/260273_L44_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.340831", - "last_seen": "2025-06-01T22:05:59.928177", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10877, - 51.47401 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.53, - "qmprice": 41.21, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/146841989", - "info": { - "identifier": 146841989, - "sqm_ocr": 48.53, - "price": 2000.0, - "price_per_sqm": 41.211621677313005, - "url": "https://www.rightmove.co.uk/properties/146841989", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58897/146841989/58897_TOO200263_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.978010", - "last_seen": "2025-06-01T22:06:14.246176", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.152584, - 51.43012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/146867207", - "info": { - "identifier": 146867207, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146867207", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/146867207/32793_36003_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.514514", - "last_seen": "2025-06-01T22:05:42.336991", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17544, - 51.54448 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2360.0, - "url": "https://www.rightmove.co.uk/properties/146875112", - "info": { - "identifier": 146875112, - "sqm_ocr": null, - "price": 2360.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146875112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202517/146875112/202517_58et_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.354851", - "last_seen": "2025-06-01T22:06:07.868190", - "price": 2360.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18952, - 51.36035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/146900474", - "info": { - "identifier": 146900474, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146900474", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "NMC Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272303/146900474/272303_Paterson_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.849516", - "last_seen": "2025-06-01T22:06:01.221344", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222, - 51.41184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.4, - "qmprice": 46.68, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/146921270", - "info": { - "identifier": 146921270, - "sqm_ocr": 81.4, - "price": 3800.0, - "price_per_sqm": 46.68304668304668, - "url": "https://www.rightmove.co.uk/properties/146921270", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43817/146921270/43817_P278012_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.439387", - "last_seen": "2025-06-01T22:06:13.958626", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21835, - 51.43903 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/146958632", - "info": { - "identifier": 146958632, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146958632", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194231/146958632/194231_LWI140412_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.312650", - "last_seen": "2025-06-01T22:06:01.357493", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19364, - 51.41605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/146967413", - "info": { - "identifier": 146967413, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/146967413", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Poplar HARCA", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272039/146967413/272039_WH914_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.033779", - "last_seen": "2025-06-01T22:06:09.016834", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0016, - 51.51278 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.8, - "qmprice": 29.94, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/147032414", - "info": { - "identifier": 147032414, - "sqm_ocr": 66.8, - "price": 2000.0, - "price_per_sqm": 29.940119760479043, - "url": "https://www.rightmove.co.uk/properties/147032414", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/147032414/12070_27555849_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.943405", - "last_seen": "2025-06-01T22:06:00.814954", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.007926, - 51.45677 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.27, - "qmprice": 55.5, - "rooms": 2, - "total_price": 3789.0, - "url": "https://www.rightmove.co.uk/properties/147050375", - "info": { - "identifier": 147050375, - "sqm_ocr": 68.27, - "price": 3789.0, - "price_per_sqm": 55.50021971583419, - "url": "https://www.rightmove.co.uk/properties/147050375", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Bamboo Living Management Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272480/147050375/272480_Arena2009_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.820682", - "last_seen": "2025-06-01T22:06:08.765411", - "price": 3789.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01566, - 51.49764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/147064388", - "info": { - "identifier": 147064388, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147064388", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Willtons Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82281/147064388/82281_CM682G_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.806135", - "last_seen": "2025-06-01T22:05:49.271116", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22799, - 51.5023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/147067478", - "info": { - "identifier": 147067478, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147067478", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Property Inc", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191252/147067478/191252_PRI240086_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.659252", - "last_seen": "2025-06-01T22:05:49.761794", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.059386, - 51.59944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/147071951", - "info": { - "identifier": 147071951, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147071951", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Lawlors Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19332/147071951/19332_Rai18_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.264800", - "last_seen": "2025-06-01T22:05:51.024177", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.19153, - 51.5248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.57, - "qmprice": 84.09, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/147134711", - "info": { - "identifier": 147134711, - "sqm_ocr": 47.57, - "price": 4000.0, - "price_per_sqm": 84.0866092074837, - "url": "https://www.rightmove.co.uk/properties/147134711", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Short Lets", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235637/147134711/235637_JDW-SL-0002567_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.511382", - "last_seen": "2025-06-01T22:05:57.390161", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196304, - 51.49341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.5, - "qmprice": 49.53, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/147137462", - "info": { - "identifier": 147137462, - "sqm_ocr": 53.5, - "price": 2650.0, - "price_per_sqm": 49.532710280373834, - "url": "https://www.rightmove.co.uk/properties/147137462", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Allen Goldstein", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112351/147137462/112351_RL1515_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.484201", - "last_seen": "2025-06-01T22:05:42.761049", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121268, - 51.528336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.8, - "qmprice": 32.24, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/147173102", - "info": { - "identifier": 147173102, - "sqm_ocr": 100.8, - "price": 3250.0, - "price_per_sqm": 32.242063492063494, - "url": "https://www.rightmove.co.uk/properties/147173102", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Livco", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271403/147173102/271403_LLOJ44_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.669263", - "last_seen": "2025-06-01T22:06:10.776627", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02688, - 51.51483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/147179960", - "info": { - "identifier": 147179960, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147179960", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Bamboo Living Management Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272480/147179960/272480_BalfeStr_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.667356", - "last_seen": "2025-06-01T22:05:53.169425", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12111, - 51.53301 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/147181481", - "info": { - "identifier": 147181481, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147181481", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Una Living", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87553/147181481/87553_101435001723_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.706516", - "last_seen": "2025-06-01T22:05:41.167187", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28255, - 51.53018 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.2, - "qmprice": 33.59, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/147200243", - "info": { - "identifier": 147200243, - "sqm_ocr": 104.2, - "price": 3500.0, - "price_per_sqm": 33.589251439539346, - "url": "https://www.rightmove.co.uk/properties/147200243", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Godfrey And Barr", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36729/147200243/36729_4896_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.389000", - "last_seen": "2025-06-01T22:05:39.854640", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.236007, - 51.62209 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.67, - "qmprice": 39.67, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/147211370", - "info": { - "identifier": 147211370, - "sqm_ocr": 80.67, - "price": 3200.0, - "price_per_sqm": 39.6677823230445, - "url": "https://www.rightmove.co.uk/properties/147211370", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77078/147211370/77078_0469_FJL046901073_IMG_22_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.240790", - "last_seen": "2025-06-01T22:05:47.875501", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.054279, - 51.545258 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/147223724", - "info": { - "identifier": 147223724, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147223724", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Shaws Kensington", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41814/147223724/41814_SHW_SHW_LFSYCL_354_508323062_IMG_00_0001_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.649905", - "last_seen": "2025-06-01T22:05:48.944825", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210559, - 51.488823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/147225536", - "info": { - "identifier": 147225536, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147225536", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/147225536/17882_38264_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.490522", - "last_seen": "2025-06-01T22:05:53.842482", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12454, - 51.54772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.0, - "qmprice": 25.89, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/147229370", - "info": { - "identifier": 147229370, - "sqm_ocr": 112.0, - "price": 2900.0, - "price_per_sqm": 25.892857142857142, - "url": "https://www.rightmove.co.uk/properties/147229370", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "Let agreed", - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33101/147229370/33101_SHE080616_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.231744, - 51.503124 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/147255533", - "info": { - "identifier": 147255533, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147255533", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Peter Woods (London) Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18219/147255533/18219_FLM00088E_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.493518", - "last_seen": "2025-06-01T22:06:01.726076", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219018, - 51.42048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 37.7, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/147300197", - "info": { - "identifier": 147300197, - "sqm_ocr": 61.0, - "price": 2300.0, - "price_per_sqm": 37.704918032786885, - "url": "https://www.rightmove.co.uk/properties/147300197", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/147300197/77197_VCT_VCT_LFSYCL_465_633182255_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.293789", - "last_seen": "2025-06-01T22:05:48.019014", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088694, - 51.534134 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 43.12, - "rooms": 3, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/147364580", - "info": { - "identifier": 147364580, - "sqm_ocr": 80.0, - "price": 3450.0, - "price_per_sqm": 43.125, - "url": "https://www.rightmove.co.uk/properties/147364580", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/147364580/77197_VCT_VCT_LFSYCL_465_633132890_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.411764", - "last_seen": "2025-06-01T22:05:54.074601", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089843, - 51.52668 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/147406835", - "info": { - "identifier": 147406835, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147406835", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/147406835/194222_HRP240269_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.321491", - "last_seen": "2025-06-01T22:06:01.517509", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201478, - 51.414787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.84, - "qmprice": 42.4, - "rooms": 2, - "total_price": 3046.0, - "url": "https://www.rightmove.co.uk/properties/147502124", - "info": { - "identifier": 147502124, - "sqm_ocr": 71.84, - "price": 3046.0, - "price_per_sqm": 42.39977728285078, - "url": "https://www.rightmove.co.uk/properties/147502124", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/147502124/163859_2672600_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.645983", - "last_seen": "2025-06-01T22:06:03.101602", - "price": 3046 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02576, - 51.49927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/147509924", - "info": { - "identifier": 147509924, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147509924", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "View Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43275/147509924/43275_11108122_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.394746", - "last_seen": "2025-06-01T22:06:05.361288", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089854, - 51.5012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/147542546", - "info": { - "identifier": 147542546, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147542546", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/147542546/17882_39253_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.519827", - "last_seen": "2025-06-01T22:05:53.167013", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12758, - 51.5475 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/147588179", - "info": { - "identifier": 147588179, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147588179", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "iad", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262565/147588179/262565_RX380259_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.657629", - "last_seen": "2025-06-01T22:05:40.723582", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283835, - 51.540466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3599.0, - "url": "https://www.rightmove.co.uk/properties/147604049", - "info": { - "identifier": 147604049, - "sqm_ocr": null, - "price": 3599.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147604049", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Bamboo Living Management Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272480/147604049/272480_3001_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.238535", - "last_seen": "2025-06-01T22:06:09.120833", - "price": 3599.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01744, - 51.49974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/147605684", - "info": { - "identifier": 147605684, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147605684", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Royal Arsenal Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13540/147605684/13540_102719000173_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.198273", - "last_seen": "2025-06-01T22:05:46.193485", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07499, - 51.49508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/147703718", - "info": { - "identifier": 147703718, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147703718", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ultra Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61592/147703718/61592_ULT2001018_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.395986", - "last_seen": "2025-06-01T22:05:58.241668", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170202, - 51.492527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/147709736", - "info": { - "identifier": 147709736, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147709736", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "City and Town Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80802/147709736/80802_4bedroom-E14_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.502402", - "last_seen": "2025-06-01T22:06:09.328509", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02201, - 51.49073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/147713159", - "info": { - "identifier": 147713159, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147713159", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brockenhurst Property Specialists", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58355/147713159/58355_RL0004_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.167089", - "last_seen": "2025-06-01T22:05:50.775444", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.334057, - 51.58688 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2210.0, - "url": "https://www.rightmove.co.uk/properties/147733721", - "info": { - "identifier": 147733721, - "sqm_ocr": null, - "price": 2210.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147733721", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fresh", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266684/147733721/266684_3B22453_IMG_01_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.864940", - "last_seen": "2025-06-01T22:05:43.789291", - "price": 2210.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09363, - 51.37341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/147744299", - "info": { - "identifier": 147744299, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147744299", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/147744299/136139_2324065_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.760606", - "last_seen": "2025-06-01T22:06:09.785730", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.004571, - 51.51163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.39, - "qmprice": 39.15, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/147787484", - "info": { - "identifier": 147787484, - "sqm_ocr": 89.39, - "price": 3500.0, - "price_per_sqm": 39.15426781519186, - "url": "https://www.rightmove.co.uk/properties/147787484", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/147787484/77197_VCT_VCT_LFSYCL_465_633146276_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.052311, - 51.51599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/147813128", - "info": { - "identifier": 147813128, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147813128", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/147813128/209042_EEF-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.350369", - "last_seen": "2025-06-01T22:05:48.832289", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211645, - 51.472538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 55.3, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/147816722", - "info": { - "identifier": 147816722, - "sqm_ocr": 66.0, - "price": 3650.0, - "price_per_sqm": 55.303030303030305, - "url": "https://www.rightmove.co.uk/properties/147816722", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "FMX PROPERTIES LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264155/147816722/264155_58ValenciaTower2bedLetMayNew_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.406333", - "last_seen": "2025-06-01T22:05:53.534091", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09491, - 51.52863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/147889739", - "info": { - "identifier": 147889739, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147889739", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/147889739/181787_181787_168_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.403307", - "last_seen": "2025-06-01T22:05:59.851916", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11165, - 51.48987 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/147924755", - "info": { - "identifier": 147924755, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147924755", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94448/147924755/94448_EAL050258_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.447520", - "last_seen": "2025-06-01T22:05:44.929684", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283538, - 51.512627 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/147942380", - "info": { - "identifier": 147942380, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147942380", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 347, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219908/147942380/219908_3552_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.730859", - "last_seen": "2025-06-01T22:06:15.074371", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20148, - 51.53148 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3195.0, - "url": "https://www.rightmove.co.uk/properties/147965414", - "info": { - "identifier": 147965414, - "sqm_ocr": null, - "price": 3195.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147965414", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "London Homes Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162716/147965414/162716_3032_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.822724", - "last_seen": "2025-06-01T22:05:45.199911", - "price": 3195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.313941, - 51.51029 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 40.0, - "qmprice": 55.0, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/147970421", - "info": { - "identifier": 147970421, - "sqm_ocr": 40.0, - "price": 2200.0, - "price_per_sqm": 55.0, - "url": "https://www.rightmove.co.uk/properties/147970421", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Wren & co Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81351/147970421/81351_wren_311554823_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.788696", - "last_seen": "2025-06-01T22:06:15.584152", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193759, - 51.523487 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/147989438", - "info": { - "identifier": 147989438, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/147989438", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/147989438/176261_102708034893_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.571944", - "last_seen": "2025-06-01T22:05:49.736461", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10821, - 51.58676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 38.67, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/148015454", - "info": { - "identifier": 148015454, - "sqm_ocr": 75.0, - "price": 2900.0, - "price_per_sqm": 38.666666666666664, - "url": "https://www.rightmove.co.uk/properties/148015454", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Mayfords Estate Agent", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226394/148015454/226394_201_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.379268", - "last_seen": "2025-06-01T22:05:38.751439", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208099, - 51.58544 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.69, - "qmprice": 46.36, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/148078346", - "info": { - "identifier": 148078346, - "sqm_ocr": 50.69, - "price": 2350.0, - "price_per_sqm": 46.36022884198067, - "url": "https://www.rightmove.co.uk/properties/148078346", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56712/148078346/56712_SHO220026_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.407772", - "last_seen": "2025-06-01T22:06:11.282027", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065857, - 51.514698 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/148110275", - "info": { - "identifier": 148110275, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148110275", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/148110275/238265_L64465_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.337188", - "last_seen": "2025-06-01T22:06:10.712344", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.50723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/148112174", - "info": { - "identifier": 148112174, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148112174", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/148112174/238265_L64473_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.811583", - "last_seen": "2025-06-01T22:06:10.459106", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.50723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/148113263", - "info": { - "identifier": 148113263, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148113263", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/148113263/238265_L64480_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.658538", - "last_seen": "2025-06-01T22:06:10.137954", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.50723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2210.0, - "url": "https://www.rightmove.co.uk/properties/148124660", - "info": { - "identifier": 148124660, - "sqm_ocr": null, - "price": 2210.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148124660", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fresh", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266684/148124660/266684_3b89_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.722695", - "last_seen": "2025-06-01T22:05:43.314395", - "price": 2210.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09363, - 51.37341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/148233467", - "info": { - "identifier": 148233467, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148233467", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "James Kei London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79893/148233467/79893_RL0019_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.101808", - "last_seen": "2025-06-01T22:05:57.148343", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.226441, - 51.580353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/148282574", - "info": { - "identifier": 148282574, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148282574", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/148282574/12070_27672908_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.109653", - "last_seen": "2025-06-01T22:06:00.329809", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.007926, - 51.45677 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.8, - "qmprice": 39.68, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/148324883", - "info": { - "identifier": 148324883, - "sqm_ocr": 100.8, - "price": 4000.0, - "price_per_sqm": 39.682539682539684, - "url": "https://www.rightmove.co.uk/properties/148324883", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/148324883/70038_3909_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.881744", - "last_seen": "2025-06-01T22:05:48.335787", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209398, - 51.474144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3499.0, - "url": "https://www.rightmove.co.uk/properties/148345424", - "info": { - "identifier": 148345424, - "sqm_ocr": null, - "price": 3499.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148345424", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Bamboo Living Management Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272480/148345424/272480_GambierA_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "07/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.529286", - "last_seen": "2025-06-01T22:05:53.641877", - "price": 3499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09263, - 51.52788 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.32, - "qmprice": 23.66, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/148351127", - "info": { - "identifier": 148351127, - "sqm_ocr": 118.32, - "price": 2800.0, - "price_per_sqm": 23.664638269100745, - "url": "https://www.rightmove.co.uk/properties/148351127", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Crown House Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235946/148351127/235946_953_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.428546", - "last_seen": "2025-06-01T22:05:38.681151", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143542, - 51.61922 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/148370714", - "info": { - "identifier": 148370714, - "sqm_ocr": null, - "price": 2947.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148370714", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/148370714/136139_2357610_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.136038", - "last_seen": "2025-06-01T22:06:09.287399", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005195, - 51.50614 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3025.0, - "url": "https://www.rightmove.co.uk/properties/148390325", - "info": { - "identifier": 148390325, - "sqm_ocr": null, - "price": 3025.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148390325", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Bamboo Living Management Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272480/148390325/272480_BarkstonGdnA_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "06/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.231515", - "last_seen": "2025-06-01T22:05:57.745856", - "price": 3025.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1915, - 51.4923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 158.0, - "qmprice": 16.46, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/148414907", - "info": { - "identifier": 148414907, - "sqm_ocr": 158.0, - "price": 2600.0, - "price_per_sqm": 16.455696202531644, - "url": "https://www.rightmove.co.uk/properties/148414907", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Langley Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86177/148414907/86177_909_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.342460", - "last_seen": "2025-06-01T22:05:41.709654", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037847, - 51.398323 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/148443425", - "info": { - "identifier": 148443425, - "sqm_ocr": null, - "price": 3987.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148443425", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 28, - "status": null, - "last_seen": 0, - "agency": "Pure Realty", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106120/148443425/106120_12PALACEW_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.944755", - "last_seen": "2025-06-01T22:05:57.301666", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22357, - 51.48245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.9, - "qmprice": 38.82, - "rooms": 2, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/148446269", - "info": { - "identifier": 148446269, - "sqm_ocr": 99.9, - "price": 3878.0, - "price_per_sqm": 38.81881881881882, - "url": "https://www.rightmove.co.uk/properties/148446269", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 185, - "status": null, - "last_seen": 0, - "agency": "Greenstone Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88567/148446269/88567_32608231_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.311597", - "last_seen": "2025-06-01T22:05:42.529746", - "price": 3878.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175429, - 51.54355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 37.5, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/148450538", - "info": { - "identifier": 148450538, - "sqm_ocr": 72.0, - "price": 2700.0, - "price_per_sqm": 37.5, - "url": "https://www.rightmove.co.uk/properties/148450538", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33101/148450538/33101_SHE240100_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.317774", - "last_seen": "2025-06-01T22:05:48.513998", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217509, - 51.50704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 27.5, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/148468202", - "info": { - "identifier": 148468202, - "sqm_ocr": 80.0, - "price": 2200.0, - "price_per_sqm": 27.5, - "url": "https://www.rightmove.co.uk/properties/148468202", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33101/148468202/33101_SHE080500_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.012262", - "last_seen": "2025-06-01T22:05:49.013582", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23432, - 51.507668 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 50.65, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/148478780", - "info": { - "identifier": 148478780, - "sqm_ocr": 77.0, - "price": 3900.0, - "price_per_sqm": 50.64935064935065, - "url": "https://www.rightmove.co.uk/properties/148478780", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/148478780/77197_VCT_VCT_LFSYCL_465_633155324_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "10/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.427914", - "last_seen": "2025-06-01T20:19:59.950204", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.048005, - 51.510857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.63, - "qmprice": 39.75, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/148525409", - "info": { - "identifier": 148525409, - "sqm_ocr": 61.63, - "price": 2450.0, - "price_per_sqm": 39.753366866785655, - "url": "https://www.rightmove.co.uk/properties/148525409", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269888/148525409/269888_NEW200573_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.078935", - "last_seen": "2025-06-01T22:06:00.659752", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038586, - 51.47802 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.54, - "qmprice": 44.43, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/148563860", - "info": { - "identifier": 148563860, - "sqm_ocr": 77.54, - "price": 3445.0, - "price_per_sqm": 44.42868197059582, - "url": "https://www.rightmove.co.uk/properties/148563860", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90830/148563860/90830_MDV240083_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.341434", - "last_seen": "2025-06-01T22:05:42.351101", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175689, - 51.539616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/148639451", - "info": { - "identifier": 148639451, - "sqm_ocr": null, - "price": 3402.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148639451", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 273, - "status": null, - "last_seen": 0, - "agency": "Myspace", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274817/148639451/274817_2551_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.535747", - "last_seen": "2025-06-01T22:05:43.266191", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098234, - 51.516903 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.7, - "qmprice": 39.5, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/148672886", - "info": { - "identifier": 148672886, - "sqm_ocr": 55.7, - "price": 2200.0, - "price_per_sqm": 39.49730700179533, - "url": "https://www.rightmove.co.uk/properties/148672886", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118042/148672886/118042_33138649_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.646618", - "last_seen": "2025-06-01T22:05:46.559895", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.022453, - 51.476006 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.2, - "qmprice": 56.7, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/148679228", - "info": { - "identifier": 148679228, - "sqm_ocr": 58.2, - "price": 3300.0, - "price_per_sqm": 56.70103092783505, - "url": "https://www.rightmove.co.uk/properties/148679228", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "LRS Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/274k/273656/148679228/273656_ARU-245435_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.256919", - "last_seen": "2025-06-01T22:05:58.358078", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195498, - 51.495655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/148727297", - "info": { - "identifier": 148727297, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148727297", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Leafy Estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274385/148727297/274385_ARU-731558_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.011205", - "last_seen": "2025-06-01T22:05:40.920904", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200535, - 51.54279 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 40.43, - "qmprice": 71.73, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/148734818", - "info": { - "identifier": 148734818, - "sqm_ocr": 40.43, - "price": 2900.0, - "price_per_sqm": 71.72891417264408, - "url": "https://www.rightmove.co.uk/properties/148734818", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/148734818/77197_VCT_VCT_LFSYCL_465_633163825_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "25/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.152613", - "last_seen": "2025-06-01T22:05:42.596878", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123522, - 51.526062 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/148775492", - "info": { - "identifier": 148775492, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148775492", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Cross & Prior", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/110k/109114/148775492/109114_13954603_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.337979", - "last_seen": "2025-06-01T22:06:01.351292", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192011, - 51.42077 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/148787144", - "info": { - "identifier": 148787144, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148787144", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/148787144/176261_102708018251_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.428641", - "last_seen": "2025-06-01T22:05:49.714536", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10942, - 51.58894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/148789622", - "info": { - "identifier": 148789622, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148789622", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chris Anthony Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/123k/122383/148789622/122383_256_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.087992", - "last_seen": "2025-06-01T22:05:45.876439", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068417, - 51.637833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.6, - "qmprice": 40.99, - "rooms": 2, - "total_price": 2730.0, - "url": "https://www.rightmove.co.uk/properties/148795148", - "info": { - "identifier": 148795148, - "sqm_ocr": 66.6, - "price": 2730.0, - "price_per_sqm": 40.990990990990994, - "url": "https://www.rightmove.co.uk/properties/148795148", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Bentley & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/205k/204560/148795148/204560_117_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.278888", - "last_seen": "2025-06-01T22:05:42.263288", - "price": 2730 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138947, - 51.542793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/148838951", - "info": { - "identifier": 148838951, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/148838951", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Crown House Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235946/148838951/235946_955_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.130319", - "last_seen": "2025-06-01T22:05:38.523569", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193745, - 51.5713 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.0, - "qmprice": 37.04, - "rooms": 3, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/148842695", - "info": { - "identifier": 148842695, - "sqm_ocr": 93.0, - "price": 3445.0, - "price_per_sqm": 37.043010752688176, - "url": "https://www.rightmove.co.uk/properties/148842695", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246071/148842695/246071_MDV230017_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.420560", - "last_seen": "2025-06-01T22:06:15.057526", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177544, - 51.521393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.0, - "qmprice": 34.3, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/148875587", - "info": { - "identifier": 148875587, - "sqm_ocr": 86.0, - "price": 2950.0, - "price_per_sqm": 34.30232558139535, - "url": "https://www.rightmove.co.uk/properties/148875587", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "FMX PROPERTIES LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264155/148875587/264155_93CityIsland2Blet_IMG_21_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.216390", - "last_seen": "2025-06-01T22:06:03.595535", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00704, - 51.51263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 36.81, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/148992209", - "info": { - "identifier": 148992209, - "sqm_ocr": 72.0, - "price": 2650.0, - "price_per_sqm": 36.80555555555556, - "url": "https://www.rightmove.co.uk/properties/148992209", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Broadway & West", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95332/148992209/95332_102_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.987106", - "last_seen": "2025-06-01T22:05:48.935948", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221303, - 51.4896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.63, - "qmprice": 35.49, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/148993079", - "info": { - "identifier": 148993079, - "sqm_ocr": 98.63, - "price": 3500.0, - "price_per_sqm": 35.486160397445, - "url": "https://www.rightmove.co.uk/properties/148993079", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Swift Real Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275078/148993079/275078_128_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.935728", - "last_seen": "2025-06-01T22:06:08.341188", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013771, - 51.523483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/149001311", - "info": { - "identifier": 149001311, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/149001311", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/149001311/12070_27794092_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.210900", - "last_seen": "2025-06-01T22:05:46.289939", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013147, - 51.49681 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.7, - "qmprice": 25.07, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/149030153", - "info": { - "identifier": 149030153, - "sqm_ocr": 111.7, - "price": 2800.0, - "price_per_sqm": 25.06714413607878, - "url": "https://www.rightmove.co.uk/properties/149030153", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/149030153/176261_102708038445_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.850959", - "last_seen": "2025-06-01T22:05:49.707020", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12357, - 51.57828 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 45.77, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/149052398", - "info": { - "identifier": 149052398, - "sqm_ocr": 71.0, - "price": 3250.0, - "price_per_sqm": 45.774647887323944, - "url": "https://www.rightmove.co.uk/properties/149052398", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Bentley & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/205k/204560/149052398/204560_90_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.493873", - "last_seen": "2025-06-01T22:05:42.642411", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128183, - 51.547146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.0, - "qmprice": 53.57, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/149086256", - "info": { - "identifier": 149086256, - "sqm_ocr": 42.0, - "price": 2250.0, - "price_per_sqm": 53.57142857142857, - "url": "https://www.rightmove.co.uk/properties/149086256", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Wren & co Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81351/149086256/81351_wren_922250907_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.459078", - "last_seen": "2025-06-01T22:06:08.076591", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07296, - 51.51509 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.8, - "qmprice": 46.11, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/149099726", - "info": { - "identifier": 149099726, - "sqm_ocr": 48.8, - "price": 2250.0, - "price_per_sqm": 46.106557377049185, - "url": "https://www.rightmove.co.uk/properties/149099726", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Capital Heights Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55386/149099726/55386_12423550_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.175476", - "last_seen": "2025-06-01T22:06:09.350437", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.049307, - 51.521477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/149200574", - "info": { - "identifier": 149200574, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/149200574", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Concept Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82211/149200574/82211_1250_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/08/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.064515", - "last_seen": "2025-06-01T22:06:13.954816", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21112, - 51.4435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3395.0, - "url": "https://www.rightmove.co.uk/properties/149235356", - "info": { - "identifier": 149235356, - "sqm_ocr": null, - "price": 3395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/149235356", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "Under offer", - "last_seen": 0, - "agency": "Statuum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237224/149235356/237224_170_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.032174, - 51.525314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 49.53, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/149251970", - "info": { - "identifier": 149251970, - "sqm_ocr": 80.5, - "price": 3987.0, - "price_per_sqm": 49.52795031055901, - "url": "https://www.rightmove.co.uk/properties/149251970", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/149251970/136148_2692139_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.287456", - "last_seen": "2025-06-01T22:06:00.261069", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1252, - 51.48254 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 46.0, - "rooms": 2, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/149285579", - "info": { - "identifier": 149285579, - "sqm_ocr": 65.0, - "price": 2990.0, - "price_per_sqm": 46.0, - "url": "https://www.rightmove.co.uk/properties/149285579", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "ARE Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265310/149285579/265310_AH-20240618_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.388499", - "last_seen": "2025-06-01T22:06:15.638430", - "price": 2990 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19566, - 51.52924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/149308547", - "info": { - "identifier": 149308547, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/149308547", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/149308547/163859_2665656_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.762485", - "last_seen": "2025-06-01T22:06:03.388765", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.059011, - 51.504395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 158.0, - "qmprice": 22.63, - "rooms": 4, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/149349656", - "info": { - "identifier": 149349656, - "sqm_ocr": 158.0, - "price": 3575.0, - "price_per_sqm": 22.626582278481013, - "url": "https://www.rightmove.co.uk/properties/149349656", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Philip Wooller", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99680/149349656/99680_5881199_IMG_20_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.394984", - "last_seen": "2025-06-01T22:05:55.138042", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24705, - 51.50615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/149398592", - "info": { - "identifier": 149398592, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/149398592", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Andre Joseph Estates Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74973/149398592/74973_683929_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.530565", - "last_seen": "2025-06-01T22:06:06.358107", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097781, - 51.487473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.7, - "qmprice": 48.62, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/149410718", - "info": { - "identifier": 149410718, - "sqm_ocr": 61.7, - "price": 3000.0, - "price_per_sqm": 48.62236628849271, - "url": "https://www.rightmove.co.uk/properties/149410718", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/149410718/77197_VCT_VCT_LFSYCL_465_633175955_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.071315", - "last_seen": "2025-06-01T22:06:07.922069", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016717, - 51.52895 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.4, - "qmprice": 39.44, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/149481905", - "info": { - "identifier": 149481905, - "sqm_ocr": 82.4, - "price": 3250.0, - "price_per_sqm": 39.44174757281553, - "url": "https://www.rightmove.co.uk/properties/149481905", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Open House Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50334/149481905/50334_33186614_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.403177", - "last_seen": "2025-06-01T22:05:53.749773", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114396, - 51.5486 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/149548634", - "info": { - "identifier": 149548634, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/149548634", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "AJ Home Solutions", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252350/149548634/252350_APB-46218566_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.039594", - "last_seen": "2025-06-01T22:05:50.658543", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.363971, - 51.571106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/149565890", - "info": { - "identifier": 149565890, - "sqm_ocr": null, - "price": 3012.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/149565890", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/149565890/17882_37847_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.711908", - "last_seen": "2025-06-01T22:05:54.018969", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12588, - 51.56789 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.9, - "qmprice": 31.22, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/149639672", - "info": { - "identifier": 149639672, - "sqm_ocr": 100.9, - "price": 3150.0, - "price_per_sqm": 31.219028741328046, - "url": "https://www.rightmove.co.uk/properties/149639672", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Swift Real Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275078/149639672/275078_166_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.422500", - "last_seen": "2025-06-01T22:05:46.815915", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01327, - 51.497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3337.0, - "url": "https://www.rightmove.co.uk/properties/149670227", - "info": { - "identifier": 149670227, - "sqm_ocr": null, - "price": 3337.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/149670227", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 92, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.333716", - "last_seen": "2025-06-01T22:06:12.678461", - "price": 3337.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13261, - 51.48086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/149692139", - "info": { - "identifier": 149692139, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/149692139", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/149692139/115768_THEFRANKNEWMILLRP_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "17/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.419559", - "last_seen": "2025-06-01T22:06:08.672962", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02633, - 51.50079 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/149859050", - "info": { - "identifier": 149859050, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/149859050", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Golden Eagle International", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49332/149859050/49332_588_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.448574", - "last_seen": "2025-06-01T22:06:15.537771", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159607, - 51.514 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.9, - "qmprice": 37.83, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/149924624", - "info": { - "identifier": 149924624, - "sqm_ocr": 85.9, - "price": 3250.0, - "price_per_sqm": 37.834691501746214, - "url": "https://www.rightmove.co.uk/properties/149924624", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/149924624/174452_4516_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.257840", - "last_seen": "2025-06-01T22:05:46.739796", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00797, - 51.50093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.4, - "qmprice": 33.55, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/149956367", - "info": { - "identifier": 149956367, - "sqm_ocr": 86.4, - "price": 2899.0, - "price_per_sqm": 33.55324074074074, - "url": "https://www.rightmove.co.uk/properties/149956367", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/149956367/136139_2607433_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.665566", - "last_seen": "2025-06-01T22:06:09.735655", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006313, - 51.506935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2725.0, - "url": "https://www.rightmove.co.uk/properties/150037211", - "info": { - "identifier": 150037211, - "sqm_ocr": null, - "price": 2725.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150037211", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Rentals And Sales", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50366/150037211/50366_RWI-680124_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.120105", - "last_seen": "2025-06-01T22:06:12.842355", - "price": 2725.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154715, - 51.43372 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3553.0, - "url": "https://www.rightmove.co.uk/properties/150037634", - "info": { - "identifier": 150037634, - "sqm_ocr": null, - "price": 3553.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150037634", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ultra Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61592/150037634/61592_ULT228762_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.019247", - "last_seen": "2025-06-01T22:05:57.821825", - "price": 3553 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171149, - 51.492153 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/150037637", - "info": { - "identifier": 150037637, - "sqm_ocr": null, - "price": 3792.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150037637", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ultra Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61592/150037637/61592_ULT2000697_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.016494", - "last_seen": "2025-06-01T22:05:57.816625", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172434, - 51.49161 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3890.0, - "url": "https://www.rightmove.co.uk/properties/150066110", - "info": { - "identifier": 150066110, - "sqm_ocr": null, - "price": 3890.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150066110", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 257, - "status": null, - "last_seen": 0, - "agency": "Cohab", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/274k/273647/150066110/273647_8f745d9d-f184-4221-8ff2-6bd05e74daf7_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.100492", - "last_seen": "2025-06-01T22:06:14.454673", - "price": 3890.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123457, - 51.508804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.77, - "qmprice": 45.41, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/150113252", - "info": { - "identifier": 150113252, - "sqm_ocr": 73.77, - "price": 3350.0, - "price_per_sqm": 45.41141385387014, - "url": "https://www.rightmove.co.uk/properties/150113252", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57498/150113252/57498_2697568_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.382797", - "last_seen": "2025-06-01T22:05:47.758883", - "price": 3349 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075138, - 51.52976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/150172985", - "info": { - "identifier": 150172985, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150172985", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/150172985/12070_27937396_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.561611", - "last_seen": "2025-06-01T22:05:46.130658", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012424, - 51.49357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 133.1, - "qmprice": 30.05, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/150196892", - "info": { - "identifier": 150196892, - "sqm_ocr": 133.1, - "price": 4000.0, - "price_per_sqm": 30.05259203606311, - "url": "https://www.rightmove.co.uk/properties/150196892", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Curchods Estate Agents", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13985/150196892/13985_CKT240106_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.283765", - "last_seen": "2025-06-01T22:06:04.811536", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.328363, - 51.429966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/150197267", - "info": { - "identifier": 150197267, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150197267", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.886700", - "last_seen": "2025-06-01T22:05:53.055992", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1344, - 51.56407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/150204668", - "info": { - "identifier": 150204668, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150204668", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/150204668/32793_39388_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.478712", - "last_seen": "2025-06-01T22:05:40.843657", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21383, - 51.54372 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.62, - "qmprice": 50.24, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/150208436", - "info": { - "identifier": 150208436, - "sqm_ocr": 79.62, - "price": 4000.0, - "price_per_sqm": 50.23863350916855, - "url": "https://www.rightmove.co.uk/properties/150208436", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "Let agreed", - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167687/150208436/167687_2697717_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.221483, - 51.511806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/150228719", - "info": { - "identifier": 150228719, - "sqm_ocr": null, - "price": 3198.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150228719", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 228, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167687/150228719/167687_2697734_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.444399", - "last_seen": "2025-06-01T22:05:39.084252", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19679, - 51.56252 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/150337949", - "info": { - "identifier": 150337949, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150337949", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105152/150337949/105152_0628_HRT062800766_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.926775", - "last_seen": "2025-06-01T22:05:45.886802", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056219, - 51.632088 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.55, - "qmprice": 51.66, - "rooms": 2, - "total_price": 3696.0, - "url": "https://www.rightmove.co.uk/properties/150406631", - "info": { - "identifier": 150406631, - "sqm_ocr": 71.55, - "price": 3696.0, - "price_per_sqm": 51.65618448637317, - "url": "https://www.rightmove.co.uk/properties/150406631", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 247, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167687/150406631/167687_2660970_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.561141", - "last_seen": "2025-06-01T22:05:49.410410", - "price": 3696 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22258, - 51.51157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/150471821", - "info": { - "identifier": 150471821, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150471821", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Hilton & Fox", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237869/150471821/237869_hilton_1400161584_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.774395", - "last_seen": "2025-06-01T22:05:40.774447", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29873, - 51.5376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/150501245", - "info": { - "identifier": 150501245, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150501245", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74047/150501245/74047_P302982_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.934202", - "last_seen": "2025-06-01T22:05:48.708727", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22547, - 51.50397 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.6, - "qmprice": 29.51, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/150508595", - "info": { - "identifier": 150508595, - "sqm_ocr": 79.6, - "price": 2349.0, - "price_per_sqm": 29.510050251256285, - "url": "https://www.rightmove.co.uk/properties/150508595", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257069/150508595/257069_33250529_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.761669", - "last_seen": "2025-06-01T22:05:46.141333", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.004019, - 51.490685 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3553.0, - "url": "https://www.rightmove.co.uk/properties/150519722", - "info": { - "identifier": 150519722, - "sqm_ocr": null, - "price": 3553.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150519722", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/150519722/169658_329161_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:08.251956", - "last_seen": "2025-06-01T22:06:08.251956", - "price": 3553 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021416, - 51.507626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/150520805", - "info": { - "identifier": 150520805, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150520805", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224522/150520805/224522_P397121_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.822242", - "last_seen": "2025-06-01T22:06:03.360008", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03877, - 51.53241 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3965.0, - "url": "https://www.rightmove.co.uk/properties/150535364", - "info": { - "identifier": 150535364, - "sqm_ocr": null, - "price": 3965.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150535364", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ultra Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61592/150535364/61592_ULT2000594_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.546213", - "last_seen": "2025-06-01T22:05:57.450478", - "price": 3965 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17134, - 51.49226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/150536315", - "info": { - "identifier": 150536315, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150536315", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/150536315/12070_27981240_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.339369", - "last_seen": "2025-06-01T22:05:46.745007", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013036, - 51.495262 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/150588299", - "info": { - "identifier": 150588299, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150588299", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 93, - "status": null, - "last_seen": 0, - "agency": "Willtons Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82281/150588299/82281_MK3443CH_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.454261", - "last_seen": "2025-06-01T22:05:42.624519", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18272, - 51.5499 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/150625529", - "info": { - "identifier": 150625529, - "sqm_ocr": null, - "price": 3298.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150625529", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/150625529/136139_2468266_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.114941", - "last_seen": "2025-06-01T22:06:03.023769", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0056, - 51.511787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/150626690", - "info": { - "identifier": 150626690, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150626690", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Property Inc", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191252/150626690/191252_PRI230057_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.565960", - "last_seen": "2025-06-01T22:05:50.014411", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095257, - 51.597973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2880.0, - "url": "https://www.rightmove.co.uk/properties/150638630", - "info": { - "identifier": 150638630, - "sqm_ocr": null, - "price": 2880.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150638630", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Urban Bubble", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263303/150638630/263303_409RH_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.040270", - "last_seen": "2025-06-01T22:06:12.128022", - "price": 2880.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18775, - 51.46149 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.12, - "qmprice": 42.28, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/150677144", - "info": { - "identifier": 150677144, - "sqm_ocr": 87.12, - "price": 3683.0, - "price_per_sqm": 42.275022956841134, - "url": "https://www.rightmove.co.uk/properties/150677144", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57498/150677144/57498_2658934_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.721965", - "last_seen": "2025-06-01T22:06:08.901825", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066226, - 51.507427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2875.0, - "url": "https://www.rightmove.co.uk/properties/150710777", - "info": { - "identifier": 150710777, - "sqm_ocr": null, - "price": 2875.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150710777", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/150710777/32793_29384_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.723717", - "last_seen": "2025-06-01T22:05:41.121916", - "price": 2875.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2282, - 51.5488 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.51, - "qmprice": 26.84, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/150735215", - "info": { - "identifier": 150735215, - "sqm_ocr": 74.51, - "price": 2000.0, - "price_per_sqm": 26.842034626224667, - "url": "https://www.rightmove.co.uk/properties/150735215", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Oaks Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201446/150735215/201446_STR240473_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.760132", - "last_seen": "2025-06-01T22:05:59.516831", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13375, - 51.4255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.97, - "qmprice": 58.04, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/150744551", - "info": { - "identifier": 150744551, - "sqm_ocr": 61.97, - "price": 3597.0, - "price_per_sqm": 58.04421494271422, - "url": "https://www.rightmove.co.uk/properties/150744551", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57498/150744551/57498_2696990_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.996513", - "last_seen": "2025-06-01T22:05:57.341874", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09479, - 51.528706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/150772394", - "info": { - "identifier": 150772394, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150772394", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 107, - "status": null, - "last_seen": 0, - "agency": "Willtons Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82281/150772394/82281_MKD12CH_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.786148", - "last_seen": "2025-06-01T22:05:42.193368", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18272, - 51.5499 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/150913553", - "info": { - "identifier": 150913553, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150913553", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "LizardProperty", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274388/150913553/274388_ADS22_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.818285", - "last_seen": "2025-06-01T22:05:42.049126", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13886, - 51.52196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/150941390", - "info": { - "identifier": 150941390, - "sqm_ocr": null, - "price": 3142.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150941390", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "Wayne & Silver", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91636/150941390/91636_33272739_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.505854", - "last_seen": "2025-06-01T22:05:42.902874", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.160121, - 51.54846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 44.64, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/150962657", - "info": { - "identifier": 150962657, - "sqm_ocr": 84.0, - "price": 3750.0, - "price_per_sqm": 44.642857142857146, - "url": "https://www.rightmove.co.uk/properties/150962657", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "FMX PROPERTIES LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264155/150962657/264155_29TriathlonPoint3blet_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.035694", - "last_seen": "2025-06-01T22:06:07.253050", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01376, - 51.54797 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/150996203", - "info": { - "identifier": 150996203, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/150996203", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/150996203/136148_2698526_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.993267", - "last_seen": "2025-06-01T22:05:59.887245", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128172, - 51.481453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/151165202", - "info": { - "identifier": 151165202, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151165202", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/151165202/12070_28055192_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.533939", - "last_seen": "2025-06-01T22:05:46.842509", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012842, - 51.496803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/151180406", - "info": { - "identifier": 151180406, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151180406", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/9k/8290/151180406/8290_CHI110134_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.059817", - "last_seen": "2025-06-01T22:05:52.251715", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27855, - 51.48723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 37.16, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/151197530", - "info": { - "identifier": 151197530, - "sqm_ocr": 74.0, - "price": 2750.0, - "price_per_sqm": 37.16216216216216, - "url": "https://www.rightmove.co.uk/properties/151197530", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "FMX PROPERTIES LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264155/151197530/264155_Flat121_581NorthEndRoad2Blet_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.215431", - "last_seen": "2025-06-01T22:05:41.005531", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27647, - 51.56106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2725.0, - "url": "https://www.rightmove.co.uk/properties/151199831", - "info": { - "identifier": 151199831, - "sqm_ocr": null, - "price": 2725.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151199831", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Andre Joseph Estates Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74973/151199831/74973_451034_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.667634", - "last_seen": "2025-06-01T22:06:13.888361", - "price": 2725.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154747, - 51.43365 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/151248545", - "info": { - "identifier": 151248545, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151248545", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/151248545/115768_thewellendse10_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.261355", - "last_seen": "2025-06-01T22:05:55.396306", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01156, - 51.48255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/151304651", - "info": { - "identifier": 151304651, - "sqm_ocr": null, - "price": 3597.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151304651", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/151304651/169658_366109_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.238612", - "last_seen": "2025-06-01T22:06:08.841064", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017683, - 51.49823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 26.32, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/151342175", - "info": { - "identifier": 151342175, - "sqm_ocr": 76.0, - "price": 2000.0, - "price_per_sqm": 26.31578947368421, - "url": "https://www.rightmove.co.uk/properties/151342175", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Paul Simon Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45303/151342175/45303_P1967_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.709075", - "last_seen": "2025-06-01T22:05:49.614897", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106358, - 51.581566 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2625.0, - "url": "https://www.rightmove.co.uk/properties/151348364", - "info": { - "identifier": 151348364, - "sqm_ocr": null, - "price": 2625.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151348364", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67439/151348364/67439_CPL150067_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.566854", - "last_seen": "2025-06-01T22:06:12.703981", - "price": 2625.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154988, - 51.433876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 30.41, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/151348406", - "info": { - "identifier": 151348406, - "sqm_ocr": 80.5, - "price": 2448.0, - "price_per_sqm": 30.40993788819876, - "url": "https://www.rightmove.co.uk/properties/151348406", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257069/151348406/257069_33303491_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.634042", - "last_seen": "2025-06-01T22:05:56.988107", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.002407, - 51.48752 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.82, - "qmprice": 42.63, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/151405331", - "info": { - "identifier": 151405331, - "sqm_ocr": 93.82, - "price": 4000.0, - "price_per_sqm": 42.634832658281816, - "url": "https://www.rightmove.co.uk/properties/151405331", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/151405331/136148_2660776_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.202926", - "last_seen": "2025-06-01T22:06:13.121054", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129255, - 51.48147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.8, - "qmprice": 27.43, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/151419572", - "info": { - "identifier": 151419572, - "sqm_ocr": 94.8, - "price": 2600.0, - "price_per_sqm": 27.426160337552744, - "url": "https://www.rightmove.co.uk/properties/151419572", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72056/151419572/72056_33308357_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.339262", - "last_seen": "2025-06-01T22:06:14.135136", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.152395, - 51.42649 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/151470983", - "info": { - "identifier": 151470983, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151470983", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247511/151470983/247511_P339218_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.340256", - "last_seen": "2025-06-01T22:06:09.640638", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04568, - 51.53007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3857.0, - "url": "https://www.rightmove.co.uk/properties/151519061", - "info": { - "identifier": 151519061, - "sqm_ocr": null, - "price": 3857.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151519061", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ultra Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61592/151519061/61592_ULT2ULT028865_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.132587", - "last_seen": "2025-06-01T22:05:57.951537", - "price": 3856 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170245, - 51.492607 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 50.01, - "rooms": 2, - "total_price": 3501.0, - "url": "https://www.rightmove.co.uk/properties/151541678", - "info": { - "identifier": 151541678, - "sqm_ocr": 70.0, - "price": 3501.0, - "price_per_sqm": 50.01428571428571, - "url": "https://www.rightmove.co.uk/properties/151541678", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41343/151541678/41343_06730319_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.794605", - "last_seen": "2025-06-01T22:05:53.887879", - "price": 3501 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124, - 51.567 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/151574273", - "info": { - "identifier": 151574273, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151574273", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Zuker Property Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147848/151574273/147848_LFM0047_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "03/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.949803", - "last_seen": "2025-06-01T22:06:13.869942", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1326, - 51.48122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/151579859", - "info": { - "identifier": 151579859, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151579859", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262865/151579859/262865_a1G8d000002QBUPEA4_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.547016", - "last_seen": "2025-06-01T22:06:03.167612", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01024, - 51.5133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/151595102", - "info": { - "identifier": 151595102, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151595102", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Coldwell Banker Southbank", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/165k/164990/151595102/164990_3016_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.464341", - "last_seen": "2025-06-01T22:05:59.630731", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114809, - 51.5054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/151641239", - "info": { - "identifier": 151641239, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151641239", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Cohab", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/274k/273647/151641239/273647_d67081cd-1deb-466c-8b03-9e568f06764d_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.826755", - "last_seen": "2025-06-01T22:06:14.464916", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123457, - 51.508804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/151660568", - "info": { - "identifier": 151660568, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151660568", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/151660568/77197_VCT_VCT_LFSYCL_465_633151756_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "17/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.582574", - "last_seen": "2025-06-01T20:19:57.582574", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04757, - 51.529995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/151665812", - "info": { - "identifier": 151665812, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151665812", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 235, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247493/151665812/247493_P285155_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.413141", - "last_seen": "2025-06-01T22:05:59.633060", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13074, - 51.46329 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3965.0, - "url": "https://www.rightmove.co.uk/properties/151674287", - "info": { - "identifier": 151674287, - "sqm_ocr": null, - "price": 3965.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151674287", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/151674287/169658_397636_IMG_32_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.946801", - "last_seen": "2025-06-01T22:06:08.231989", - "price": 3965 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069115, - 51.50822 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/151675118", - "info": { - "identifier": 151675118, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151675118", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Ak247 Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261134/151675118/261134_62west_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.537940", - "last_seen": "2025-06-01T22:05:49.440606", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18483, - 51.4766 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2425.0, - "url": "https://www.rightmove.co.uk/properties/151675694", - "info": { - "identifier": 151675694, - "sqm_ocr": null, - "price": 2425.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151675694", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/151675694/257522_28Blenheim_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.555922", - "last_seen": "2025-06-01T22:05:49.928429", - "price": 2425.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11335, - 51.59161 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 41.89, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/151682939", - "info": { - "identifier": 151682939, - "sqm_ocr": 75.0, - "price": 3142.0, - "price_per_sqm": 41.89333333333333, - "url": "https://www.rightmove.co.uk/properties/151682939", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58979/151682939/58979_CHQ012412242_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.529436", - "last_seen": "2025-06-01T22:05:57.539378", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170876, - 51.483654 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/151688843", - "info": { - "identifier": 151688843, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151688843", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/151688843/257522_62westwood_IMG_06_0001_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.051514", - "last_seen": "2025-06-01T22:05:48.637392", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18483, - 51.4766 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/151756607", - "info": { - "identifier": 151756607, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151756607", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/151756607/12070_28118367_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.363751", - "last_seen": "2025-06-01T22:05:46.643434", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.014823, - 51.49462 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/151804331", - "info": { - "identifier": 151804331, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151804331", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Broadway & West", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "23/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.002033", - "last_seen": "2025-06-01T22:05:48.503752", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.227709, - 51.489594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3430.0, - "url": "https://www.rightmove.co.uk/properties/151807670", - "info": { - "identifier": 151807670, - "sqm_ocr": null, - "price": 3430.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151807670", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/151807670/209042_MORR-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.421611", - "last_seen": "2025-06-01T22:06:01.376142", - "price": 3430.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216889, - 51.417095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/151824833", - "info": { - "identifier": 151824833, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151824833", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Letting Experts", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7354/151824833/7354_RX412205_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.452284", - "last_seen": "2025-06-01T22:05:46.488067", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.018013, - 51.489338 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/151872884", - "info": { - "identifier": 151872884, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151872884", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Godfrey And Barr", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56618/151872884/56618_2195_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.711497", - "last_seen": "2025-06-01T22:05:38.839224", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178573, - 51.59023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/151878320", - "info": { - "identifier": 151878320, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151878320", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99758/151878320/99758_2672473_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.000510", - "last_seen": "2025-06-01T22:05:45.320224", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297102, - 51.528603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/151886024", - "info": { - "identifier": 151886024, - "sqm_ocr": null, - "price": 3650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151886024", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/151886024/209042_KDR-M6-Mid_let_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.082850", - "last_seen": "2025-06-01T22:05:48.543422", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2357, - 51.52729 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/151908122", - "info": { - "identifier": 151908122, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/151908122", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Such Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238883/151908122/238883_272620_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.600016", - "last_seen": "2025-06-01T22:06:08.751644", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03116, - 51.51589 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.2, - "qmprice": 45.98, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/151934861", - "info": { - "identifier": 151934861, - "sqm_ocr": 52.2, - "price": 2400.0, - "price_per_sqm": 45.97701149425287, - "url": "https://www.rightmove.co.uk/properties/151934861", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/193k/192209/151934861/192209_33340799_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.865497", - "last_seen": "2025-06-01T22:05:40.470416", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299656, - 51.5452 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.26, - "qmprice": 50.17, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/151990634", - "info": { - "identifier": 151990634, - "sqm_ocr": 71.26, - "price": 3575.0, - "price_per_sqm": 50.168397417906256, - "url": "https://www.rightmove.co.uk/properties/151990634", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54732/151990634/54732_STL230119_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.915717", - "last_seen": "2025-06-01T22:06:14.462990", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163062, - 51.5245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/152039138", - "info": { - "identifier": 152039138, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152039138", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/152039138/163859_2675537_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.430369", - "last_seen": "2025-06-01T22:06:03.067063", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03899, - 51.508396 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3199.0, - "url": "https://www.rightmove.co.uk/properties/152100488", - "info": { - "identifier": 152100488, - "sqm_ocr": null, - "price": 3199.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152100488", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/152100488/209042_MHE-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.172741", - "last_seen": "2025-06-01T22:05:59.433594", - "price": 3199.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149074, - 51.46558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2625.0, - "url": "https://www.rightmove.co.uk/properties/152149385", - "info": { - "identifier": 152149385, - "sqm_ocr": null, - "price": 2625.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152149385", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Rentals And Sales", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50366/152149385/50366_RWI-77545560_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.488430", - "last_seen": "2025-06-01T22:06:13.247333", - "price": 2625.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154773, - 51.433662 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.01, - "qmprice": 28.35, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/152155514", - "info": { - "identifier": 152155514, - "sqm_ocr": 81.01, - "price": 2297.0, - "price_per_sqm": 28.354524132823105, - "url": "https://www.rightmove.co.uk/properties/152155514", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chard", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141944/152155514/141944_33354964_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.981202", - "last_seen": "2025-06-01T22:05:48.952886", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21369, - 51.47734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/152156885", - "info": { - "identifier": 152156885, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152156885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "360 Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81348/152156885/81348_33354990_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.305365", - "last_seen": "2025-06-01T22:05:40.053713", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.298038, - 51.538254 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/152157140", - "info": { - "identifier": 152157140, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152157140", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "360 Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81348/152157140/81348_33355007_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.603979", - "last_seen": "2025-06-01T22:05:40.450925", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29815, - 51.538208 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.7, - "qmprice": 28.08, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/152194592", - "info": { - "identifier": 152194592, - "sqm_ocr": 99.7, - "price": 2800.0, - "price_per_sqm": 28.084252758274825, - "url": "https://www.rightmove.co.uk/properties/152194592", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257069/152194592/257069_33356940_IMG_09_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.472825", - "last_seen": "2025-06-01T22:05:46.567422", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00318, - 51.49005 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.6, - "qmprice": 42.72, - "rooms": 2, - "total_price": 3956.0, - "url": "https://www.rightmove.co.uk/properties/152222057", - "info": { - "identifier": 152222057, - "sqm_ocr": 92.6, - "price": 3956.0, - "price_per_sqm": 42.72138228941685, - "url": "https://www.rightmove.co.uk/properties/152222057", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49000/152222057/49000_DOL150261_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.588421", - "last_seen": "2025-06-01T22:06:09.157498", - "price": 3956.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068954, - 51.507725 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/152241287", - "info": { - "identifier": 152241287, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152241287", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Leonard Leese", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35405/152241287/35405_33237904_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.583240", - "last_seen": "2025-06-01T22:06:06.591999", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097276, - 51.501244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/152246501", - "info": { - "identifier": 152246501, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152246501", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Lords Associates of London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29226/152246501/29226_4422027_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.543395", - "last_seen": "2025-06-01T22:05:51.422831", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.486446, - 51.53976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3965.0, - "url": "https://www.rightmove.co.uk/properties/152249255", - "info": { - "identifier": 152249255, - "sqm_ocr": null, - "price": 3965.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152249255", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Interlet Sales and Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76342/152249255/76342_ISL957307_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.616210", - "last_seen": "2025-06-01T22:06:09.276121", - "price": 3965 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027756, - 51.507206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.6, - "qmprice": 39.51, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/152301893", - "info": { - "identifier": 152301893, - "sqm_ocr": 69.6, - "price": 2750.0, - "price_per_sqm": 39.51149425287357, - "url": "https://www.rightmove.co.uk/properties/152301893", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Westways", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44562/152301893/44562_101306004610_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.745574", - "last_seen": "2025-06-01T22:06:15.118923", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17214, - 51.53328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.5, - "qmprice": 36.94, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/152330099", - "info": { - "identifier": 152330099, - "sqm_ocr": 78.5, - "price": 2900.0, - "price_per_sqm": 36.94267515923567, - "url": "https://www.rightmove.co.uk/properties/152330099", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/152330099/65785_33365649_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.859707", - "last_seen": "2025-06-01T22:06:14.115957", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148628, - 51.448463 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/152346296", - "info": { - "identifier": 152346296, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152346296", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hanley Estates Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72329/152346296/72329_2848_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.879094", - "last_seen": "2025-06-01T22:05:42.270329", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15115, - 51.54958 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/152349500", - "info": { - "identifier": 152349500, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152349500", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/122k/121090/152349500/121090_0635_HRT063500636_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:43.998327", - "last_seen": "2025-06-01T22:05:38.159516", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.12052, - 51.54787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/152439398", - "info": { - "identifier": 152439398, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152439398", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 58, - "status": null, - "last_seen": 0, - "agency": "AJ Home Solutions", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252350/152439398/252350_APB-69613446_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.142203", - "last_seen": "2025-06-01T22:05:50.251214", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.365464, - 51.57128 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.97, - "qmprice": 33.04, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/152484062", - "info": { - "identifier": 152484062, - "sqm_ocr": 108.97, - "price": 3600.0, - "price_per_sqm": 33.03661558227035, - "url": "https://www.rightmove.co.uk/properties/152484062", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80551/152484062/80551_HEA210994_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "11/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.927000", - "last_seen": "2025-06-01T22:05:52.115896", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299892, - 51.483257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.9, - "qmprice": 57.64, - "rooms": 4, - "total_price": 3395.0, - "url": "https://www.rightmove.co.uk/properties/152503946", - "info": { - "identifier": 152503946, - "sqm_ocr": 58.9, - "price": 3395.0, - "price_per_sqm": 57.64006791171477, - "url": "https://www.rightmove.co.uk/properties/152503946", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 51, - "status": null, - "last_seen": 0, - "agency": "Orchard Property Services", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/122k/121882/152503946/121882_ICK240045_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.350114", - "last_seen": "2025-06-01T22:05:51.125022", - "price": 3395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.497479, - 51.61043 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/152514500", - "info": { - "identifier": 152514500, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152514500", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/152514500/17882_34787_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.013556", - "last_seen": "2025-06-01T22:05:56.475943", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1294, - 51.55239 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/152546297", - "info": { - "identifier": 152546297, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152546297", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 120, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/166k/165956/152546297/165956_33377070_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.812846", - "last_seen": "2025-06-01T22:05:49.971870", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058805, - 51.588528 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/152608586", - "info": { - "identifier": 152608586, - "sqm_ocr": null, - "price": 3550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152608586", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/152608586/209042_MAL-Mid_let_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.466694", - "last_seen": "2025-06-01T22:05:43.164110", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151562, - 51.54753 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/152627606", - "info": { - "identifier": 152627606, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152627606", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Hilton & Fox", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237869/152627606/237869_hilton_768103064_IMG_11_0001_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.921413", - "last_seen": "2025-06-01T22:05:50.544336", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.362453, - 51.570557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.5, - "qmprice": 42.62, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/152681048", - "info": { - "identifier": 152681048, - "sqm_ocr": 91.5, - "price": 3900.0, - "price_per_sqm": 42.622950819672134, - "url": "https://www.rightmove.co.uk/properties/152681048", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/152681048/87187_66312_IMG_15_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.542642", - "last_seen": "2025-06-01T22:06:00.066362", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116238, - 51.486786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2557.0, - "url": "https://www.rightmove.co.uk/properties/152731580", - "info": { - "identifier": 152731580, - "sqm_ocr": null, - "price": 2557.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152731580", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/152731580/29861_33387847_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.486198", - "last_seen": "2025-06-01T22:06:10.042826", - "price": 2556 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011281, - 51.52058 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 48.19, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/152816420", - "info": { - "identifier": 152816420, - "sqm_ocr": 83.0, - "price": 4000.0, - "price_per_sqm": 48.19277108433735, - "url": "https://www.rightmove.co.uk/properties/152816420", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 994.0, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "iad", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262565/152816420/262565_RX423694_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:08.824673", - "last_seen": "2025-06-01T22:06:08.824673", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064661, - 51.50789 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.5, - "qmprice": 46.36, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/152846696", - "info": { - "identifier": 152846696, - "sqm_ocr": 75.5, - "price": 3500.0, - "price_per_sqm": 46.35761589403973, - "url": "https://www.rightmove.co.uk/properties/152846696", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 73, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/152846696/228512_33392986_IMG_06_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.327214", - "last_seen": "2025-06-01T22:05:57.858452", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186263, - 51.480778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/152862206", - "info": { - "identifier": 152862206, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/152862206", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 96, - "status": null, - "last_seen": 0, - "agency": "Girlings Retirement Rentals", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6455/152862206/6455_32336_IMG_28_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.391738", - "last_seen": "2025-06-01T22:05:59.030430", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110926, - 51.435917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.7, - "qmprice": 45.7, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/152918849", - "info": { - "identifier": 152918849, - "sqm_ocr": 54.7, - "price": 2500.0, - "price_per_sqm": 45.703839122486286, - "url": "https://www.rightmove.co.uk/properties/152918849", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/152918849/71401_1293510_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.409125", - "last_seen": "2025-06-01T22:05:41.314637", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214535, - 51.55006 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.7, - "qmprice": 46.13, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/152940875", - "info": { - "identifier": 152940875, - "sqm_ocr": 60.7, - "price": 2800.0, - "price_per_sqm": 46.12850082372323, - "url": "https://www.rightmove.co.uk/properties/152940875", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/152940875/15969_1293375_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.649609", - "last_seen": "2025-06-01T22:05:44.508587", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.326914, - 51.532295 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 39.33, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/152941472", - "info": { - "identifier": 152941472, - "sqm_ocr": 89.0, - "price": 3500.0, - "price_per_sqm": 39.325842696629216, - "url": "https://www.rightmove.co.uk/properties/152941472", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/152941472/15969_1193722_IMG_01_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.497912", - "last_seen": "2025-06-01T22:05:44.420779", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290067, - 51.509556 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.9, - "qmprice": 59.93, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/152952329", - "info": { - "identifier": 152952329, - "sqm_ocr": 55.9, - "price": 3350.0, - "price_per_sqm": 59.92844364937388, - "url": "https://www.rightmove.co.uk/properties/152952329", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/152952329/15963_1263109_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.263185", - "last_seen": "2025-06-01T22:06:13.334543", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216016, - 51.46051 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.4, - "qmprice": 36.35, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/152952380", - "info": { - "identifier": 152952380, - "sqm_ocr": 89.4, - "price": 3250.0, - "price_per_sqm": 36.35346756152125, - "url": "https://www.rightmove.co.uk/properties/152952380", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/152952380/15942_1277248_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.204781", - "last_seen": "2025-06-01T22:05:57.964996", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182699, - 51.49193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.6, - "qmprice": 49.5, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/152955500", - "info": { - "identifier": 152955500, - "sqm_ocr": 59.6, - "price": 2950.0, - "price_per_sqm": 49.49664429530201, - "url": "https://www.rightmove.co.uk/properties/152955500", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/152955500/15963_1243748_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.754215", - "last_seen": "2025-06-01T22:06:13.036253", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228072, - 51.4707 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.3, - "qmprice": 67.45, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/152961431", - "info": { - "identifier": 152961431, - "sqm_ocr": 59.3, - "price": 4000.0, - "price_per_sqm": 67.45362563237774, - "url": "https://www.rightmove.co.uk/properties/152961431", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/152961431/15954_1279398_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.107981", - "last_seen": "2025-06-01T22:05:53.017143", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119529, - 51.5317 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.83, - "qmprice": 41.55, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/152962157", - "info": { - "identifier": 152962157, - "sqm_ocr": 81.83, - "price": 3400.0, - "price_per_sqm": 41.549553953317854, - "url": "https://www.rightmove.co.uk/properties/152962157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/152962157/15951_1282608_IMG_02_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.147985", - "last_seen": "2025-06-01T22:05:55.643635", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300527, - 51.484398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 40.06, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/152962685", - "info": { - "identifier": 152962685, - "sqm_ocr": 69.9, - "price": 2800.0, - "price_per_sqm": 40.057224606580824, - "url": "https://www.rightmove.co.uk/properties/152962685", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57287/152962685/57287_1297269_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.105930", - "last_seen": "2025-06-01T22:06:05.772027", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069344, - 51.443745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 68.1, - "rooms": 2, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/152963576", - "info": { - "identifier": 152963576, - "sqm_ocr": 58.0, - "price": 3950.0, - "price_per_sqm": 68.10344827586206, - "url": "https://www.rightmove.co.uk/properties/152963576", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/152963576/87815_1283686_IMG_02_0013_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.481833", - "last_seen": "2025-06-01T22:05:39.368921", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175806, - 51.61327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.3, - "qmprice": 45.08, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/152963723", - "info": { - "identifier": 152963723, - "sqm_ocr": 67.3, - "price": 3034.0, - "price_per_sqm": 45.08172362555721, - "url": "https://www.rightmove.co.uk/properties/152963723", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57287/152963723/57287_1293833_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.995324", - "last_seen": "2025-06-01T22:06:00.280145", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.033218, - 51.43558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.3, - "qmprice": 47.88, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/152963963", - "info": { - "identifier": 152963963, - "sqm_ocr": 54.3, - "price": 2600.0, - "price_per_sqm": 47.882136279926335, - "url": "https://www.rightmove.co.uk/properties/152963963", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/152963963/100423_1285089_IMG_02_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.677647", - "last_seen": "2025-06-01T22:06:04.837862", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.331489, - 51.447723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.2, - "qmprice": 74.71, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/152964626", - "info": { - "identifier": 152964626, - "sqm_ocr": 52.2, - "price": 3900.0, - "price_per_sqm": 74.71264367816092, - "url": "https://www.rightmove.co.uk/properties/152964626", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/152964626/15945_1185355_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.207502", - "last_seen": "2025-06-01T22:05:57.961364", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211725, - 51.520195 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.5, - "qmprice": 44.63, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/152965625", - "info": { - "identifier": 152965625, - "sqm_ocr": 60.5, - "price": 2700.0, - "price_per_sqm": 44.62809917355372, - "url": "https://www.rightmove.co.uk/properties/152965625", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/152965625/15963_1235688_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.191927", - "last_seen": "2025-06-01T22:06:13.323777", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215086, - 51.446342 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.3, - "qmprice": 45.62, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/152965907", - "info": { - "identifier": 152965907, - "sqm_ocr": 83.3, - "price": 3800.0, - "price_per_sqm": 45.61824729891957, - "url": "https://www.rightmove.co.uk/properties/152965907", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/152965907/87815_1292222_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.146540", - "last_seen": "2025-06-01T22:05:38.498178", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175806, - 51.61327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.9, - "qmprice": 48.7, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/152966363", - "info": { - "identifier": 152966363, - "sqm_ocr": 72.9, - "price": 3550.0, - "price_per_sqm": 48.69684499314128, - "url": "https://www.rightmove.co.uk/properties/152966363", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/152966363/15963_1234885_IMG_02_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.051040", - "last_seen": "2025-06-01T22:06:14.076941", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189729, - 51.462807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.8, - "qmprice": 56.69, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/152970638", - "info": { - "identifier": 152970638, - "sqm_ocr": 68.8, - "price": 3900.0, - "price_per_sqm": 56.68604651162791, - "url": "https://www.rightmove.co.uk/properties/152970638", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/152970638/84889_1294886_IMG_02_0013_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.322354", - "last_seen": "2025-06-01T22:06:15.386235", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138722, - 51.49869 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.3, - "qmprice": 52.79, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/152971916", - "info": { - "identifier": 152971916, - "sqm_ocr": 66.3, - "price": 3500.0, - "price_per_sqm": 52.79034690799397, - "url": "https://www.rightmove.co.uk/properties/152971916", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/152971916/80281_1272541_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.858969", - "last_seen": "2025-06-01T22:06:11.602153", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.002443, - 51.55749 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.05, - "qmprice": 65.15, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/152973026", - "info": { - "identifier": 152973026, - "sqm_ocr": 46.05, - "price": 3000.0, - "price_per_sqm": 65.14657980456026, - "url": "https://www.rightmove.co.uk/properties/152973026", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/152973026/16050_1295646_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.946085", - "last_seen": "2025-06-01T20:19:55.981913", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053638, - 51.51985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.2, - "qmprice": 33.24, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/152982908", - "info": { - "identifier": 152982908, - "sqm_ocr": 75.2, - "price": 2500.0, - "price_per_sqm": 33.244680851063826, - "url": "https://www.rightmove.co.uk/properties/152982908", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/152982908/15975_1291439_IMG_01_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.416123", - "last_seen": "2025-06-01T22:06:01.424249", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201166, - 51.427094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.5, - "qmprice": 29.41, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/152984141", - "info": { - "identifier": 152984141, - "sqm_ocr": 110.5, - "price": 3250.0, - "price_per_sqm": 29.41176470588235, - "url": "https://www.rightmove.co.uk/properties/152984141", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/152984141/15975_1281126_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.307927", - "last_seen": "2025-06-01T22:06:01.472578", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200157, - 51.41468 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.4, - "qmprice": 50.23, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/152985686", - "info": { - "identifier": 152985686, - "sqm_ocr": 60.4, - "price": 3034.0, - "price_per_sqm": 50.2317880794702, - "url": "https://www.rightmove.co.uk/properties/152985686", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/152985686/107533_1245966_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.610065", - "last_seen": "2025-06-01T22:05:46.414741", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01798, - 51.47054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.19, - "qmprice": 53.0, - "rooms": 3, - "total_price": 3879.0, - "url": "https://www.rightmove.co.uk/properties/152987528", - "info": { - "identifier": 152987528, - "sqm_ocr": 73.19, - "price": 3879.0, - "price_per_sqm": 52.999043585189234, - "url": "https://www.rightmove.co.uk/properties/152987528", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/152987528/48101_1293013_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.097294", - "last_seen": "2025-06-01T20:19:56.334327", - "price": 3879.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.000129, - 51.509003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.3, - "qmprice": 56.84, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/152987534", - "info": { - "identifier": 152987534, - "sqm_ocr": 56.3, - "price": 3200.0, - "price_per_sqm": 56.83836589698046, - "url": "https://www.rightmove.co.uk/properties/152987534", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/152987534/15957_1290995_IMG_09_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.591149", - "last_seen": "2025-06-01T22:05:43.062299", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202342, - 51.548733 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.5, - "qmprice": 56.0, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/152987756", - "info": { - "identifier": 152987756, - "sqm_ocr": 62.5, - "price": 3500.0, - "price_per_sqm": 56.0, - "url": "https://www.rightmove.co.uk/properties/152987756", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/152987756/15954_1291263_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.339301", - "last_seen": "2025-06-01T22:05:53.171728", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091541, - 51.55835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 34.25, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/152988647", - "info": { - "identifier": 152988647, - "sqm_ocr": 73.0, - "price": 2500.0, - "price_per_sqm": 34.24657534246575, - "url": "https://www.rightmove.co.uk/properties/152988647", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Truepenny's", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93562/152988647/93562_3916_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.240572", - "last_seen": "2025-06-01T22:05:46.933316", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00318, - 51.49031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/153007508", - "info": { - "identifier": 153007508, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153007508", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Sinton Andrews", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13712/153007508/13712_SINT_002039_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.468475", - "last_seen": "2025-06-01T22:05:45.176625", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.325819, - 51.51418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.92, - "qmprice": 33.38, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/153088667", - "info": { - "identifier": 153088667, - "sqm_ocr": 59.92, - "price": 2000.0, - "price_per_sqm": 33.37783711615487, - "url": "https://www.rightmove.co.uk/properties/153088667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Brithomes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275363/153088667/275363_4103039_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.843992", - "last_seen": "2025-06-01T22:06:00.802479", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04191, - 51.48019 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.9, - "qmprice": 34.86, - "rooms": 2, - "total_price": 3796.0, - "url": "https://www.rightmove.co.uk/properties/153089774", - "info": { - "identifier": 153089774, - "sqm_ocr": 108.9, - "price": 3796.0, - "price_per_sqm": 34.85766758494031, - "url": "https://www.rightmove.co.uk/properties/153089774", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218729/153089774/218729_33401120_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.583839", - "last_seen": "2025-06-01T22:05:53.853733", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128471, - 51.552483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3727.0, - "url": "https://www.rightmove.co.uk/properties/153090215", - "info": { - "identifier": 153090215, - "sqm_ocr": null, - "price": 3727.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153090215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ultra Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61592/153090215/61592_ULT2ULT181818_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.650453", - "last_seen": "2025-06-01T22:06:15.048150", - "price": 3726 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167928, - 51.52981 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.41, - "qmprice": 47.34, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/153091148", - "info": { - "identifier": 153091148, - "sqm_ocr": 46.41, - "price": 2197.0, - "price_per_sqm": 47.338935574229694, - "url": "https://www.rightmove.co.uk/properties/153091148", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3355/153091148/3355_33401216_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.800035", - "last_seen": "2025-06-01T22:05:54.063514", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10244, - 51.561646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/153159221", - "info": { - "identifier": 153159221, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153159221", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ultra Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61592/153159221/61592_ULT2001489_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.820090", - "last_seen": "2025-06-01T22:05:56.414290", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127271, - 51.515324 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3857.0, - "url": "https://www.rightmove.co.uk/properties/153173102", - "info": { - "identifier": 153173102, - "sqm_ocr": null, - "price": 3857.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153173102", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "PARKSIDE ESTATES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247049/153173102/247049_Aisan43PelhamCourt_IMG_00_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.479025", - "last_seen": "2025-06-01T22:05:57.756885", - "price": 3856 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1709, - 51.49216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 152.7, - "qmprice": 14.73, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/153234308", - "info": { - "identifier": 153234308, - "sqm_ocr": 152.7, - "price": 2250.0, - "price_per_sqm": 14.734774066797643, - "url": "https://www.rightmove.co.uk/properties/153234308", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Your Move", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34806/153234308/34806_ELT240198_L_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.253723", - "last_seen": "2025-06-01T22:06:00.454856", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.037266, - 51.429047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/153237422", - "info": { - "identifier": 153237422, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153237422", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Ivory Real Estate", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82380/153237422/82380_IVG240442_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.407337", - "last_seen": "2025-06-01T20:19:58.407337", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027756, - 51.507206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/153241349", - "info": { - "identifier": 153241349, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153241349", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/38k/37160/153241349/37160_P171272_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.034568", - "last_seen": "2025-06-01T22:06:00.753479", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00799, - 51.46308 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3207.0, - "url": "https://www.rightmove.co.uk/properties/153290054", - "info": { - "identifier": 153290054, - "sqm_ocr": null, - "price": 3207.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153290054", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53537/153290054/53537_CSZ200411_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.431255", - "last_seen": "2025-06-01T22:06:15.812358", - "price": 3206 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145525, - 51.4902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/153324005", - "info": { - "identifier": 153324005, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153324005", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/153324005/181787_181787_343_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.361590", - "last_seen": "2025-06-01T22:05:59.649583", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10791, - 51.48963 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/153326615", - "info": { - "identifier": 153326615, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153326615", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6769/153326615/6769_FIN230261_L_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.015101", - "last_seen": "2025-06-01T22:05:39.186649", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196121, - 51.583817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.83, - "qmprice": 30.84, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/153342140", - "info": { - "identifier": 153342140, - "sqm_ocr": 77.83, - "price": 2400.0, - "price_per_sqm": 30.8364383913658, - "url": "https://www.rightmove.co.uk/properties/153342140", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233849/153342140/233849_2679415_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.084655", - "last_seen": "2025-06-01T22:05:52.130275", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.310267, - 51.48374 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.2, - "qmprice": 48.21, - "rooms": 2, - "total_price": 3770.0, - "url": "https://www.rightmove.co.uk/properties/153356771", - "info": { - "identifier": 153356771, - "sqm_ocr": 78.2, - "price": 3770.0, - "price_per_sqm": 48.209718670076725, - "url": "https://www.rightmove.co.uk/properties/153356771", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39872/153356771/39872_100783017044_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.039062", - "last_seen": "2025-06-01T22:05:49.497007", - "price": 3770.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18524, - 51.47575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.02, - "qmprice": 42.57, - "rooms": 2, - "total_price": 3662.0, - "url": "https://www.rightmove.co.uk/properties/153368459", - "info": { - "identifier": 153368459, - "sqm_ocr": 86.02, - "price": 3662.0, - "price_per_sqm": 42.571495001162525, - "url": "https://www.rightmove.co.uk/properties/153368459", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/153368459/136139_2651393_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.351230", - "last_seen": "2025-06-01T22:06:07.993020", - "price": 3661 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005853, - 51.508015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/153372353", - "info": { - "identifier": 153372353, - "sqm_ocr": null, - "price": 2899.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153372353", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "Frestons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259079/153372353/259079_RL5866_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.072729", - "last_seen": "2025-06-01T22:05:45.602071", - "price": 2899.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.033866, - 51.6757 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/153377282", - "info": { - "identifier": 153377282, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153377282", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 92, - "status": null, - "last_seen": 0, - "agency": "Capital Heights Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55386/153377282/55386_7334663_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.379703", - "last_seen": "2025-06-01T20:19:59.718495", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.054713, - 51.51742 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.8, - "qmprice": 27.03, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/153380498", - "info": { - "identifier": 153380498, - "sqm_ocr": 88.8, - "price": 2400.0, - "price_per_sqm": 27.027027027027028, - "url": "https://www.rightmove.co.uk/properties/153380498", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Daniel Cobb", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58939/153380498/58939_b4c982cd-e048-41c2-ae90-81a0510ea7bd_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.756520", - "last_seen": "2025-06-01T22:05:59.094811", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116485, - 51.4914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 46.84, - "rooms": 4, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/153381326", - "info": { - "identifier": 153381326, - "sqm_ocr": 79.0, - "price": 3700.0, - "price_per_sqm": 46.835443037974684, - "url": "https://www.rightmove.co.uk/properties/153381326", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/153381326/77197_VCT_VCT_LFSYCL_465_633150798_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "10/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.379143", - "last_seen": "2025-06-01T22:05:43.122751", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135425, - 51.535557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/153440441", - "info": { - "identifier": 153440441, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153440441", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Rentr", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260789/153440441/260789_032e9af5-2286-4da5-aaf6-e8344140fce7_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.011984, - 51.51196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3727.0, - "url": "https://www.rightmove.co.uk/properties/153445172", - "info": { - "identifier": 153445172, - "sqm_ocr": null, - "price": 3727.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153445172", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "PARKSIDE ESTATES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247049/153445172/247049_Aisan18Strathmore_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.308775", - "last_seen": "2025-06-01T22:06:15.427629", - "price": 3726 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16811, - 51.52953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.2, - "qmprice": 44.19, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/153523196", - "info": { - "identifier": 153523196, - "sqm_ocr": 79.2, - "price": 3500.0, - "price_per_sqm": 44.19191919191919, - "url": "https://www.rightmove.co.uk/properties/153523196", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/153523196/253853_1300480_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.404823", - "last_seen": "2025-06-01T22:06:07.035080", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103905, - 51.499687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/153544223", - "info": { - "identifier": 153544223, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153544223", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/153544223/257522_001-GrandUnion-grace-RUwfzt_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/11/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.748456", - "last_seen": "2025-06-01T22:05:40.534248", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28503, - 51.54101 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/153545066", - "info": { - "identifier": 153545066, - "sqm_ocr": null, - "price": 2195.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153545066", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73310/153545066/73310_33426878_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.786038", - "last_seen": "2025-06-01T22:05:51.359728", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.414397, - 51.50531 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2895.0, - "url": "https://www.rightmove.co.uk/properties/153545924", - "info": { - "identifier": 153545924, - "sqm_ocr": null, - "price": 2895.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153545924", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Blue Planet Investment Consultancy", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277628/153545924/277628_1101Cottom_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.711856", - "last_seen": "2025-06-01T22:05:47.046624", - "price": 2895.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0269, - 51.46157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.24, - "qmprice": 44.77, - "rooms": 2, - "total_price": 3727.0, - "url": "https://www.rightmove.co.uk/properties/153549368", - "info": { - "identifier": 153549368, - "sqm_ocr": 83.24, - "price": 3727.0, - "price_per_sqm": 44.774147044690054, - "url": "https://www.rightmove.co.uk/properties/153549368", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Napier Watt Limited", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83443/153549368/83443_33427187_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.621118", - "last_seen": "2025-06-01T22:06:15.240647", - "price": 3726 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163493, - 51.526817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 48.65, - "rooms": 3, - "total_price": 3649.0, - "url": "https://www.rightmove.co.uk/properties/153554546", - "info": { - "identifier": 153554546, - "sqm_ocr": 75.0, - "price": 3649.0, - "price_per_sqm": 48.653333333333336, - "url": "https://www.rightmove.co.uk/properties/153554546", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 105, - "status": null, - "last_seen": 0, - "agency": "Olivers Town", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54833/153554546/54833_88541_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.912272", - "last_seen": "2025-06-01T22:05:54.025743", - "price": 3648 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117615, - 51.554794 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.8, - "qmprice": 45.29, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/153565943", - "info": { - "identifier": 153565943, - "sqm_ocr": 82.8, - "price": 3750.0, - "price_per_sqm": 45.28985507246377, - "url": "https://www.rightmove.co.uk/properties/153565943", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Short Lets", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235637/153565943/235637_JDW-SL-0003242_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.789757", - "last_seen": "2025-06-01T22:05:56.667002", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19847, - 51.47967 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.1, - "qmprice": 40.07, - "rooms": 3, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/153573791", - "info": { - "identifier": 153573791, - "sqm_ocr": 86.1, - "price": 3450.0, - "price_per_sqm": 40.06968641114983, - "url": "https://www.rightmove.co.uk/properties/153573791", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/153573791/15963_1295512_IMG_02_0013_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.251034", - "last_seen": "2025-06-01T22:06:13.394472", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194645, - 51.453854 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/153674954", - "info": { - "identifier": 153674954, - "sqm_ocr": null, - "price": 2708.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153674954", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Bentley & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/205k/204560/153674954/204560_974_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.449464", - "last_seen": "2025-06-01T22:05:42.780475", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133535, - 51.5308 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/153696749", - "info": { - "identifier": 153696749, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153696749", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Aaron Shohet Property", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265799/153696749/265799_33435897_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.021412", - "last_seen": "2025-06-01T22:05:39.877905", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211548, - 51.61373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 32.79, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/153806912", - "info": { - "identifier": 153806912, - "sqm_ocr": 61.0, - "price": 2000.0, - "price_per_sqm": 32.78688524590164, - "url": "https://www.rightmove.co.uk/properties/153806912", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 52, - "status": null, - "last_seen": 0, - "agency": "Adam Hayes Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82115/153806912/82115_33415565_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.310942", - "last_seen": "2025-06-01T22:05:38.924355", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172699, - 51.61138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 40.0, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/153806960", - "info": { - "identifier": 153806960, - "sqm_ocr": 75.0, - "price": 3000.0, - "price_per_sqm": 40.0, - "url": "https://www.rightmove.co.uk/properties/153806960", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "CENTURY 21 Sophia Elena", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85477/153806960/85477_CEN240063_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.383555", - "last_seen": "2025-06-01T22:06:15.184619", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18311, - 51.52922 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/153813161", - "info": { - "identifier": 153813161, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153813161", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247502/153813161/247502_P436075_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.467986", - "last_seen": "2025-06-01T22:05:49.811626", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11335, - 51.59161 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.56, - "qmprice": 29.25, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/153819119", - "info": { - "identifier": 153819119, - "sqm_ocr": 102.56, - "price": 3000.0, - "price_per_sqm": 29.25117004680187, - "url": "https://www.rightmove.co.uk/properties/153819119", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 79, - "status": null, - "last_seen": 0, - "agency": "Niche Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/197k/196184/153819119/196184_371_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.446772", - "last_seen": "2025-06-01T22:05:49.862233", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11958, - 51.59117 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/153839228", - "info": { - "identifier": 153839228, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153839228", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43739/153839228/43739_P289818_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.876096", - "last_seen": "2025-06-01T22:06:15.452376", - "price": 3683.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15349, - 51.52232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/153851498", - "info": { - "identifier": 153851498, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153851498", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11427/153851498/11427_0405_HRT040502510_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.477370", - "last_seen": "2025-06-01T22:05:59.105963", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13039, - 51.45079 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/153868730", - "info": { - "identifier": 153868730, - "sqm_ocr": null, - "price": 3597.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153868730", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 228, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167687/153868730/167687_2679597_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.192523", - "last_seen": "2025-06-01T22:05:49.058018", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22301, - 51.51167 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/153910871", - "info": { - "identifier": 153910871, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153910871", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105152/153910871/105152_0420_HRT042001669_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.067693", - "last_seen": "2025-06-01T22:05:45.758133", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13301, - 51.64021 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/153928037", - "info": { - "identifier": 153928037, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153928037", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/153928037/209042_FLOF-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:11.257648", - "last_seen": "2025-06-01T22:06:11.257648", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010683, - 51.50047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3554.0, - "url": "https://www.rightmove.co.uk/properties/153930053", - "info": { - "identifier": 153930053, - "sqm_ocr": null, - "price": 3554.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153930053", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/153930053/242054_SpencerRoadServicedApartments_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.796219", - "last_seen": "2025-06-01T22:05:50.026422", - "price": 3554.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06198, - 51.59787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3924.0, - "url": "https://www.rightmove.co.uk/properties/153930707", - "info": { - "identifier": 153930707, - "sqm_ocr": null, - "price": 3924.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153930707", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/153930707/242054_StIvianCourtServicedApartments_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.469333", - "last_seen": "2025-06-01T22:05:49.764016", - "price": 3924.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14578, - 51.59644 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3783.0, - "url": "https://www.rightmove.co.uk/properties/153931265", - "info": { - "identifier": 153931265, - "sqm_ocr": null, - "price": 3783.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153931265", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/153931265/242054_StMargretsAvenueServicedApartment_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.615663", - "last_seen": "2025-06-01T22:05:49.652419", - "price": 3783.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09982, - 51.58707 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/153959750", - "info": { - "identifier": 153959750, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153959750", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "John Grants Estate Agents Ltd", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78074/153959750/78074_10599218_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.059101, - 51.628574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/153966152", - "info": { - "identifier": 153966152, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153966152", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "D", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.793003", - "last_seen": "2025-06-01T22:05:43.516395", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11089, - 51.40021 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.69, - "qmprice": 49.46, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/153966686", - "info": { - "identifier": 153966686, - "sqm_ocr": 63.69, - "price": 3150.0, - "price_per_sqm": 49.45831370701837, - "url": "https://www.rightmove.co.uk/properties/153966686", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/153966686/77197_VCT_VCT_LFSYCL_465_633155246_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.671949", - "last_seen": "2025-06-01T22:05:42.326813", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138536, - 51.53178 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2840.0, - "url": "https://www.rightmove.co.uk/properties/153974507", - "info": { - "identifier": 153974507, - "sqm_ocr": null, - "price": 2840.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153974507", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/153974507/242054_AddisonWayServicedApartment_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.136894", - "last_seen": "2025-06-01T22:05:39.621092", - "price": 2840.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19421, - 51.58748 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2626.0, - "url": "https://www.rightmove.co.uk/properties/153974522", - "info": { - "identifier": 153974522, - "sqm_ocr": null, - "price": 2626.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153974522", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/153974522/242054_BrickLaneServicedApartment_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.912337", - "last_seen": "2025-06-01T22:05:45.884524", - "price": 2626.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04829, - 51.65772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3025.0, - "url": "https://www.rightmove.co.uk/properties/153974627", - "info": { - "identifier": 153974627, - "sqm_ocr": null, - "price": 3025.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/153974627", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/153974627/242054_CamberwellRoadServicedApartment_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.407371", - "last_seen": "2025-06-01T22:06:06.192350", - "price": 3025.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09406, - 51.4833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/154008482", - "info": { - "identifier": 154008482, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154008482", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/154008482/209042_JUL-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.109915", - "last_seen": "2025-06-01T22:05:53.516581", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101528, - 51.522972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/154013726", - "info": { - "identifier": 154013726, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154013726", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/154013726/17882_38465_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.577991", - "last_seen": "2025-06-01T22:05:49.635455", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11982, - 51.58182 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3619.0, - "url": "https://www.rightmove.co.uk/properties/154017977", - "info": { - "identifier": 154017977, - "sqm_ocr": null, - "price": 3619.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154017977", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/154017977/242054_CarlingfordRdServicedApartment_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.716427", - "last_seen": "2025-06-01T22:05:50.092597", - "price": 3619.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09649, - 51.58729 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3548.0, - "url": "https://www.rightmove.co.uk/properties/154022369", - "info": { - "identifier": 154022369, - "sqm_ocr": null, - "price": 3548.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154022369", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/154022369/242054_CollegeRoadServicedApartment_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.657650", - "last_seen": "2025-06-01T22:05:49.633765", - "price": 3548.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07199, - 51.60685 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/154067324", - "info": { - "identifier": 154067324, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154067324", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/154067324/146147_PR211671_IMG_00_0022_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.660186", - "last_seen": "2025-06-01T22:05:48.792101", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222451, - 51.51155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/154076339", - "info": { - "identifier": 154076339, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154076339", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 87, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266774/154076339/266774_33459019_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.771644", - "last_seen": "2025-06-01T22:05:41.109003", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24762, - 51.53587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.52, - "qmprice": 59.82, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/154080308", - "info": { - "identifier": 154080308, - "sqm_ocr": 63.52, - "price": 3800.0, - "price_per_sqm": 59.823677581863976, - "url": "https://www.rightmove.co.uk/properties/154080308", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Capital Heights Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55386/154080308/55386_12528800_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.009518, - 51.548386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/154090661", - "info": { - "identifier": 154090661, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154090661", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 221, - "status": null, - "last_seen": 0, - "agency": "Swift Real Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275078/154090661/275078_271_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.700765", - "last_seen": "2025-06-01T22:06:09.187350", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009302, - 51.52136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2841.0, - "url": "https://www.rightmove.co.uk/properties/154098131", - "info": { - "identifier": 154098131, - "sqm_ocr": null, - "price": 2841.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154098131", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/154098131/242054_EtherleyRoadServicedApartments2Bed_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.431487", - "last_seen": "2025-06-01T22:05:49.944036", - "price": 2841.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09198, - 51.58479 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3943.0, - "url": "https://www.rightmove.co.uk/properties/154098764", - "info": { - "identifier": 154098764, - "sqm_ocr": null, - "price": 3943.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154098764", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Interlet Sales and Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76342/154098764/76342_ISL117180_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.080460", - "last_seen": "2025-06-01T22:06:08.590307", - "price": 3943 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028043, - 51.507233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3392.0, - "url": "https://www.rightmove.co.uk/properties/154103879", - "info": { - "identifier": 154103879, - "sqm_ocr": null, - "price": 3392.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154103879", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/154103879/242054_FulhamPalaceRoadServicedApartments2Bed_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.115413", - "last_seen": "2025-06-01T22:05:49.462580", - "price": 3392.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21172, - 51.47256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3392.0, - "url": "https://www.rightmove.co.uk/properties/154104356", - "info": { - "identifier": 154104356, - "sqm_ocr": null, - "price": 3392.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154104356", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/154104356/242054_FulhamPalaceRoadServicedApartments2BedQueensBed_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.218676", - "last_seen": "2025-06-01T22:05:48.649774", - "price": 3392.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21172, - 51.47256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/154136912", - "info": { - "identifier": 154136912, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154136912", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 96, - "status": null, - "last_seen": 0, - "agency": "Ivory Real Estate", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82380/154136912/82380_IVG240479_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.236685", - "last_seen": "2025-06-01T22:06:10.455569", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027756, - 51.507206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.7, - "qmprice": 44.05, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/154150406", - "info": { - "identifier": 154150406, - "sqm_ocr": 48.7, - "price": 2145.0, - "price_per_sqm": 44.04517453798768, - "url": "https://www.rightmove.co.uk/properties/154150406", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chard", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141944/154150406/141944_33463213_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.829449", - "last_seen": "2025-06-01T22:05:48.359969", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213934, - 51.47434 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2596.0, - "url": "https://www.rightmove.co.uk/properties/154160813", - "info": { - "identifier": 154160813, - "sqm_ocr": null, - "price": 2596.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154160813", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/154160813/242054_WembleyParkDriveServicedApartments2Bed_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.418792", - "last_seen": "2025-06-01T22:05:41.028829", - "price": 2596.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2831, - 51.56175 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.52, - "qmprice": 58.25, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/154172885", - "info": { - "identifier": 154172885, - "sqm_ocr": 63.52, - "price": 3700.0, - "price_per_sqm": 58.249370277078086, - "url": "https://www.rightmove.co.uk/properties/154172885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Capital Heights Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55386/154172885/55386_12530421_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.009518, - 51.548386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.61, - "qmprice": 18.32, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/154177052", - "info": { - "identifier": 154177052, - "sqm_ocr": 114.61, - "price": 2100.0, - "price_per_sqm": 18.32300846348486, - "url": "https://www.rightmove.co.uk/properties/154177052", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Robert Leech", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/132k/131053/154177052/131053_100126011480_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.856364", - "last_seen": "2025-06-01T22:05:43.319609", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14244, - 51.33811 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.8, - "qmprice": 44.91, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/154198034", - "info": { - "identifier": 154198034, - "sqm_ocr": 66.8, - "price": 3000.0, - "price_per_sqm": 44.91017964071857, - "url": "https://www.rightmove.co.uk/properties/154198034", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/154198034/15969_1302199_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.093900", - "last_seen": "2025-06-01T22:05:44.622169", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.351823, - 51.53076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3510.0, - "url": "https://www.rightmove.co.uk/properties/154221929", - "info": { - "identifier": 154221929, - "sqm_ocr": null, - "price": 3510.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154221929", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Empire Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237251/154221929/237251_102658003176_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.132134", - "last_seen": "2025-06-01T22:05:40.542921", - "price": 3510.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21789, - 51.55044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3514.0, - "url": "https://www.rightmove.co.uk/properties/154236038", - "info": { - "identifier": 154236038, - "sqm_ocr": null, - "price": 3514.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154236038", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/154236038/242054_HarbutRoadServicedApartments_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.484996", - "last_seen": "2025-06-01T22:06:12.636390", - "price": 3514.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17828, - 51.46251 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3453.0, - "url": "https://www.rightmove.co.uk/properties/154238342", - "info": { - "identifier": 154238342, - "sqm_ocr": null, - "price": 3453.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154238342", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/154238342/242054_KillburnHighRoadServicedApartment_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.639636", - "last_seen": "2025-06-01T22:05:40.152850", - "price": 3453.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20166, - 51.54515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2963.0, - "url": "https://www.rightmove.co.uk/properties/154264994", - "info": { - "identifier": 154264994, - "sqm_ocr": null, - "price": 2963.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154264994", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/154264994/242054_LeightonRoadServicedApartments2Bed_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.775471", - "last_seen": "2025-06-01T22:05:44.505970", - "price": 2963.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32122, - 51.50592 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/154279916", - "info": { - "identifier": 154279916, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154279916", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "Frestons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259079/154279916/259079_RL5885_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.113845", - "last_seen": "2025-06-01T22:06:06.315319", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080948, - 51.4285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/154280732", - "info": { - "identifier": 154280732, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154280732", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57096/154280732/57096_KQP140621_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.959011", - "last_seen": "2025-06-01T22:05:41.378460", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24086, - 51.53606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 145.85, - "qmprice": 21.24, - "rooms": 3, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/154286870", - "info": { - "identifier": 154286870, - "sqm_ocr": 145.85, - "price": 3098.0, - "price_per_sqm": 21.24100102845389, - "url": "https://www.rightmove.co.uk/properties/154286870", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 89, - "status": null, - "last_seen": 0, - "agency": "parkinsonfarr", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29643/154286870/29643_855_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.093833", - "last_seen": "2025-06-01T22:05:40.597273", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20887, - 51.54526 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 42.14, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/154303178", - "info": { - "identifier": 154303178, - "sqm_ocr": 70.0, - "price": 2950.0, - "price_per_sqm": 42.142857142857146, - "url": "https://www.rightmove.co.uk/properties/154303178", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/154303178/15975_1302762_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.640439", - "last_seen": "2025-06-01T22:06:01.655231", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213108, - 51.42994 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3097.0, - "url": "https://www.rightmove.co.uk/properties/154320035", - "info": { - "identifier": 154320035, - "sqm_ocr": null, - "price": 3097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154320035", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/154320035/242054_MinardRoadServicedHouse_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.861056", - "last_seen": "2025-06-01T22:06:00.792370", - "price": 3097.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00059, - 51.44107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2725.0, - "url": "https://www.rightmove.co.uk/properties/154326719", - "info": { - "identifier": 154326719, - "sqm_ocr": null, - "price": 2725.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154326719", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67439/154326719/67439_CPL150065_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.216731", - "last_seen": "2025-06-01T22:06:13.604189", - "price": 2725.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154988, - 51.433876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3331.0, - "url": "https://www.rightmove.co.uk/properties/154341848", - "info": { - "identifier": 154341848, - "sqm_ocr": null, - "price": 3331.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154341848", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/154341848/242054_NorcuttRoadServicedApartments_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.321696", - "last_seen": "2025-06-01T22:06:04.269726", - "price": 3331.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34123, - 51.44677 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/154356467", - "info": { - "identifier": 154356467, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154356467", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/154356467/209042_RAI-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.108784", - "last_seen": "2025-06-01T20:19:57.293074", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070189, - 51.50864 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.61, - "qmprice": 47.61, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/154393376", - "info": { - "identifier": 154393376, - "sqm_ocr": 75.61, - "price": 3600.0, - "price_per_sqm": 47.6127496362915, - "url": "https://www.rightmove.co.uk/properties/154393376", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/154393376/48994_CNL240237_L_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.751984", - "last_seen": "2025-06-01T22:06:08.342807", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011984, - 51.49984 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/154396139", - "info": { - "identifier": 154396139, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154396139", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49000/154396139/49000_CNL190113_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.799614", - "last_seen": "2025-06-01T22:06:04.025225", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.034954, - 51.609356 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3490.0, - "url": "https://www.rightmove.co.uk/properties/154404422", - "info": { - "identifier": 154404422, - "sqm_ocr": null, - "price": 3490.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154404422", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/154404422/78429_LON-593_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.452405", - "last_seen": "2025-06-01T22:05:57.561124", - "price": 3490.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19716, - 51.49832 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/154423241", - "info": { - "identifier": 154423241, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154423241", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/154423241/12070_28369023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.555987", - "last_seen": "2025-06-01T22:05:46.551163", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.016764, - 51.494415 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/154426244", - "info": { - "identifier": 154426244, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154426244", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 80, - "status": null, - "last_seen": 0, - "agency": "MS Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83081/154426244/83081_MSLR66555_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.565486", - "last_seen": "2025-06-01T22:05:54.016776", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13096, - 51.55295 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.9, - "qmprice": 69.08, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/154444574", - "info": { - "identifier": 154444574, - "sqm_ocr": 57.9, - "price": 4000.0, - "price_per_sqm": 69.0846286701209, - "url": "https://www.rightmove.co.uk/properties/154444574", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50074/154444574/50074_P290595_IMG_13_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.408708", - "last_seen": "2025-06-01T22:06:15.804356", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19285, - 51.51274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.2, - "qmprice": 54.19, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/154456373", - "info": { - "identifier": 154456373, - "sqm_ocr": 69.2, - "price": 3750.0, - "price_per_sqm": 54.190751445086704, - "url": "https://www.rightmove.co.uk/properties/154456373", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/154456373/15948_1303226_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.714079", - "last_seen": "2025-06-01T22:05:49.190359", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212771, - 51.49015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.54, - "qmprice": 28.21, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/154493870", - "info": { - "identifier": 154493870, - "sqm_ocr": 81.54, - "price": 2300.0, - "price_per_sqm": 28.207014961981848, - "url": "https://www.rightmove.co.uk/properties/154493870", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 58, - "status": null, - "last_seen": 0, - "agency": "Alexander Charles & Browne", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206588/154493870/206588_28374966_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.769218", - "last_seen": "2025-06-01T22:05:43.409552", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094556, - 51.358753 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 38.69, - "qmprice": 84.0, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/154555886", - "info": { - "identifier": 154555886, - "sqm_ocr": 38.69, - "price": 3250.0, - "price_per_sqm": 84.00103385887827, - "url": "https://www.rightmove.co.uk/properties/154555886", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/154555886/15957_1303296_IMG_00_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.043522", - "last_seen": "2025-06-01T22:05:42.283650", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20752, - 51.551304 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/154568438", - "info": { - "identifier": 154568438, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154568438", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100906/154568438/100906_0619_HRT061901149_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.722619", - "last_seen": "2025-06-01T22:06:12.056265", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03668, - 51.58181 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/154593257", - "info": { - "identifier": 154593257, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154593257", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "CROWN LUXURY HOMES LIMITED", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267257/154593257/267257_33487392_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.161630", - "last_seen": "2025-06-01T22:05:57.814755", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171244, - 51.49199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/154595357", - "info": { - "identifier": 154595357, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154595357", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/154595357/209042_NL-KH25-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.453190", - "last_seen": "2025-06-01T22:06:15.014441", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151907, - 51.492374 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/154596539", - "info": { - "identifier": 154596539, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154596539", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/154596539/209042_DRYS-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.862483", - "last_seen": "2025-06-01T22:05:47.212047", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078941, - 51.527813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3505.0, - "url": "https://www.rightmove.co.uk/properties/154601390", - "info": { - "identifier": 154601390, - "sqm_ocr": null, - "price": 3505.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154601390", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/154601390/209042_MARA-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.182258", - "last_seen": "2025-06-01T22:06:08.742130", - "price": 3505.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013373, - 51.497593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3724.0, - "url": "https://www.rightmove.co.uk/properties/154601876", - "info": { - "identifier": 154601876, - "sqm_ocr": null, - "price": 3724.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154601876", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/154601876/209042_AGG2-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.326551", - "last_seen": "2025-06-01T22:06:14.517368", - "price": 3724.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184932, - 51.52865 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 29.77, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/154615226", - "info": { - "identifier": 154615226, - "sqm_ocr": 73.9, - "price": 2200.0, - "price_per_sqm": 29.769959404600808, - "url": "https://www.rightmove.co.uk/properties/154615226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112915/154615226/112915_P290812_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.810785", - "last_seen": "2025-06-01T22:05:47.077428", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05982, - 51.49418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3945.0, - "url": "https://www.rightmove.co.uk/properties/154618070", - "info": { - "identifier": 154618070, - "sqm_ocr": null, - "price": 3945.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154618070", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Short Lets", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235637/154618070/235637_JDW-SL-0002467_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.584050", - "last_seen": "2025-06-01T22:06:04.805778", - "price": 3945.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3191, - 51.45855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/154631240", - "info": { - "identifier": 154631240, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154631240", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70025/154631240/70025_0477_HRT047707562_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.316304", - "last_seen": "2025-06-01T22:05:51.048144", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.23209, - 51.59305 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.1, - "qmprice": 30.74, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/154633625", - "info": { - "identifier": 154633625, - "sqm_ocr": 91.1, - "price": 2800.0, - "price_per_sqm": 30.73545554335895, - "url": "https://www.rightmove.co.uk/properties/154633625", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/154633625/48101_1303266_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.324369", - "last_seen": "2025-06-01T22:06:03.084091", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.036281, - 51.515106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/154647704", - "info": { - "identifier": 154647704, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154647704", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50074/154647704/50074_P290844_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.121661", - "last_seen": "2025-06-01T22:05:49.293529", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22258, - 51.51157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/154650479", - "info": { - "identifier": 154650479, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154650479", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50074/154650479/50074_P290851_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.665079", - "last_seen": "2025-06-01T22:05:48.323108", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22165, - 51.51192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/154658036", - "info": { - "identifier": 154658036, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154658036", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7313/154658036/7313_MIL240024_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.273841", - "last_seen": "2025-06-01T22:05:38.560774", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.246087, - 51.61429 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/154666064", - "info": { - "identifier": 154666064, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154666064", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100906/154666064/100906_0619_HRT061901143_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.806092", - "last_seen": "2025-06-01T22:06:11.947744", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00977, - 51.58972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/154667111", - "info": { - "identifier": 154667111, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154667111", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stock Page Stock", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91733/154667111/91733_31fairlawn_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.964766", - "last_seen": "2025-06-01T22:06:00.836526", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04334, - 51.47405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/154677773", - "info": { - "identifier": 154677773, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154677773", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262865/154677773/262865_a1G8d000002QBKyEAO_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.152428", - "last_seen": "2025-06-01T22:06:02.739528", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00996, - 51.51357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.0, - "qmprice": 25.81, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/154679573", - "info": { - "identifier": 154679573, - "sqm_ocr": 93.0, - "price": 2400.0, - "price_per_sqm": 25.806451612903224, - "url": "https://www.rightmove.co.uk/properties/154679573", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Streets Ahead", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6870/154679573/6870_DIMJAL_IMG_06_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.732580", - "last_seen": "2025-06-01T22:05:43.577956", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08414, - 51.3763 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 29.77, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/154694522", - "info": { - "identifier": 154694522, - "sqm_ocr": 73.9, - "price": 2200.0, - "price_per_sqm": 29.769959404600808, - "url": "https://www.rightmove.co.uk/properties/154694522", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/154694522/238841_P290890_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.559740", - "last_seen": "2025-06-01T22:05:46.732772", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05982, - 51.49418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/154719203", - "info": { - "identifier": 154719203, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154719203", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Woodward Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14627/154719203/14627_33494981_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.060479", - "last_seen": "2025-06-01T22:05:50.629893", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.342076, - 51.566376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/154720154", - "info": { - "identifier": 154720154, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154720154", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "Fine & Country", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72855/154720154/72855_GCV240196_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.394349", - "last_seen": "2025-06-01T22:06:07.846687", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180367, - 51.353226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 34.85, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/154725224", - "info": { - "identifier": 154725224, - "sqm_ocr": 66.0, - "price": 2300.0, - "price_per_sqm": 34.84848484848485, - "url": "https://www.rightmove.co.uk/properties/154725224", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/154725224/71401_1303982_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.788205", - "last_seen": "2025-06-01T22:05:40.916414", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209367, - 51.55092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/154725665", - "info": { - "identifier": 154725665, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154725665", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Woodward Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14627/154725665/14627_33495388_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.177598", - "last_seen": "2025-06-01T22:05:50.849300", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34162, - 51.566196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/154741811", - "info": { - "identifier": 154741811, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154741811", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/154741811/209042_ANO-Mid_let_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.873081", - "last_seen": "2025-06-01T22:05:39.554618", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209171, - 51.559837 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.2, - "qmprice": 31.04, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/154754954", - "info": { - "identifier": 154754954, - "sqm_ocr": 90.2, - "price": 2800.0, - "price_per_sqm": 31.042128603104214, - "url": "https://www.rightmove.co.uk/properties/154754954", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72056/154754954/72056_33496662_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.316941", - "last_seen": "2025-06-01T22:06:13.123331", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159282, - 51.43218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/154756784", - "info": { - "identifier": 154756784, - "sqm_ocr": null, - "price": 3012.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154756784", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 89, - "status": null, - "last_seen": 0, - "agency": "parkinsonfarr", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29643/154756784/29643_977_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.716711", - "last_seen": "2025-06-01T22:05:40.527985", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23596, - 51.56078 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.6, - "qmprice": 28.31, - "rooms": 4, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/154756820", - "info": { - "identifier": 154756820, - "sqm_ocr": 118.6, - "price": 3358.0, - "price_per_sqm": 28.31365935919056, - "url": "https://www.rightmove.co.uk/properties/154756820", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 89, - "status": null, - "last_seen": 0, - "agency": "parkinsonfarr", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29643/154756820/29643_979_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.692663", - "last_seen": "2025-06-01T22:05:41.238776", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23596, - 51.56078 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3943.0, - "url": "https://www.rightmove.co.uk/properties/154758704", - "info": { - "identifier": 154758704, - "sqm_ocr": null, - "price": 3943.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154758704", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Residential Land Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3198/154758704/3198_6286_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.974856", - "last_seen": "2025-06-01T22:06:10.666925", - "price": 3943 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027818, - 51.507214 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.7, - "qmprice": 35.44, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/154760489", - "info": { - "identifier": 154760489, - "sqm_ocr": 91.7, - "price": 3250.0, - "price_per_sqm": 35.44165757906216, - "url": "https://www.rightmove.co.uk/properties/154760489", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 61, - "status": null, - "last_seen": 0, - "agency": "The Agency Group", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79431/154760489/79431_RX449495_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.931830", - "last_seen": "2025-06-01T22:05:55.975512", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.308205, - 51.490868 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.16, - "qmprice": 42.54, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/154763738", - "info": { - "identifier": 154763738, - "sqm_ocr": 88.16, - "price": 3750.0, - "price_per_sqm": 42.53629764065336, - "url": "https://www.rightmove.co.uk/properties/154763738", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54732/154763738/54732_STL220093_L_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.095783", - "last_seen": "2025-06-01T22:06:14.875122", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17408, - 51.528004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3943.0, - "url": "https://www.rightmove.co.uk/properties/154768667", - "info": { - "identifier": 154768667, - "sqm_ocr": null, - "price": 3943.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154768667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Land Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3198/154768667/3198_6288_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.842828", - "last_seen": "2025-06-01T20:19:58.789159", - "price": 3943 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027818, - 51.507214 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3965.0, - "url": "https://www.rightmove.co.uk/properties/154771172", - "info": { - "identifier": 154771172, - "sqm_ocr": null, - "price": 3965.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154771172", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Land Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3198/154771172/3198_6289_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.047204", - "last_seen": "2025-06-01T22:06:08.067459", - "price": 3965 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027818, - 51.507214 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 29.77, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/154772072", - "info": { - "identifier": 154772072, - "sqm_ocr": 73.9, - "price": 2200.0, - "price_per_sqm": 29.769959404600808, - "url": "https://www.rightmove.co.uk/properties/154772072", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/154772072/95098_P291009_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.784749", - "last_seen": "2025-06-01T22:05:46.518851", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05982, - 51.49418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.26, - "qmprice": 34.85, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/154776344", - "info": { - "identifier": 154776344, - "sqm_ocr": 93.26, - "price": 3250.0, - "price_per_sqm": 34.84880977911216, - "url": "https://www.rightmove.co.uk/properties/154776344", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/154776344/136139_2652188_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.654835", - "last_seen": "2025-06-01T22:06:09.747504", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020875, - 51.51343 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/154778411", - "info": { - "identifier": 154778411, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154778411", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hanover", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74440/154778411/74440_HNV130380_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.182787", - "last_seen": "2025-06-01T22:05:42.240672", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185077, - 51.53784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/154798586", - "info": { - "identifier": 154798586, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154798586", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100906/154798586/100906_0630_HRT063001095_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.799086", - "last_seen": "2025-06-01T22:06:11.634506", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01242, - 51.59857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.0, - "qmprice": 42.55, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/154816520", - "info": { - "identifier": 154816520, - "sqm_ocr": 47.0, - "price": 2000.0, - "price_per_sqm": 42.5531914893617, - "url": "https://www.rightmove.co.uk/properties/154816520", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/154816520/250739_1299603_IMG_01_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.519445", - "last_seen": "2025-06-01T22:05:38.887502", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.253464, - 51.610935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2190.0, - "url": "https://www.rightmove.co.uk/properties/154816967", - "info": { - "identifier": 154816967, - "sqm_ocr": null, - "price": 2190.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154816967", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Broadway & West", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.458221", - "last_seen": "2025-06-01T22:05:57.743935", - "price": 2190.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182993, - 51.4868 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3727.0, - "url": "https://www.rightmove.co.uk/properties/154819043", - "info": { - "identifier": 154819043, - "sqm_ocr": null, - "price": 3727.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154819043", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hanley Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72329/154819043/72329_2635_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.475747", - "last_seen": "2025-06-01T22:06:15.988481", - "price": 3726 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16811, - 51.52953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3230.0, - "url": "https://www.rightmove.co.uk/properties/154847654", - "info": { - "identifier": 154847654, - "sqm_ocr": null, - "price": 3230.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/154847654", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/154847654/209042_JUL_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.598338", - "last_seen": "2025-06-01T22:05:57.162389", - "price": 3230.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101528, - 51.522972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.8, - "qmprice": 40.19, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/154850381", - "info": { - "identifier": 154850381, - "sqm_ocr": 95.8, - "price": 3850.0, - "price_per_sqm": 40.18789144050105, - "url": "https://www.rightmove.co.uk/properties/154850381", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/154850381/98531_1304344_IMG_13_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.601235", - "last_seen": "2025-06-01T22:05:48.671017", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23554, - 51.504765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 122.34, - "qmprice": 31.06, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/154864844", - "info": { - "identifier": 154864844, - "sqm_ocr": 122.34, - "price": 3800.0, - "price_per_sqm": 31.06097760340036, - "url": "https://www.rightmove.co.uk/properties/154864844", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 52, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/154864844/228512_33502715_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.639306", - "last_seen": "2025-06-01T22:05:56.295473", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174132, - 51.541817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.0, - "qmprice": 68.09, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/154914893", - "info": { - "identifier": 154914893, - "sqm_ocr": 47.0, - "price": 3200.0, - "price_per_sqm": 68.08510638297872, - "url": "https://www.rightmove.co.uk/properties/154914893", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lyons London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/153k/152984/154914893/152984_LYONS_000025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.454700", - "last_seen": "2025-06-01T22:05:47.769795", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084135, - 51.529823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 142.27, - "qmprice": 28.12, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/154965914", - "info": { - "identifier": 154965914, - "sqm_ocr": 142.27, - "price": 4000.0, - "price_per_sqm": 28.115554930765445, - "url": "https://www.rightmove.co.uk/properties/154965914", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/154965914/108947_1304813_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.909926", - "last_seen": "2025-06-01T22:05:50.466161", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33544, - 51.564915 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.3, - "qmprice": 35.86, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/154982162", - "info": { - "identifier": 154982162, - "sqm_ocr": 75.3, - "price": 2700.0, - "price_per_sqm": 35.85657370517929, - "url": "https://www.rightmove.co.uk/properties/154982162", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/154982162/15951_1297469_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.978057", - "last_seen": "2025-06-01T22:05:55.243684", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26994, - 51.49046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 29.49, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/155018498", - "info": { - "identifier": 155018498, - "sqm_ocr": 78.0, - "price": 2300.0, - "price_per_sqm": 29.487179487179485, - "url": "https://www.rightmove.co.uk/properties/155018498", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 124, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210116/155018498/210116_P291351_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.048661", - "last_seen": "2025-06-01T22:05:42.466713", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19311, - 51.539 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.9, - "qmprice": 26.07, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/155020307", - "info": { - "identifier": 155020307, - "sqm_ocr": 95.9, - "price": 2500.0, - "price_per_sqm": 26.068821689259643, - "url": "https://www.rightmove.co.uk/properties/155020307", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brockenhurst Property Specialists", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58355/155020307/58355_RL0368_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.212165", - "last_seen": "2025-06-01T22:05:50.340599", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.329715, - 51.59068 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3290.0, - "url": "https://www.rightmove.co.uk/properties/155023658", - "info": { - "identifier": 155023658, - "sqm_ocr": null, - "price": 3290.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155023658", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/155023658/78429_LON-198_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.155433", - "last_seen": "2025-06-01T22:05:59.914919", - "price": 3290.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11756, - 51.47567 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.74, - "qmprice": 31.55, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/155029658", - "info": { - "identifier": 155029658, - "sqm_ocr": 69.74, - "price": 2200.0, - "price_per_sqm": 31.54574132492114, - "url": "https://www.rightmove.co.uk/properties/155029658", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Alexander Charles & Browne", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206588/155029658/206588_28421519_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.339147", - "last_seen": "2025-06-01T22:05:41.613718", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.113412, - 51.39797 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/155046830", - "info": { - "identifier": 155046830, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155046830", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/122k/121090/155046830/121090_0635_HRT063500646_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.055016", - "last_seen": "2025-06-01T22:05:38.225912", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.15743, - 51.55367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/155053988", - "info": { - "identifier": 155053988, - "sqm_ocr": null, - "price": 3878.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155053988", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Interlet Sales and Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76342/155053988/76342_ISL791044_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.237236", - "last_seen": "2025-06-01T22:06:09.670951", - "price": 3878 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027756, - 51.507206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/155072441", - "info": { - "identifier": 155072441, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155072441", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/155072441/238265_L86911_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.092095", - "last_seen": "2025-06-01T22:06:09.815396", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.000186, - 51.510124 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/155073770", - "info": { - "identifier": 155073770, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155073770", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Concept Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82211/155073770/82211_1099_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.698646", - "last_seen": "2025-06-01T22:06:14.234708", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16512, - 51.43123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.5, - "qmprice": 38.81, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/155078192", - "info": { - "identifier": 155078192, - "sqm_ocr": 100.5, - "price": 3900.0, - "price_per_sqm": 38.80597014925373, - "url": "https://www.rightmove.co.uk/properties/155078192", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fuller Gilbert & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3883/155078192/3883_32810138_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.563540", - "last_seen": "2025-06-01T22:06:01.131674", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199859, - 51.43802 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.0, - "qmprice": 55.56, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/155086643", - "info": { - "identifier": 155086643, - "sqm_ocr": 54.0, - "price": 3000.0, - "price_per_sqm": 55.55555555555556, - "url": "https://www.rightmove.co.uk/properties/155086643", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/155086643/48101_1303094_IMG_02_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.228601", - "last_seen": "2025-06-01T20:19:59.900279", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017636, - 51.48679 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.9, - "qmprice": 54.93, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/155127674", - "info": { - "identifier": 155127674, - "sqm_ocr": 61.9, - "price": 3400.0, - "price_per_sqm": 54.927302100161555, - "url": "https://www.rightmove.co.uk/properties/155127674", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/155127674/101522_1301622_IMG_00_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.166643", - "last_seen": "2025-06-01T22:05:47.274926", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026659, - 51.5443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/155131448", - "info": { - "identifier": 155131448, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155131448", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/122k/121090/155131448/121090_0635_HRT063500647_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.071214", - "last_seen": "2025-06-01T22:05:38.211001", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.15113, - 51.54245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 36.54, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/155135870", - "info": { - "identifier": 155135870, - "sqm_ocr": 78.0, - "price": 2850.0, - "price_per_sqm": 36.53846153846154, - "url": "https://www.rightmove.co.uk/properties/155135870", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 66, - "status": null, - "last_seen": 0, - "agency": "Keller Williams Advantage", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205682/155135870/205682_Zbaiburehconsorti0003515765_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.200005", - "last_seen": "2025-06-01T22:05:59.965153", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126721, - 51.44503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.3, - "qmprice": 49.81, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/155136791", - "info": { - "identifier": 155136791, - "sqm_ocr": 80.3, - "price": 4000.0, - "price_per_sqm": 49.813200498132005, - "url": "https://www.rightmove.co.uk/properties/155136791", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65911/155136791/65911_WAQ012408545_IMG_00_0021_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.529564", - "last_seen": "2025-06-01T20:19:59.107836", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066568, - 51.508137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 40.8, - "qmprice": 64.95, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/155155829", - "info": { - "identifier": 155155829, - "sqm_ocr": 40.8, - "price": 2650.0, - "price_per_sqm": 64.95098039215686, - "url": "https://www.rightmove.co.uk/properties/155155829", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "April", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75126/155155829/75126_APR200248_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.626491", - "last_seen": "2025-06-01T22:06:11.845357", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00875, - 51.56449 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.2, - "qmprice": 22.82, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/155155838", - "info": { - "identifier": 155155838, - "sqm_ocr": 94.2, - "price": 2150.0, - "price_per_sqm": 22.823779193205944, - "url": "https://www.rightmove.co.uk/properties/155155838", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "360 Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81348/155155838/81348_33519076_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.569609", - "last_seen": "2025-06-01T22:05:43.561980", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0726, - 51.39831 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.86, - "qmprice": 57.47, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/155175257", - "info": { - "identifier": 155175257, - "sqm_ocr": 67.86, - "price": 3900.0, - "price_per_sqm": 57.47126436781609, - "url": "https://www.rightmove.co.uk/properties/155175257", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/155175257/66771_1305368_IMG_10_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.768360", - "last_seen": "2025-06-01T22:05:59.564813", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125722, - 51.485825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/155176796", - "info": { - "identifier": 155176796, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155176796", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Rosewood Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63096/155176796/63096_23THORNESHOUSE_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.910250", - "last_seen": "2025-06-01T22:06:12.408797", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13261, - 51.48086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3277.0, - "url": "https://www.rightmove.co.uk/properties/155179751", - "info": { - "identifier": 155179751, - "sqm_ocr": null, - "price": 3277.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155179751", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Wembley Park Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80783/155179751/80783_2525188_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.808045", - "last_seen": "2025-06-01T22:05:40.629217", - "price": 3277.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276363, - 51.558353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 28.42, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/155185817", - "info": { - "identifier": 155185817, - "sqm_ocr": 73.9, - "price": 2100.0, - "price_per_sqm": 28.41677943166441, - "url": "https://www.rightmove.co.uk/properties/155185817", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/155185817/238841_P291222_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.600093", - "last_seen": "2025-06-01T22:05:46.489647", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05982, - 51.49418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/155194985", - "info": { - "identifier": 155194985, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155194985", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Tyers Yan Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262028/155194985/262028_168_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.715994", - "last_seen": "2025-06-01T22:06:15.690497", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153468, - 51.522186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2902.0, - "url": "https://www.rightmove.co.uk/properties/155203700", - "info": { - "identifier": 155203700, - "sqm_ocr": null, - "price": 2902.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155203700", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/155203700/242054_OldKentRoadServicedApartments2Bed_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.106566", - "last_seen": "2025-06-01T22:06:07.082079", - "price": 2902.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06313, - 51.48234 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3525.0, - "url": "https://www.rightmove.co.uk/properties/155203775", - "info": { - "identifier": 155203775, - "sqm_ocr": null, - "price": 3525.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155203775", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/155203775/242054_DuntonRoadServicedApartments_IMG_18_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.646007", - "last_seen": "2025-06-01T22:06:11.837074", - "price": 3525.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01381, - 51.57342 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2902.0, - "url": "https://www.rightmove.co.uk/properties/155206967", - "info": { - "identifier": 155206967, - "sqm_ocr": null, - "price": 2902.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155206967", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/155206967/242054_BeckenhamRoadServicedApartments2Bed_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.322121", - "last_seen": "2025-06-01T22:05:41.603259", - "price": 2902.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03938, - 51.40886 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/155217590", - "info": { - "identifier": 155217590, - "sqm_ocr": null, - "price": 3050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155217590", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/155217590/238769_852612d4-ac87-4177-8ebb-749c765e503b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.074457", - "last_seen": "2025-06-01T22:06:00.373652", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03828, - 51.48759 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.7, - "qmprice": 57.83, - "rooms": 2, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/155217806", - "info": { - "identifier": 155217806, - "sqm_ocr": 51.7, - "price": 2990.0, - "price_per_sqm": 57.83365570599613, - "url": "https://www.rightmove.co.uk/properties/155217806", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/155217806/15948_1305603_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.617925", - "last_seen": "2025-06-01T22:05:48.828391", - "price": 2990.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210631, - 51.489643 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/155218988", - "info": { - "identifier": 155218988, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155218988", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hinton Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69686/155218988/69686_102800002325_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.905805", - "last_seen": "2025-06-01T22:05:50.581368", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34064, - 51.60601 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.1, - "qmprice": 23.96, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/155225339", - "info": { - "identifier": 155225339, - "sqm_ocr": 123.1, - "price": 2950.0, - "price_per_sqm": 23.9642567018684, - "url": "https://www.rightmove.co.uk/properties/155225339", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/155225339/87815_1268133_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.060913", - "last_seen": "2025-06-01T22:05:38.526058", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252333, - 51.623848 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.5, - "qmprice": 50.36, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/155225405", - "info": { - "identifier": 155225405, - "sqm_ocr": 63.5, - "price": 3198.0, - "price_per_sqm": 50.36220472440945, - "url": "https://www.rightmove.co.uk/properties/155225405", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43823/155225405/43823_P291499_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.357998", - "last_seen": "2025-06-01T22:05:52.120569", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25262, - 51.47992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.4, - "qmprice": 37.45, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/155239055", - "info": { - "identifier": 155239055, - "sqm_ocr": 85.4, - "price": 3198.0, - "price_per_sqm": 37.44730679156908, - "url": "https://www.rightmove.co.uk/properties/155239055", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 192, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167687/155239055/167687_2498788_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.789261", - "last_seen": "2025-06-01T22:05:40.576582", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21058, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/155257769", - "info": { - "identifier": 155257769, - "sqm_ocr": null, - "price": 3987.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155257769", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/155257769/136148_2676132_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.651761", - "last_seen": "2025-06-01T22:05:58.983045", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124678, - 51.484123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.09, - "qmprice": 37.7, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/155259116", - "info": { - "identifier": 155259116, - "sqm_ocr": 106.09, - "price": 4000.0, - "price_per_sqm": 37.70383636535017, - "url": "https://www.rightmove.co.uk/properties/155259116", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43823/155259116/43823_P290116_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.911886", - "last_seen": "2025-06-01T22:05:48.520496", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24068, - 51.4908 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/155259380", - "info": { - "identifier": 155259380, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155259380", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/155259380/238769_6cb3c76f-ceca-4a72-bd55-35a0f18b910e_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.927631", - "last_seen": "2025-06-01T22:05:44.807990", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25791, - 51.52176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/155262497", - "info": { - "identifier": 155262497, - "sqm_ocr": null, - "price": 2375.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155262497", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/155262497/238769_fsdfsdfcxczcv453545353453_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.385952", - "last_seen": "2025-06-01T22:05:40.952542", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29291, - 51.55398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 127.0, - "qmprice": 31.5, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/155266274", - "info": { - "identifier": 155266274, - "sqm_ocr": 127.0, - "price": 4000.0, - "price_per_sqm": 31.496062992125985, - "url": "https://www.rightmove.co.uk/properties/155266274", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43742/155266274/43742_P291447_IMG_03_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.276103", - "last_seen": "2025-06-01T22:06:15.264036", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13263, - 51.49093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/155273579", - "info": { - "identifier": 155273579, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155273579", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/155273579/169658_264908_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.335419", - "last_seen": "2025-06-01T20:20:00.024045", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.007957, - 51.500668 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.8, - "qmprice": 48.74, - "rooms": 2, - "total_price": 3207.0, - "url": "https://www.rightmove.co.uk/properties/155280461", - "info": { - "identifier": 155280461, - "sqm_ocr": 65.8, - "price": 3207.0, - "price_per_sqm": 48.73860182370821, - "url": "https://www.rightmove.co.uk/properties/155280461", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151658/155280461/151658_1305821_IMG_00_0013_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.766978", - "last_seen": "2025-06-01T22:06:14.587421", - "price": 3207.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192883, - 51.52288 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.8, - "qmprice": 30.86, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/155285351", - "info": { - "identifier": 155285351, - "sqm_ocr": 64.8, - "price": 2000.0, - "price_per_sqm": 30.8641975308642, - "url": "https://www.rightmove.co.uk/properties/155285351", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "360 Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81348/155285351/81348_33499029_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.802633", - "last_seen": "2025-06-01T22:05:43.722712", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069533, - 51.39662 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3208.0, - "url": "https://www.rightmove.co.uk/properties/155315078", - "info": { - "identifier": 155315078, - "sqm_ocr": null, - "price": 3208.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155315078", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/155315078/242054_ShrubberyRoadServicedApartments2Bed3beds_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.016793", - "last_seen": "2025-06-01T22:05:59.741900", - "price": 3208.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12836, - 51.43007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3208.0, - "url": "https://www.rightmove.co.uk/properties/155315150", - "info": { - "identifier": 155315150, - "sqm_ocr": null, - "price": 3208.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155315150", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/155315150/242054_ShrubberyRoadServicedApartments2Bed_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.254625", - "last_seen": "2025-06-01T22:05:59.358466", - "price": 3208.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12836, - 51.43007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3208.0, - "url": "https://www.rightmove.co.uk/properties/155315282", - "info": { - "identifier": 155315282, - "sqm_ocr": null, - "price": 3208.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155315282", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Livinc", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242054/155315282/242054_39ShrubberyRoadServicedApartments_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.597771", - "last_seen": "2025-06-01T22:05:58.971000", - "price": 3208.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12836, - 51.43007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.7, - "qmprice": 68.78, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/155319803", - "info": { - "identifier": 155319803, - "sqm_ocr": 56.7, - "price": 3900.0, - "price_per_sqm": 68.78306878306879, - "url": "https://www.rightmove.co.uk/properties/155319803", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Fraser & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20990/155319803/20990_PAL240038_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.822995", - "last_seen": "2025-06-01T22:06:14.972085", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17034, - 51.51879 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.93, - "qmprice": 40.51, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/155321186", - "info": { - "identifier": 155321186, - "sqm_ocr": 90.93, - "price": 3684.0, - "price_per_sqm": 40.51468162322666, - "url": "https://www.rightmove.co.uk/properties/155321186", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/155321186/111056_1303660_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.837083", - "last_seen": "2025-06-01T20:19:55.900888", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00875, - 51.499992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2341.0, - "url": "https://www.rightmove.co.uk/properties/155326796", - "info": { - "identifier": 155326796, - "sqm_ocr": null, - "price": 2341.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155326796", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Wembley Park Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80783/155326796/80783_2618130_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.753270", - "last_seen": "2025-06-01T22:05:41.182445", - "price": 2341.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.274762, - 51.55654 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/155381810", - "info": { - "identifier": 155381810, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155381810", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Mcglashans Property Services", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91433/155381810/91433_28456441_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.383216", - "last_seen": "2025-06-01T22:06:11.364024", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028043, - 51.507233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.0, - "qmprice": 48.91, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/155385944", - "info": { - "identifier": 155385944, - "sqm_ocr": 46.0, - "price": 2250.0, - "price_per_sqm": 48.91304347826087, - "url": "https://www.rightmove.co.uk/properties/155385944", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "April", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75126/155385944/75126_APR210013_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.684018", - "last_seen": "2025-06-01T22:06:11.608311", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00582, - 51.55375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.3, - "qmprice": 28.97, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/155390837", - "info": { - "identifier": 155390837, - "sqm_ocr": 86.3, - "price": 2500.0, - "price_per_sqm": 28.968713789107763, - "url": "https://www.rightmove.co.uk/properties/155390837", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100426/155390837/100426_1306122_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.285647", - "last_seen": "2025-06-01T22:05:43.363146", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075745, - 51.417423 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/155419301", - "info": { - "identifier": 155419301, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155419301", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "LETSiNVEST", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148172/155419301/148172_1842_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.072142", - "last_seen": "2025-06-01T22:05:50.722102", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.341333, - 51.569206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.12, - "qmprice": 43.89, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/155424170", - "info": { - "identifier": 155424170, - "sqm_ocr": 50.12, - "price": 2200.0, - "price_per_sqm": 43.89465283320032, - "url": "https://www.rightmove.co.uk/properties/155424170", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9205/155424170/9205_100653002293_IMG_15_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.849105", - "last_seen": "2025-06-01T22:05:43.443034", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09453, - 51.34742 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/155431724", - "info": { - "identifier": 155431724, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155431724", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/155431724/209042_WOOR-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.811725", - "last_seen": "2025-06-01T22:05:49.800687", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106848, - 51.567947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/155431883", - "info": { - "identifier": 155431883, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155431883", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Goodfellows", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72259/155431883/72259_GCV240393_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.403868", - "last_seen": "2025-06-01T22:06:07.866961", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180367, - 51.353226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/155484206", - "info": { - "identifier": 155484206, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155484206", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 185, - "status": null, - "last_seen": 0, - "agency": "NEWAY ESTATE AGENTS", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58151/155484206/58151_tonpyes_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.374961", - "last_seen": "2025-06-01T22:05:49.704543", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10699, - 51.59879 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/155495084", - "info": { - "identifier": 155495084, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155495084", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "relocate-me.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33012/155495084/33012_57710_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.136452", - "last_seen": "2025-06-01T22:05:53.586204", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095709, - 51.529484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.09, - "qmprice": 35.23, - "rooms": 2, - "total_price": 2681.0, - "url": "https://www.rightmove.co.uk/properties/155503580", - "info": { - "identifier": 155503580, - "sqm_ocr": 76.09, - "price": 2681.0, - "price_per_sqm": 35.23459061637534, - "url": "https://www.rightmove.co.uk/properties/155503580", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Pinnacle Housing Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212189/155503580/212189_2332_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.401153", - "last_seen": "2025-06-01T22:06:15.669374", - "price": 2681.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17701, - 51.519 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3382.0, - "url": "https://www.rightmove.co.uk/properties/155511248", - "info": { - "identifier": 155511248, - "sqm_ocr": null, - "price": 3382.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155511248", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dolphin Square", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58030/155511248/58030_BEA411_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.918512", - "last_seen": "2025-06-01T22:06:16.025671", - "price": 3382.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13699, - 51.4865 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/155516324", - "info": { - "identifier": 155516324, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155516324", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "EGRE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82293/155516324/82293_265_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.126840", - "last_seen": "2025-06-01T22:05:47.842710", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08921, - 51.57243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/155534069", - "info": { - "identifier": 155534069, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155534069", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Cornerstone Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278312/155534069/278312_RX457670_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.607154", - "last_seen": "2025-06-01T22:05:43.529453", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088143, - 51.376553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.71, - "qmprice": 33.13, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/155559620", - "info": { - "identifier": 155559620, - "sqm_ocr": 117.71, - "price": 3900.0, - "price_per_sqm": 33.132274233285194, - "url": "https://www.rightmove.co.uk/properties/155559620", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "LAND", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278897/155559620/278897_RL0804_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.666932", - "last_seen": "2025-06-01T22:06:08.879211", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021328, - 51.50712 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.1, - "qmprice": 39.95, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/155579333", - "info": { - "identifier": 155579333, - "sqm_ocr": 75.1, - "price": 3000.0, - "price_per_sqm": 39.94673768308922, - "url": "https://www.rightmove.co.uk/properties/155579333", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/155579333/149153_1306637_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.345863", - "last_seen": "2025-06-01T22:06:01.051818", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.233747, - 51.409096 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 42.19, - "rooms": 2, - "total_price": 3502.0, - "url": "https://www.rightmove.co.uk/properties/155593226", - "info": { - "identifier": 155593226, - "sqm_ocr": 83.0, - "price": 3502.0, - "price_per_sqm": 42.19277108433735, - "url": "https://www.rightmove.co.uk/properties/155593226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/155593226/48101_1306390_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.529845", - "last_seen": "2025-06-01T22:06:02.501737", - "price": 3502.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.074504, - 51.508602 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 31.93, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/155593232", - "info": { - "identifier": 155593232, - "sqm_ocr": 83.0, - "price": 2650.0, - "price_per_sqm": 31.927710843373493, - "url": "https://www.rightmove.co.uk/properties/155593232", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/155593232/48101_1306391_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.539406", - "last_seen": "2025-06-01T22:06:02.498839", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.074504, - 51.508602 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.2, - "qmprice": 30.03, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/155594267", - "info": { - "identifier": 155594267, - "sqm_ocr": 93.2, - "price": 2799.0, - "price_per_sqm": 30.032188841201716, - "url": "https://www.rightmove.co.uk/properties/155594267", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3355/155594267/3355_33541663_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.559414", - "last_seen": "2025-06-01T22:05:49.611317", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107158, - 51.577045 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2719.0, - "url": "https://www.rightmove.co.uk/properties/155605487", - "info": { - "identifier": 155605487, - "sqm_ocr": null, - "price": 2719.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155605487", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Bamboo Living Management Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272480/155605487/272480_MercuryHse_IMG_20_0000_max_656x437.jpeg", - "let_date_available": "24/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.965700", - "last_seen": "2025-06-01T22:06:02.555749", - "price": 2719.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01234, - 51.51182 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/155605958", - "info": { - "identifier": 155605958, - "sqm_ocr": null, - "price": 3878.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155605958", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "RiverHomes", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11121/155605958/11121_33542198_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:09.281759", - "last_seen": "2025-06-01T22:06:09.281759", - "price": 3878.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025576, - 51.505367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/155613056", - "info": { - "identifier": 155613056, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155613056", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Broadway & West", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95332/155613056/95332_18_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.718223", - "last_seen": "2025-06-01T22:05:49.139796", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21729, - 51.4847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.5, - "qmprice": 32.89, - "rooms": 3, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/155629343", - "info": { - "identifier": 155629343, - "sqm_ocr": 112.5, - "price": 3700.0, - "price_per_sqm": 32.888888888888886, - "url": "https://www.rightmove.co.uk/properties/155629343", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Teddy", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257156/155629343/257156_RX354614_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.210180", - "last_seen": "2025-06-01T22:06:13.730316", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1647, - 51.47453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/155630522", - "info": { - "identifier": 155630522, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155630522", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36728/155630522/36728_0467_HRT046702014_IMG_04_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.419781", - "last_seen": "2025-06-01T22:05:43.701933", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074884, - 51.417973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/155676677", - "info": { - "identifier": 155676677, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155676677", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/155676677/169658_562876_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.377821", - "last_seen": "2025-06-01T22:06:11.250102", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021416, - 51.507626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.6, - "qmprice": 38.02, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/155687429", - "info": { - "identifier": 155687429, - "sqm_ocr": 77.6, - "price": 2950.0, - "price_per_sqm": 38.01546391752578, - "url": "https://www.rightmove.co.uk/properties/155687429", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Westwood Leber", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/185k/184532/155687429/184532_103000001173_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.733994", - "last_seen": "2025-06-01T22:06:02.358679", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0266, - 51.49881 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/155705522", - "info": { - "identifier": 155705522, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155705522", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/155705522/209042_ULCD-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.860717", - "last_seen": "2025-06-01T22:05:40.766198", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.245193, - 51.53297 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.3, - "qmprice": 36.6, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/155706599", - "info": { - "identifier": 155706599, - "sqm_ocr": 109.3, - "price": 4000.0, - "price_per_sqm": 36.596523330283624, - "url": "https://www.rightmove.co.uk/properties/155706599", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/155706599/71401_1306348_IMG_02_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.110296", - "last_seen": "2025-06-01T22:05:40.797224", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.230147, - 51.547997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/155707988", - "info": { - "identifier": 155707988, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155707988", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/155707988/174452_4867_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.141616", - "last_seen": "2025-06-01T22:05:46.156970", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00797, - 51.50093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3725.0, - "url": "https://www.rightmove.co.uk/properties/155715632", - "info": { - "identifier": 155715632, - "sqm_ocr": null, - "price": 3725.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155715632", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 68, - "status": null, - "last_seen": 0, - "agency": "Greenstone Residential", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88567/155715632/88567_33548475_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.021211", - "last_seen": "2025-06-01T22:06:15.589667", - "price": 3725.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167885, - 51.52962 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.8, - "qmprice": 26.09, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/155724821", - "info": { - "identifier": 155724821, - "sqm_ocr": 118.8, - "price": 3100.0, - "price_per_sqm": 26.094276094276093, - "url": "https://www.rightmove.co.uk/properties/155724821", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/155724821/15951_1304160_IMG_00_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.443489", - "last_seen": "2025-06-01T22:05:43.970351", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267425, - 51.510815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/155727260", - "info": { - "identifier": 155727260, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155727260", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Tedworth Property Limited", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/183k/182369/155727260/182369_LND200241_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.074486", - "last_seen": "2025-06-01T22:05:57.726123", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158412, - 51.49511 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.51, - "qmprice": 32.85, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/155738279", - "info": { - "identifier": 155738279, - "sqm_ocr": 71.51, - "price": 2349.0, - "price_per_sqm": 32.84855264997902, - "url": "https://www.rightmove.co.uk/properties/155738279", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/155738279/163859_2704683_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.818618", - "last_seen": "2025-06-01T22:06:02.370711", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02571, - 51.50143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.81, - "qmprice": 46.67, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/155750834", - "info": { - "identifier": 155750834, - "sqm_ocr": 73.81, - "price": 3445.0, - "price_per_sqm": 46.67389242650047, - "url": "https://www.rightmove.co.uk/properties/155750834", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/155750834/135416_KYC240462_L_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.428024", - "last_seen": "2025-06-01T22:06:12.109741", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179719, - 51.466564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.2, - "qmprice": 34.93, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/155792153", - "info": { - "identifier": 155792153, - "sqm_ocr": 100.2, - "price": 3500.0, - "price_per_sqm": 34.930139720558884, - "url": "https://www.rightmove.co.uk/properties/155792153", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/155792153/16050_1305633_IMG_01_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.472635", - "last_seen": "2025-06-01T22:06:10.892685", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066064, - 51.528564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.8, - "qmprice": 54.95, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/155823401", - "info": { - "identifier": 155823401, - "sqm_ocr": 72.8, - "price": 4000.0, - "price_per_sqm": 54.94505494505495, - "url": "https://www.rightmove.co.uk/properties/155823401", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/155823401/15957_1307576_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.677986", - "last_seen": "2025-06-01T22:05:42.183183", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161003, - 51.548183 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.31, - "qmprice": 78.49, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/155823407", - "info": { - "identifier": 155823407, - "sqm_ocr": 48.31, - "price": 3792.0, - "price_per_sqm": 78.4930656178845, - "url": "https://www.rightmove.co.uk/properties/155823407", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/155823407/15942_1307525_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.059823", - "last_seen": "2025-06-01T22:05:57.638049", - "price": 3792.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184191, - 51.500027 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/155839457", - "info": { - "identifier": 155839457, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155839457", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50713/155839457/50713_33555248_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.112038", - "last_seen": "2025-06-01T22:05:57.713317", - "price": 2275 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21684, - 51.506977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.5, - "qmprice": 24.01, - "rooms": 3, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/155846987", - "info": { - "identifier": 155846987, - "sqm_ocr": 91.5, - "price": 2197.0, - "price_per_sqm": 24.010928961748633, - "url": "https://www.rightmove.co.uk/properties/155846987", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/155846987/84791_33555604_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.924294", - "last_seen": "2025-06-01T22:05:56.356304", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.294867, - 51.517025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 40.68, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/155853515", - "info": { - "identifier": 155853515, - "sqm_ocr": 59.0, - "price": 2400.0, - "price_per_sqm": 40.67796610169491, - "url": "https://www.rightmove.co.uk/properties/155853515", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43760/155853515/43760_P288692_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.252985", - "last_seen": "2025-06-01T22:05:42.950144", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16072, - 51.5483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/155876546", - "info": { - "identifier": 155876546, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155876546", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/155876546/209042_OLO-Mid_let_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.704210", - "last_seen": "2025-06-01T22:05:48.385658", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216714, - 51.503475 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/155884547", - "info": { - "identifier": 155884547, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155884547", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12685/155884547/12685_GER201686_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.712490", - "last_seen": "2025-06-01T22:05:43.465130", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090193, - 51.384502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/155885885", - "info": { - "identifier": 155885885, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155885885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Houseen Lettings & Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76994/155885885/76994_32254565_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.440579", - "last_seen": "2025-06-01T22:06:11.298029", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019589, - 51.498722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.33, - "qmprice": 31.95, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/155889674", - "info": { - "identifier": 155889674, - "sqm_ocr": 98.33, - "price": 3142.0, - "price_per_sqm": 31.9536255466287, - "url": "https://www.rightmove.co.uk/properties/155889674", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90830/155889674/90830_SJD240294_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.596072", - "last_seen": "2025-06-01T22:06:15.113493", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174233, - 51.532433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/155892689", - "info": { - "identifier": 155892689, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155892689", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Foundation Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/189k/188543/155892689/188543_31728423_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.978794", - "last_seen": "2025-06-01T22:06:08.365202", - "price": 3033.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066989, - 51.51314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/155895578", - "info": { - "identifier": 155895578, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155895578", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/155895578/209042_ZJC-Mid_let_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.904077", - "last_seen": "2025-06-01T22:05:47.224090", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.083455, - 51.55616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.1, - "qmprice": 40.47, - "rooms": 4, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/155899949", - "info": { - "identifier": 155899949, - "sqm_ocr": 74.1, - "price": 2999.0, - "price_per_sqm": 40.472334682861, - "url": "https://www.rightmove.co.uk/properties/155899949", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Tony Alan Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250175/155899949/250175_101757001245_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.981827", - "last_seen": "2025-06-01T22:05:53.989387", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12656, - 51.55334 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.2, - "qmprice": 21.11, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/155900426", - "info": { - "identifier": 155900426, - "sqm_ocr": 104.2, - "price": 2200.0, - "price_per_sqm": 21.11324376199616, - "url": "https://www.rightmove.co.uk/properties/155900426", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Cray & Norton Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/32k/31313/155900426/31313_CRNO_004112_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.577038", - "last_seen": "2025-06-01T22:05:43.327175", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064836, - 51.383236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.32, - "qmprice": 27.28, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/155901311", - "info": { - "identifier": 155901311, - "sqm_ocr": 73.32, - "price": 2000.0, - "price_per_sqm": 27.27768685215494, - "url": "https://www.rightmove.co.uk/properties/155901311", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Armford Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283439/155901311/283439_14502_000139_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.200229", - "last_seen": "2025-06-01T22:05:50.857739", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.363089, - 51.570515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.7, - "qmprice": 31.37, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/155907170", - "info": { - "identifier": 155907170, - "sqm_ocr": 71.7, - "price": 2249.0, - "price_per_sqm": 31.366806136680612, - "url": "https://www.rightmove.co.uk/properties/155907170", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/155907170/82537_33559316_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.556589", - "last_seen": "2025-06-01T22:06:10.304639", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024278, - 51.513977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2652.0, - "url": "https://www.rightmove.co.uk/properties/155909549", - "info": { - "identifier": 155909549, - "sqm_ocr": null, - "price": 2652.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155909549", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Letting Engine", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257840/155909549/257840_537_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.086571", - "last_seen": "2025-06-01T22:05:59.222429", - "price": 2652.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13183, - 51.45081 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.5, - "qmprice": 38.01, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/155910167", - "info": { - "identifier": 155910167, - "sqm_ocr": 85.5, - "price": 3250.0, - "price_per_sqm": 38.01169590643275, - "url": "https://www.rightmove.co.uk/properties/155910167", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57287/155910167/57287_1305334_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.899498", - "last_seen": "2025-06-01T22:06:00.765556", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035649, - 51.432583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.5, - "qmprice": 46.24, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/155925071", - "info": { - "identifier": 155925071, - "sqm_ocr": 74.5, - "price": 3445.0, - "price_per_sqm": 46.241610738255034, - "url": "https://www.rightmove.co.uk/properties/155925071", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53654/155925071/53654_33560285_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.677012", - "last_seen": "2025-06-01T22:06:13.735419", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179848, - 51.466682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/155960801", - "info": { - "identifier": 155960801, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155960801", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "EGRE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82293/155960801/82293_280_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.898864", - "last_seen": "2025-06-01T22:05:47.664168", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088823, - 51.57226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 38.73, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/155964290", - "info": { - "identifier": 155964290, - "sqm_ocr": 71.0, - "price": 2750.0, - "price_per_sqm": 38.732394366197184, - "url": "https://www.rightmove.co.uk/properties/155964290", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/155964290/111050_1307903_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.017317", - "last_seen": "2025-06-01T22:06:12.124177", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176512, - 51.429996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 43.94, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/155966609", - "info": { - "identifier": 155966609, - "sqm_ocr": 66.0, - "price": 2900.0, - "price_per_sqm": 43.93939393939394, - "url": "https://www.rightmove.co.uk/properties/155966609", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "PARKSIDE ESTATES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247049/155966609/247049_SaleplaceAisan_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.329752", - "last_seen": "2025-06-01T22:06:15.481746", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1696, - 51.51759 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/155974211", - "info": { - "identifier": 155974211, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/155974211", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Truepenny's", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49874/155974211/49874_1370_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.282728", - "last_seen": "2025-06-01T22:06:05.226438", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074208, - 51.493797 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.7, - "qmprice": 28.84, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/155989322", - "info": { - "identifier": 155989322, - "sqm_ocr": 86.7, - "price": 2500.0, - "price_per_sqm": 28.83506343713956, - "url": "https://www.rightmove.co.uk/properties/155989322", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Streets Ahead", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/24k/23060/155989322/23060_RPT120219_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.340990", - "last_seen": "2025-06-01T22:05:43.647858", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075535, - 51.417633 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/156014480", - "info": { - "identifier": 156014480, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156014480", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/156014480/209042_PAT-Mid_let_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.058485", - "last_seen": "2025-06-01T22:05:59.379160", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129037, - 51.463722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/156016709", - "info": { - "identifier": 156016709, - "sqm_ocr": null, - "price": 2899.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156016709", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "relocate-me.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33012/156016709/33012_910_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.503477", - "last_seen": "2025-06-01T22:05:53.639480", - "price": 2899.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120709, - 51.54031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/156025142", - "info": { - "identifier": 156025142, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156025142", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Wilkinson Byrne", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14497/156025142/14497_102728005517_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.476888", - "last_seen": "2025-06-01T22:05:49.746316", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106433, - 51.59834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/156044699", - "info": { - "identifier": 156044699, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156044699", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/156044699/12070_28515053_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.672863", - "last_seen": "2025-06-01T22:06:00.917994", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.007926, - 51.45677 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3696.0, - "url": "https://www.rightmove.co.uk/properties/156047585", - "info": { - "identifier": 156047585, - "sqm_ocr": null, - "price": 3696.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156047585", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/132k/131152/156047585/131152_33565896_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.513329", - "last_seen": "2025-06-01T22:05:49.384913", - "price": 3696 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222505, - 51.51196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.47, - "qmprice": 82.16, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/156063452", - "info": { - "identifier": 156063452, - "sqm_ocr": 47.47, - "price": 3900.0, - "price_per_sqm": 82.1571518854013, - "url": "https://www.rightmove.co.uk/properties/156063452", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Golden Eagle International", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49332/156063452/49332_820_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.932650", - "last_seen": "2025-06-01T22:06:14.358360", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159607, - 51.514 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/156068108", - "info": { - "identifier": 156068108, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156068108", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/156068108/209042_OVA-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.220246", - "last_seen": "2025-06-01T22:05:55.513376", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053182, - 51.544563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/156070436", - "info": { - "identifier": 156070436, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156070436", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Pure Realty", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106120/156070436/106120_25CA_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.154600", - "last_seen": "2025-06-01T22:06:11.374344", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.9, - "qmprice": 50.06, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/156088883", - "info": { - "identifier": 156088883, - "sqm_ocr": 77.9, - "price": 3900.0, - "price_per_sqm": 50.06418485237484, - "url": "https://www.rightmove.co.uk/properties/156088883", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 124, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210110/156088883/210110_P292879_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.432556", - "last_seen": "2025-06-01T22:05:43.112647", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18522, - 51.53789 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.7, - "qmprice": 33.84, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/156091169", - "info": { - "identifier": 156091169, - "sqm_ocr": 85.7, - "price": 2900.0, - "price_per_sqm": 33.838973162193696, - "url": "https://www.rightmove.co.uk/properties/156091169", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/156091169/71401_1308508_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.543409", - "last_seen": "2025-06-01T22:05:40.986747", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.230829, - 51.54789 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 50.72, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/156097106", - "info": { - "identifier": 156097106, - "sqm_ocr": 69.0, - "price": 3500.0, - "price_per_sqm": 50.72463768115942, - "url": "https://www.rightmove.co.uk/properties/156097106", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/156097106/16050_1307700_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.281825", - "last_seen": "2025-06-01T22:06:08.020034", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071966, - 51.526974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.2, - "qmprice": 59.07, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/156112721", - "info": { - "identifier": 156112721, - "sqm_ocr": 59.2, - "price": 3497.0, - "price_per_sqm": 59.070945945945944, - "url": "https://www.rightmove.co.uk/properties/156112721", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48695/156112721/48695_33298703_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.696388", - "last_seen": "2025-06-01T22:06:15.448106", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184311, - 51.534878 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3840.0, - "url": "https://www.rightmove.co.uk/properties/156136814", - "info": { - "identifier": 156136814, - "sqm_ocr": null, - "price": 3840.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156136814", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Allen Goldstein", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112351/156136814/112351_RL1795_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.721570", - "last_seen": "2025-06-01T22:06:10.267684", - "price": 3840.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028043, - 51.507233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.2, - "qmprice": 46.8, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/156200228", - "info": { - "identifier": 156200228, - "sqm_ocr": 51.2, - "price": 2396.0, - "price_per_sqm": 46.796875, - "url": "https://www.rightmove.co.uk/properties/156200228", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chard", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141944/156200228/141944_33573176_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.738068", - "last_seen": "2025-06-01T22:05:49.388920", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197523, - 51.485443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.2, - "qmprice": 35.25, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/156200231", - "info": { - "identifier": 156200231, - "sqm_ocr": 92.2, - "price": 3250.0, - "price_per_sqm": 35.24945770065076, - "url": "https://www.rightmove.co.uk/properties/156200231", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chard", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141944/156200231/141944_33541671_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.735032", - "last_seen": "2025-06-01T22:05:49.335214", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205188, - 51.471497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.04, - "qmprice": 29.62, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/156203936", - "info": { - "identifier": 156203936, - "sqm_ocr": 81.04, - "price": 2400.0, - "price_per_sqm": 29.615004935834154, - "url": "https://www.rightmove.co.uk/properties/156203936", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/156203936/65785_33573458_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.554208", - "last_seen": "2025-06-01T22:06:12.117755", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148507, - 51.442894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.55, - "qmprice": 56.7, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/156203993", - "info": { - "identifier": 156203993, - "sqm_ocr": 70.55, - "price": 4000.0, - "price_per_sqm": 56.69737774627924, - "url": "https://www.rightmove.co.uk/properties/156203993", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94643/156203993/94643_33573467_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.272649", - "last_seen": "2025-06-01T22:05:57.871401", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16164, - 51.496483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/156261644", - "info": { - "identifier": 156261644, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156261644", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/156261644/209042_RSA-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.646916", - "last_seen": "2025-06-01T22:05:43.015684", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142041, - 51.558918 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.7, - "qmprice": 31.0, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/156264809", - "info": { - "identifier": 156264809, - "sqm_ocr": 88.7, - "price": 2750.0, - "price_per_sqm": 31.00338218714769, - "url": "https://www.rightmove.co.uk/properties/156264809", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Murray Lee Mckenzie", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249608/156264809/249608_33574340_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.288348", - "last_seen": "2025-06-01T22:05:39.900185", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.156002, - 51.487133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 137.0, - "qmprice": 21.86, - "rooms": 4, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/156293621", - "info": { - "identifier": 156293621, - "sqm_ocr": 137.0, - "price": 2995.0, - "price_per_sqm": 21.861313868613138, - "url": "https://www.rightmove.co.uk/properties/156293621", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Robsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264851/156293621/264851_2705263_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.865304", - "last_seen": "2025-06-01T22:05:50.551824", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.38597, - 51.61042 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/156328325", - "info": { - "identifier": 156328325, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156328325", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Emoov", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/181k/180266/156328325/180266_914_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.190978", - "last_seen": "2025-06-01T20:19:57.013864", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.036665, - 51.51106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/156333110", - "info": { - "identifier": 156333110, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156333110", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Foundation Estate Agents", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/189k/188543/156333110/188543_33376517_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.334234", - "last_seen": "2025-06-01T22:06:09.335077", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066989, - 51.51314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3577.0, - "url": "https://www.rightmove.co.uk/properties/156346286", - "info": { - "identifier": 156346286, - "sqm_ocr": null, - "price": 3577.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156346286", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/156346286/209042_YMC-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.373305", - "last_seen": "2025-06-01T22:05:49.954740", - "price": 3577.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138569, - 51.57427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/156346493", - "info": { - "identifier": 156346493, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156346493", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/156346493/209042_SPR-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.608405", - "last_seen": "2025-06-01T22:06:04.876048", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.085578, - 51.50044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/156369086", - "info": { - "identifier": 156369086, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156369086", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "Keller Williams Plus", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214967/156369086/214967_ZPropertyGiant0003516889_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.294405", - "last_seen": "2025-06-01T22:05:50.924520", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.18642, - 51.5662 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 44.0, - "qmprice": 52.27, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/156383636", - "info": { - "identifier": 156383636, - "sqm_ocr": 44.0, - "price": 2300.0, - "price_per_sqm": 52.27272727272727, - "url": "https://www.rightmove.co.uk/properties/156383636", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/156383636/48101_1308493_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.894941", - "last_seen": "2025-06-01T22:06:02.368508", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.009708, - 51.521366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.41, - "qmprice": 38.6, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/156390020", - "info": { - "identifier": 156390020, - "sqm_ocr": 95.41, - "price": 3683.0, - "price_per_sqm": 38.60182370820669, - "url": "https://www.rightmove.co.uk/properties/156390020", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90830/156390020/90830_SJD050549_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.959118", - "last_seen": "2025-06-01T22:06:15.063448", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170475, - 51.527805 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.2, - "qmprice": 25.23, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/156399824", - "info": { - "identifier": 156399824, - "sqm_ocr": 87.2, - "price": 2200.0, - "price_per_sqm": 25.229357798165136, - "url": "https://www.rightmove.co.uk/properties/156399824", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257069/156399824/257069_33579862_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.445261", - "last_seen": "2025-06-01T22:05:46.626641", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.014908, - 51.49589 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 36.45, - "rooms": 2, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/156401330", - "info": { - "identifier": 156401330, - "sqm_ocr": 85.0, - "price": 3098.0, - "price_per_sqm": 36.44705882352941, - "url": "https://www.rightmove.co.uk/properties/156401330", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/156401330/191255_32500973_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.619891", - "last_seen": "2025-06-01T22:06:10.822426", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.054465, - 51.505344 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.2, - "qmprice": 31.62, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/156414542", - "info": { - "identifier": 156414542, - "sqm_ocr": 101.2, - "price": 3200.0, - "price_per_sqm": 31.620553359683793, - "url": "https://www.rightmove.co.uk/properties/156414542", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94220/156414542/94220_P283107_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.438001", - "last_seen": "2025-06-01T22:05:44.323948", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28145, - 51.51344 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.1, - "qmprice": 47.66, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/156415394", - "info": { - "identifier": 156415394, - "sqm_ocr": 46.1, - "price": 2197.0, - "price_per_sqm": 47.657266811279825, - "url": "https://www.rightmove.co.uk/properties/156415394", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chard", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141944/156415394/141944_33580908_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.983042", - "last_seen": "2025-06-01T22:05:57.938063", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191054, - 51.487106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.9, - "qmprice": 24.13, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/156421190", - "info": { - "identifier": 156421190, - "sqm_ocr": 111.9, - "price": 2700.0, - "price_per_sqm": 24.128686327077748, - "url": "https://www.rightmove.co.uk/properties/156421190", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/156421190/82537_33581285_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:09.988042", - "last_seen": "2025-06-01T22:06:09.988042", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028136, - 51.506153 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.9, - "qmprice": 24.13, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/156421340", - "info": { - "identifier": 156421340, - "sqm_ocr": 111.9, - "price": 2700.0, - "price_per_sqm": 24.128686327077748, - "url": "https://www.rightmove.co.uk/properties/156421340", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/156421340/198539_33581300_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.257659", - "last_seen": "2025-06-01T20:19:56.955950", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028136, - 51.506153 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.6, - "qmprice": 54.61, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/156423878", - "info": { - "identifier": 156423878, - "sqm_ocr": 58.6, - "price": 3200.0, - "price_per_sqm": 54.6075085324232, - "url": "https://www.rightmove.co.uk/properties/156423878", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/156423878/15951_1306326_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.330476", - "last_seen": "2025-06-01T22:05:52.181920", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252748, - 51.479774 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/156431300", - "info": { - "identifier": 156431300, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156431300", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/156431300/12070_28542418_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.638811", - "last_seen": "2025-06-01T22:05:46.907670", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013803, - 51.49642 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/156434195", - "info": { - "identifier": 156434195, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156434195", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3305/156434195/3305_000874090_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.737557", - "last_seen": "2025-06-01T22:05:43.430327", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08266, - 51.40478 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/156439409", - "info": { - "identifier": 156439409, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156439409", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Lords Associates of London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29226/156439409/29226_11065689_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.393606", - "last_seen": "2025-06-01T22:05:51.677616", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.476942, - 51.524025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 36.12, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/156439541", - "info": { - "identifier": 156439541, - "sqm_ocr": 84.0, - "price": 3034.0, - "price_per_sqm": 36.11904761904762, - "url": "https://www.rightmove.co.uk/properties/156439541", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/156439541/55101_1307810_IMG_01_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.642047", - "last_seen": "2025-06-01T22:06:06.530402", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043384, - 51.506725 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/156441122", - "info": { - "identifier": 156441122, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156441122", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Cameron Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36963/156441122/36963_33582387_IMG_00_0000_max_656x437.png", - "let_date_available": "21/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.431609", - "last_seen": "2025-06-01T22:05:51.223594", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.476256, - 51.534714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 31.71, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/156477614", - "info": { - "identifier": 156477614, - "sqm_ocr": 82.0, - "price": 2600.0, - "price_per_sqm": 31.70731707317073, - "url": "https://www.rightmove.co.uk/properties/156477614", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/156477614/65785_33583152_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.732126", - "last_seen": "2025-06-01T22:05:59.561375", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136221, - 51.442013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 124.8, - "qmprice": 28.04, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/156477905", - "info": { - "identifier": 156477905, - "sqm_ocr": 124.8, - "price": 3500.0, - "price_per_sqm": 28.044871794871796, - "url": "https://www.rightmove.co.uk/properties/156477905", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "SeOUL Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73282/156477905/73282_10270_SR4U_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.388392", - "last_seen": "2025-06-01T22:06:01.638376", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.244651, - 51.397007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/156531503", - "info": { - "identifier": 156531503, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156531503", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Lords Associates of London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29226/156531503/29226_4399371_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.803615", - "last_seen": "2025-06-01T22:05:51.115199", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.482792, - 51.53865 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.6, - "qmprice": 43.57, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/156541577", - "info": { - "identifier": 156541577, - "sqm_ocr": 74.6, - "price": 3250.0, - "price_per_sqm": 43.5656836461126, - "url": "https://www.rightmove.co.uk/properties/156541577", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Abacus Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26267/156541577/26267_ABAC_015993_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.435650", - "last_seen": "2025-06-01T22:05:41.992336", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207554, - 51.551407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/156543131", - "info": { - "identifier": 156543131, - "sqm_ocr": null, - "price": 3012.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156543131", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Abacus Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26267/156543131/26267_ABAC_015707_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.670683", - "last_seen": "2025-06-01T22:05:42.564716", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186873, - 51.55274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.4, - "qmprice": 26.57, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/156564758", - "info": { - "identifier": 156564758, - "sqm_ocr": 88.4, - "price": 2349.0, - "price_per_sqm": 26.57239819004525, - "url": "https://www.rightmove.co.uk/properties/156564758", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/156564758/84791_33558012_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.574160", - "last_seen": "2025-06-01T22:05:45.135769", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28756, - 51.509865 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.9, - "qmprice": 30.47, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/156569786", - "info": { - "identifier": 156569786, - "sqm_ocr": 91.9, - "price": 2800.0, - "price_per_sqm": 30.46789989118607, - "url": "https://www.rightmove.co.uk/properties/156569786", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/156569786/250739_1308246_IMG_00_0013_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.158701", - "last_seen": "2025-06-01T22:05:40.660273", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.258752, - 51.59258 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.79, - "qmprice": 43.09, - "rooms": 3, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/156577139", - "info": { - "identifier": 156577139, - "sqm_ocr": 70.79, - "price": 3050.0, - "price_per_sqm": 43.085181522813954, - "url": "https://www.rightmove.co.uk/properties/156577139", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 114, - "status": null, - "last_seen": 0, - "agency": "YRT Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198371/156577139/198371_25206534_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.787084", - "last_seen": "2025-06-01T22:06:15.111517", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185401, - 51.520733 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/156579440", - "info": { - "identifier": 156579440, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156579440", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/156579440/209042_JAT3-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.368662", - "last_seen": "2025-06-01T20:19:59.826553", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035977, - 51.52007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/156581693", - "info": { - "identifier": 156581693, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156581693", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/156581693/82537_33589026_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.692989", - "last_seen": "2025-06-01T22:06:09.082252", - "price": 2049 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017516, - 51.492443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.4, - "qmprice": 52.12, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/156594614", - "info": { - "identifier": 156594614, - "sqm_ocr": 61.4, - "price": 3200.0, - "price_per_sqm": 52.11726384364821, - "url": "https://www.rightmove.co.uk/properties/156594614", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Mr Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227582/156594614/227582_DelConte_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.552711", - "last_seen": "2025-06-01T22:06:08.786724", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07737, - 51.52061 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.6, - "qmprice": 51.59, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/156597185", - "info": { - "identifier": 156597185, - "sqm_ocr": 75.6, - "price": 3900.0, - "price_per_sqm": 51.58730158730159, - "url": "https://www.rightmove.co.uk/properties/156597185", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/156597185/15960_1309453_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.297352", - "last_seen": "2025-06-01T22:05:42.551059", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185445, - 51.537746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/156604748", - "info": { - "identifier": 156604748, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156604748", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Heaven Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/226k/225752/156604748/225752_103467000409_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.457602", - "last_seen": "2025-06-01T22:06:07.805252", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16702, - 51.38068 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.9, - "qmprice": 26.35, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/156613451", - "info": { - "identifier": 156613451, - "sqm_ocr": 75.9, - "price": 2000.0, - "price_per_sqm": 26.350461133069828, - "url": "https://www.rightmove.co.uk/properties/156613451", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 144, - "status": null, - "last_seen": 0, - "agency": "Brendons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41288/156613451/41288_2703847_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.005210", - "last_seen": "2025-06-01T22:05:44.818128", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31783, - 51.5235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/156614369", - "info": { - "identifier": 156614369, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156614369", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Richard James", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10982/156614369/10982_33590479_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.137694", - "last_seen": "2025-06-01T22:05:38.847646", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24565, - 51.61439 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.09, - "qmprice": 39.14, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/156618371", - "info": { - "identifier": 156618371, - "sqm_ocr": 74.09, - "price": 2900.0, - "price_per_sqm": 39.141584559319746, - "url": "https://www.rightmove.co.uk/properties/156618371", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242966/156618371/242966_P142396_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.092648", - "last_seen": "2025-06-01T22:05:38.908968", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24732, - 51.59581 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.2, - "qmprice": 42.8, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/156626390", - "info": { - "identifier": 156626390, - "sqm_ocr": 57.2, - "price": 2448.0, - "price_per_sqm": 42.79720279720279, - "url": "https://www.rightmove.co.uk/properties/156626390", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48695/156626390/48695_33591331_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.425215", - "last_seen": "2025-06-01T22:06:15.477117", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166964, - 51.533756 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.2, - "qmprice": 42.3, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/156626528", - "info": { - "identifier": 156626528, - "sqm_ocr": 66.2, - "price": 2800.0, - "price_per_sqm": 42.29607250755287, - "url": "https://www.rightmove.co.uk/properties/156626528", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 900.0, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "The Agency Group", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79431/156626528/79431_RX290003_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.970803", - "last_seen": "2025-06-01T22:05:57.197149", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293645, - 51.488537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 37.89, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/156626783", - "info": { - "identifier": 156626783, - "sqm_ocr": 73.9, - "price": 2800.0, - "price_per_sqm": 37.88903924221921, - "url": "https://www.rightmove.co.uk/properties/156626783", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/156626783/48101_1309493_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.389587", - "last_seen": "2025-06-01T22:06:03.415532", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.011129, - 51.51992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/156635534", - "info": { - "identifier": 156635534, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156635534", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/156635534/17882_27667_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.094610", - "last_seen": "2025-06-01T22:05:53.402672", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11622, - 51.53275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 28.42, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/156671594", - "info": { - "identifier": 156671594, - "sqm_ocr": 73.9, - "price": 2100.0, - "price_per_sqm": 28.41677943166441, - "url": "https://www.rightmove.co.uk/properties/156671594", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/156671594/238841_P293491_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.365011", - "last_seen": "2025-06-01T22:05:46.181966", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05982, - 51.49418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.15, - "qmprice": 43.82, - "rooms": 3, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/156674180", - "info": { - "identifier": 156674180, - "sqm_ocr": 66.15, - "price": 2899.0, - "price_per_sqm": 43.824640967498105, - "url": "https://www.rightmove.co.uk/properties/156674180", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/156674180/70038_4808_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.307273", - "last_seen": "2025-06-01T22:05:48.465947", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212566, - 51.490368 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/156679964", - "info": { - "identifier": 156679964, - "sqm_ocr": null, - "price": 3358.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156679964", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89776/156679964/89776_SLL100077_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.385235", - "last_seen": "2025-06-01T22:06:15.551245", - "price": 3358.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196847, - 51.518417 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.2, - "qmprice": 32.02, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/156682781", - "info": { - "identifier": 156682781, - "sqm_ocr": 81.2, - "price": 2600.0, - "price_per_sqm": 32.01970443349754, - "url": "https://www.rightmove.co.uk/properties/156682781", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Heathgate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51753/156682781/51753_81402_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.623243", - "last_seen": "2025-06-01T22:05:40.189438", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.236248, - 51.544174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/156683816", - "info": { - "identifier": 156683816, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156683816", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Real Move Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53891/156683816/53891_RME6467549875_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.856935", - "last_seen": "2025-06-01T22:06:03.809057", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0663, - 51.58328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.4, - "qmprice": 23.47, - "rooms": 2, - "total_price": 2709.0, - "url": "https://www.rightmove.co.uk/properties/156685253", - "info": { - "identifier": 156685253, - "sqm_ocr": 115.4, - "price": 2709.0, - "price_per_sqm": 23.47487001733102, - "url": "https://www.rightmove.co.uk/properties/156685253", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/156685253/15957_1307481_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.052269", - "last_seen": "2025-06-01T22:05:42.540006", - "price": 2709.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205279, - 51.5529 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.4, - "qmprice": 23.47, - "rooms": 2, - "total_price": 2709.0, - "url": "https://www.rightmove.co.uk/properties/156685256", - "info": { - "identifier": 156685256, - "sqm_ocr": 115.4, - "price": 2709.0, - "price_per_sqm": 23.47487001733102, - "url": "https://www.rightmove.co.uk/properties/156685256", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/156685256/15957_1307480_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.054626", - "last_seen": "2025-06-01T22:05:42.533860", - "price": 2709.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205279, - 51.5529 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/156692363", - "info": { - "identifier": 156692363, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156692363", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/156692363/247697_102708029565_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.640886", - "last_seen": "2025-06-01T22:05:57.113792", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0885, - 51.5404 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/156693746", - "info": { - "identifier": 156693746, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156693746", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Next Home Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38072/156693746/38072_0009687569_IMG_02_0001_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.312582", - "last_seen": "2025-06-01T22:06:10.434448", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02039, - 51.51157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.4, - "qmprice": 49.74, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/156716654", - "info": { - "identifier": 156716654, - "sqm_ocr": 78.4, - "price": 3900.0, - "price_per_sqm": 49.74489795918367, - "url": "https://www.rightmove.co.uk/properties/156716654", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/156716654/107533_1309805_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.625631", - "last_seen": "2025-06-01T22:05:47.097905", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.003203, - 51.488674 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 44.71, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/156717200", - "info": { - "identifier": 156717200, - "sqm_ocr": 63.0, - "price": 2817.0, - "price_per_sqm": 44.714285714285715, - "url": "https://www.rightmove.co.uk/properties/156717200", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Laurence Leigh Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80035/156717200/80035_LLR210095_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.821783", - "last_seen": "2025-06-01T22:06:15.821532", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176993, - 51.533104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/156718241", - "info": { - "identifier": 156718241, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156718241", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 139, - "status": null, - "last_seen": 0, - "agency": "Simple Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238226/156718241/238226_5727_IMG_04_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.346760", - "last_seen": "2025-06-01T22:05:44.479186", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.391441, - 51.503548 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.83, - "qmprice": 44.53, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/156738638", - "info": { - "identifier": 156738638, - "sqm_ocr": 89.83, - "price": 4000.0, - "price_per_sqm": 44.52855393521096, - "url": "https://www.rightmove.co.uk/properties/156738638", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/156738638/48994_CNL200101_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.473276", - "last_seen": "2025-06-01T22:06:09.200366", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026935, - 51.49973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/156744839", - "info": { - "identifier": 156744839, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156744839", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Staay London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282917/156744839/282917_a7640191-25da-4b6f-96ac-92e70e956e97_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.487702", - "last_seen": "2025-06-01T22:05:57.740309", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21859, - 51.51361 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/156746216", - "info": { - "identifier": 156746216, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156746216", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/156746216/209042_KBT_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.813844", - "last_seen": "2025-06-01T22:06:15.806266", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206542, - 51.526993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.2, - "qmprice": 27.78, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/156803678", - "info": { - "identifier": 156803678, - "sqm_ocr": 97.2, - "price": 2700.0, - "price_per_sqm": 27.77777777777778, - "url": "https://www.rightmove.co.uk/properties/156803678", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/156803678/15969_1309509_IMG_01_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.597084", - "last_seen": "2025-06-01T22:05:44.685376", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.294866, - 51.524193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.54, - "qmprice": 36.8, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/156806888", - "info": { - "identifier": 156806888, - "sqm_ocr": 76.54, - "price": 2817.0, - "price_per_sqm": 36.80428534099817, - "url": "https://www.rightmove.co.uk/properties/156806888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 92, - "status": null, - "last_seen": 0, - "agency": "Capital Heights Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55386/156806888/55386_11432057_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.585376", - "last_seen": "2025-06-01T22:06:02.296348", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02667, - 51.49965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/156812525", - "info": { - "identifier": 156812525, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156812525", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "Hiltons Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263948/156812525/263948_102736003733_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.495623", - "last_seen": "2025-06-01T22:05:45.344804", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.362, - 51.53401 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.4, - "qmprice": 37.6, - "rooms": 2, - "total_price": 2384.0, - "url": "https://www.rightmove.co.uk/properties/156826097", - "info": { - "identifier": 156826097, - "sqm_ocr": 63.4, - "price": 2384.0, - "price_per_sqm": 37.602523659305994, - "url": "https://www.rightmove.co.uk/properties/156826097", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/156826097/16023_1310131_IMG_01_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.553372", - "last_seen": "2025-06-01T22:05:58.245648", - "price": 2384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172295, - 51.484455 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.75, - "qmprice": 45.56, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/156843788", - "info": { - "identifier": 156843788, - "sqm_ocr": 64.75, - "price": 2950.0, - "price_per_sqm": 45.55984555984556, - "url": "https://www.rightmove.co.uk/properties/156843788", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/143k/142382/156843788/142382_ALQ012459653_IMG_00_0018_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.146809", - "last_seen": "2025-06-01T20:20:00.026076", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068136, - 51.513184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.9, - "qmprice": 27.69, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/156871733", - "info": { - "identifier": 156871733, - "sqm_ocr": 93.9, - "price": 2600.0, - "price_per_sqm": 27.68903088391906, - "url": "https://www.rightmove.co.uk/properties/156871733", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/156871733/71401_1307643_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.581046", - "last_seen": "2025-06-01T22:05:41.037260", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.231446, - 51.550957 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.7, - "qmprice": 35.23, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/156877211", - "info": { - "identifier": 156877211, - "sqm_ocr": 66.7, - "price": 2350.0, - "price_per_sqm": 35.23238380809595, - "url": "https://www.rightmove.co.uk/properties/156877211", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52448/156877211/52448_33604374_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.350488", - "last_seen": "2025-06-01T22:06:12.222329", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199293, - 51.461174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2499.0, - "url": "https://www.rightmove.co.uk/properties/156887231", - "info": { - "identifier": 156887231, - "sqm_ocr": null, - "price": 2499.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156887231", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/156887231/228512_33604851_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.149902", - "last_seen": "2025-06-01T22:06:07.266698", - "price": 2499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.001165, - 51.540337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 48.15, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/156889040", - "info": { - "identifier": 156889040, - "sqm_ocr": 72.0, - "price": 3467.0, - "price_per_sqm": 48.15277777777778, - "url": "https://www.rightmove.co.uk/properties/156889040", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Fraser & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20990/156889040/20990_PAD150401_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.729675", - "last_seen": "2025-06-01T22:06:14.498880", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171947, - 51.51825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/156893276", - "info": { - "identifier": 156893276, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156893276", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Gascoigne-Pees Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5145/156893276/5145_000886416_IMG_07_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.520216", - "last_seen": "2025-06-01T22:06:07.756179", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1733, - 51.36001 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.9, - "qmprice": 50.06, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/156903893", - "info": { - "identifier": 156903893, - "sqm_ocr": 77.9, - "price": 3900.0, - "price_per_sqm": 50.06418485237484, - "url": "https://www.rightmove.co.uk/properties/156903893", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/156903893/96392_HEA194030_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.124279", - "last_seen": "2025-06-01T22:05:42.268068", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185164, - 51.537945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.9, - "qmprice": 56.93, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/156920321", - "info": { - "identifier": 156920321, - "sqm_ocr": 60.9, - "price": 3467.0, - "price_per_sqm": 56.92939244663383, - "url": "https://www.rightmove.co.uk/properties/156920321", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/132k/131152/156920321/131152_33607041_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.148823", - "last_seen": "2025-06-01T22:05:49.145780", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191441, - 51.46856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.9, - "qmprice": 44.39, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/156925178", - "info": { - "identifier": 156925178, - "sqm_ocr": 65.9, - "price": 2925.0, - "price_per_sqm": 44.38543247344461, - "url": "https://www.rightmove.co.uk/properties/156925178", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22353/156925178/22353_NHL240053_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.758043", - "last_seen": "2025-06-01T22:06:14.458167", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170242, - 51.513783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/156946226", - "info": { - "identifier": 156946226, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156946226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65902/156946226/65902_SJQ012518914_IMG_00_0010_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.694801", - "last_seen": "2025-06-01T22:05:42.883856", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18516, - 51.53801 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.6, - "qmprice": 22.42, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/156966500", - "info": { - "identifier": 156966500, - "sqm_ocr": 102.6, - "price": 2300.0, - "price_per_sqm": 22.417153996101366, - "url": "https://www.rightmove.co.uk/properties/156966500", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35975/156966500/35975_06760526_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.470922", - "last_seen": "2025-06-01T22:05:51.270771", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.476, - 51.606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.8, - "qmprice": 63.47, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/156971030", - "info": { - "identifier": 156971030, - "sqm_ocr": 47.8, - "price": 3034.0, - "price_per_sqm": 63.47280334728034, - "url": "https://www.rightmove.co.uk/properties/156971030", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/156971030/108515_1310673_IMG_00_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.519552", - "last_seen": "2025-06-01T22:05:58.299436", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187018, - 51.484703 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/156971885", - "info": { - "identifier": 156971885, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156971885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 68, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/156971885/120463_33609345_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.769499", - "last_seen": "2025-06-01T22:05:42.456480", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184994, - 51.53786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/156971945", - "info": { - "identifier": 156971945, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156971945", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Frestons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259079/156971945/259079_RL5928_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.288980", - "last_seen": "2025-06-01T22:05:52.628457", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29034, - 51.4913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/156972497", - "info": { - "identifier": 156972497, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156972497", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Carringtons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/2k/1541/156972497/1541_CAR250015_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.715816", - "last_seen": "2025-06-01T22:05:58.512502", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.280711, - 51.4186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/156976154", - "info": { - "identifier": 156976154, - "sqm_ocr": null, - "price": 2947.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156976154", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "London Habitat", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96380/156976154/96380_RL6246_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.016545", - "last_seen": "2025-06-01T22:05:39.001032", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228846, - 51.5872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.9, - "qmprice": 29.82, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/156979784", - "info": { - "identifier": 156979784, - "sqm_ocr": 93.9, - "price": 2800.0, - "price_per_sqm": 29.81895633652822, - "url": "https://www.rightmove.co.uk/properties/156979784", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102560/156979784/102560_0494_RX504918_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.839999", - "last_seen": "2025-06-01T22:06:02.417784", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026965, - 51.52919 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3965.0, - "url": "https://www.rightmove.co.uk/properties/156981686", - "info": { - "identifier": 156981686, - "sqm_ocr": null, - "price": 3965.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/156981686", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/156981686/43310_CWL230161_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.386119", - "last_seen": "2025-06-01T22:06:10.527198", - "price": 3965.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02, - 51.51 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 49.33, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/157001858", - "info": { - "identifier": 157001858, - "sqm_ocr": 75.0, - "price": 3700.0, - "price_per_sqm": 49.333333333333336, - "url": "https://www.rightmove.co.uk/properties/157001858", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50074/157001858/50074_P293915_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.071051", - "last_seen": "2025-06-01T22:05:57.380297", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20991, - 51.52244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/157003679", - "info": { - "identifier": 157003679, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157003679", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/128k/127549/157003679/127549_P293619_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.273828", - "last_seen": "2025-06-01T22:06:13.161621", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19037, - 51.44057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/157003766", - "info": { - "identifier": 157003766, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157003766", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Short Lets", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235637/157003766/235637_JDW-SL-0003295_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.444365", - "last_seen": "2025-06-01T22:06:13.550959", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21269, - 51.43874 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 37.88, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/157014101", - "info": { - "identifier": 157014101, - "sqm_ocr": 66.0, - "price": 2500.0, - "price_per_sqm": 37.878787878787875, - "url": "https://www.rightmove.co.uk/properties/157014101", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/157014101/71401_1303981_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.113896", - "last_seen": "2025-06-01T22:05:40.969873", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209367, - 51.55092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.64, - "qmprice": 48.63, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/157017035", - "info": { - "identifier": 157017035, - "sqm_ocr": 59.64, - "price": 2900.0, - "price_per_sqm": 48.62508383635144, - "url": "https://www.rightmove.co.uk/properties/157017035", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86071/157017035/86071_BAQ012542425_IMG_00_0022_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.979289", - "last_seen": "2025-06-01T22:06:13.626015", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148046, - 51.482403 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.34, - "qmprice": 38.23, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/157027412", - "info": { - "identifier": 157027412, - "sqm_ocr": 62.34, - "price": 2383.0, - "price_per_sqm": 38.22585819698428, - "url": "https://www.rightmove.co.uk/properties/157027412", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/29k/28238/157027412/28238_CEI243370_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.602876", - "last_seen": "2025-06-01T20:19:58.451808", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019183, - 51.51907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.34, - "qmprice": 55.44, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/157028090", - "info": { - "identifier": 157028090, - "sqm_ocr": 70.34, - "price": 3900.0, - "price_per_sqm": 55.44498151833949, - "url": "https://www.rightmove.co.uk/properties/157028090", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/157028090/15942_1310876_IMG_00_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.203557", - "last_seen": "2025-06-01T22:05:58.210808", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184323, - 51.497097 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/157035380", - "info": { - "identifier": 157035380, - "sqm_ocr": null, - "price": 3995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157035380", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/157035380/71401_1310910_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.159999", - "last_seen": "2025-06-01T22:05:41.040497", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219376, - 51.541676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/157036628", - "info": { - "identifier": 157036628, - "sqm_ocr": null, - "price": 2395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157036628", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214793/157036628/214793_P63296_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.764747", - "last_seen": "2025-06-01T22:06:08.021987", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01532, - 51.51553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3727.0, - "url": "https://www.rightmove.co.uk/properties/157038371", - "info": { - "identifier": 157038371, - "sqm_ocr": null, - "price": 3727.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157038371", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Ak247 Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261134/157038371/261134_18stratmore_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.936650", - "last_seen": "2025-06-01T22:06:14.763607", - "price": 3726 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16811, - 51.52953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/157085630", - "info": { - "identifier": 157085630, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157085630", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/157085630/115768_thr65467asrroop_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "03/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.138151", - "last_seen": "2025-06-01T22:06:08.954918", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0176, - 51.49086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.4, - "qmprice": 32.06, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/157099919", - "info": { - "identifier": 157099919, - "sqm_ocr": 115.4, - "price": 3700.0, - "price_per_sqm": 32.06239168110918, - "url": "https://www.rightmove.co.uk/properties/157099919", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137369/157099919/137369_1308639_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.697669", - "last_seen": "2025-06-01T22:06:11.933600", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.031494, - 51.572598 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/157108214", - "info": { - "identifier": 157108214, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157108214", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/157108214/198539_33615314_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.383602", - "last_seen": "2025-06-01T22:06:09.849165", - "price": 2049 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017516, - 51.492443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.2, - "qmprice": 45.36, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/157109246", - "info": { - "identifier": 157109246, - "sqm_ocr": 81.2, - "price": 3683.0, - "price_per_sqm": 45.357142857142854, - "url": "https://www.rightmove.co.uk/properties/157109246", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Manors", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85334/157109246/85334_BAK200265_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.844057", - "last_seen": "2025-06-01T22:06:14.881744", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17006, - 51.5161 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.7, - "qmprice": 34.21, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/157119644", - "info": { - "identifier": 157119644, - "sqm_ocr": 87.7, - "price": 3000.0, - "price_per_sqm": 34.20752565564424, - "url": "https://www.rightmove.co.uk/properties/157119644", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "SeOUL Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73282/157119644/73282_10181_SR4U_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.518167", - "last_seen": "2025-06-01T22:06:01.537907", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222727, - 51.397907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.9, - "qmprice": 42.33, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/157121627", - "info": { - "identifier": 157121627, - "sqm_ocr": 81.9, - "price": 3467.0, - "price_per_sqm": 42.33211233211233, - "url": "https://www.rightmove.co.uk/properties/157121627", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/157121627/15942_1310989_IMG_02_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.275399", - "last_seen": "2025-06-01T22:05:58.004802", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183344, - 51.496346 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/157123181", - "info": { - "identifier": 157123181, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157123181", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Lloyds Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/189k/188099/157123181/188099_LLY_WDF_LFSYCL_414_568330457_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.780075", - "last_seen": "2025-06-01T22:06:11.554320", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010092, - 51.575886 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.4, - "qmprice": 36.96, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/157124462", - "info": { - "identifier": 157124462, - "sqm_ocr": 74.4, - "price": 2750.0, - "price_per_sqm": 36.96236559139785, - "url": "https://www.rightmove.co.uk/properties/157124462", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/139k/138215/157124462/138215_100783012454_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.365293", - "last_seen": "2025-06-01T22:06:14.072746", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19021, - 51.46297 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 41.18, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/157133462", - "info": { - "identifier": 157133462, - "sqm_ocr": 85.0, - "price": 3500.0, - "price_per_sqm": 41.1764705882353, - "url": "https://www.rightmove.co.uk/properties/157133462", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/157133462/98531_1310603_IMG_01_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.189754", - "last_seen": "2025-06-01T22:05:48.907986", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.226871, - 51.506725 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.56, - "qmprice": 42.04, - "rooms": 3, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/157133945", - "info": { - "identifier": 157133945, - "sqm_ocr": 85.56, - "price": 3597.0, - "price_per_sqm": 42.040673211781204, - "url": "https://www.rightmove.co.uk/properties/157133945", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48695/157133945/48695_33616874_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.154697", - "last_seen": "2025-06-01T22:06:15.608370", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168697, - 51.526783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.8, - "qmprice": 47.73, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/157135280", - "info": { - "identifier": 157135280, - "sqm_ocr": 83.8, - "price": 4000.0, - "price_per_sqm": 47.7326968973747, - "url": "https://www.rightmove.co.uk/properties/157135280", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/157135280/15966_1311173_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.608177", - "last_seen": "2025-06-01T22:05:59.814002", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135385, - 51.467834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/157153568", - "info": { - "identifier": 157153568, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157153568", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/157153568/17418_100415009201_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.117473", - "last_seen": "2025-06-01T22:05:50.631709", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37652, - 51.56758 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/157154351", - "info": { - "identifier": 157154351, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157154351", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Aston Square", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274703/157154351/274703_CHARF4_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.884599", - "last_seen": "2025-06-01T22:05:53.020826", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09832, - 51.52284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.32, - "qmprice": 41.5, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/157167170", - "info": { - "identifier": 157167170, - "sqm_ocr": 78.32, - "price": 3250.0, - "price_per_sqm": 41.49642492339122, - "url": "https://www.rightmove.co.uk/properties/157167170", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Gardiner Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75433/157167170/75433_1462_GARD_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.545517", - "last_seen": "2025-06-01T22:05:44.753616", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312656, - 51.51031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3857.0, - "url": "https://www.rightmove.co.uk/properties/157173722", - "info": { - "identifier": 157173722, - "sqm_ocr": null, - "price": 3857.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157173722", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Ivory Real Estate", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82380/157173722/82380_IVG250015_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.042649", - "last_seen": "2025-06-01T22:06:08.875171", - "price": 3856 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027328, - 51.505856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/157193672", - "info": { - "identifier": 157193672, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157193672", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/157193672/209042_BBU1-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.136800", - "last_seen": "2025-06-01T22:05:58.460639", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192829, - 51.50339 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/157198676", - "info": { - "identifier": 157198676, - "sqm_ocr": null, - "price": 2990.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157198676", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Short Lets", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235637/157198676/235637_JDW-SL-0003331_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.298180", - "last_seen": "2025-06-01T22:05:38.846055", - "price": 2990 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15162, - 51.61349 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3210.0, - "url": "https://www.rightmove.co.uk/properties/157199216", - "info": { - "identifier": 157199216, - "sqm_ocr": null, - "price": 3210.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157199216", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77583/157199216/77583_YLT210106_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.524402", - "last_seen": "2025-06-01T22:06:04.237898", - "price": 3210.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.320697, - 51.42894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 138.8, - "qmprice": 28.82, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/157201256", - "info": { - "identifier": 157201256, - "sqm_ocr": 138.8, - "price": 4000.0, - "price_per_sqm": 28.81844380403458, - "url": "https://www.rightmove.co.uk/properties/157201256", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/157201256/55101_1298165_IMG_07_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.370029", - "last_seen": "2025-06-01T22:06:05.753118", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096621, - 51.504543 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/157204463", - "info": { - "identifier": 157204463, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157204463", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/157204463/209042_SAQ-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.275133", - "last_seen": "2025-06-01T22:05:48.430010", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198493, - 51.47962 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/157209149", - "info": { - "identifier": 157209149, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157209149", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Houseen Lettings & Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76994/157209149/76994_33364604_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "22/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.599507", - "last_seen": "2025-06-01T22:06:05.367123", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096625, - 51.49289 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/157217558", - "info": { - "identifier": 157217558, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157217558", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 130, - "status": null, - "last_seen": 0, - "agency": "Hiltons Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.645914", - "last_seen": "2025-06-01T22:05:44.414680", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.362, - 51.53401 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.88, - "qmprice": 45.85, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/157225451", - "info": { - "identifier": 157225451, - "sqm_ocr": 70.88, - "price": 3250.0, - "price_per_sqm": 45.85214446952596, - "url": "https://www.rightmove.co.uk/properties/157225451", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 80, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63329/157225451/63329_P5781F0726_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.610126", - "last_seen": "2025-06-01T22:05:58.850617", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30127, - 51.39907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 127.05, - "qmprice": 25.58, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/157242191", - "info": { - "identifier": 157242191, - "sqm_ocr": 127.05, - "price": 3250.0, - "price_per_sqm": 25.58048012593467, - "url": "https://www.rightmove.co.uk/properties/157242191", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/157242191/51465_67226127169a0_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.893962", - "last_seen": "2025-06-01T22:06:01.616127", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215952, - 51.434532 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.2, - "qmprice": 31.15, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/157257557", - "info": { - "identifier": 157257557, - "sqm_ocr": 64.2, - "price": 2000.0, - "price_per_sqm": 31.15264797507788, - "url": "https://www.rightmove.co.uk/properties/157257557", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100624/157257557/100624_33624456_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.694435", - "last_seen": "2025-06-01T22:05:59.992230", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120503, - 51.440033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3199.0, - "url": "https://www.rightmove.co.uk/properties/157272854", - "info": { - "identifier": 157272854, - "sqm_ocr": null, - "price": 3199.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157272854", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Bamboo Living Management Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272480/157272854/272480_ThanetHse_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.774132", - "last_seen": "2025-06-01T22:05:42.619674", - "price": 3199.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12594, - 51.5276 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/157283930", - "info": { - "identifier": 157283930, - "sqm_ocr": null, - "price": 3987.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157283930", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/157283930/70038_4852_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/10/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.495967", - "last_seen": "2025-06-01T22:05:49.391375", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214703, - 51.47953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.6, - "qmprice": 30.03, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/157292930", - "info": { - "identifier": 157292930, - "sqm_ocr": 71.6, - "price": 2150.0, - "price_per_sqm": 30.027932960893857, - "url": "https://www.rightmove.co.uk/properties/157292930", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84836/157292930/84836_33626584_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.293392", - "last_seen": "2025-06-01T22:06:04.561250", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.378458, - 51.43287 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 49.11, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/157301540", - "info": { - "identifier": 157301540, - "sqm_ocr": 75.0, - "price": 3683.0, - "price_per_sqm": 49.10666666666667, - "url": "https://www.rightmove.co.uk/properties/157301540", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43802/157301540/43802_P294410_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.260429", - "last_seen": "2025-06-01T22:05:57.455324", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18502, - 51.48483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 47.79, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/157304357", - "info": { - "identifier": 157304357, - "sqm_ocr": 68.0, - "price": 3250.0, - "price_per_sqm": 47.794117647058826, - "url": "https://www.rightmove.co.uk/properties/157304357", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/157304357/15942_1311773_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.471024", - "last_seen": "2025-06-01T22:05:58.268115", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180013, - 51.493614 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.4, - "qmprice": 72.56, - "rooms": 2, - "total_price": 3294.0, - "url": "https://www.rightmove.co.uk/properties/157304756", - "info": { - "identifier": 157304756, - "sqm_ocr": 45.4, - "price": 3294.0, - "price_per_sqm": 72.55506607929516, - "url": "https://www.rightmove.co.uk/properties/157304756", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/157304756/15948_1311782_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.758423", - "last_seen": "2025-06-01T22:05:49.044910", - "price": 3294.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212696, - 51.496517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/157309220", - "info": { - "identifier": 157309220, - "sqm_ocr": null, - "price": 2747.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157309220", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/157309220/82537_33627567_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.342040", - "last_seen": "2025-06-01T22:06:09.259259", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024837, - 51.49137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/157310594", - "info": { - "identifier": 157310594, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157310594", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home World Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281402/157310594/281402_14495_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.066478", - "last_seen": "2025-06-01T22:06:00.608986", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0141, - 51.45724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.1, - "qmprice": 41.52, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/157316348", - "info": { - "identifier": 157316348, - "sqm_ocr": 86.1, - "price": 3575.0, - "price_per_sqm": 41.52148664343787, - "url": "https://www.rightmove.co.uk/properties/157316348", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191426/157316348/191426_2706634_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.251514", - "last_seen": "2025-06-01T22:06:05.718293", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098581, - 51.491768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/157318121", - "info": { - "identifier": 157318121, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157318121", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 61, - "status": null, - "last_seen": 0, - "agency": "Ian Gibbs", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143588/157318121/143588_2299_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.052292", - "last_seen": "2025-06-01T22:05:45.643646", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06906, - 51.65887 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3031.0, - "url": "https://www.rightmove.co.uk/properties/157328531", - "info": { - "identifier": 157328531, - "sqm_ocr": null, - "price": 3031.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157328531", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 58, - "status": null, - "last_seen": 0, - "agency": "HYBR", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269531/157328531/269531_4c4700af-4524-4ea5-8b11-6b356266c415_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.923988", - "last_seen": "2025-06-01T22:05:48.229205", - "price": 3031.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224024, - 51.505287 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3031.0, - "url": "https://www.rightmove.co.uk/properties/157328552", - "info": { - "identifier": 157328552, - "sqm_ocr": null, - "price": 3031.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157328552", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 58, - "status": null, - "last_seen": 0, - "agency": "HYBR", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269531/157328552/269531_1d471ee8-1c3e-4f30-a80d-bd1ca4dc76fa_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.943248", - "last_seen": "2025-06-01T22:05:57.157540", - "price": 3031.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224024, - 51.505287 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/157332467", - "info": { - "identifier": 157332467, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157332467", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 103, - "status": null, - "last_seen": 0, - "agency": "Hiltons Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263951/157332467/263951_102717000802_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.404276", - "last_seen": "2025-06-01T22:05:51.171206", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.45939, - 51.50588 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.5, - "qmprice": 33.18, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/157362263", - "info": { - "identifier": 157362263, - "sqm_ocr": 108.5, - "price": 3600.0, - "price_per_sqm": 33.17972350230415, - "url": "https://www.rightmove.co.uk/properties/157362263", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Eli-G Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249824/157362263/249824_Eli-G_2035900870_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.543871", - "last_seen": "2025-06-01T22:05:39.088940", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20215, - 51.5789 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.78, - "qmprice": 44.13, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/157371878", - "info": { - "identifier": 157371878, - "sqm_ocr": 74.78, - "price": 3300.0, - "price_per_sqm": 44.12944637603637, - "url": "https://www.rightmove.co.uk/properties/157371878", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/157371878/96668_236507226012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.889623", - "last_seen": "2025-06-01T22:06:14.362694", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140872, - 51.49598 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.17, - "qmprice": 40.39, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/157383104", - "info": { - "identifier": 157383104, - "sqm_ocr": 84.17, - "price": 3400.0, - "price_per_sqm": 40.39443982416538, - "url": "https://www.rightmove.co.uk/properties/157383104", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/157383104/228512_33630236_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.219215", - "last_seen": "2025-06-01T22:06:14.920003", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178504, - 51.52624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.47, - "qmprice": 36.51, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/157383422", - "info": { - "identifier": 157383422, - "sqm_ocr": 68.47, - "price": 2500.0, - "price_per_sqm": 36.5123411713159, - "url": "https://www.rightmove.co.uk/properties/157383422", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34334/157383422/34334_HHI250030_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.290099", - "last_seen": "2025-06-01T22:06:00.251285", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119939, - 51.442505 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/157395044", - "info": { - "identifier": 157395044, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157395044", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/157395044/238265_L97095_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.410360", - "last_seen": "2025-06-01T22:05:58.969004", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132944, - 51.474255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/157414904", - "info": { - "identifier": 157414904, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157414904", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11309/157414904/11309_ALHA_1825_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.409072", - "last_seen": "2025-06-01T22:06:09.600449", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02992, - 51.53457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 42.68, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/157436270", - "info": { - "identifier": 157436270, - "sqm_ocr": 82.0, - "price": 3500.0, - "price_per_sqm": 42.68292682926829, - "url": "https://www.rightmove.co.uk/properties/157436270", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/157436270/15969_1312107_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.872041", - "last_seen": "2025-06-01T22:05:43.967840", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293191, - 51.524284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3371.0, - "url": "https://www.rightmove.co.uk/properties/157438718", - "info": { - "identifier": 157438718, - "sqm_ocr": null, - "price": 3371.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157438718", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/128k/127549/157438718/127549_P294514_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.896973", - "last_seen": "2025-06-01T22:06:14.187772", - "price": 3371 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188, - 51.44594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.9, - "qmprice": 44.39, - "rooms": 3, - "total_price": 3502.0, - "url": "https://www.rightmove.co.uk/properties/157439153", - "info": { - "identifier": 157439153, - "sqm_ocr": 78.9, - "price": 3502.0, - "price_per_sqm": 44.38529784537389, - "url": "https://www.rightmove.co.uk/properties/157439153", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/157439153/48101_1311055_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.589769", - "last_seen": "2025-06-01T22:06:08.312951", - "price": 3502.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009346, - 51.48799 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.29, - "qmprice": 26.49, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/157442519", - "info": { - "identifier": 157442519, - "sqm_ocr": 79.29, - "price": 2100.0, - "price_per_sqm": 26.485054861899354, - "url": "https://www.rightmove.co.uk/properties/157442519", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82086/157442519/82086_1289823_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.338877", - "last_seen": "2025-06-01T22:05:44.566592", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37585, - 51.50512 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/157442525", - "info": { - "identifier": 157442525, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157442525", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82086/157442525/82086_1305255_IMG_16_0014_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.591159", - "last_seen": "2025-06-01T22:05:39.097336", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.248691, - 51.59605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.9, - "qmprice": 44.96, - "rooms": 2, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/157449440", - "info": { - "identifier": 157449440, - "sqm_ocr": 68.9, - "price": 3098.0, - "price_per_sqm": 44.96371552975326, - "url": "https://www.rightmove.co.uk/properties/157449440", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/157449440/169658_456145_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.606182", - "last_seen": "2025-06-01T20:19:58.474751", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017935, - 51.499905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/157450940", - "info": { - "identifier": 157450940, - "sqm_ocr": null, - "price": 2925.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157450940", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Foundation Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/189k/188543/157450940/188543_33396824_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:08.872464", - "last_seen": "2025-06-01T22:06:08.872464", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066993, - 51.513138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/157452185", - "info": { - "identifier": 157452185, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157452185", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Amanda Roberts", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63076/157452185/63076_amrsewardstone111_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.693172", - "last_seen": "2025-06-01T22:06:11.891908", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01279, - 51.63499 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/157452845", - "info": { - "identifier": 157452845, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157452845", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Amanda Roberts", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63076/157452845/63076_amrseward121_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.753709", - "last_seen": "2025-06-01T22:06:11.803444", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01279, - 51.63499 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/157453610", - "info": { - "identifier": 157453610, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157453610", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Amanda Roberts", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63076/157453610/63076_amrsewards445_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.640263", - "last_seen": "2025-06-01T22:06:11.972784", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01279, - 51.63499 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/157457705", - "info": { - "identifier": 157457705, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157457705", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Foundation Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/189k/188543/157457705/188543_33633822_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.748665", - "last_seen": "2025-06-01T22:06:15.454374", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195253, - 51.527138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.9, - "qmprice": 40.06, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/157459391", - "info": { - "identifier": 157459391, - "sqm_ocr": 64.9, - "price": 2600.0, - "price_per_sqm": 40.06163328197226, - "url": "https://www.rightmove.co.uk/properties/157459391", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "HOBARTS", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/32k/31274/157459391/31274_hobarts_1520351225_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.766681", - "last_seen": "2025-06-01T22:05:49.710156", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110963, - 51.574387 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/157459610", - "info": { - "identifier": 157459610, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157459610", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 102, - "status": null, - "last_seen": 0, - "agency": "Aston Rowe", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230534/157459610/230534_33633942_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.684206", - "last_seen": "2025-06-01T22:05:44.213647", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.264709, - 51.510433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.8, - "qmprice": 26.33, - "rooms": 3, - "total_price": 2575.0, - "url": "https://www.rightmove.co.uk/properties/157470242", - "info": { - "identifier": 157470242, - "sqm_ocr": 97.8, - "price": 2575.0, - "price_per_sqm": 26.32924335378323, - "url": "https://www.rightmove.co.uk/properties/157470242", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Tony Alan Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250175/157470242/250175_101757006873_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.697156", - "last_seen": "2025-06-01T22:05:49.795780", - "price": 2575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09141, - 51.59161 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/157470389", - "info": { - "identifier": 157470389, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157470389", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242966/157470389/242966_P137425_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.243796", - "last_seen": "2025-06-01T22:05:39.727086", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24781, - 51.59783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/157473761", - "info": { - "identifier": 157473761, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157473761", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/157473761/96668_236771628012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.155964", - "last_seen": "2025-06-01T22:05:39.820832", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221195, - 51.589725 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/157474619", - "info": { - "identifier": 157474619, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157474619", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "City & Urban", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15508/157474619/15508_2bedswannellway_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.152474", - "last_seen": "2025-06-01T22:05:38.470641", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21726, - 51.56809 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.1, - "qmprice": 27.8, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/157476326", - "info": { - "identifier": 157476326, - "sqm_ocr": 115.1, - "price": 3200.0, - "price_per_sqm": 27.80191138140747, - "url": "https://www.rightmove.co.uk/properties/157476326", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Japan Services Rent", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94576/157476326/94576_RL0054_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.861230", - "last_seen": "2025-06-01T22:05:44.258245", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283276, - 51.518414 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2825.0, - "url": "https://www.rightmove.co.uk/properties/157476785", - "info": { - "identifier": 157476785, - "sqm_ocr": null, - "price": 2825.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157476785", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.477679", - "last_seen": "2025-06-01T22:06:11.394688", - "price": 2825.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00892, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2470.0, - "url": "https://www.rightmove.co.uk/properties/157477280", - "info": { - "identifier": 157477280, - "sqm_ocr": null, - "price": 2470.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157477280", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.218221", - "last_seen": "2025-06-01T20:19:56.563530", - "price": 2470.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00892, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.1, - "qmprice": 53.76, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/157478534", - "info": { - "identifier": 157478534, - "sqm_ocr": 65.1, - "price": 3500.0, - "price_per_sqm": 53.763440860215056, - "url": "https://www.rightmove.co.uk/properties/157478534", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/157478534/135416_FCL220219_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.236493", - "last_seen": "2025-06-01T22:06:13.775584", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134704, - 51.480183 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 48.37, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/157485644", - "info": { - "identifier": 157485644, - "sqm_ocr": 62.0, - "price": 2999.0, - "price_per_sqm": 48.37096774193548, - "url": "https://www.rightmove.co.uk/properties/157485644", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71134/157485644/71134_33635848_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.502031", - "last_seen": "2025-06-01T22:05:43.287513", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097165, - 51.518253 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.5, - "qmprice": 47.95, - "rooms": 2, - "total_price": 2709.0, - "url": "https://www.rightmove.co.uk/properties/157488887", - "info": { - "identifier": 157488887, - "sqm_ocr": 56.5, - "price": 2709.0, - "price_per_sqm": 47.94690265486726, - "url": "https://www.rightmove.co.uk/properties/157488887", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/157488887/15942_1311446_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.069727", - "last_seen": "2025-06-01T22:05:58.486511", - "price": 2709.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186509, - 51.496086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.76, - "qmprice": 43.5, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/157496300", - "info": { - "identifier": 157496300, - "sqm_ocr": 64.76, - "price": 2817.0, - "price_per_sqm": 43.49907350216183, - "url": "https://www.rightmove.co.uk/properties/157496300", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 65, - "status": null, - "last_seen": 0, - "agency": "James of Westminster", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250499/157496300/250499_33636260_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.725508", - "last_seen": "2025-06-01T22:06:15.486288", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133606, - 51.49719 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/157507097", - "info": { - "identifier": 157507097, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157507097", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/157507097/222842_TCT250065_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.020125", - "last_seen": "2025-06-01T22:05:47.814060", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090404, - 51.531452 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.4, - "qmprice": 27.08, - "rooms": 2, - "total_price": 2340.0, - "url": "https://www.rightmove.co.uk/properties/157507106", - "info": { - "identifier": 157507106, - "sqm_ocr": 86.4, - "price": 2340.0, - "price_per_sqm": 27.083333333333332, - "url": "https://www.rightmove.co.uk/properties/157507106", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Goldschmidt & Howland", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73968/157507106/73968_2632922_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.051411", - "last_seen": "2025-06-01T22:05:38.570751", - "price": 2340 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19601, - 51.57501 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/157508792", - "info": { - "identifier": 157508792, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157508792", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 58, - "status": null, - "last_seen": 0, - "agency": "HYBR", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269531/157508792/269531_e19ca19d-03c3-430f-9106-e47684c99136_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.864385", - "last_seen": "2025-06-01T22:06:08.030264", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.044258, - 51.52326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.97, - "qmprice": 64.55, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/157508840", - "info": { - "identifier": 157508840, - "sqm_ocr": 61.97, - "price": 4000.0, - "price_per_sqm": 64.54736162659351, - "url": "https://www.rightmove.co.uk/properties/157508840", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/157508840/264326_Y61023_8_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.333899", - "last_seen": "2025-06-01T22:05:57.724414", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158739, - 51.495155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.12, - "qmprice": 32.14, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/157511327", - "info": { - "identifier": 157511327, - "sqm_ocr": 101.12, - "price": 3250.0, - "price_per_sqm": 32.14003164556962, - "url": "https://www.rightmove.co.uk/properties/157511327", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/157511327/111050_1312382_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.046767", - "last_seen": "2025-06-01T22:06:12.619830", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164373, - 51.433178 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.0, - "qmprice": 59.06, - "rooms": 3, - "total_price": 3189.0, - "url": "https://www.rightmove.co.uk/properties/157522544", - "info": { - "identifier": 157522544, - "sqm_ocr": 54.0, - "price": 3189.0, - "price_per_sqm": 59.05555555555556, - "url": "https://www.rightmove.co.uk/properties/157522544", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Bamboo Living Management Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272480/157522544/272480_Bensoncourt_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.077117", - "last_seen": "2025-06-01T22:05:53.006483", - "price": 3189.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13855, - 51.55784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.5, - "qmprice": 43.12, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/157531325", - "info": { - "identifier": 157531325, - "sqm_ocr": 54.5, - "price": 2350.0, - "price_per_sqm": 43.11926605504587, - "url": "https://www.rightmove.co.uk/properties/157531325", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246848/157531325/246848_BEL200193_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.617661", - "last_seen": "2025-06-01T22:06:06.345236", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099261, - 51.49605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3779.0, - "url": "https://www.rightmove.co.uk/properties/157537226", - "info": { - "identifier": 157537226, - "sqm_ocr": null, - "price": 3779.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157537226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 96, - "status": null, - "last_seen": 0, - "agency": "Ivory Real Estate", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82380/157537226/82380_IVG250025_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:08.811242", - "last_seen": "2025-06-01T22:06:08.811242", - "price": 3778 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027756, - 51.507206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/157537301", - "info": { - "identifier": 157537301, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157537301", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/157537301/82537_33638602_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.990892", - "last_seen": "2025-06-01T22:06:09.936044", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015689, - 51.491016 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/157537868", - "info": { - "identifier": 157537868, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157537868", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Japan Services Rent", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94576/157537868/94576_P1198_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.514756", - "last_seen": "2025-06-01T22:05:44.328517", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29006, - 51.507378 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 32.0, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/157538879", - "info": { - "identifier": 157538879, - "sqm_ocr": 78.0, - "price": 2496.0, - "price_per_sqm": 32.0, - "url": "https://www.rightmove.co.uk/properties/157538879", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/157538879/82537_33638677_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:08.344515", - "last_seen": "2025-06-01T22:06:08.344515", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01202, - 51.499977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.7, - "qmprice": 29.85, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/157539515", - "info": { - "identifier": 157539515, - "sqm_ocr": 73.7, - "price": 2200.0, - "price_per_sqm": 29.850746268656714, - "url": "https://www.rightmove.co.uk/properties/157539515", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230516/157539515/230516_KEL242477_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.564593", - "last_seen": "2025-06-01T22:06:04.977179", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065982, - 51.477386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/157539761", - "info": { - "identifier": 157539761, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157539761", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 52, - "status": null, - "last_seen": 0, - "agency": "Equity Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35516/157539761/35516_EEL240144_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.636521", - "last_seen": "2025-06-01T22:06:12.010629", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021542, - 51.611195 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.2, - "qmprice": 29.26, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/157542134", - "info": { - "identifier": 157542134, - "sqm_ocr": 75.2, - "price": 2200.0, - "price_per_sqm": 29.25531914893617, - "url": "https://www.rightmove.co.uk/properties/157542134", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/38k/37163/157542134/37163_P443807_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.314691", - "last_seen": "2025-06-01T22:06:05.254212", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08247, - 51.42987 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/157565456", - "info": { - "identifier": 157565456, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157565456", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29165/157565456/29165_BRN180605_L_IMG_08_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.107628", - "last_seen": "2025-06-01T22:05:39.147106", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.231598, - 51.63852 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.6, - "qmprice": 54.95, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/157574864", - "info": { - "identifier": 157574864, - "sqm_ocr": 54.6, - "price": 3000.0, - "price_per_sqm": 54.94505494505494, - "url": "https://www.rightmove.co.uk/properties/157574864", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50074/157574864/50074_P294696_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.211286", - "last_seen": "2025-06-01T22:05:58.013084", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20522, - 51.5096 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.91, - "qmprice": 40.57, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/157584014", - "info": { - "identifier": 157584014, - "sqm_ocr": 84.91, - "price": 3445.0, - "price_per_sqm": 40.572370745495235, - "url": "https://www.rightmove.co.uk/properties/157584014", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90830/157584014/90830_SJD160840_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.562832", - "last_seen": "2025-06-01T22:06:15.780419", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172843, - 51.53456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/157605902", - "info": { - "identifier": 157605902, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157605902", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257069/157605902/257069_33642180_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.679920", - "last_seen": "2025-06-01T22:05:46.938000", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.002035, - 51.483704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/157608458", - "info": { - "identifier": 157608458, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157608458", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/157608458/82537_33642373_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.965447", - "last_seen": "2025-06-01T22:06:10.160929", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025688, - 51.501236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.6, - "qmprice": 54.36, - "rooms": 2, - "total_price": 3294.0, - "url": "https://www.rightmove.co.uk/properties/157613573", - "info": { - "identifier": 157613573, - "sqm_ocr": 60.6, - "price": 3294.0, - "price_per_sqm": 54.35643564356435, - "url": "https://www.rightmove.co.uk/properties/157613573", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/157613573/15942_1312728_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.498624", - "last_seen": "2025-06-01T22:05:57.457636", - "price": 3294.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18353, - 51.49712 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/157615460", - "info": { - "identifier": 157615460, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157615460", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 52, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/157615460/169658_406209_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.310646", - "last_seen": "2025-06-01T22:06:09.225336", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017681, - 51.498177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/157619435", - "info": { - "identifier": 157619435, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157619435", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/157619435/209042_JUD-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.864878", - "last_seen": "2025-06-01T22:06:15.182867", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144094, - 51.48933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.7, - "qmprice": 29.63, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/157623650", - "info": { - "identifier": 157623650, - "sqm_ocr": 82.7, - "price": 2450.0, - "price_per_sqm": 29.62515114873035, - "url": "https://www.rightmove.co.uk/properties/157623650", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64571/157623650/64571_33643263_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.170887", - "last_seen": "2025-06-01T22:05:39.004944", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196991, - 51.56048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 36.93, - "rooms": 2, - "total_price": 2548.0, - "url": "https://www.rightmove.co.uk/properties/157630640", - "info": { - "identifier": 157630640, - "sqm_ocr": 69.0, - "price": 2548.0, - "price_per_sqm": 36.927536231884055, - "url": "https://www.rightmove.co.uk/properties/157630640", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Square Quarters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76064/157630640/76064_189712_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.582762", - "last_seen": "2025-06-01T20:19:59.560020", - "price": 2548 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.054231, - 51.520657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.1, - "qmprice": 34.24, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/157630799", - "info": { - "identifier": 157630799, - "sqm_ocr": 70.1, - "price": 2400.0, - "price_per_sqm": 34.23680456490728, - "url": "https://www.rightmove.co.uk/properties/157630799", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 116, - "status": null, - "last_seen": 0, - "agency": "Real Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36827/157630799/36827_33643733_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.164930", - "last_seen": "2025-06-01T22:05:55.517669", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.244794, - 51.553493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/157632662", - "info": { - "identifier": 157632662, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157632662", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 121, - "status": null, - "last_seen": 0, - "agency": "Tenancy Managers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/277k/276488/157632662/276488_33643825_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.584719", - "last_seen": "2025-06-01T22:05:51.293248", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.465728, - 51.52683 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3696.0, - "url": "https://www.rightmove.co.uk/properties/157633049", - "info": { - "identifier": 157633049, - "sqm_ocr": null, - "price": 3696.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157633049", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "GrowPortfolio", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224333/157633049/224333_409_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.659344", - "last_seen": "2025-06-01T22:06:06.445134", - "price": 3696 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105088, - 51.5025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.42, - "qmprice": 55.38, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/157633082", - "info": { - "identifier": 157633082, - "sqm_ocr": 70.42, - "price": 3900.0, - "price_per_sqm": 55.38199375177506, - "url": "https://www.rightmove.co.uk/properties/157633082", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "GrowPortfolio", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224333/157633082/224333_404_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.704707", - "last_seen": "2025-06-01T22:06:15.726724", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16174, - 51.50155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/157636397", - "info": { - "identifier": 157636397, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157636397", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Westways", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44562/157636397/44562_101306003862_IMG_04_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.288825", - "last_seen": "2025-06-01T22:06:15.490233", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18738, - 51.51256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/157638041", - "info": { - "identifier": 157638041, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157638041", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/157638041/191255_33644188_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.402558", - "last_seen": "2025-06-01T20:19:56.725802", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063272, - 51.508976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.6, - "qmprice": 36.31, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/157638230", - "info": { - "identifier": 157638230, - "sqm_ocr": 71.6, - "price": 2600.0, - "price_per_sqm": 36.312849162011176, - "url": "https://www.rightmove.co.uk/properties/157638230", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "ARE Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265310/157638230/265310_318AGAR_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.487666", - "last_seen": "2025-06-01T22:06:09.051530", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0067, - 51.50823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/157639553", - "info": { - "identifier": 157639553, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157639553", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79624/157639553/79624_0615_FJL061501043_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.881507", - "last_seen": "2025-06-01T22:05:53.320482", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09104, - 51.545025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/157640360", - "info": { - "identifier": 157640360, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157640360", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Harris and Company", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52827/157640360/52827_33638397_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.184436", - "last_seen": "2025-06-01T22:05:54.850945", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.227066, - 51.537178 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.5, - "qmprice": 37.91, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/157644869", - "info": { - "identifier": 157644869, - "sqm_ocr": 105.5, - "price": 4000.0, - "price_per_sqm": 37.91469194312796, - "url": "https://www.rightmove.co.uk/properties/157644869", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51322/157644869/51322_WEL190099_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.297496", - "last_seen": "2025-06-01T22:06:15.297362", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137507, - 51.49339 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.4, - "qmprice": 37.29, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/157645412", - "info": { - "identifier": 157645412, - "sqm_ocr": 72.4, - "price": 2700.0, - "price_per_sqm": 37.292817679558006, - "url": "https://www.rightmove.co.uk/properties/157645412", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/157645412/66771_1312831_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.498738", - "last_seen": "2025-06-01T22:05:59.168308", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129697, - 51.47704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/157646354", - "info": { - "identifier": 157646354, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157646354", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/157646354/96668_230343523112024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.656652", - "last_seen": "2025-06-01T22:06:12.034920", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005168, - 51.56967 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/157648910", - "info": { - "identifier": 157648910, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157648910", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/157648910/96668_237179731012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.889354", - "last_seen": "2025-06-01T22:05:53.289766", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122389, - 51.53816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.6, - "qmprice": 25.35, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/157657511", - "info": { - "identifier": 157657511, - "sqm_ocr": 98.6, - "price": 2500.0, - "price_per_sqm": 25.354969574036513, - "url": "https://www.rightmove.co.uk/properties/157657511", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52713/157657511/52713_33645277_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.159071", - "last_seen": "2025-06-01T22:06:04.544615", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.333253, - 51.445293 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/157660310", - "info": { - "identifier": 157660310, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157660310", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Houseen Lettings & Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76994/157660310/76994_32011799_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.165513", - "last_seen": "2025-06-01T22:05:44.215352", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.249976, - 51.513638 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/157676504", - "info": { - "identifier": 157676504, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157676504", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/157676504/96668_235120213012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.940238", - "last_seen": "2025-06-01T22:05:44.723610", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.294668, - 51.52348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/157676540", - "info": { - "identifier": 157676540, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157676540", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/157676540/228512_33645724_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.449107", - "last_seen": "2025-06-01T22:05:42.738675", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187463, - 51.539783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.9, - "qmprice": 48.8, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/157685216", - "info": { - "identifier": 157685216, - "sqm_ocr": 78.9, - "price": 3850.0, - "price_per_sqm": 48.79594423320659, - "url": "https://www.rightmove.co.uk/properties/157685216", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Rentd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230333/157685216/230333_WZhStxaUyedhyINjWhrm_IMG_22_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.223836", - "last_seen": "2025-06-01T22:05:57.791148", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189201, - 51.49 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.1, - "qmprice": 34.04, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/157688381", - "info": { - "identifier": 157688381, - "sqm_ocr": 88.1, - "price": 2999.0, - "price_per_sqm": 34.04086265607265, - "url": "https://www.rightmove.co.uk/properties/157688381", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/157688381/82537_33646190_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.112323", - "last_seen": "2025-06-01T22:06:10.652770", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024649, - 51.50212 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.1, - "qmprice": 34.04, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/157688594", - "info": { - "identifier": 157688594, - "sqm_ocr": 88.1, - "price": 2999.0, - "price_per_sqm": 34.04086265607265, - "url": "https://www.rightmove.co.uk/properties/157688594", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/157688594/198539_33646201_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.961147", - "last_seen": "2025-06-01T22:06:10.036310", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024649, - 51.50212 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/157700018", - "info": { - "identifier": 157700018, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157700018", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Tenancy Managers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/277k/276488/157700018/276488_33646898_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.482436, - 51.5437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.3, - "qmprice": 48.6, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/157701386", - "info": { - "identifier": 157701386, - "sqm_ocr": 82.3, - "price": 4000.0, - "price_per_sqm": 48.60267314702309, - "url": "https://www.rightmove.co.uk/properties/157701386", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151658/157701386/151658_1311087_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.000322", - "last_seen": "2025-06-01T22:06:15.856526", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193162, - 51.526726 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3220.0, - "url": "https://www.rightmove.co.uk/properties/157704437", - "info": { - "identifier": 157704437, - "sqm_ocr": null, - "price": 3220.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157704437", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/157704437/209042_ZMPN-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.726249", - "last_seen": "2025-06-01T20:19:56.542484", - "price": 3220.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066164, - 51.51603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/157709858", - "info": { - "identifier": 157709858, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157709858", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/157709858/169658_414279_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.455196", - "last_seen": "2025-06-01T20:19:57.165582", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068944, - 51.505573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/157715285", - "info": { - "identifier": 157715285, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157715285", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206645/157715285/206645_32426728_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.716593", - "last_seen": "2025-06-01T22:05:51.095573", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.416321, - 51.612885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/157715555", - "info": { - "identifier": 157715555, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157715555", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "London Homes Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162716/157715555/162716_3589_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.952078", - "last_seen": "2025-06-01T22:05:44.792701", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.304373, - 51.5179 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/157717643", - "info": { - "identifier": 157717643, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157717643", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Property Inc", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191252/157717643/191252_PRI250028_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.934235", - "last_seen": "2025-06-01T22:05:53.911378", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119637, - 51.558277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/157719182", - "info": { - "identifier": 157719182, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157719182", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 69, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3723/157719182/3723_PHL250092_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.745559", - "last_seen": "2025-06-01T22:05:41.133060", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242456, - 51.53589 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/157725080", - "info": { - "identifier": 157725080, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157725080", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/157725080/96668_237432103022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.684822", - "last_seen": "2025-06-01T22:05:43.180515", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142449, - 51.53128 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/157731356", - "info": { - "identifier": 157731356, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157731356", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 69, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3723/157731356/3723_PHL240116_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.082781", - "last_seen": "2025-06-01T22:05:53.590888", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137498, - 51.568066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/157737203", - "info": { - "identifier": 157737203, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157737203", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Delaney's", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95929/157737203/95929_HWRLA293_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.285138", - "last_seen": "2025-06-01T22:05:50.888373", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.186956, - 51.558964 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 37.66, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/157738898", - "info": { - "identifier": 157738898, - "sqm_ocr": 77.0, - "price": 2900.0, - "price_per_sqm": 37.66233766233766, - "url": "https://www.rightmove.co.uk/properties/157738898", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/157738898/55101_1312988_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.202070", - "last_seen": "2025-06-01T22:06:06.790508", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09028, - 51.50048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.5, - "qmprice": 27.22, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/157740899", - "info": { - "identifier": 157740899, - "sqm_ocr": 84.5, - "price": 2300.0, - "price_per_sqm": 27.218934911242602, - "url": "https://www.rightmove.co.uk/properties/157740899", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Visum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35298/157740899/35298_34140_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.114908", - "last_seen": "2025-06-01T22:05:50.726708", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.39013, - 51.597286 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.12, - "qmprice": 48.53, - "rooms": 2, - "total_price": 2384.0, - "url": "https://www.rightmove.co.uk/properties/157743308", - "info": { - "identifier": 157743308, - "sqm_ocr": 49.12, - "price": 2384.0, - "price_per_sqm": 48.534201954397396, - "url": "https://www.rightmove.co.uk/properties/157743308", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/157743308/108515_1313082_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.398589", - "last_seen": "2025-06-01T22:05:58.398435", - "price": 2384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195853, - 51.4933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.54, - "qmprice": 47.31, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/157743338", - "info": { - "identifier": 157743338, - "sqm_ocr": 59.54, - "price": 2817.0, - "price_per_sqm": 47.31273093718509, - "url": "https://www.rightmove.co.uk/properties/157743338", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/157743338/108515_1313075_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.445487", - "last_seen": "2025-06-01T22:05:58.412894", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188808, - 51.489876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.4, - "qmprice": 28.51, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/157745192", - "info": { - "identifier": 157745192, - "sqm_ocr": 82.4, - "price": 2349.0, - "price_per_sqm": 28.507281553398055, - "url": "https://www.rightmove.co.uk/properties/157745192", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/157745192/82537_33649495_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.223816", - "last_seen": "2025-06-01T22:06:10.132902", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.007019, - 51.50538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 42.95, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/157748774", - "info": { - "identifier": 157748774, - "sqm_ocr": 78.0, - "price": 3350.0, - "price_per_sqm": 42.94871794871795, - "url": "https://www.rightmove.co.uk/properties/157748774", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 96, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77583/157748774/77583_YLT210053_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.601674", - "last_seen": "2025-06-01T22:06:04.196320", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.320697, - 51.42894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.4, - "qmprice": 41.39, - "rooms": 4, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/157748777", - "info": { - "identifier": 157748777, - "sqm_ocr": 89.4, - "price": 3700.0, - "price_per_sqm": 41.387024608501115, - "url": "https://www.rightmove.co.uk/properties/157748777", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12684/157748777/12684_BLO120008_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.208317", - "last_seen": "2025-06-01T22:05:55.374713", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228009, - 51.507275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 38.24, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/157751690", - "info": { - "identifier": 157751690, - "sqm_ocr": 68.0, - "price": 2600.0, - "price_per_sqm": 38.23529411764706, - "url": "https://www.rightmove.co.uk/properties/157751690", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/157751690/84788_33649862_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.939668", - "last_seen": "2025-06-01T22:05:52.227948", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.278165, - 51.493492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.0, - "qmprice": 37.04, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/157755173", - "info": { - "identifier": 157755173, - "sqm_ocr": 54.0, - "price": 2000.0, - "price_per_sqm": 37.03703703703704, - "url": "https://www.rightmove.co.uk/properties/157755173", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "SeOUL Estate Agents", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73282/157755173/73282_10084_SR4U_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.437595", - "last_seen": "2025-06-01T22:06:07.870588", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190939, - 51.360775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/157758347", - "info": { - "identifier": 157758347, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157758347", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Henry Wiltshire", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256607/157758347/256607_21030_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.713282", - "last_seen": "2025-06-01T22:06:10.057171", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013341, - 51.494373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/157758650", - "info": { - "identifier": 157758650, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157758650", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/157758650/17418_100415008987_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.863751", - "last_seen": "2025-06-01T22:05:50.673090", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34619, - 51.58829 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.9, - "qmprice": 33.7, - "rooms": 3, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/157764344", - "info": { - "identifier": 157764344, - "sqm_ocr": 94.9, - "price": 3198.0, - "price_per_sqm": 33.6986301369863, - "url": "https://www.rightmove.co.uk/properties/157764344", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218729/157764344/218729_33650562_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.032069", - "last_seen": "2025-06-01T22:05:56.404279", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137957, - 51.55754 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/157765364", - "info": { - "identifier": 157765364, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157765364", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32895/157765364/32895_SOL240011_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.419287", - "last_seen": "2025-06-01T22:06:13.854772", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212539, - 51.438976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.7, - "qmprice": 29.87, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/157769555", - "info": { - "identifier": 157769555, - "sqm_ocr": 83.7, - "price": 2500.0, - "price_per_sqm": 29.86857825567503, - "url": "https://www.rightmove.co.uk/properties/157769555", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/157769555/130309_1313073_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.862196", - "last_seen": "2025-06-01T22:05:43.459005", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098285, - 51.38206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/157771643", - "info": { - "identifier": 157771643, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157771643", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/157771643/80340_a1G4J000004juy4UAA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.707306", - "last_seen": "2025-06-01T22:05:50.097868", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05559, - 51.58851 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.5, - "qmprice": 58.02, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/157774811", - "info": { - "identifier": 157774811, - "sqm_ocr": 65.5, - "price": 3800.0, - "price_per_sqm": 58.01526717557252, - "url": "https://www.rightmove.co.uk/properties/157774811", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/157774811/149153_1313186_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.732966", - "last_seen": "2025-06-01T22:05:58.518020", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254907, - 51.4002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.0, - "qmprice": 24.75, - "rooms": 3, - "total_price": 2475.0, - "url": "https://www.rightmove.co.uk/properties/157776524", - "info": { - "identifier": 157776524, - "sqm_ocr": 100.0, - "price": 2475.0, - "price_per_sqm": 24.75, - "url": "https://www.rightmove.co.uk/properties/157776524", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 97, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105241/157776524/105241_P1949H1917_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.673861", - "last_seen": "2025-06-01T22:05:43.399154", - "price": 2475.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1118, - 51.3781 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.4, - "qmprice": 38.68, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/157777148", - "info": { - "identifier": 157777148, - "sqm_ocr": 90.4, - "price": 3497.0, - "price_per_sqm": 38.68362831858407, - "url": "https://www.rightmove.co.uk/properties/157777148", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40512/157777148/40512_33434575_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.523599", - "last_seen": "2025-06-01T22:06:06.457271", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10435, - 51.49943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.4, - "qmprice": 38.68, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/157777847", - "info": { - "identifier": 157777847, - "sqm_ocr": 90.4, - "price": 3497.0, - "price_per_sqm": 38.68362831858407, - "url": "https://www.rightmove.co.uk/properties/157777847", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 55, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/157777847/198539_33434645_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.846441", - "last_seen": "2025-06-01T22:06:05.494970", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10435, - 51.49943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.5, - "qmprice": 29.18, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/157780016", - "info": { - "identifier": 157780016, - "sqm_ocr": 85.5, - "price": 2495.0, - "price_per_sqm": 29.181286549707604, - "url": "https://www.rightmove.co.uk/properties/157780016", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84818/157780016/84818_33651549_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.417307", - "last_seen": "2025-06-01T22:06:04.446988", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.322278, - 51.449615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.1, - "qmprice": 39.07, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/157780301", - "info": { - "identifier": 157780301, - "sqm_ocr": 77.1, - "price": 3012.0, - "price_per_sqm": 39.06614785992218, - "url": "https://www.rightmove.co.uk/properties/157780301", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/157780301/15960_1312985_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.615601", - "last_seen": "2025-06-01T22:06:14.912639", - "price": 3012.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178505, - 51.530285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/157782158", - "info": { - "identifier": 157782158, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157782158", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191426/157782158/191426_2654625_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.173250", - "last_seen": "2025-06-01T22:05:38.537802", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204781, - 51.575275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.92, - "qmprice": 61.01, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/157782311", - "info": { - "identifier": 157782311, - "sqm_ocr": 63.92, - "price": 3900.0, - "price_per_sqm": 61.01376720901126, - "url": "https://www.rightmove.co.uk/properties/157782311", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/157782311/80281_1313232_IMG_05_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.299711", - "last_seen": "2025-06-01T22:06:07.610232", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009749, - 51.54816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.61, - "qmprice": 52.27, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/157784012", - "info": { - "identifier": 157784012, - "sqm_ocr": 74.61, - "price": 3900.0, - "price_per_sqm": 52.27181342983514, - "url": "https://www.rightmove.co.uk/properties/157784012", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OIG Real Estate Limited", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285305/157784012/285305_OIL240173_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.444280", - "last_seen": "2025-06-01T22:05:42.374604", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185107, - 51.53792 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/157786172", - "info": { - "identifier": 157786172, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157786172", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/157786172/96668_236844629012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.670376", - "last_seen": "2025-06-01T22:05:58.542610", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305912, - 51.4065 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 32.69, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/157806014", - "info": { - "identifier": 157806014, - "sqm_ocr": 78.0, - "price": 2550.0, - "price_per_sqm": 32.69230769230769, - "url": "https://www.rightmove.co.uk/properties/157806014", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Doyle Sales & Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91000/157806014/91000_DOYLE_003449_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.103111", - "last_seen": "2025-06-01T22:05:44.581638", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303537, - 51.527542 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/157809902", - "info": { - "identifier": 157809902, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157809902", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100441/157809902/100441_YLI230064_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.883876", - "last_seen": "2025-06-01T22:05:52.339367", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.339485, - 51.485443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/157810289", - "info": { - "identifier": 157810289, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157810289", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "STONEBANKS UK LTD", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272417/157810289/272417_33652701_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.516614", - "last_seen": "2025-06-01T22:06:16.122262", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177212, - 51.53229 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.6, - "qmprice": 40.47, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/157810421", - "info": { - "identifier": 157810421, - "sqm_ocr": 55.6, - "price": 2250.0, - "price_per_sqm": 40.46762589928058, - "url": "https://www.rightmove.co.uk/properties/157810421", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84073/157810421/84073_1313296_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.680105", - "last_seen": "2025-06-01T22:05:53.108879", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11859, - 51.56529 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/157810499", - "info": { - "identifier": 157810499, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157810499", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 88, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100441/157810499/100441_YLI220044_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.981672", - "last_seen": "2025-06-01T22:05:51.775645", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.339485, - 51.485443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.8, - "qmprice": 26.6, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/157818644", - "info": { - "identifier": 157818644, - "sqm_ocr": 112.8, - "price": 3000.0, - "price_per_sqm": 26.595744680851066, - "url": "https://www.rightmove.co.uk/properties/157818644", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129652/157818644/129652_P4877C5605_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.650670", - "last_seen": "2025-06-01T22:05:39.037656", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24353, - 51.57762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/157830548", - "info": { - "identifier": 157830548, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157830548", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "Wayne & Silver", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91636/157830548/91636_33653860_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.119895", - "last_seen": "2025-06-01T22:05:59.111823", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1008, - 51.46558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.8, - "qmprice": 35.36, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/157842860", - "info": { - "identifier": 157842860, - "sqm_ocr": 85.8, - "price": 3034.0, - "price_per_sqm": 35.36130536130536, - "url": "https://www.rightmove.co.uk/properties/157842860", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/157842860/227810_1311861_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.760062", - "last_seen": "2025-06-01T22:05:56.421837", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.068994, - 51.49357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/157843127", - "info": { - "identifier": 157843127, - "sqm_ocr": null, - "price": 2847.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157843127", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/157843127/17882_36381_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.154588", - "last_seen": "2025-06-01T22:05:53.346979", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12479, - 51.55222 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.0, - "qmprice": 42.95, - "rooms": 2, - "total_price": 2405.0, - "url": "https://www.rightmove.co.uk/properties/157844480", - "info": { - "identifier": 157844480, - "sqm_ocr": 56.0, - "price": 2405.0, - "price_per_sqm": 42.94642857142857, - "url": "https://www.rightmove.co.uk/properties/157844480", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/157844480/96668_237683605022025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.636464", - "last_seen": "2025-06-01T22:05:49.020373", - "price": 2470.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19266, - 51.48287 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.7, - "qmprice": 39.99, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/157844504", - "info": { - "identifier": 157844504, - "sqm_ocr": 73.7, - "price": 2947.0, - "price_per_sqm": 39.98643147896879, - "url": "https://www.rightmove.co.uk/properties/157844504", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/157844504/16023_1313407_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.215288", - "last_seen": "2025-06-01T22:05:57.677455", - "price": 2947.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167175, - 51.48717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/157860857", - "info": { - "identifier": 157860857, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157860857", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "John Grants Estate Agents Ltd", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78074/157860857/78074_10620436_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.069812, - 51.55852 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/157861112", - "info": { - "identifier": 157861112, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157861112", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36728/157861112/36728_0467_HRT046702022_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.298923", - "last_seen": "2025-06-01T22:06:06.078103", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091664, - 51.48649 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/157862597", - "info": { - "identifier": 157862597, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157862597", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/157862597/49784_37421_IMG_06_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.589296", - "last_seen": "2025-06-01T22:06:05.573970", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09911, - 51.49687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.32, - "qmprice": 34.7, - "rooms": 3, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/157866113", - "info": { - "identifier": 157866113, - "sqm_ocr": 76.32, - "price": 2648.0, - "price_per_sqm": 34.69601677148847, - "url": "https://www.rightmove.co.uk/properties/157866113", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/157866113/84788_33655435_IMG_03_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.364756", - "last_seen": "2025-06-01T22:05:51.974815", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269784, - 51.490616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.3, - "qmprice": 28.79, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/157868678", - "info": { - "identifier": 157868678, - "sqm_ocr": 90.3, - "price": 2600.0, - "price_per_sqm": 28.792912513842747, - "url": "https://www.rightmove.co.uk/properties/157868678", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Statons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30912/157868678/30912_LET210020_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.992277", - "last_seen": "2025-06-01T22:05:45.509665", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098105, - 51.660408 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.2, - "qmprice": 35.6, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/157869113", - "info": { - "identifier": 157869113, - "sqm_ocr": 63.2, - "price": 2250.0, - "price_per_sqm": 35.60126582278481, - "url": "https://www.rightmove.co.uk/properties/157869113", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13325/157869113/13325_CHI180063_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.582573", - "last_seen": "2025-06-01T22:05:45.210159", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25195, - 51.5151 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/157871246", - "info": { - "identifier": 157871246, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157871246", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 58, - "status": null, - "last_seen": 0, - "agency": "Alexander Charles & Browne", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206588/157871246/206588_28678611_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.575346", - "last_seen": "2025-06-01T22:05:43.630585", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090908, - 51.355564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.42, - "qmprice": 40.25, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/157876859", - "info": { - "identifier": 157876859, - "sqm_ocr": 83.42, - "price": 3358.0, - "price_per_sqm": 40.25413569887317, - "url": "https://www.rightmove.co.uk/properties/157876859", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90830/157876859/90830_SJD021197_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.308247", - "last_seen": "2025-06-01T22:06:15.656343", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174171, - 51.53022 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 39.3, - "qmprice": 69.97, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/157878251", - "info": { - "identifier": 157878251, - "sqm_ocr": 39.3, - "price": 2750.0, - "price_per_sqm": 69.97455470737914, - "url": "https://www.rightmove.co.uk/properties/157878251", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77508/157878251/77508_LBL250014_L_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.585108", - "last_seen": "2025-06-01T22:06:05.300513", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068153, - 51.492447 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/157885649", - "info": { - "identifier": 157885649, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157885649", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/157885649/96668_224648002102024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.519238", - "last_seen": "2025-06-01T22:06:04.763794", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.384403, - 51.42366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/157892699", - "info": { - "identifier": 157892699, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157892699", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Hemmingfords", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201083/157892699/201083_33657055_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.395495", - "last_seen": "2025-06-01T22:05:47.513840", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068648, - 51.558125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.1, - "qmprice": 48.54, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/157893755", - "info": { - "identifier": 157893755, - "sqm_ocr": 72.1, - "price": 3500.0, - "price_per_sqm": 48.54368932038835, - "url": "https://www.rightmove.co.uk/properties/157893755", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230516/157893755/230516_KNN250031_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.599034", - "last_seen": "2025-06-01T22:05:59.575415", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131958, - 51.47552 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.8, - "qmprice": 37.45, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/157895789", - "info": { - "identifier": 157895789, - "sqm_ocr": 106.8, - "price": 4000.0, - "price_per_sqm": 37.453183520599254, - "url": "https://www.rightmove.co.uk/properties/157895789", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210116/157895789/210116_P295093_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.669191", - "last_seen": "2025-06-01T22:05:42.651034", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17125, - 51.54819 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/157909853", - "info": { - "identifier": 157909853, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157909853", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/157909853/96668_206574325042024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.931062", - "last_seen": "2025-06-01T22:06:11.538730", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035422, - 51.526283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/157925075", - "info": { - "identifier": 157925075, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157925075", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hilton & Fox", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106243/157925075/106243_hilton_695104669_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.025971", - "last_seen": "2025-06-01T22:05:50.309641", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33163, - 51.583935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.5, - "qmprice": 35.09, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/157926155", - "info": { - "identifier": 157926155, - "sqm_ocr": 85.5, - "price": 3000.0, - "price_per_sqm": 35.08771929824562, - "url": "https://www.rightmove.co.uk/properties/157926155", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 81, - "status": null, - "last_seen": 0, - "agency": "Hilton & Fox", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237869/157926155/237869_hilton_634392832_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.315039", - "last_seen": "2025-06-01T22:05:40.400722", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299566, - 51.542637 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/157927043", - "info": { - "identifier": 157927043, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157927043", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 95, - "status": null, - "last_seen": 0, - "agency": "Hilton & Fox", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237869/157927043/237869_hilton_645253185_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.540049", - "last_seen": "2025-06-01T22:05:51.496480", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.44591, - 51.518127 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/157929782", - "info": { - "identifier": 157929782, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157929782", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/157929782/96668_237800306022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.382177", - "last_seen": "2025-06-01T22:06:07.860105", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215153, - 51.37667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.8, - "qmprice": 41.21, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/157933532", - "info": { - "identifier": 157933532, - "sqm_ocr": 72.8, - "price": 3000.0, - "price_per_sqm": 41.20879120879121, - "url": "https://www.rightmove.co.uk/properties/157933532", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18930/157933532/18930_33658572_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.040637", - "last_seen": "2025-06-01T22:05:43.002677", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14975, - 51.570118 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.78, - "qmprice": 33.38, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/157938095", - "info": { - "identifier": 157938095, - "sqm_ocr": 71.78, - "price": 2396.0, - "price_per_sqm": 33.37977152410142, - "url": "https://www.rightmove.co.uk/properties/157938095", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 114, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50969/157938095/50969_P5879C0607_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.401699", - "last_seen": "2025-06-01T22:05:56.262723", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24353, - 51.57762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.8, - "qmprice": 26.59, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/157938155", - "info": { - "identifier": 157938155, - "sqm_ocr": 112.8, - "price": 2999.0, - "price_per_sqm": 26.586879432624116, - "url": "https://www.rightmove.co.uk/properties/157938155", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 114, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50969/157938155/50969_P3584C1907_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.106376", - "last_seen": "2025-06-01T22:05:38.824368", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24353, - 51.57762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.54, - "qmprice": 48.15, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/157942577", - "info": { - "identifier": 157942577, - "sqm_ocr": 71.54, - "price": 3445.0, - "price_per_sqm": 48.154878389712046, - "url": "https://www.rightmove.co.uk/properties/157942577", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53654/157942577/53654_33646325_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.885131", - "last_seen": "2025-06-01T22:06:13.363513", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179848, - 51.466682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/157949642", - "info": { - "identifier": 157949642, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157949642", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "SJW property management limited", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/233k/232853/157949642/232853_ac8a8fc1-9503-40ae-a532-7b549fca6ecc_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.500355", - "last_seen": "2025-06-01T22:05:38.530127", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238229, - 51.595715 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.8, - "qmprice": 29.07, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/157950269", - "info": { - "identifier": 157950269, - "sqm_ocr": 68.8, - "price": 2000.0, - "price_per_sqm": 29.069767441860467, - "url": "https://www.rightmove.co.uk/properties/157950269", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/157950269/96668_237794506022025_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.280361, - 51.415115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2525.0, - "url": "https://www.rightmove.co.uk/properties/157960340", - "info": { - "identifier": 157960340, - "sqm_ocr": null, - "price": 2525.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157960340", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262865/157960340/262865_a1G8d000002QBQhEAO_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.301800", - "last_seen": "2025-06-01T22:06:03.396540", - "price": 2525.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00996, - 51.51357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/157966994", - "info": { - "identifier": 157966994, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157966994", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48798/157966994/48798_YLG250008_L_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.645716", - "last_seen": "2025-06-01T22:06:04.434777", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.366385, - 51.44049 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/157975631", - "info": { - "identifier": 157975631, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157975631", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "PropertyLoop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222287/157975631/222287_BMSg200w_IMG_04_0001_max_656x437.png", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.917745", - "last_seen": "2025-06-01T22:05:47.767974", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08795, - 51.53283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/157982435", - "info": { - "identifier": 157982435, - "sqm_ocr": null, - "price": 3792.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/157982435", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/157982435/275489_08022025-KZ79_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.307963", - "last_seen": "2025-06-01T22:06:12.353882", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12932, - 51.482277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2590.0, - "url": "https://www.rightmove.co.uk/properties/158016464", - "info": { - "identifier": 158016464, - "sqm_ocr": null, - "price": 2590.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158016464", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158016464/96668_166566629032023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.631239", - "last_seen": "2025-06-01T22:05:53.127710", - "price": 2590.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117487, - 51.542187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.3, - "qmprice": 26.35, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/158019098", - "info": { - "identifier": 158019098, - "sqm_ocr": 87.3, - "price": 2300.0, - "price_per_sqm": 26.34593356242841, - "url": "https://www.rightmove.co.uk/properties/158019098", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Robertson Phillips", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9862/158019098/9862_546595_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.001030", - "last_seen": "2025-06-01T22:05:50.233584", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.356768, - 51.60056 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.3, - "qmprice": 32.4, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/158023802", - "info": { - "identifier": 158023802, - "sqm_ocr": 117.3, - "price": 3800.0, - "price_per_sqm": 32.395566922421146, - "url": "https://www.rightmove.co.uk/properties/158023802", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43817/158023802/43817_P291063_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.435305", - "last_seen": "2025-06-01T22:06:01.745787", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21911, - 51.42312 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 122.1, - "qmprice": 20.07, - "rooms": 4, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/158024051", - "info": { - "identifier": 158024051, - "sqm_ocr": 122.1, - "price": 2450.0, - "price_per_sqm": 20.065520065520065, - "url": "https://www.rightmove.co.uk/properties/158024051", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Masons Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11773/158024051/11773_MAS1002137_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.059364", - "last_seen": "2025-06-01T22:05:50.141815", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10542, - 51.61225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/158029736", - "info": { - "identifier": 158029736, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158029736", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Harding Green", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250814/158029736/250814_RX519843_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.385891", - "last_seen": "2025-06-01T22:05:44.799017", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.291997, - 51.51429 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.05, - "qmprice": 44.41, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/158030276", - "info": { - "identifier": 158030276, - "sqm_ocr": 63.05, - "price": 2800.0, - "price_per_sqm": 44.409199048374305, - "url": "https://www.rightmove.co.uk/properties/158030276", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/158030276/80340_a1G4J00000262xBUAQ_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.547588", - "last_seen": "2025-06-01T22:05:59.290441", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10739, - 51.50231 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/158030678", - "info": { - "identifier": 158030678, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158030678", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Reeds Rains", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46503/158030678/46503_PLA240203_L_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.921157", - "last_seen": "2025-06-01T22:06:04.029362", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.10582, - 51.56998 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.85, - "qmprice": 36.43, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/158032139", - "info": { - "identifier": 158032139, - "sqm_ocr": 76.85, - "price": 2800.0, - "price_per_sqm": 36.43461288223813, - "url": "https://www.rightmove.co.uk/properties/158032139", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/158032139/56751_1308784_IMG_15_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.668103", - "last_seen": "2025-06-01T22:05:59.566531", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113158, - 51.46818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.72, - "qmprice": 38.05, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/158036240", - "info": { - "identifier": 158036240, - "sqm_ocr": 78.72, - "price": 2995.0, - "price_per_sqm": 38.046239837398375, - "url": "https://www.rightmove.co.uk/properties/158036240", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 100, - "status": null, - "last_seen": 0, - "agency": "Jo & Co Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283895/158036240/283895_80d3744f-e91a-47d4-a263-6ed5f4e99093_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.218904", - "last_seen": "2025-06-01T22:05:59.074615", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145059, - 51.463486 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.3, - "qmprice": 76.02, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/158036537", - "info": { - "identifier": 158036537, - "sqm_ocr": 51.3, - "price": 3900.0, - "price_per_sqm": 76.0233918128655, - "url": "https://www.rightmove.co.uk/properties/158036537", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/158036537/15942_1313955_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.079554", - "last_seen": "2025-06-01T22:05:57.526301", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183555, - 51.497185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/158037227", - "info": { - "identifier": 158037227, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158037227", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/158037227/17888_31909_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.619861", - "last_seen": "2025-06-01T22:05:57.085229", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13934, - 51.53501 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3569.0, - "url": "https://www.rightmove.co.uk/properties/158037506", - "info": { - "identifier": 158037506, - "sqm_ocr": null, - "price": 3569.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158037506", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dolphin Square", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58030/158037506/58030_BEA002_V2_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.790497", - "last_seen": "2025-06-01T22:06:15.523713", - "price": 3569.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13607, - 51.48549 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/158037737", - "info": { - "identifier": 158037737, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158037737", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Wynn Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224318/158037737/224318_DittonRoadSingleLet_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.910430", - "last_seen": "2025-06-01T22:05:52.171838", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37768, - 51.49431 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2699.0, - "url": "https://www.rightmove.co.uk/properties/158039339", - "info": { - "identifier": 158039339, - "sqm_ocr": null, - "price": 2699.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158039339", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 28, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158039339/96668_160952625012023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.674424", - "last_seen": "2025-06-01T22:05:39.431139", - "price": 2699.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204086, - 51.57855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/158040011", - "info": { - "identifier": 158040011, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158040011", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158040011/96668_237583504022025_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.532937", - "last_seen": "2025-06-01T22:05:49.759917", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.081863, - 51.592987 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.3, - "qmprice": 30.11, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/158043662", - "info": { - "identifier": 158043662, - "sqm_ocr": 96.3, - "price": 2900.0, - "price_per_sqm": 30.11422637590862, - "url": "https://www.rightmove.co.uk/properties/158043662", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 62, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84848/158043662/84848_33663594_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.530528", - "last_seen": "2025-06-01T22:06:04.380170", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.366385, - 51.44049 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 43.4, - "qmprice": 57.6, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158056970", - "info": { - "identifier": 158056970, - "sqm_ocr": 43.4, - "price": 2500.0, - "price_per_sqm": 57.603686635944705, - "url": "https://www.rightmove.co.uk/properties/158056970", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Concept Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82211/158056970/82211_1360_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.424921", - "last_seen": "2025-06-01T22:05:43.582858", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075549, - 51.4175 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/158057276", - "info": { - "identifier": 158057276, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158057276", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100624/158057276/100624_33664406_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.532699", - "last_seen": "2025-06-01T22:05:59.300729", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122905, - 51.425213 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.3, - "qmprice": 60.51, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/158058041", - "info": { - "identifier": 158058041, - "sqm_ocr": 57.3, - "price": 3467.0, - "price_per_sqm": 60.506108202443286, - "url": "https://www.rightmove.co.uk/properties/158058041", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/158058041/15942_1314027_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.878168", - "last_seen": "2025-06-01T22:05:57.807995", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195127, - 51.495636 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/158063687", - "info": { - "identifier": 158063687, - "sqm_ocr": null, - "price": 2847.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158063687", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/158063687/82537_33664783_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.086088", - "last_seen": "2025-06-01T22:06:11.084347", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017935, - 51.499973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/158063834", - "info": { - "identifier": 158063834, - "sqm_ocr": null, - "price": 2847.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158063834", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 80, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/158063834/198539_33664708_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.914224", - "last_seen": "2025-06-01T22:06:09.997906", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017935, - 51.499973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.2, - "qmprice": 34.97, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/158065937", - "info": { - "identifier": 158065937, - "sqm_ocr": 77.2, - "price": 2700.0, - "price_per_sqm": 34.9740932642487, - "url": "https://www.rightmove.co.uk/properties/158065937", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/158065937/15948_1314075_IMG_00_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.221346, - 51.485966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.2, - "qmprice": 29.07, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158080334", - "info": { - "identifier": 158080334, - "sqm_ocr": 103.2, - "price": 3000.0, - "price_per_sqm": 29.069767441860463, - "url": "https://www.rightmove.co.uk/properties/158080334", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84848/158080334/84848_33665284_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.349418, - 51.443535 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158091428", - "info": { - "identifier": 158091428, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158091428", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Edmund Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20894/158091428/20894_32350534_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.366722", - "last_seen": "2025-06-01T22:05:41.750960", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.051224, - 51.3939 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.7, - "qmprice": 42.36, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/158097497", - "info": { - "identifier": 158097497, - "sqm_ocr": 89.7, - "price": 3800.0, - "price_per_sqm": 42.36343366778149, - "url": "https://www.rightmove.co.uk/properties/158097497", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/158097497/100423_1314128_IMG_00_0010_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.990287", - "last_seen": "2025-06-01T22:05:51.797869", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33362, - 51.47644 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.7, - "qmprice": 31.22, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/158097509", - "info": { - "identifier": 158097509, - "sqm_ocr": 89.7, - "price": 2800.0, - "price_per_sqm": 31.215161649944257, - "url": "https://www.rightmove.co.uk/properties/158097509", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/158097509/100423_1314129_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.915653", - "last_seen": "2025-06-01T22:05:52.163295", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33362, - 51.47644 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/158100620", - "info": { - "identifier": 158100620, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158100620", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Lettingsupermarket.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99167/158100620/99167_1127_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.135985", - "last_seen": "2025-06-01T22:05:46.434506", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01297, - 51.49679 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.22, - "qmprice": 39.05, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/158101166", - "info": { - "identifier": 158101166, - "sqm_ocr": 51.22, - "price": 2000.0, - "price_per_sqm": 39.04724716907458, - "url": "https://www.rightmove.co.uk/properties/158101166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Jukes & Co Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285254/158101166/285254_69a83c9c-4536-400b-a3c0-eb0141c1bff5_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.740727", - "last_seen": "2025-06-01T22:06:12.652226", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16272, - 51.43412 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3395.0, - "url": "https://www.rightmove.co.uk/properties/158104112", - "info": { - "identifier": 158104112, - "sqm_ocr": null, - "price": 3395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158104112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Frestons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259079/158104112/259079_RL5954_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.653166", - "last_seen": "2025-06-01T22:05:56.385493", - "price": 3395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147582, - 51.5389 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/158104241", - "info": { - "identifier": 158104241, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158104241", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "Wayne & Silver", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91636/158104241/91636_33666969_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.259853", - "last_seen": "2025-06-01T22:05:59.216872", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1008, - 51.46558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/158107712", - "info": { - "identifier": 158107712, - "sqm_ocr": null, - "price": 3987.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158107712", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Pure Realty", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106120/158107712/106120_43Circus_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.141100", - "last_seen": "2025-06-01T22:06:10.141100", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.6, - "qmprice": 34.36, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/158109968", - "info": { - "identifier": 158109968, - "sqm_ocr": 94.6, - "price": 3250.0, - "price_per_sqm": 34.35517970401691, - "url": "https://www.rightmove.co.uk/properties/158109968", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Japan Services Rent", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94576/158109968/94576_P0111_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.544009", - "last_seen": "2025-06-01T22:05:45.293115", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.282234, - 51.52221 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.1, - "qmprice": 33.82, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/158119106", - "info": { - "identifier": 158119106, - "sqm_ocr": 62.1, - "price": 2100.0, - "price_per_sqm": 33.81642512077295, - "url": "https://www.rightmove.co.uk/properties/158119106", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Pearl & Chance", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267452/158119106/267452_aa6ceeeb-951b-497b-9a36-258924b1bf84_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.138886", - "last_seen": "2025-06-01T22:05:39.307494", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19868, - 51.57286 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/158120903", - "info": { - "identifier": 158120903, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158120903", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158120903/96668_238375611022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.134953", - "last_seen": "2025-06-01T22:05:39.178972", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223333, - 51.590122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/158125250", - "info": { - "identifier": 158125250, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158125250", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 67, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/158125250/198539_33668102_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.363876", - "last_seen": "2025-06-01T22:06:09.057276", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025688, - 51.501236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/158125256", - "info": { - "identifier": 158125256, - "sqm_ocr": null, - "price": 2747.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158125256", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 110, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/158125256/198539_33668104_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.372344", - "last_seen": "2025-06-01T22:06:09.053148", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024837, - 51.49137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/158125259", - "info": { - "identifier": 158125259, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158125259", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 80, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/158125259/198539_33668105_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.374001", - "last_seen": "2025-06-01T22:06:09.049350", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015689, - 51.491016 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 49.36, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/158125790", - "info": { - "identifier": 158125790, - "sqm_ocr": 78.0, - "price": 3850.0, - "price_per_sqm": 49.35897435897436, - "url": "https://www.rightmove.co.uk/properties/158125790", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "FMX PROPERTIES LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264155/158125790/264155_9ReflectionApartmenlet_IMG_08_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.136668", - "last_seen": "2025-06-01T22:05:48.267039", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22098, - 51.51191 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/158137040", - "info": { - "identifier": 158137040, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158137040", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "S.H.Properties", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41106/158137040/41106_RL0303_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.686673", - "last_seen": "2025-06-01T22:05:39.558469", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22098, - 51.58969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3970.0, - "url": "https://www.rightmove.co.uk/properties/158145131", - "info": { - "identifier": 158145131, - "sqm_ocr": null, - "price": 3970.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158145131", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 85, - "status": null, - "last_seen": 0, - "agency": "Real Estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36827/158145131/36827_33668391_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.350302", - "last_seen": "2025-06-01T22:05:39.723923", - "price": 3970.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191512, - 51.61449 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.9, - "qmprice": 46.01, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/158148215", - "info": { - "identifier": 158148215, - "sqm_ocr": 48.9, - "price": 2250.0, - "price_per_sqm": 46.012269938650306, - "url": "https://www.rightmove.co.uk/properties/158148215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99865/158148215/99865_33669041_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.455619", - "last_seen": "2025-06-01T22:05:59.317259", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133996, - 51.460052 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 38.64, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/158149547", - "info": { - "identifier": 158149547, - "sqm_ocr": 88.0, - "price": 3400.0, - "price_per_sqm": 38.63636363636363, - "url": "https://www.rightmove.co.uk/properties/158149547", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148892/158149547/148892_MVL180085_L_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.766440", - "last_seen": "2025-06-01T22:06:15.065432", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20032, - 51.529774 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.2, - "qmprice": 40.76, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/158153099", - "info": { - "identifier": 158153099, - "sqm_ocr": 55.2, - "price": 2250.0, - "price_per_sqm": 40.76086956521739, - "url": "https://www.rightmove.co.uk/properties/158153099", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158153099/96668_238457012022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.169785", - "last_seen": "2025-06-01T22:05:39.378746", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23447, - 51.589 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/158153330", - "info": { - "identifier": 158153330, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158153330", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "EC Residential LTD", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244844/158153330/244844_1964_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.728447", - "last_seen": "2025-06-01T22:06:15.321901", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15299, - 51.52201 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3295.0, - "url": "https://www.rightmove.co.uk/properties/158158280", - "info": { - "identifier": 158158280, - "sqm_ocr": null, - "price": 3295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158158280", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "Frestons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259079/158158280/259079_RL5959_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.896434", - "last_seen": "2025-06-01T22:05:41.177258", - "price": 3295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.280747, - 51.5612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/158164793", - "info": { - "identifier": 158164793, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158164793", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Empire Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237251/158164793/237251_102658003105_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.858131", - "last_seen": "2025-06-01T22:05:38.707402", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21249, - 51.55584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.4, - "qmprice": 45.87, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158164820", - "info": { - "identifier": 158164820, - "sqm_ocr": 65.4, - "price": 3000.0, - "price_per_sqm": 45.871559633027516, - "url": "https://www.rightmove.co.uk/properties/158164820", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/158164820/253853_1314379_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.254950", - "last_seen": "2025-06-01T22:06:04.980023", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101521, - 51.493492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/158166812", - "info": { - "identifier": 158166812, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158166812", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Equity London LTD", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76748/158166812/76748_2224_IMG_03_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.180726", - "last_seen": "2025-06-01T20:19:57.180726", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00677, - 51.50666 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.9, - "qmprice": 46.03, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/158168852", - "info": { - "identifier": 158168852, - "sqm_ocr": 86.9, - "price": 4000.0, - "price_per_sqm": 46.029919447640964, - "url": "https://www.rightmove.co.uk/properties/158168852", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 73, - "status": null, - "last_seen": 0, - "agency": "The Agency Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79431/158168852/79431_RX49906_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.729182", - "last_seen": "2025-06-01T22:05:48.221419", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224746, - 51.5119 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/158176313", - "info": { - "identifier": 158176313, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158176313", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/158176313/44537_CSL250025_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.603948", - "last_seen": "2025-06-01T22:06:07.137920", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067496, - 51.49232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/158178872", - "info": { - "identifier": 158178872, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158178872", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Ash Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269957/158178872/269957_RX410802_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.237815", - "last_seen": "2025-06-01T22:05:51.853002", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.396336, - 51.453583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.1, - "qmprice": 45.41, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/158181326", - "info": { - "identifier": 158181326, - "sqm_ocr": 81.1, - "price": 3683.0, - "price_per_sqm": 45.4130702836005, - "url": "https://www.rightmove.co.uk/properties/158181326", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43763/158181326/43763_P295414_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.261910", - "last_seen": "2025-06-01T22:05:43.213431", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13072, - 51.53775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/158183564", - "info": { - "identifier": 158183564, - "sqm_ocr": null, - "price": 3012.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158183564", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 109, - "status": null, - "last_seen": 0, - "agency": "Millennium Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61036/158183564/61036_ABKGrantullyRoad_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.851620", - "last_seen": "2025-06-01T22:06:16.036845", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18946, - 51.52914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.8, - "qmprice": 33.67, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/158184230", - "info": { - "identifier": 158184230, - "sqm_ocr": 118.8, - "price": 4000.0, - "price_per_sqm": 33.67003367003367, - "url": "https://www.rightmove.co.uk/properties/158184230", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/158184230/15957_1313396_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.171322, - 51.547985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/158198474", - "info": { - "identifier": 158198474, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158198474", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210116/158198474/210116_P295176_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.875004", - "last_seen": "2025-06-01T22:05:38.671897", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19787, - 51.56083 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.9, - "qmprice": 29.1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158202194", - "info": { - "identifier": 158202194, - "sqm_ocr": 85.9, - "price": 2500.0, - "price_per_sqm": 29.10360884749709, - "url": "https://www.rightmove.co.uk/properties/158202194", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118048/158202194/118048_33671661_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.508333", - "last_seen": "2025-06-01T22:05:46.880481", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.030911, - 51.459488 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/158202488", - "info": { - "identifier": 158202488, - "sqm_ocr": null, - "price": 3748.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158202488", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "Nova Haus London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240566/158202488/240566_NOV250028_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.740790", - "last_seen": "2025-06-01T22:05:43.116159", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189354, - 51.5537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.9, - "qmprice": 26.57, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158203391", - "info": { - "identifier": 158203391, - "sqm_ocr": 112.9, - "price": 3000.0, - "price_per_sqm": 26.572187776793623, - "url": "https://www.rightmove.co.uk/properties/158203391", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Patrick Henry", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106402/158203391/106402_12600599_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.542412", - "last_seen": "2025-06-01T22:05:59.107951", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142235, - 51.452816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.2, - "qmprice": 29.68, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/158204549", - "info": { - "identifier": 158204549, - "sqm_ocr": 111.2, - "price": 3300.0, - "price_per_sqm": 29.676258992805753, - "url": "https://www.rightmove.co.uk/properties/158204549", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Copperstones", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82091/158204549/82091_CR_544_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.838573", - "last_seen": "2025-06-01T22:06:02.635948", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01535, - 51.50835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/158209778", - "info": { - "identifier": 158209778, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158209778", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 107, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238280/158209778/238280_L98538_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.513410", - "last_seen": "2025-06-01T22:06:12.515738", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137488, - 51.482216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.75, - "qmprice": 36.55, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/158210225", - "info": { - "identifier": 158210225, - "sqm_ocr": 95.75, - "price": 3500.0, - "price_per_sqm": 36.55352480417755, - "url": "https://www.rightmove.co.uk/properties/158210225", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117466/158210225/117466_WTS210128_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.306049", - "last_seen": "2025-06-01T22:06:13.997980", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168132, - 51.47908 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.6, - "qmprice": 37.69, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158212508", - "info": { - "identifier": 158212508, - "sqm_ocr": 79.6, - "price": 3000.0, - "price_per_sqm": 37.68844221105528, - "url": "https://www.rightmove.co.uk/properties/158212508", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Property Inc", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191252/158212508/191252_PRI250040_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.130866", - "last_seen": "2025-06-01T22:05:43.204255", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131699, - 51.545574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.1, - "qmprice": 24.5, - "rooms": 4, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/158212925", - "info": { - "identifier": 158212925, - "sqm_ocr": 108.1, - "price": 2648.0, - "price_per_sqm": 24.495837187789085, - "url": "https://www.rightmove.co.uk/properties/158212925", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/158212925/17888_39652_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.539738", - "last_seen": "2025-06-01T22:05:50.117017", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06346, - 51.60042 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.1, - "qmprice": 24.5, - "rooms": 4, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/158217014", - "info": { - "identifier": 158217014, - "sqm_ocr": 108.1, - "price": 2648.0, - "price_per_sqm": 24.495837187789085, - "url": "https://www.rightmove.co.uk/properties/158217014", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/158217014/17882_39653_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.440876", - "last_seen": "2025-06-01T22:05:49.821579", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06346, - 51.60042 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.7, - "qmprice": 32.97, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/158220434", - "info": { - "identifier": 158220434, - "sqm_ocr": 110.7, - "price": 3650.0, - "price_per_sqm": 32.97199638663053, - "url": "https://www.rightmove.co.uk/properties/158220434", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/123k/122989/158220434/122989_YLR210201_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.693876", - "last_seen": "2025-06-01T22:06:04.665805", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.298994, - 51.453438 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/158224478", - "info": { - "identifier": 158224478, - "sqm_ocr": null, - "price": 2648.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158224478", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "Sandersons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86681/158224478/86681_SHP002C53_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.574156", - "last_seen": "2025-06-01T22:05:58.162542", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205104, - 51.51517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.2, - "qmprice": 32.77, - "rooms": 4, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/158225966", - "info": { - "identifier": 158225966, - "sqm_ocr": 95.2, - "price": 3120.0, - "price_per_sqm": 32.773109243697476, - "url": "https://www.rightmove.co.uk/properties/158225966", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Northwood", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224822/158225966/224822_P1293_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "22/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.753667", - "last_seen": "2025-06-01T22:05:58.700255", - "price": 3120.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28804, - 51.40697 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/158252882", - "info": { - "identifier": 158252882, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158252882", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Temple Fortune Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269402/158252882/269402_TF25021401_IMG_14_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.120423", - "last_seen": "2025-06-01T22:05:42.164095", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18348, - 51.54892 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.5, - "qmprice": 38.94, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/158256392", - "info": { - "identifier": 158256392, - "sqm_ocr": 56.5, - "price": 2200.0, - "price_per_sqm": 38.93805309734513, - "url": "https://www.rightmove.co.uk/properties/158256392", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/158256392/48101_1314452_IMG_00_0013_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.714809", - "last_seen": "2025-06-01T22:06:03.121557", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.011218, - 51.521942 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.92, - "qmprice": 45.5, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/158256776", - "info": { - "identifier": 158256776, - "sqm_ocr": 76.92, - "price": 3500.0, - "price_per_sqm": 45.501820072802914, - "url": "https://www.rightmove.co.uk/properties/158256776", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49000/158256776/49000_LHL220850_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.435926", - "last_seen": "2025-06-01T22:06:10.435926", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066538, - 51.50782 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/158260070", - "info": { - "identifier": 158260070, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158260070", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/158260070/78429_LON-215_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.873880", - "last_seen": "2025-06-01T22:06:11.830454", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04306, - 51.58794 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.4, - "qmprice": 23.55, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/158279939", - "info": { - "identifier": 158279939, - "sqm_ocr": 110.4, - "price": 2600.0, - "price_per_sqm": 23.550724637681157, - "url": "https://www.rightmove.co.uk/properties/158279939", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Durden & Hunt", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/204k/203339/158279939/203339_33675146_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.824279", - "last_seen": "2025-06-01T22:06:03.680205", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.063589, - 51.5824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/158280020", - "info": { - "identifier": 158280020, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158280020", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3721/158280020/3721_WIL220043_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.399711", - "last_seen": "2025-06-01T22:06:01.448023", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215483, - 51.422123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/158282852", - "info": { - "identifier": 158282852, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158282852", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 107, - "status": null, - "last_seen": 0, - "agency": "Aston Rowe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230534/158282852/230534_33676134_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.540695", - "last_seen": "2025-06-01T22:05:44.586184", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254199, - 51.511795 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.9, - "qmprice": 38.02, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158284505", - "info": { - "identifier": 158284505, - "sqm_ocr": 78.9, - "price": 3000.0, - "price_per_sqm": 38.02281368821293, - "url": "https://www.rightmove.co.uk/properties/158284505", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/158284505/15954_1314748_IMG_01_0010_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.732132", - "last_seen": "2025-06-01T22:05:54.105199", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099582, - 51.54645 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/158284811", - "info": { - "identifier": 158284811, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158284811", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Cottage Fields", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65535/158284811/65535_eb55cffd-f8a4-401d-ac14-4704cecf986b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.056016", - "last_seen": "2025-06-01T22:05:56.516663", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075446, - 51.662144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/158284814", - "info": { - "identifier": 158284814, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158284814", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Cottage Fields", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65535/158284814/65535_09a66d2e-37c1-4fa1-86aa-98f4f8597bfb_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.770840", - "last_seen": "2025-06-01T22:05:56.503156", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074608, - 51.584003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158287268", - "info": { - "identifier": 158287268, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158287268", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158287268/96668_238711614022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.947969", - "last_seen": "2025-06-01T22:05:38.484172", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242428, - 51.577183 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.4, - "qmprice": 32.89, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/158290175", - "info": { - "identifier": 158290175, - "sqm_ocr": 106.4, - "price": 3500.0, - "price_per_sqm": 32.89473684210526, - "url": "https://www.rightmove.co.uk/properties/158290175", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137360/158290175/137360_1314756_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.260024", - "last_seen": "2025-06-01T22:05:41.760818", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.042937, - 51.395138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.8, - "qmprice": 37.01, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/158292353", - "info": { - "identifier": 158292353, - "sqm_ocr": 60.8, - "price": 2250.0, - "price_per_sqm": 37.006578947368425, - "url": "https://www.rightmove.co.uk/properties/158292353", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205358/158292353/205358_CUS012586872_IMG_00_0011_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.361002", - "last_seen": "2025-06-01T22:05:46.949444", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06692, - 51.494125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.0, - "qmprice": 32.52, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/158296643", - "info": { - "identifier": 158296643, - "sqm_ocr": 123.0, - "price": 4000.0, - "price_per_sqm": 32.520325203252035, - "url": "https://www.rightmove.co.uk/properties/158296643", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Hogarth Estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95275/158296643/95275_10000163_HOGE_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.071567", - "last_seen": "2025-06-01T22:06:14.489773", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137506, - 51.489082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.6, - "qmprice": 43.39, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/158311070", - "info": { - "identifier": 158311070, - "sqm_ocr": 72.6, - "price": 3150.0, - "price_per_sqm": 43.388429752066116, - "url": "https://www.rightmove.co.uk/properties/158311070", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/158311070/98531_1314632_IMG_01_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.484276", - "last_seen": "2025-06-01T22:05:44.073869", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.249936, - 51.513542 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2015.0, - "url": "https://www.rightmove.co.uk/properties/158311100", - "info": { - "identifier": 158311100, - "sqm_ocr": null, - "price": 2015.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158311100", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Home World Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281402/158311100/281402_15747_IMG_01_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.274340", - "last_seen": "2025-06-01T22:06:00.664382", - "price": 2015.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02766, - 51.43485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.2, - "qmprice": 43.74, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/158317784", - "info": { - "identifier": 158317784, - "sqm_ocr": 84.2, - "price": 3683.0, - "price_per_sqm": 43.74109263657957, - "url": "https://www.rightmove.co.uk/properties/158317784", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 44, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/158317784/97423_CEI242125_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.240228", - "last_seen": "2025-06-01T22:06:08.782449", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0723, - 51.51366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.7, - "qmprice": 37.72, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/158331140", - "info": { - "identifier": 158331140, - "sqm_ocr": 92.7, - "price": 3497.0, - "price_per_sqm": 37.72384034519957, - "url": "https://www.rightmove.co.uk/properties/158331140", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94643/158331140/94643_33678198_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.322899", - "last_seen": "2025-06-01T22:05:57.488346", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16419, - 51.488968 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.7, - "qmprice": 31.04, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/158331989", - "info": { - "identifier": 158331989, - "sqm_ocr": 104.7, - "price": 3250.0, - "price_per_sqm": 31.041069723018147, - "url": "https://www.rightmove.co.uk/properties/158331989", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56653/158331989/56653_P214301_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.998639", - "last_seen": "2025-06-01T22:06:13.765185", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1776, - 51.47221 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.02, - "qmprice": 18.59, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/158336027", - "info": { - "identifier": 158336027, - "sqm_ocr": 121.02, - "price": 2250.0, - "price_per_sqm": 18.591968269707486, - "url": "https://www.rightmove.co.uk/properties/158336027", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "ElliotLee", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61517/158336027/61517_6157a899-db3f-474c-a633-beed0b9a5751_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.018907", - "last_seen": "2025-06-01T22:05:50.780080", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.334288, - 51.57956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.6, - "qmprice": 45.62, - "rooms": 2, - "total_price": 3449.0, - "url": "https://www.rightmove.co.uk/properties/158337086", - "info": { - "identifier": 158337086, - "sqm_ocr": 75.6, - "price": 3449.0, - "price_per_sqm": 45.62169312169313, - "url": "https://www.rightmove.co.uk/properties/158337086", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50343/158337086/50343_33678597_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.451337", - "last_seen": "2025-06-01T22:05:40.544600", - "price": 3449 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212178, - 51.539936 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.27, - "qmprice": 34.87, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/158339084", - "info": { - "identifier": 158339084, - "sqm_ocr": 80.27, - "price": 2799.0, - "price_per_sqm": 34.86981437647938, - "url": "https://www.rightmove.co.uk/properties/158339084", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50343/158339084/50343_33678738_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.109107", - "last_seen": "2025-06-01T22:05:41.030929", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214001, - 51.531765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158341415", - "info": { - "identifier": 158341415, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158341415", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/158341415/108947_1310107_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.994183", - "last_seen": "2025-06-01T22:05:50.829760", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.340118, - 51.582253 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3570.0, - "url": "https://www.rightmove.co.uk/properties/158355164", - "info": { - "identifier": 158355164, - "sqm_ocr": null, - "price": 3570.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158355164", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 96, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77583/158355164/77583_YLT240026_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.650958", - "last_seen": "2025-06-01T22:06:04.661102", - "price": 3570.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.320697, - 51.42894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 134.7, - "qmprice": 22.64, - "rooms": 4, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/158358104", - "info": { - "identifier": 158358104, - "sqm_ocr": 134.7, - "price": 3050.0, - "price_per_sqm": 22.642910170749815, - "url": "https://www.rightmove.co.uk/properties/158358104", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Groves Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74977/158358104/74977_3778_GROV_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.747762", - "last_seen": "2025-06-01T22:05:58.533858", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26289, - 51.39669 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.9, - "qmprice": 55.15, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/158359256", - "info": { - "identifier": 158359256, - "sqm_ocr": 68.9, - "price": 3800.0, - "price_per_sqm": 55.15239477503628, - "url": "https://www.rightmove.co.uk/properties/158359256", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/158359256/253853_1314813_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.019203", - "last_seen": "2025-06-01T22:06:05.217836", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099715, - 51.4927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.9, - "qmprice": 43.53, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/158359265", - "info": { - "identifier": 158359265, - "sqm_ocr": 68.9, - "price": 2999.0, - "price_per_sqm": 43.52685050798258, - "url": "https://www.rightmove.co.uk/properties/158359265", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/158359265/253853_1314812_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.052943", - "last_seen": "2025-06-01T22:06:05.208844", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099715, - 51.4927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/158359412", - "info": { - "identifier": 158359412, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158359412", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/158359412/174452_4530_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.121817", - "last_seen": "2025-06-01T22:05:46.952630", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00797, - 51.50093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.9, - "qmprice": 52.61, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/158359550", - "info": { - "identifier": 158359550, - "sqm_ocr": 65.9, - "price": 3467.0, - "price_per_sqm": 52.61001517450683, - "url": "https://www.rightmove.co.uk/properties/158359550", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/158359550/15945_1314974_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.820525", - "last_seen": "2025-06-01T22:06:15.412434", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197045, - 51.518196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.34, - "qmprice": 40.26, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/158360756", - "info": { - "identifier": 158360756, - "sqm_ocr": 75.34, - "price": 3033.0, - "price_per_sqm": 40.257499336341915, - "url": "https://www.rightmove.co.uk/properties/158360756", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Districts London", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245744/158360756/245744_33680077_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.940585", - "last_seen": "2025-06-01T22:06:09.206851", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017657, - 51.49983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.09, - "qmprice": 33.85, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/158364941", - "info": { - "identifier": 158364941, - "sqm_ocr": 59.09, - "price": 2000.0, - "price_per_sqm": 33.84667456422406, - "url": "https://www.rightmove.co.uk/properties/158364941", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/158364941/77192_HARLES_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.051851", - "last_seen": "2025-06-01T22:05:40.967889", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23383, - 51.54501 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.2, - "qmprice": 49.81, - "rooms": 3, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/158365472", - "info": { - "identifier": 158365472, - "sqm_ocr": 58.2, - "price": 2899.0, - "price_per_sqm": 49.81099656357388, - "url": "https://www.rightmove.co.uk/properties/158365472", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84785/158365472/84785_33680423_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.925918", - "last_seen": "2025-06-01T22:05:45.030841", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277928, - 51.514324 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.18, - "qmprice": 51.19, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/158368931", - "info": { - "identifier": 158368931, - "sqm_ocr": 76.18, - "price": 3900.0, - "price_per_sqm": 51.19453924914675, - "url": "https://www.rightmove.co.uk/properties/158368931", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Laurence Leigh Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80035/158368931/80035_LLR150357_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.920586", - "last_seen": "2025-06-01T22:05:42.646746", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18526, - 51.537968 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.6, - "qmprice": 37.36, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/158370089", - "info": { - "identifier": 158370089, - "sqm_ocr": 77.6, - "price": 2899.0, - "price_per_sqm": 37.358247422680414, - "url": "https://www.rightmove.co.uk/properties/158370089", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22029/158370089/22029_HPL130024_L_IMG_03_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.472501", - "last_seen": "2025-06-01T22:05:58.029288", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20888, - 51.49855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/158370806", - "info": { - "identifier": 158370806, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158370806", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158370806/96668_225789912102024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.864328", - "last_seen": "2025-06-01T22:05:52.323681", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37622, - 51.46844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 45.33, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/158378783", - "info": { - "identifier": 158378783, - "sqm_ocr": 76.0, - "price": 3445.0, - "price_per_sqm": 45.328947368421055, - "url": "https://www.rightmove.co.uk/properties/158378783", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158378783/96668_226242716102024_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.083778", - "last_seen": "2025-06-01T22:05:57.866708", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194667, - 51.49456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.9, - "qmprice": 31.43, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/158380061", - "info": { - "identifier": 158380061, - "sqm_ocr": 85.9, - "price": 2700.0, - "price_per_sqm": 31.431897555296853, - "url": "https://www.rightmove.co.uk/properties/158380061", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84848/158380061/84848_32714488_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.145664", - "last_seen": "2025-06-01T22:06:04.547098", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.366033, - 51.439426 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/158383193", - "info": { - "identifier": 158383193, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158383193", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/158383193/12070_28723092_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.624309", - "last_seen": "2025-06-01T22:05:56.719664", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012543, - 51.49626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/158390696", - "info": { - "identifier": 158390696, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158390696", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "M2 Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33998/158390696/33998_2707789_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.558018", - "last_seen": "2025-06-01T22:05:58.273656", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19139, - 51.4878 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.4, - "qmprice": 29.98, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158391422", - "info": { - "identifier": 158391422, - "sqm_ocr": 83.4, - "price": 2500.0, - "price_per_sqm": 29.976019184652277, - "url": "https://www.rightmove.co.uk/properties/158391422", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Portland Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139901/158391422/139901_33681721_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.020606", - "last_seen": "2025-06-01T22:05:55.588357", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.227751, - 51.54931 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.4, - "qmprice": 49.83, - "rooms": 2, - "total_price": 3857.0, - "url": "https://www.rightmove.co.uk/properties/158396987", - "info": { - "identifier": 158396987, - "sqm_ocr": 77.4, - "price": 3857.0, - "price_per_sqm": 49.832041343669246, - "url": "https://www.rightmove.co.uk/properties/158396987", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/143k/142406/158396987/142406_33650564_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.852720", - "last_seen": "2025-06-01T22:06:14.861354", - "price": 3856 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147777, - 51.505806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.4, - "qmprice": 49.83, - "rooms": 2, - "total_price": 3857.0, - "url": "https://www.rightmove.co.uk/properties/158397644", - "info": { - "identifier": 158397644, - "sqm_ocr": 77.4, - "price": 3857.0, - "price_per_sqm": 49.832041343669246, - "url": "https://www.rightmove.co.uk/properties/158397644", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Wetherell", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112651/158397644/112651_33650417_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.913636", - "last_seen": "2025-06-01T22:06:14.651300", - "price": 3856 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147777, - 51.505806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.8, - "qmprice": 42.37, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158399342", - "info": { - "identifier": 158399342, - "sqm_ocr": 70.8, - "price": 3000.0, - "price_per_sqm": 42.37288135593221, - "url": "https://www.rightmove.co.uk/properties/158399342", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/158399342/55101_1314629_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.541820", - "last_seen": "2025-06-01T22:06:06.587352", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.049017, - 51.49994 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/158401322", - "info": { - "identifier": 158401322, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158401322", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 95, - "status": null, - "last_seen": 0, - "agency": "Hawksgrove Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278102/158401322/278102_33682440_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.167615", - "last_seen": "2025-06-01T22:05:38.720267", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217996, - 51.590374 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/158403137", - "info": { - "identifier": 158403137, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158403137", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 72, - "status": null, - "last_seen": 0, - "agency": "Dreamview Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85138/158403137/85138_house_tenterden_grove_london_nw4_1sx_2L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.638638", - "last_seen": "2025-06-01T22:05:38.623057", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21828, - 51.590233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 140.6, - "qmprice": 23.47, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/158406125", - "info": { - "identifier": 158406125, - "sqm_ocr": 140.6, - "price": 3300.0, - "price_per_sqm": 23.470839260312946, - "url": "https://www.rightmove.co.uk/properties/158406125", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Lords Associates of London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29226/158406125/29226_12605818_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.681842", - "last_seen": "2025-06-01T22:05:51.318926", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.415671, - 51.498486 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.7, - "qmprice": 37.49, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/158407670", - "info": { - "identifier": 158407670, - "sqm_ocr": 106.7, - "price": 4000.0, - "price_per_sqm": 37.48828491096532, - "url": "https://www.rightmove.co.uk/properties/158407670", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/158407670/55101_1314909_IMG_01_0013_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.049317", - "last_seen": "2025-06-01T22:06:05.152367", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072424, - 51.488144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/158408396", - "info": { - "identifier": 158408396, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158408396", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/158408396/208253_PRL250332_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.932236", - "last_seen": "2025-06-01T22:05:54.977286", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.244618, - 51.58206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158409794", - "info": { - "identifier": 158409794, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158409794", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/158409794/208253_PRL250334_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.731258", - "last_seen": "2025-06-01T22:05:39.370809", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247174, - 51.57737 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/158418566", - "info": { - "identifier": 158418566, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158418566", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22209/158418566/22209_FLL250003_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.494646", - "last_seen": "2025-06-01T22:05:49.354904", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203499, - 51.48686 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/158433827", - "info": { - "identifier": 158433827, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158433827", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Ashton Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/2k/1457/158433827/1457_AEA250090_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.073013", - "last_seen": "2025-06-01T22:05:38.238197", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.142446, - 51.57259 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.42, - "qmprice": 33.12, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/158435816", - "info": { - "identifier": 158435816, - "sqm_ocr": 66.42, - "price": 2200.0, - "price_per_sqm": 33.1225534477567, - "url": "https://www.rightmove.co.uk/properties/158435816", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "Rash & Rash", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39554/158435816/39554_33684550_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.221551", - "last_seen": "2025-06-01T22:05:39.157315", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15456, - 51.6445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/158437094", - "info": { - "identifier": 158437094, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158437094", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Sandersons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86681/158437094/86681_SHP001EB7_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.332945", - "last_seen": "2025-06-01T22:05:58.363211", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204026, - 51.51656 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/158437385", - "info": { - "identifier": 158437385, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158437385", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 70, - "status": null, - "last_seen": 0, - "agency": "AP Living London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235805/158437385/235805_33684651_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.467831", - "last_seen": "2025-06-01T22:06:07.996480", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066133, - 51.507942 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.5, - "qmprice": 40.65, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158437919", - "info": { - "identifier": 158437919, - "sqm_ocr": 61.5, - "price": 2500.0, - "price_per_sqm": 40.65040650406504, - "url": "https://www.rightmove.co.uk/properties/158437919", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30575/158437919/30575_05312276_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.140298", - "last_seen": "2025-06-01T22:06:04.506426", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.304227, - 51.458508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/158439956", - "info": { - "identifier": 158439956, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158439956", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "parkinsonfarr", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29643/158439956/29643_993_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.185623", - "last_seen": "2025-06-01T22:05:40.441253", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22684, - 51.53556 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/158444534", - "info": { - "identifier": 158444534, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158444534", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Concept Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82211/158444534/82211_1370_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.443961", - "last_seen": "2025-06-01T22:06:07.807346", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203001, - 51.3554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3570.0, - "url": "https://www.rightmove.co.uk/properties/158446892", - "info": { - "identifier": 158446892, - "sqm_ocr": null, - "price": 3570.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158446892", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Fraser & Co", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16917/158446892/16917_BDV250001_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.039181", - "last_seen": "2025-06-01T22:06:13.936900", - "price": 3570.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180134, - 51.466637 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.2, - "qmprice": 38.01, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/158447147", - "info": { - "identifier": 158447147, - "sqm_ocr": 59.2, - "price": 2250.0, - "price_per_sqm": 38.00675675675676, - "url": "https://www.rightmove.co.uk/properties/158447147", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Christopher Edwards", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55185/158447147/55185_28729499_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.010080", - "last_seen": "2025-06-01T22:05:50.831956", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.334277, - 51.579468 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3620.0, - "url": "https://www.rightmove.co.uk/properties/158448179", - "info": { - "identifier": 158448179, - "sqm_ocr": null, - "price": 3620.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158448179", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/158448179/78429_LON-317_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.025254", - "last_seen": "2025-06-01T22:05:59.374496", - "price": 3620.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12548, - 51.48632 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/158448452", - "info": { - "identifier": 158448452, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158448452", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/143k/142382/158448452/142382_ALQ012579173_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.977542", - "last_seen": "2025-06-01T22:06:08.809622", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063921, - 51.512543 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.6, - "qmprice": 38.35, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/158449985", - "info": { - "identifier": 158449985, - "sqm_ocr": 75.6, - "price": 2899.0, - "price_per_sqm": 38.34656084656085, - "url": "https://www.rightmove.co.uk/properties/158449985", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/158449985/84833_33685435_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.494095", - "last_seen": "2025-06-01T22:05:58.166677", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208717, - 51.49846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/158456519", - "info": { - "identifier": 158456519, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158456519", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158456519/96668_239235119022025_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "15/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.494899", - "last_seen": "2025-06-01T22:05:39.860350", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.235304, - 51.598083 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.22, - "qmprice": 57.41, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/158464226", - "info": { - "identifier": 158464226, - "sqm_ocr": 59.22, - "price": 3400.0, - "price_per_sqm": 57.41303613644039, - "url": "https://www.rightmove.co.uk/properties/158464226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/158464226/108515_1313281_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.980506", - "last_seen": "2025-06-01T22:05:57.688648", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189948, - 51.48964 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.8, - "qmprice": 49.47, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/158465369", - "info": { - "identifier": 158465369, - "sqm_ocr": 74.8, - "price": 3700.0, - "price_per_sqm": 49.46524064171123, - "url": "https://www.rightmove.co.uk/properties/158465369", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/158465369/149153_1309896_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.322903", - "last_seen": "2025-06-01T22:06:07.824737", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195312, - 51.36876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 36.62, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/158470202", - "info": { - "identifier": 158470202, - "sqm_ocr": 71.0, - "price": 2600.0, - "price_per_sqm": 36.61971830985915, - "url": "https://www.rightmove.co.uk/properties/158470202", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90035/158470202/90035_33686436_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.071447", - "last_seen": "2025-06-01T22:05:44.304520", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.250935, - 51.511166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.4, - "qmprice": 37.46, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/158474294", - "info": { - "identifier": 158474294, - "sqm_ocr": 69.4, - "price": 2600.0, - "price_per_sqm": 37.46397694524495, - "url": "https://www.rightmove.co.uk/properties/158474294", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57956/158474294/57956_LAD230157_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.013318", - "last_seen": "2025-06-01T22:05:57.645275", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216118, - 51.52266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/158478938", - "info": { - "identifier": 158478938, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158478938", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/158478938/60927_000018273b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.096419", - "last_seen": "2025-06-01T22:05:49.108006", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22553, - 51.48719 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/158483093", - "info": { - "identifier": 158483093, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158483093", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/123k/122989/158483093/122989_YLR250035_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.486364", - "last_seen": "2025-06-01T22:06:04.291503", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.296515, - 51.465675 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/158489363", - "info": { - "identifier": 158489363, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158489363", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22029/158489363/22029_HPL150023_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.354694", - "last_seen": "2025-06-01T22:05:57.394976", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204975, - 51.509533 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.4, - "qmprice": 35.27, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/158498852", - "info": { - "identifier": 158498852, - "sqm_ocr": 113.4, - "price": 4000.0, - "price_per_sqm": 35.273368606701936, - "url": "https://www.rightmove.co.uk/properties/158498852", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129652/158498852/129652_P1254E5102_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.208209", - "last_seen": "2025-06-01T22:05:39.385705", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16393, - 51.58776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/158498954", - "info": { - "identifier": 158498954, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158498954", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "Ashton Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/2k/1457/158498954/1457_AEA250094_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.023031", - "last_seen": "2025-06-01T22:05:38.344448", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.142864, - 51.57238 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/158499983", - "info": { - "identifier": 158499983, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158499983", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "Ashton Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/2k/1457/158499983/1457_AEA250096_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:43.996833", - "last_seen": "2025-06-01T22:05:38.245223", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.142864, - 51.57238 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/158501267", - "info": { - "identifier": 158501267, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158501267", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Time2Move", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/9k/8147/158501267/8147_33687859_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.604513", - "last_seen": "2025-06-01T22:06:01.189870", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163393, - 51.419 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/158504540", - "info": { - "identifier": 158504540, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158504540", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/158504540/181787_181787_1023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.367117", - "last_seen": "2025-06-01T22:06:06.408373", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09223, - 51.49945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/158508107", - "info": { - "identifier": 158508107, - "sqm_ocr": null, - "price": 2383.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158508107", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/158508107/17888_34379_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.276699", - "last_seen": "2025-06-01T22:05:42.906271", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13934, - 51.53501 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/158513621", - "info": { - "identifier": 158513621, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158513621", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/158513621/238265_L99824_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.725320", - "last_seen": "2025-06-01T22:06:13.283644", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137488, - 51.482216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 41.38, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/158514278", - "info": { - "identifier": 158514278, - "sqm_ocr": 89.0, - "price": 3683.0, - "price_per_sqm": 41.38202247191011, - "url": "https://www.rightmove.co.uk/properties/158514278", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Garrett Whitelock", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105305/158514278/105305_101341001669_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.902694", - "last_seen": "2025-06-01T22:06:05.056327", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08234, - 51.49839 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.1, - "qmprice": 30.45, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/158514512", - "info": { - "identifier": 158514512, - "sqm_ocr": 105.1, - "price": 3200.0, - "price_per_sqm": 30.447193149381544, - "url": "https://www.rightmove.co.uk/properties/158514512", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85766/158514512/85766_HRX220158_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.655705", - "last_seen": "2025-06-01T22:05:40.837816", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2718, - 51.5583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 27.78, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/158520011", - "info": { - "identifier": 158520011, - "sqm_ocr": 72.0, - "price": 2000.0, - "price_per_sqm": 27.77777777777778, - "url": "https://www.rightmove.co.uk/properties/158520011", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 66, - "status": null, - "last_seen": 0, - "agency": "Keller Williams Advantage", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205682/158520011/205682_Zcooperpropertyco0003518812_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.244663", - "last_seen": "2025-06-01T22:05:41.748877", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013949, - 51.4075 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/158521043", - "info": { - "identifier": 158521043, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158521043", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Citian & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256973/158521043/256973_262561_IMG_00_0000_max_656x437.png", - "let_date_available": "24/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.362511", - "last_seen": "2025-06-01T22:06:09.342771", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01598, - 51.50026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.3, - "qmprice": 33.14, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/158521181", - "info": { - "identifier": 158521181, - "sqm_ocr": 72.3, - "price": 2396.0, - "price_per_sqm": 33.13969571230982, - "url": "https://www.rightmove.co.uk/properties/158521181", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3355/158521181/3355_33689142_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.383290", - "last_seen": "2025-06-01T22:05:54.260991", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12411, - 51.56826 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.3, - "qmprice": 21.37, - "rooms": 4, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/158523698", - "info": { - "identifier": 158523698, - "sqm_ocr": 105.3, - "price": 2250.0, - "price_per_sqm": 21.36752136752137, - "url": "https://www.rightmove.co.uk/properties/158523698", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50939/158523698/50939_P0715D2119_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.193548", - "last_seen": "2025-06-01T22:05:51.714749", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.40394, - 51.44782 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 44.29, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/158524886", - "info": { - "identifier": 158524886, - "sqm_ocr": 68.0, - "price": 3012.0, - "price_per_sqm": 44.294117647058826, - "url": "https://www.rightmove.co.uk/properties/158524886", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/158524886/55101_1315401_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.354065", - "last_seen": "2025-06-01T22:06:05.599915", - "price": 3012.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039399, - 51.4955 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.3, - "qmprice": 34.08, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/158539019", - "info": { - "identifier": 158539019, - "sqm_ocr": 76.3, - "price": 2600.0, - "price_per_sqm": 34.07601572739188, - "url": "https://www.rightmove.co.uk/properties/158539019", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Mi Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/154k/153011/158539019/153011_102099002661_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.023467", - "last_seen": "2025-06-01T22:05:56.527459", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09821, - 51.66033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/158546384", - "info": { - "identifier": 158546384, - "sqm_ocr": null, - "price": 3050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158546384", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 100, - "status": null, - "last_seen": 0, - "agency": "iMove Property", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80566/158546384/80566_1572_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.346654", - "last_seen": "2025-06-01T22:06:14.024855", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.157564, - 51.4431 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 30.05, - "rooms": 2, - "total_price": 2470.0, - "url": "https://www.rightmove.co.uk/properties/158546660", - "info": { - "identifier": 158546660, - "sqm_ocr": 82.2, - "price": 2470.0, - "price_per_sqm": 30.048661800486617, - "url": "https://www.rightmove.co.uk/properties/158546660", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43829/158546660/43829_P295894_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.284926", - "last_seen": "2025-06-01T22:06:07.979595", - "price": 2470.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00892, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.9, - "qmprice": 38.0, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/158549504", - "info": { - "identifier": 158549504, - "sqm_ocr": 57.9, - "price": 2200.0, - "price_per_sqm": 37.99654576856649, - "url": "https://www.rightmove.co.uk/properties/158549504", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80551/158549504/80551_FRL090018_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.467830", - "last_seen": "2025-06-01T22:06:04.271600", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.286421, - 51.46593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/158558300", - "info": { - "identifier": 158558300, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158558300", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Citian & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256973/158558300/256973_274418_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.389651", - "last_seen": "2025-06-01T22:06:11.515349", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01879, - 51.50082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.4, - "qmprice": 28.01, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/158561765", - "info": { - "identifier": 158561765, - "sqm_ocr": 71.4, - "price": 2000.0, - "price_per_sqm": 28.011204481792713, - "url": "https://www.rightmove.co.uk/properties/158561765", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/158561765/111050_1315754_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.827490", - "last_seen": "2025-06-01T22:06:01.716390", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167753, - 51.418827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.4, - "qmprice": 44.01, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/158561768", - "info": { - "identifier": 158561768, - "sqm_ocr": 71.4, - "price": 3142.0, - "price_per_sqm": 44.00560224089636, - "url": "https://www.rightmove.co.uk/properties/158561768", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/158561768/111050_1315755_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.801833", - "last_seen": "2025-06-01T22:06:01.720744", - "price": 3142.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167753, - 51.418827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.9, - "qmprice": 53.61, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/158562368", - "info": { - "identifier": 158562368, - "sqm_ocr": 42.9, - "price": 2300.0, - "price_per_sqm": 53.613053613053616, - "url": "https://www.rightmove.co.uk/properties/158562368", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Spencer James Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283697/158562368/283697_12519_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.879315", - "last_seen": "2025-06-01T22:06:02.339236", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0482, - 51.518337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/158563844", - "info": { - "identifier": 158563844, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158563844", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "PropertyLoop", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222287/158563844/222287_It9ozLdB_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.355317", - "last_seen": "2025-06-01T22:06:10.038491", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00861, - 51.50409 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3965.0, - "url": "https://www.rightmove.co.uk/properties/158563859", - "info": { - "identifier": 158563859, - "sqm_ocr": null, - "price": 3965.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158563859", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/158563859/169658_337228_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.382219", - "last_seen": "2025-06-01T22:06:10.006832", - "price": 3965 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021416, - 51.507626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3965.0, - "url": "https://www.rightmove.co.uk/properties/158563949", - "info": { - "identifier": 158563949, - "sqm_ocr": null, - "price": 3965.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158563949", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/158563949/169658_284137_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.208437", - "last_seen": "2025-06-01T22:06:09.462643", - "price": 3965 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023872, - 51.507652 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/158565662", - "info": { - "identifier": 158565662, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158565662", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158565662/96668_239443321022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.733770", - "last_seen": "2025-06-01T22:05:49.825021", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069911, - 51.60119 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.42, - "qmprice": 41.57, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/158567192", - "info": { - "identifier": 158567192, - "sqm_ocr": 91.42, - "price": 3800.0, - "price_per_sqm": 41.56639684970466, - "url": "https://www.rightmove.co.uk/properties/158567192", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Sovereign House Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7432/158567192/7432_102789006256_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.091625", - "last_seen": "2025-06-01T22:05:47.618784", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04583, - 51.54338 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/158570753", - "info": { - "identifier": 158570753, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158570753", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Pinnacle Housing Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212189/158570753/212189_2534_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.666142", - "last_seen": "2025-06-01T22:06:10.175674", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03901, - 51.51714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.76, - "qmprice": 38.09, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158570819", - "info": { - "identifier": 158570819, - "sqm_ocr": 78.76, - "price": 3000.0, - "price_per_sqm": 38.090401218892836, - "url": "https://www.rightmove.co.uk/properties/158570819", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/158570819/15948_1315751_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.048017", - "last_seen": "2025-06-01T22:05:49.198479", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212817, - 51.477554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 30.49, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158575721", - "info": { - "identifier": 158575721, - "sqm_ocr": 82.0, - "price": 2500.0, - "price_per_sqm": 30.48780487804878, - "url": "https://www.rightmove.co.uk/properties/158575721", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/158575721/12070_26393490_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.288807", - "last_seen": "2025-06-01T22:05:46.299199", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.009664, - 51.49631 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/158578517", - "info": { - "identifier": 158578517, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158578517", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158578517/96668_237997107022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.515114", - "last_seen": "2025-06-01T22:05:56.935763", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.018294, - 51.491707 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/158583389", - "info": { - "identifier": 158583389, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158583389", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "EGRE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82293/158583389/82293_354_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.604358", - "last_seen": "2025-06-01T22:06:09.025202", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06593, - 51.50819 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/158591675", - "info": { - "identifier": 158591675, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158591675", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158591675/96668_178254630072023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.154837", - "last_seen": "2025-06-01T22:06:08.739868", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016244, - 51.49477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.8, - "qmprice": 34.65, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/158594444", - "info": { - "identifier": 158594444, - "sqm_ocr": 93.8, - "price": 3250.0, - "price_per_sqm": 34.64818763326226, - "url": "https://www.rightmove.co.uk/properties/158594444", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/158594444/97423_CEI242195_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.195922", - "last_seen": "2025-06-01T22:06:10.975848", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.059922, - 51.503258 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/158598356", - "info": { - "identifier": 158598356, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158598356", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/158598356/115768_heathroad_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.435606", - "last_seen": "2025-06-01T22:06:04.739244", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33466, - 51.44541 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/158600258", - "info": { - "identifier": 158600258, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158600258", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 90, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/158600258/105856_3410_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.262243", - "last_seen": "2025-06-01T22:06:05.320110", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076322, - 51.4945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 31.18, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/158600435", - "info": { - "identifier": 158600435, - "sqm_ocr": 85.0, - "price": 2650.0, - "price_per_sqm": 31.176470588235293, - "url": "https://www.rightmove.co.uk/properties/158600435", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Alter & Cope", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80460/158600435/80460_RL0123_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.620573", - "last_seen": "2025-06-01T22:05:49.148191", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213559, - 51.483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/158607521", - "info": { - "identifier": 158607521, - "sqm_ocr": null, - "price": 2747.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158607521", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 97, - "status": null, - "last_seen": 0, - "agency": "Sandersons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86681/158607521/86681_SHP002C5B_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.306894", - "last_seen": "2025-06-01T22:05:57.850312", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20238, - 51.51594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/158609297", - "info": { - "identifier": 158609297, - "sqm_ocr": null, - "price": 2535.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158609297", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Golden Eagle International", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49332/158609297/49332_679_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.582037", - "last_seen": "2025-06-01T22:05:57.467464", - "price": 2535 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197719, - 51.494133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.8, - "qmprice": 28.2, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/158613677", - "info": { - "identifier": 158613677, - "sqm_ocr": 79.8, - "price": 2250.0, - "price_per_sqm": 28.195488721804512, - "url": "https://www.rightmove.co.uk/properties/158613677", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247475/158613677/247475_P320180_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.809273", - "last_seen": "2025-06-01T22:06:04.074205", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07486, - 51.60327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.9, - "qmprice": 31.05, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/158613701", - "info": { - "identifier": 158613701, - "sqm_ocr": 78.9, - "price": 2450.0, - "price_per_sqm": 31.051964512040556, - "url": "https://www.rightmove.co.uk/properties/158613701", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/158613701/80281_1315409_IMG_01_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.145794", - "last_seen": "2025-06-01T22:06:03.457326", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013815, - 51.52997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/158615264", - "info": { - "identifier": 158615264, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158615264", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benjamin Stevens", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93881/158615264/93881_BNJ_DGW_LFSYCL_460_625399169_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.122605", - "last_seen": "2025-06-01T22:05:38.587110", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232451, - 51.588486 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3980.0, - "url": "https://www.rightmove.co.uk/properties/158616143", - "info": { - "identifier": 158616143, - "sqm_ocr": null, - "price": 3980.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158616143", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 97, - "status": null, - "last_seen": 0, - "agency": "Urban Bubble", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263303/158616143/263303_11PC_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.049757", - "last_seen": "2025-06-01T22:06:14.032127", - "price": 3980.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18985, - 51.46177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/158616617", - "info": { - "identifier": 158616617, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158616617", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Keller Williams Advantage", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205682/158616617/205682_Zlouise0003519110_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.249728", - "last_seen": "2025-06-01T22:05:41.755679", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.060871, - 51.418007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/158625218", - "info": { - "identifier": 158625218, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158625218", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158625218/96668_234422007012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.827466", - "last_seen": "2025-06-01T22:06:06.680420", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038251, - 51.49665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/158629232", - "info": { - "identifier": 158629232, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158629232", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "parkinsonfarr", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29643/158629232/29643_854_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.600731", - "last_seen": "2025-06-01T22:05:41.114868", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23074, - 51.55405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.4, - "qmprice": 28.23, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/158633165", - "info": { - "identifier": 158633165, - "sqm_ocr": 97.4, - "price": 2750.0, - "price_per_sqm": 28.234086242299792, - "url": "https://www.rightmove.co.uk/properties/158633165", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/158633165/48994_CNL220139_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.992847", - "last_seen": "2025-06-01T22:06:00.325776", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008561, - 51.471806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.0, - "qmprice": 32.61, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158633270", - "info": { - "identifier": 158633270, - "sqm_ocr": 92.0, - "price": 3000.0, - "price_per_sqm": 32.608695652173914, - "url": "https://www.rightmove.co.uk/properties/158633270", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/158633270/264326_Y79298_1_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.886790", - "last_seen": "2025-06-01T22:06:12.666893", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154884, - 51.475983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/158634110", - "info": { - "identifier": 158634110, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158634110", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72842/158634110/72842_P5570C0624_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.402281", - "last_seen": "2025-06-01T22:06:13.788185", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18536, - 51.43636 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.5, - "qmprice": 51.26, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/158641388", - "info": { - "identifier": 158641388, - "sqm_ocr": 58.5, - "price": 2999.0, - "price_per_sqm": 51.26495726495727, - "url": "https://www.rightmove.co.uk/properties/158641388", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/158641388/55101_1315800_IMG_01_0013_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.514898", - "last_seen": "2025-06-01T22:06:05.207486", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04957, - 51.5012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 38.46, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158645639", - "info": { - "identifier": 158645639, - "sqm_ocr": 65.0, - "price": 2500.0, - "price_per_sqm": 38.46153846153846, - "url": "https://www.rightmove.co.uk/properties/158645639", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Squires Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46983/158645639/46983_33695831_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.127941", - "last_seen": "2025-06-01T22:05:39.818951", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219504, - 51.617256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 60.83, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/158646014", - "info": { - "identifier": 158646014, - "sqm_ocr": 60.0, - "price": 3650.0, - "price_per_sqm": 60.833333333333336, - "url": "https://www.rightmove.co.uk/properties/158646014", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Executive", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82269/158646014/82269_LOE210206_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.238533", - "last_seen": "2025-06-01T22:06:14.721109", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147469, - 51.505997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.1, - "qmprice": 41.1, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/158648534", - "info": { - "identifier": 158648534, - "sqm_ocr": 68.1, - "price": 2799.0, - "price_per_sqm": 41.10132158590309, - "url": "https://www.rightmove.co.uk/properties/158648534", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48695/158648534/48695_33695955_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.474362", - "last_seen": "2025-06-01T22:05:43.148822", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153784, - 51.539997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158652269", - "info": { - "identifier": 158652269, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158652269", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "Ashmore & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/249k/248612/158652269/248612_7646061_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.315648", - "last_seen": "2025-06-01T22:05:39.133556", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201068, - 51.5842 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/158657909", - "info": { - "identifier": 158657909, - "sqm_ocr": null, - "price": 2496.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158657909", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90035/158657909/90035_33696397_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:43.979934", - "last_seen": "2025-06-01T22:05:38.337726", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.167018, - 51.547844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/158659007", - "info": { - "identifier": 158659007, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158659007", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/158659007/12070_28752028_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.474972", - "last_seen": "2025-06-01T22:05:56.282752", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012172, - 51.494064 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/158660222", - "info": { - "identifier": 158660222, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158660222", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Woodward Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14627/158660222/14627_33696541_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.897621", - "last_seen": "2025-06-01T22:05:50.677428", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.377893, - 51.55689 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.2, - "qmprice": 32.05, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/158661131", - "info": { - "identifier": 158661131, - "sqm_ocr": 70.2, - "price": 2250.0, - "price_per_sqm": 32.05128205128205, - "url": "https://www.rightmove.co.uk/properties/158661131", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48456/158661131/48456_YLM200065_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.570456", - "last_seen": "2025-06-01T22:06:04.351802", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312283, - 51.454483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/158665055", - "info": { - "identifier": 158665055, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158665055", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Ambassador Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/221k/220430/158665055/220430_woodlandfarm_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.278739", - "last_seen": "2025-06-01T22:05:50.870542", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.27865, - 51.57494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 35.89, - "rooms": 2, - "total_price": 2548.0, - "url": "https://www.rightmove.co.uk/properties/158667782", - "info": { - "identifier": 158667782, - "sqm_ocr": 71.0, - "price": 2548.0, - "price_per_sqm": 35.88732394366197, - "url": "https://www.rightmove.co.uk/properties/158667782", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Woolwich", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260435/158667782/260435_000017521b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.489229", - "last_seen": "2025-06-01T22:05:55.940181", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06915, - 51.49348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/158669924", - "info": { - "identifier": 158669924, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158669924", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Liv International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54583/158669924/54583_LIVH_018503_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.002838", - "last_seen": "2025-06-01T22:06:12.526247", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219156, - 51.45264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.4, - "qmprice": 35.19, - "rooms": 3, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/158671796", - "info": { - "identifier": 158671796, - "sqm_ocr": 109.4, - "price": 3850.0, - "price_per_sqm": 35.19195612431444, - "url": "https://www.rightmove.co.uk/properties/158671796", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Japan Services Rent", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94576/158671796/94576_RL0118_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.901542", - "last_seen": "2025-06-01T22:05:45.331551", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267076, - 51.51938 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.6, - "qmprice": 28.74, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/158674037", - "info": { - "identifier": 158674037, - "sqm_ocr": 69.6, - "price": 2000.0, - "price_per_sqm": 28.73563218390805, - "url": "https://www.rightmove.co.uk/properties/158674037", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Brockenhurst Property Specialists", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58355/158674037/58355_RL0374_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.111559", - "last_seen": "2025-06-01T22:05:50.451395", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.330386, - 51.5815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.6, - "qmprice": 34.35, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/158674085", - "info": { - "identifier": 158674085, - "sqm_ocr": 78.6, - "price": 2700.0, - "price_per_sqm": 34.35114503816794, - "url": "https://www.rightmove.co.uk/properties/158674085", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Wayne & Silver", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91636/158674085/91636_33500968_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.750250", - "last_seen": "2025-06-01T22:05:49.755480", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.062879, - 51.588745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.23, - "qmprice": 54.11, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/158676713", - "info": { - "identifier": 158676713, - "sqm_ocr": 70.23, - "price": 3800.0, - "price_per_sqm": 54.107931083582514, - "url": "https://www.rightmove.co.uk/properties/158676713", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/158676713/96392_HEA234420_L_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.970443", - "last_seen": "2025-06-01T22:06:15.225157", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165894, - 51.52375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/158680136", - "info": { - "identifier": 158680136, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158680136", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158680136/96668_211809811062024_IMG_31_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.223694", - "last_seen": "2025-06-01T22:05:39.981739", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.127135, - 51.47714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/158682164", - "info": { - "identifier": 158682164, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158682164", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "LUGUS HOMES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274007/158682164/274007_33697984_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.091790", - "last_seen": "2025-06-01T22:05:40.375456", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284976, - 51.540733 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/158683052", - "info": { - "identifier": 158683052, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158683052", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/158683052/208253_PRL230380_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.079109", - "last_seen": "2025-06-01T22:05:45.025056", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375634, - 51.50545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.7, - "qmprice": 29.99, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/158686175", - "info": { - "identifier": 158686175, - "sqm_ocr": 76.7, - "price": 2300.0, - "price_per_sqm": 29.98696219035202, - "url": "https://www.rightmove.co.uk/properties/158686175", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/158686175/250739_1316193_IMG_01_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.088758", - "last_seen": "2025-06-01T22:05:50.364394", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297848, - 51.60732 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.6, - "qmprice": 46.48, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/158686793", - "info": { - "identifier": 158686793, - "sqm_ocr": 67.6, - "price": 3142.0, - "price_per_sqm": 46.47928994082841, - "url": "https://www.rightmove.co.uk/properties/158686793", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "Fraser & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20990/158686793/20990_PAL250015_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.698623", - "last_seen": "2025-06-01T22:06:13.175244", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148256, - 51.481804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/158688689", - "info": { - "identifier": 158688689, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158688689", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Gardiner Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75433/158688689/75433_1140_GARD_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.043505", - "last_seen": "2025-06-01T22:05:45.049565", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29364, - 51.50744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158689223", - "info": { - "identifier": 158689223, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158689223", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Park & Bailey", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9165/158689223/9165_34467_IMG_12_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.782538", - "last_seen": "2025-06-01T22:05:43.438687", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107541, - 51.345333 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/158690696", - "info": { - "identifier": 158690696, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158690696", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/158690696/43310_CWL250057_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.842984", - "last_seen": "2025-06-01T22:06:00.891000", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022956, - 51.47414 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.2, - "qmprice": 28.87, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/158693003", - "info": { - "identifier": 158693003, - "sqm_ocr": 76.2, - "price": 2200.0, - "price_per_sqm": 28.871391076115483, - "url": "https://www.rightmove.co.uk/properties/158693003", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "DBK Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209063/158693003/209063_33699018_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.247220", - "last_seen": "2025-06-01T22:05:52.045668", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252941, - 51.48137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.64, - "qmprice": 47.89, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158694104", - "info": { - "identifier": 158694104, - "sqm_ocr": 62.64, - "price": 3000.0, - "price_per_sqm": 47.89272030651341, - "url": "https://www.rightmove.co.uk/properties/158694104", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44510/158694104/44510_HYL130144_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.989686", - "last_seen": "2025-06-01T22:06:15.174467", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162379, - 51.51494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.7, - "qmprice": 26.55, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/158694566", - "info": { - "identifier": 158694566, - "sqm_ocr": 101.7, - "price": 2700.0, - "price_per_sqm": 26.548672566371682, - "url": "https://www.rightmove.co.uk/properties/158694566", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/158694566/82537_33699130_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.248279", - "last_seen": "2025-06-01T22:06:09.882720", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025955, - 51.49235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 47.4, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/158694986", - "info": { - "identifier": 158694986, - "sqm_ocr": 80.0, - "price": 3792.0, - "price_per_sqm": 47.4, - "url": "https://www.rightmove.co.uk/properties/158694986", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Russell Simpson", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46673/158694986/46673_RUS230729_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.567100", - "last_seen": "2025-06-01T22:05:57.460936", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180437, - 51.490314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/158695535", - "info": { - "identifier": 158695535, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158695535", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "parkinsonfarr", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29643/158695535/29643_995_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.017285", - "last_seen": "2025-06-01T22:05:40.417939", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2206, - 51.55138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.29, - "qmprice": 66.62, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/158695619", - "info": { - "identifier": 158695619, - "sqm_ocr": 56.29, - "price": 3750.0, - "price_per_sqm": 66.61929294723753, - "url": "https://www.rightmove.co.uk/properties/158695619", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons in association with James Pendleton", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279227/158695619/279227_WLS240466_L_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.533908", - "last_seen": "2025-06-01T22:06:12.213868", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186387, - 51.436264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.02, - "qmprice": 66.94, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/158695622", - "info": { - "identifier": 158695622, - "sqm_ocr": 56.02, - "price": 3750.0, - "price_per_sqm": 66.94037843627275, - "url": "https://www.rightmove.co.uk/properties/158695622", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons in association with James Pendleton", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279227/158695622/279227_WLS240464_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.555773", - "last_seen": "2025-06-01T22:06:12.173026", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185157, - 51.43645 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.1, - "qmprice": 43.03, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158698703", - "info": { - "identifier": 158698703, - "sqm_ocr": 58.1, - "price": 2500.0, - "price_per_sqm": 43.029259896729776, - "url": "https://www.rightmove.co.uk/properties/158698703", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57287/158698703/57287_1315458_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.820348", - "last_seen": "2025-06-01T22:06:00.959909", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.051044, - 51.446033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/158699411", - "info": { - "identifier": 158699411, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158699411", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Jeffersons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57608/158699411/57608_COL34-t-130_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.939381", - "last_seen": "2025-06-01T22:05:42.569033", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144397, - 51.526115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158700971", - "info": { - "identifier": 158700971, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158700971", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "S.H.Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41106/158700971/41106_RL0464_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.173105", - "last_seen": "2025-06-01T22:05:56.223440", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2231, - 51.590073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.94, - "qmprice": 39.85, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/158707121", - "info": { - "identifier": 158707121, - "sqm_ocr": 58.94, - "price": 2349.0, - "price_per_sqm": 39.854088903970144, - "url": "https://www.rightmove.co.uk/properties/158707121", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/158707121/191255_33699604_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.101544", - "last_seen": "2025-06-01T20:19:58.484706", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029536, - 51.512802 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3780.0, - "url": "https://www.rightmove.co.uk/properties/158707310", - "info": { - "identifier": 158707310, - "sqm_ocr": null, - "price": 3780.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158707310", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/158707310/78429_LON-342_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.956167", - "last_seen": "2025-06-01T22:05:53.200895", - "price": 3780.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10208, - 51.52263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/158708372", - "info": { - "identifier": 158708372, - "sqm_ocr": null, - "price": 3198.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158708372", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 88, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90035/158708372/90035_33699674_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.290314", - "last_seen": "2025-06-01T22:05:44.739986", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.256122, - 51.51554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.19, - "qmprice": 39.09, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/158708525", - "info": { - "identifier": 158708525, - "sqm_ocr": 74.19, - "price": 2900.0, - "price_per_sqm": 39.08882598732983, - "url": "https://www.rightmove.co.uk/properties/158708525", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280511/158708525/280511_CSO250274_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.358507", - "last_seen": "2025-06-01T22:05:55.845365", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203801, - 51.48479 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158720261", - "info": { - "identifier": 158720261, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158720261", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Adam Kennedy", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280523/158720261/280523_28443346_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.969142", - "last_seen": "2025-06-01T22:05:45.920854", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072644, - 51.638218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.8, - "qmprice": 23.57, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/158720918", - "info": { - "identifier": 158720918, - "sqm_ocr": 118.8, - "price": 2800.0, - "price_per_sqm": 23.56902356902357, - "url": "https://www.rightmove.co.uk/properties/158720918", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84839/158720918/84839_33700470_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.054536", - "last_seen": "2025-06-01T22:05:51.960615", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.337297, - 51.47734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/158721617", - "info": { - "identifier": 158721617, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158721617", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 95, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3305/158721617/3305_000894922_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.822256", - "last_seen": "2025-06-01T22:05:43.367266", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11178, - 51.37846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/158722253", - "info": { - "identifier": 158722253, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158722253", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81158/158722253/81158_33700564_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.922683", - "last_seen": "2025-06-01T22:05:44.986730", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.314136, - 51.548855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/158723957", - "info": { - "identifier": 158723957, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158723957", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Your Move", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/32k/31377/158723957/31377_NHE230080_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.248905", - "last_seen": "2025-06-01T22:05:39.889828", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.178426, - 51.47091 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.2, - "qmprice": 36.08, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/158729798", - "info": { - "identifier": 158729798, - "sqm_ocr": 58.2, - "price": 2100.0, - "price_per_sqm": 36.08247422680412, - "url": "https://www.rightmove.co.uk/properties/158729798", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Curtis And Parker", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278867/158729798/278867_33640763_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.382783", - "last_seen": "2025-06-01T22:05:44.525283", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305017, - 51.51563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.54, - "qmprice": 40.92, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/158730719", - "info": { - "identifier": 158730719, - "sqm_ocr": 85.54, - "price": 3500.0, - "price_per_sqm": 40.9165302782324, - "url": "https://www.rightmove.co.uk/properties/158730719", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/158730719/15969_1316397_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.605619", - "last_seen": "2025-06-01T22:05:44.501922", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312828, - 51.510094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.7, - "qmprice": 41.83, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/158736917", - "info": { - "identifier": 158736917, - "sqm_ocr": 77.7, - "price": 3250.0, - "price_per_sqm": 41.82754182754183, - "url": "https://www.rightmove.co.uk/properties/158736917", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/158736917/15969_1309324_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.454237", - "last_seen": "2025-06-01T22:05:44.418825", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.315304, - 51.525387 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 153.4, - "qmprice": 25.1, - "rooms": 4, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/158739494", - "info": { - "identifier": 158739494, - "sqm_ocr": 153.4, - "price": 3850.0, - "price_per_sqm": 25.09778357235984, - "url": "https://www.rightmove.co.uk/properties/158739494", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 82, - "status": null, - "last_seen": 0, - "agency": "Orchard Property Services", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/122k/121882/158739494/121882_ICK250014_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.417088", - "last_seen": "2025-06-01T22:05:51.427073", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.445543, - 51.56516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.0, - "qmprice": 30.09, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/158746148", - "info": { - "identifier": 158746148, - "sqm_ocr": 108.0, - "price": 3250.0, - "price_per_sqm": 30.09259259259259, - "url": "https://www.rightmove.co.uk/properties/158746148", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "ABACO Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/184k/183806/158746148/183806_33701854_IMG_76_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.366021", - "last_seen": "2025-06-01T22:05:39.433351", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.244468, - 51.615273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 47.3, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/158748470", - "info": { - "identifier": 158748470, - "sqm_ocr": 74.0, - "price": 3500.0, - "price_per_sqm": 47.2972972972973, - "url": "https://www.rightmove.co.uk/properties/158748470", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43766/158748470/43766_P296218_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.582578", - "last_seen": "2025-06-01T22:05:49.491433", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18486, - 51.47448 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3135.0, - "url": "https://www.rightmove.co.uk/properties/158752157", - "info": { - "identifier": 158752157, - "sqm_ocr": null, - "price": 3135.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158752157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Olivers Town", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54833/158752157/54833_52227_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.239885", - "last_seen": "2025-06-01T22:05:42.935478", - "price": 3135.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15102, - 51.549603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.7, - "qmprice": 43.48, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/158752160", - "info": { - "identifier": 158752160, - "sqm_ocr": 89.7, - "price": 3900.0, - "price_per_sqm": 43.47826086956522, - "url": "https://www.rightmove.co.uk/properties/158752160", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Olivers Town", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54833/158752160/54833_52232_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.244424", - "last_seen": "2025-06-01T22:05:42.964444", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15102, - 51.549603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.1, - "qmprice": 33.55, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/158759489", - "info": { - "identifier": 158759489, - "sqm_ocr": 61.1, - "price": 2050.0, - "price_per_sqm": 33.55155482815057, - "url": "https://www.rightmove.co.uk/properties/158759489", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100624/158759489/100624_33682472_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.415682", - "last_seen": "2025-06-01T22:05:59.511032", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113812, - 51.435986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/158763617", - "info": { - "identifier": 158763617, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158763617", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 52, - "status": null, - "last_seen": 0, - "agency": "LAND ROYALE PROPERTIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272384/158763617/272384_OGFortyLaneLinearView_IMG_08_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.204053", - "last_seen": "2025-06-01T22:05:40.128860", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27359, - 51.56512 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.1, - "qmprice": 29.83, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/158771921", - "info": { - "identifier": 158771921, - "sqm_ocr": 77.1, - "price": 2300.0, - "price_per_sqm": 29.831387808041505, - "url": "https://www.rightmove.co.uk/properties/158771921", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137369/158771921/137369_1316512_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.729205", - "last_seen": "2025-06-01T22:06:11.815692", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025227, - 51.59997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.2, - "qmprice": 33.05, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/158775725", - "info": { - "identifier": 158775725, - "sqm_ocr": 83.2, - "price": 2750.0, - "price_per_sqm": 33.05288461538461, - "url": "https://www.rightmove.co.uk/properties/158775725", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/158775725/15966_1316511_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.451708", - "last_seen": "2025-06-01T22:06:13.481939", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182669, - 51.46585 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/158778416", - "info": { - "identifier": 158778416, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158778416", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Franklyn James", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66685/158778416/66685_33703609_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.307930", - "last_seen": "2025-06-01T22:06:09.540631", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021142, - 51.488274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/158784098", - "info": { - "identifier": 158784098, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158784098", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262865/158784098/262865_a1G8d000002QBTREA4_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.467692", - "last_seen": "2025-06-01T22:06:03.478107", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01024, - 51.5133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.1, - "qmprice": 33.68, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/158787341", - "info": { - "identifier": 158787341, - "sqm_ocr": 74.1, - "price": 2496.0, - "price_per_sqm": 33.684210526315795, - "url": "https://www.rightmove.co.uk/properties/158787341", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/205k/204995/158787341/204995_WLL250009_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.889476", - "last_seen": "2025-06-01T22:05:40.612231", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219803, - 51.550785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/158788226", - "info": { - "identifier": 158788226, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158788226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158788226/96668_195491115012024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.711827", - "last_seen": "2025-06-01T22:06:15.559800", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162813, - 51.51825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.2, - "qmprice": 51.69, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/158792504", - "info": { - "identifier": 158792504, - "sqm_ocr": 53.2, - "price": 2750.0, - "price_per_sqm": 51.691729323308266, - "url": "https://www.rightmove.co.uk/properties/158792504", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/158792504/264326_Y79606_2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.090000", - "last_seen": "2025-06-01T22:05:58.239809", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18367, - 51.48348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.7, - "qmprice": 29.65, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/158795729", - "info": { - "identifier": 158795729, - "sqm_ocr": 87.7, - "price": 2600.0, - "price_per_sqm": 29.646522234891677, - "url": "https://www.rightmove.co.uk/properties/158795729", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 82, - "status": null, - "last_seen": 0, - "agency": "Japan Letting Agency", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258848/158795729/258848_33704738_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.033671", - "last_seen": "2025-06-01T22:05:45.186173", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285563, - 51.509594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/158796854", - "info": { - "identifier": 158796854, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158796854", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81158/158796854/81158_33704824_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.938057", - "last_seen": "2025-06-01T22:05:50.781891", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.319602, - 51.597046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.5, - "qmprice": 26.74, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158798546", - "info": { - "identifier": 158798546, - "sqm_ocr": 93.5, - "price": 2500.0, - "price_per_sqm": 26.737967914438503, - "url": "https://www.rightmove.co.uk/properties/158798546", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 76, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/158798546/52415_31862046_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.497129", - "last_seen": "2025-06-01T22:05:59.394949", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127042, - 51.44016 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.6, - "qmprice": 54.62, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/158799917", - "info": { - "identifier": 158799917, - "sqm_ocr": 47.6, - "price": 2600.0, - "price_per_sqm": 54.621848739495796, - "url": "https://www.rightmove.co.uk/properties/158799917", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/158799917/84889_1314491_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.548792", - "last_seen": "2025-06-01T22:06:15.016532", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143942, - 51.48793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/158800784", - "info": { - "identifier": 158800784, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158800784", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158800784/96668_240152127022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.655392", - "last_seen": "2025-06-01T22:05:54.078232", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118438, - 51.53992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.41, - "qmprice": 65.14, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/158802506", - "info": { - "identifier": 158802506, - "sqm_ocr": 61.41, - "price": 4000.0, - "price_per_sqm": 65.13597134017262, - "url": "https://www.rightmove.co.uk/properties/158802506", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239366/158802506/239366_OER210841_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.125360", - "last_seen": "2025-06-01T22:05:58.261547", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158734, - 51.49515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158815847", - "info": { - "identifier": 158815847, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158815847", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 66, - "status": null, - "last_seen": 0, - "agency": "Rigby & Marchant", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230237/158815847/230237_d40be0ee-5e4a-47ec-9a94-62e95017f20d_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.190937", - "last_seen": "2025-06-01T22:05:57.966851", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205167, - 51.509655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/158823026", - "info": { - "identifier": 158823026, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158823026", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 93, - "status": null, - "last_seen": 0, - "agency": "Japan Letting Agency", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258848/158823026/258848_33705698_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.530259", - "last_seen": "2025-06-01T22:05:43.961597", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.381557, - 51.541367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.6, - "qmprice": 51.59, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/158823521", - "info": { - "identifier": 158823521, - "sqm_ocr": 75.6, - "price": 3900.0, - "price_per_sqm": 51.58730158730159, - "url": "https://www.rightmove.co.uk/properties/158823521", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Liv International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54583/158823521/54583_LIVH_018517_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.238470", - "last_seen": "2025-06-01T22:05:42.959876", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184904, - 51.53807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 122.0, - "qmprice": 28.7, - "rooms": 3, - "total_price": 3501.0, - "url": "https://www.rightmove.co.uk/properties/158826257", - "info": { - "identifier": 158826257, - "sqm_ocr": 122.0, - "price": 3501.0, - "price_per_sqm": 28.69672131147541, - "url": "https://www.rightmove.co.uk/properties/158826257", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "parkinsonfarr", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29643/158826257/29643_997_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.078256", - "last_seen": "2025-06-01T22:05:40.226941", - "price": 3501 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21572, - 51.53593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/158826536", - "info": { - "identifier": 158826536, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158826536", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/158826536/257522_503persues-keith-aVEtv9_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.448070", - "last_seen": "2025-06-01T22:06:10.330728", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00839, - 51.50844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 38.96, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158831867", - "info": { - "identifier": 158831867, - "sqm_ocr": 77.0, - "price": 3000.0, - "price_per_sqm": 38.96103896103896, - "url": "https://www.rightmove.co.uk/properties/158831867", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 83, - "status": null, - "last_seen": 0, - "agency": "Rigby & Marchant", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230237/158831867/230237_8ce56422-7588-4161-a448-35b7877b5205_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.027564", - "last_seen": "2025-06-01T22:05:58.420931", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208749, - 51.49844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.8, - "qmprice": 27.48, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/158832092", - "info": { - "identifier": 158832092, - "sqm_ocr": 112.8, - "price": 3100.0, - "price_per_sqm": 27.4822695035461, - "url": "https://www.rightmove.co.uk/properties/158832092", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 72, - "status": null, - "last_seen": 0, - "agency": "Frost Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73898/158832092/73898_12614114_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.592653", - "last_seen": "2025-06-01T22:05:43.775990", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136839, - 51.324345 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/158832560", - "info": { - "identifier": 158832560, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158832560", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/158832560/12070_28770486_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.156199", - "last_seen": "2025-06-01T22:05:46.547298", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013033, - 51.49625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.22, - "qmprice": 38.33, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158833154", - "info": { - "identifier": 158833154, - "sqm_ocr": 65.22, - "price": 2500.0, - "price_per_sqm": 38.33180006133088, - "url": "https://www.rightmove.co.uk/properties/158833154", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57956/158833154/57956_LAD160361_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.066772", - "last_seen": "2025-06-01T22:05:58.376157", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21151, - 51.5221 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158833913", - "info": { - "identifier": 158833913, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158833913", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/158833913/87187_32685_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.809677", - "last_seen": "2025-06-01T22:05:40.661933", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276773, - 51.5614 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.25, - "qmprice": 41.03, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/158833916", - "info": { - "identifier": 158833916, - "sqm_ocr": 68.25, - "price": 2800.0, - "price_per_sqm": 41.02564102564103, - "url": "https://www.rightmove.co.uk/properties/158833916", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/158833916/87187_51363_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.997376", - "last_seen": "2025-06-01T22:06:09.754560", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026769, - 51.509674 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/158837981", - "info": { - "identifier": 158837981, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158837981", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 93, - "status": null, - "last_seen": 0, - "agency": "Japan Letting Agency", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258848/158837981/258848_32234448_IMG_00_0000_max_656x437.png", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.373639", - "last_seen": "2025-06-01T22:05:44.457478", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.274008, - 51.50676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.73, - "qmprice": 24.79, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/158838962", - "info": { - "identifier": 158838962, - "sqm_ocr": 88.73, - "price": 2200.0, - "price_per_sqm": 24.794319846726022, - "url": "https://www.rightmove.co.uk/properties/158838962", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49000/158838962/49000_CNL250044_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.830997", - "last_seen": "2025-06-01T22:06:08.923368", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063123, - 51.508953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158839067", - "info": { - "identifier": 158839067, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158839067", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214793/158839067/214793_P64145_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.273339", - "last_seen": "2025-06-01T22:06:10.736774", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01532, - 51.51553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.01, - "qmprice": 44.1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/158846201", - "info": { - "identifier": 158846201, - "sqm_ocr": 68.01, - "price": 2999.0, - "price_per_sqm": 44.09645640347007, - "url": "https://www.rightmove.co.uk/properties/158846201", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/158846201/70038_4951_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.854873", - "last_seen": "2025-06-01T22:05:49.157121", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209543, - 51.46703 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.98, - "qmprice": 68.03, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/158852099", - "info": { - "identifier": 158852099, - "sqm_ocr": 49.98, - "price": 3400.0, - "price_per_sqm": 68.02721088435375, - "url": "https://www.rightmove.co.uk/properties/158852099", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": 6000.0, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Fortuna and Co.", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272885/158852099/272885_RX521235_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.202633", - "last_seen": "2025-06-01T22:05:43.017902", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136226, - 51.52333 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3796.0, - "url": "https://www.rightmove.co.uk/properties/158854382", - "info": { - "identifier": 158854382, - "sqm_ocr": null, - "price": 3796.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158854382", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 93, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90035/158854382/90035_33320282_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.104688", - "last_seen": "2025-06-01T22:05:45.159575", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254262, - 51.51241 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.63, - "qmprice": 33.49, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/158854463", - "info": { - "identifier": 158854463, - "sqm_ocr": 77.63, - "price": 2600.0, - "price_per_sqm": 33.49220662115162, - "url": "https://www.rightmove.co.uk/properties/158854463", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218729/158854463/218729_33707642_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.434253", - "last_seen": "2025-06-01T22:05:42.700712", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151349, - 51.547096 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.5, - "qmprice": 50.98, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/158855498", - "info": { - "identifier": 158855498, - "sqm_ocr": 76.5, - "price": 3900.0, - "price_per_sqm": 50.98039215686274, - "url": "https://www.rightmove.co.uk/properties/158855498", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41337/158855498/41337_06741515_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.513942", - "last_seen": "2025-06-01T22:06:15.882002", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185, - 51.537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.9, - "qmprice": 44.51, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/158858660", - "info": { - "identifier": 158858660, - "sqm_ocr": 77.9, - "price": 3467.0, - "price_per_sqm": 44.50577663671373, - "url": "https://www.rightmove.co.uk/properties/158858660", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94246/158858660/94246_1316369_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.358293", - "last_seen": "2025-06-01T22:05:56.339661", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11509, - 51.522224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.29, - "qmprice": 30.75, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158863496", - "info": { - "identifier": 158863496, - "sqm_ocr": 81.29, - "price": 2500.0, - "price_per_sqm": 30.7540902940091, - "url": "https://www.rightmove.co.uk/properties/158863496", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Brithomes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275363/158863496/275363_43alliumhse_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.605746", - "last_seen": "2025-06-01T22:05:40.402499", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29563, - 51.53909 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.4, - "qmprice": 36.98, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/158868797", - "info": { - "identifier": 158868797, - "sqm_ocr": 101.4, - "price": 3750.0, - "price_per_sqm": 36.98224852071006, - "url": "https://www.rightmove.co.uk/properties/158868797", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/158868797/101522_1316781_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.158686", - "last_seen": "2025-06-01T22:05:47.503215", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05723, - 51.544315 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 36.84, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/158877605", - "info": { - "identifier": 158877605, - "sqm_ocr": 57.0, - "price": 2100.0, - "price_per_sqm": 36.8421052631579, - "url": "https://www.rightmove.co.uk/properties/158877605", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Sandra Davidson Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13342/158877605/13342_33708976_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.038529", - "last_seen": "2025-06-01T22:06:03.655994", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.049932, - 51.602966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.9, - "qmprice": 36.72, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/158879309", - "info": { - "identifier": 158879309, - "sqm_ocr": 64.9, - "price": 2383.0, - "price_per_sqm": 36.718027734976886, - "url": "https://www.rightmove.co.uk/properties/158879309", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/158879309/97423_CEI241742_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.749498", - "last_seen": "2025-06-01T22:05:38.621179", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242114, - 51.593117 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158880602", - "info": { - "identifier": 158880602, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158880602", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158880602/96668_181059224082023_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.987584", - "last_seen": "2025-06-01T22:06:03.193805", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07075, - 51.49942 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/158885381", - "info": { - "identifier": 158885381, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158885381", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158885381/96668_226705621102024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.067737", - "last_seen": "2025-06-01T22:05:53.135068", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11613, - 51.55378 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/158886167", - "info": { - "identifier": 158886167, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158886167", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Akelius Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102505/158886167/102505_40123-6_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.874886", - "last_seen": "2025-06-01T22:06:15.171342", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1701, - 51.5337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.5, - "qmprice": 38.3, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/158886170", - "info": { - "identifier": 158886170, - "sqm_ocr": 70.5, - "price": 2700.0, - "price_per_sqm": 38.297872340425535, - "url": "https://www.rightmove.co.uk/properties/158886170", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "McS Mckenzie Sakowicz Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244001/158886170/244001_McS52_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.049714", - "last_seen": "2025-06-01T22:05:42.339107", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19921, - 51.55168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.67, - "qmprice": 42.39, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/158890523", - "info": { - "identifier": 158890523, - "sqm_ocr": 76.67, - "price": 3250.0, - "price_per_sqm": 42.38946132776836, - "url": "https://www.rightmove.co.uk/properties/158890523", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/158890523/87187_35411_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.094773", - "last_seen": "2025-06-01T20:19:58.214877", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066672, - 51.50791 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.76, - "qmprice": 43.94, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/158891978", - "info": { - "identifier": 158891978, - "sqm_ocr": 88.76, - "price": 3900.0, - "price_per_sqm": 43.93871113114015, - "url": "https://www.rightmove.co.uk/properties/158891978", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157817/158891978/157817_2665589_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.036409", - "last_seen": "2025-06-01T22:06:09.652592", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017234, - 51.50096 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158894003", - "info": { - "identifier": 158894003, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158894003", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262865/158894003/262865_a1G8d000002QBNiEAO_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.436759", - "last_seen": "2025-06-01T22:06:03.200119", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00996, - 51.51357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.8, - "qmprice": 32.46, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/158895002", - "info": { - "identifier": 158895002, - "sqm_ocr": 87.8, - "price": 2850.0, - "price_per_sqm": 32.46013667425968, - "url": "https://www.rightmove.co.uk/properties/158895002", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Taylor Gibbs", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66943/158895002/66943_5244_TAYG_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.849794", - "last_seen": "2025-06-01T22:05:49.839458", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158515, - 51.580376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/158895800", - "info": { - "identifier": 158895800, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158895800", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219908/158895800/219908_3153_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.160565", - "last_seen": "2025-06-01T22:05:44.220443", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.374222, - 51.51987 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/158896163", - "info": { - "identifier": 158896163, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158896163", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Andre Joseph Estates Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74973/158896163/74973_527081_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.769725", - "last_seen": "2025-06-01T22:05:59.557803", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126559, - 51.42493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/158896742", - "info": { - "identifier": 158896742, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158896742", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Freder", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269027/158896742/269027_RL0241_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.006863", - "last_seen": "2025-06-01T22:05:39.673497", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240264, - 51.577812 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/158898893", - "info": { - "identifier": 158898893, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158898893", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Simple Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238226/158898893/238226_5758_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.846712", - "last_seen": "2025-06-01T22:05:51.309371", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.464872, - 51.519764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.3, - "qmprice": 46.65, - "rooms": 2, - "total_price": 3466.0, - "url": "https://www.rightmove.co.uk/properties/158898989", - "info": { - "identifier": 158898989, - "sqm_ocr": 74.3, - "price": 3466.0, - "price_per_sqm": 46.648721399730825, - "url": "https://www.rightmove.co.uk/properties/158898989", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43814/158898989/43814_P296366_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.231752", - "last_seen": "2025-06-01T22:06:06.208147", - "price": 3466.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04106, - 51.49321 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 137.1, - "qmprice": 20.79, - "rooms": 4, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/158900360", - "info": { - "identifier": 158900360, - "sqm_ocr": 137.1, - "price": 2850.0, - "price_per_sqm": 20.78774617067834, - "url": "https://www.rightmove.co.uk/properties/158900360", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Oakhill", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88216/158900360/88216_f0367f41-e412-45ab-83a2-7c71c9d5424a_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.344473", - "last_seen": "2025-06-01T22:05:52.155545", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.339038, - 51.480354 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 155.68, - "qmprice": 24.09, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/158901836", - "info": { - "identifier": 158901836, - "sqm_ocr": 155.68, - "price": 3750.0, - "price_per_sqm": 24.08787255909558, - "url": "https://www.rightmove.co.uk/properties/158901836", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Gardiner Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75433/158901836/75433_3027_GARD_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.286477", - "last_seen": "2025-06-01T22:05:44.093377", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32322, - 51.51828 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.3, - "qmprice": 36.2, - "rooms": 3, - "total_price": 3848.0, - "url": "https://www.rightmove.co.uk/properties/158903198", - "info": { - "identifier": 158903198, - "sqm_ocr": 106.3, - "price": 3848.0, - "price_per_sqm": 36.19943555973659, - "url": "https://www.rightmove.co.uk/properties/158903198", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53654/158903198/53654_33709398_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.875919", - "last_seen": "2025-06-01T22:05:48.329942", - "price": 3848 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182253, - 51.472492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.35, - "qmprice": 46.63, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/158903570", - "info": { - "identifier": 158903570, - "sqm_ocr": 74.35, - "price": 3467.0, - "price_per_sqm": 46.63080026899799, - "url": "https://www.rightmove.co.uk/properties/158903570", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/158903570/108515_1316194_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.184994", - "last_seen": "2025-06-01T22:05:58.228776", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194747, - 51.490314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.6, - "qmprice": 34.65, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/158916962", - "info": { - "identifier": 158916962, - "sqm_ocr": 60.6, - "price": 2100.0, - "price_per_sqm": 34.65346534653465, - "url": "https://www.rightmove.co.uk/properties/158916962", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257069/158916962/257069_32868215_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.382363", - "last_seen": "2025-06-01T22:05:46.823117", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021233, - 51.480766 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2770.0, - "url": "https://www.rightmove.co.uk/properties/158917556", - "info": { - "identifier": 158917556, - "sqm_ocr": null, - "price": 2770.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158917556", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/158917556/208253_PRL250450_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.170576", - "last_seen": "2025-06-01T22:05:39.188603", - "price": 2770.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.241224, - 51.577717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/158919035", - "info": { - "identifier": 158919035, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158919035", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Open House Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50334/158919035/50334_33711005_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.274482", - "last_seen": "2025-06-01T22:05:51.748325", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.422785, - 51.44407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.5, - "qmprice": 36.59, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/158922383", - "info": { - "identifier": 158922383, - "sqm_ocr": 102.5, - "price": 3750.0, - "price_per_sqm": 36.58536585365854, - "url": "https://www.rightmove.co.uk/properties/158922383", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/158922383/15954_1316587_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.015192", - "last_seen": "2025-06-01T22:05:54.188405", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090589, - 51.548363 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2625.0, - "url": "https://www.rightmove.co.uk/properties/158924903", - "info": { - "identifier": 158924903, - "sqm_ocr": null, - "price": 2625.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158924903", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262865/158924903/262865_a1G8d000002QBOREA4_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.709795", - "last_seen": "2025-06-01T22:06:02.589128", - "price": 2625.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00996, - 51.51357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/158925680", - "info": { - "identifier": 158925680, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158925680", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Bamboo Living Management Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272480/158925680/272480_billsroth_IMG_24_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.727754", - "last_seen": "2025-06-01T22:05:38.871738", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25244, - 51.59367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/158929148", - "info": { - "identifier": 158929148, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158929148", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/158929148/17888_32925_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.161029", - "last_seen": "2025-06-01T22:05:53.480802", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11563, - 51.52951 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/158930144", - "info": { - "identifier": 158930144, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158930144", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/158930144/264878_CAN181080_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.583847", - "last_seen": "2025-06-01T20:19:56.054153", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011, - 51.508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.1, - "qmprice": 33.23, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/158932124", - "info": { - "identifier": 158932124, - "sqm_ocr": 63.1, - "price": 2097.0, - "price_per_sqm": 33.23296354992076, - "url": "https://www.rightmove.co.uk/properties/158932124", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72541/158932124/72541_33712042_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.630429", - "last_seen": "2025-06-01T22:05:40.353954", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.230645, - 51.554234 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3080.0, - "url": "https://www.rightmove.co.uk/properties/158932889", - "info": { - "identifier": 158932889, - "sqm_ocr": null, - "price": 3080.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158932889", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Freder", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269027/158932889/269027_RL0158_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:39.136454", - "last_seen": "2025-06-01T20:19:55.939090", - "price": 3080.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011334, - 51.508057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.9, - "qmprice": 46.45, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/158935778", - "info": { - "identifier": 158935778, - "sqm_ocr": 54.9, - "price": 2550.0, - "price_per_sqm": 46.44808743169399, - "url": "https://www.rightmove.co.uk/properties/158935778", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/158935778/15960_1316959_IMG_02_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.089518", - "last_seen": "2025-06-01T22:06:15.924762", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175914, - 51.528374 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/158937284", - "info": { - "identifier": 158937284, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158937284", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/158937284/17888_15282_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.704466", - "last_seen": "2025-06-01T22:05:53.279472", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13382, - 51.56417 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3795.0, - "url": "https://www.rightmove.co.uk/properties/158939792", - "info": { - "identifier": 158939792, - "sqm_ocr": null, - "price": 3795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158939792", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158939792/96668_202185615032024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.209022", - "last_seen": "2025-06-01T22:05:43.012801", - "price": 3795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197234, - 51.553154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/158939972", - "info": { - "identifier": 158939972, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158939972", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72541/158939972/72541_33712655_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.683285", - "last_seen": "2025-06-01T22:05:41.186037", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216365, - 51.552982 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.67, - "qmprice": 51.06, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/158945231", - "info": { - "identifier": 158945231, - "sqm_ocr": 62.67, - "price": 3200.0, - "price_per_sqm": 51.06111377054412, - "url": "https://www.rightmove.co.uk/properties/158945231", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/158945231/15954_1312986_IMG_02_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.815908", - "last_seen": "2025-06-01T22:05:53.359442", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113428, - 51.536636 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.01, - "qmprice": 38.96, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158947265", - "info": { - "identifier": 158947265, - "sqm_ocr": 77.01, - "price": 3000.0, - "price_per_sqm": 38.955979742890534, - "url": "https://www.rightmove.co.uk/properties/158947265", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "London Land and New Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65382/158947265/65382_W92JY25L1_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "29/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.262112", - "last_seen": "2025-06-01T22:06:15.660831", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19187, - 51.52279 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/158947598", - "info": { - "identifier": 158947598, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158947598", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75166/158947598/75166_CLK250030_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.025259", - "last_seen": "2025-06-01T22:06:15.858633", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180736, - 51.51164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/158952575", - "info": { - "identifier": 158952575, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158952575", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224522/158952575/224522_P192824_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.812853", - "last_seen": "2025-06-01T22:06:07.513417", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01513, - 51.54244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 50.45, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/158952776", - "info": { - "identifier": 158952776, - "sqm_ocr": 73.0, - "price": 3683.0, - "price_per_sqm": 50.45205479452055, - "url": "https://www.rightmove.co.uk/properties/158952776", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "M2 Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33998/158952776/33998_574700_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.465625", - "last_seen": "2025-06-01T22:05:57.432722", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20604, - 51.51456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/158954126", - "info": { - "identifier": 158954126, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158954126", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 89, - "status": null, - "last_seen": 0, - "agency": "Aston Rowe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230534/158954126/230534_33713221_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.879176", - "last_seen": "2025-06-01T22:05:44.416619", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254186, - 51.51174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.3, - "qmprice": 30.87, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/158955545", - "info": { - "identifier": 158955545, - "sqm_ocr": 79.3, - "price": 2448.0, - "price_per_sqm": 30.870113493064313, - "url": "https://www.rightmove.co.uk/properties/158955545", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/158955545/82537_33713307_IMG_06_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.707347", - "last_seen": "2025-06-01T17:39:04.277059", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004933, - 51.512787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.0, - "qmprice": 36.63, - "rooms": 3, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/158956058", - "info": { - "identifier": 158956058, - "sqm_ocr": 101.0, - "price": 3700.0, - "price_per_sqm": 36.633663366336634, - "url": "https://www.rightmove.co.uk/properties/158956058", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hanley Estates Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72329/158956058/72329_2752_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.019515", - "last_seen": "2025-06-01T22:05:54.223623", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10593, - 51.5548 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/158956673", - "info": { - "identifier": 158956673, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158956673", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 89, - "status": null, - "last_seen": 0, - "agency": "JS Estate Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264161/158956673/264161_700215_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.401087", - "last_seen": "2025-06-01T22:05:46.817691", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0132, - 51.472168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.5, - "qmprice": 37.62, - "rooms": 2, - "total_price": 2652.0, - "url": "https://www.rightmove.co.uk/properties/158957066", - "info": { - "identifier": 158957066, - "sqm_ocr": 70.5, - "price": 2652.0, - "price_per_sqm": 37.61702127659574, - "url": "https://www.rightmove.co.uk/properties/158957066", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/158957066/17888_39668_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.947033", - "last_seen": "2025-06-01T22:05:53.387829", - "price": 2548 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12758, - 51.5475 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 39.02, - "rooms": 4, - "total_price": 3395.0, - "url": "https://www.rightmove.co.uk/properties/158961749", - "info": { - "identifier": 158961749, - "sqm_ocr": 87.0, - "price": 3395.0, - "price_per_sqm": 39.02298850574713, - "url": "https://www.rightmove.co.uk/properties/158961749", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/193k/192209/158961749/192209_33713712_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.889693", - "last_seen": "2025-06-01T22:05:44.388008", - "price": 3395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.257371, - 51.515923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158962535", - "info": { - "identifier": 158962535, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158962535", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/158962535/17418_100415010596_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.418740", - "last_seen": "2025-06-01T22:05:51.639526", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.41835, - 51.61365 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/158967965", - "info": { - "identifier": 158967965, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158967965", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11309/158967965/11309_000786628_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.573487", - "last_seen": "2025-06-01T22:06:07.212335", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00049, - 51.54395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.6, - "qmprice": 24.59, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/158972234", - "info": { - "identifier": 158972234, - "sqm_ocr": 97.6, - "price": 2400.0, - "price_per_sqm": 24.59016393442623, - "url": "https://www.rightmove.co.uk/properties/158972234", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Filtons Stratford Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49212/158972234/49212_Malvern_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.874152", - "last_seen": "2025-06-01T22:06:04.022997", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.09999, - 51.55003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.0, - "qmprice": 44.44, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/158972957", - "info": { - "identifier": 158972957, - "sqm_ocr": 90.0, - "price": 4000.0, - "price_per_sqm": 44.44444444444444, - "url": "https://www.rightmove.co.uk/properties/158972957", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "Capital Heights Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55386/158972957/55386_12616976_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.227984", - "last_seen": "2025-06-01T22:06:07.338166", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009518, - 51.548386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.4, - "qmprice": 38.74, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/158974532", - "info": { - "identifier": 158974532, - "sqm_ocr": 68.4, - "price": 2650.0, - "price_per_sqm": 38.74269005847953, - "url": "https://www.rightmove.co.uk/properties/158974532", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18930/158974532/18930_33714574_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.772969", - "last_seen": "2025-06-01T22:05:42.177776", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149745, - 51.57011 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.6, - "qmprice": 25.84, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/158979956", - "info": { - "identifier": 158979956, - "sqm_ocr": 100.6, - "price": 2600.0, - "price_per_sqm": 25.844930417495032, - "url": "https://www.rightmove.co.uk/properties/158979956", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57275/158979956/57275_1315872_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.140709", - "last_seen": "2025-06-01T22:05:50.787720", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.341303, - 51.600037 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 30.43, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/158981768", - "info": { - "identifier": 158981768, - "sqm_ocr": 69.0, - "price": 2100.0, - "price_per_sqm": 30.434782608695652, - "url": "https://www.rightmove.co.uk/properties/158981768", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 76, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/158981768/65785_33714984_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.569979", - "last_seen": "2025-06-01T22:05:59.079141", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136635, - 51.444397 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158982335", - "info": { - "identifier": 158982335, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158982335", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/158982335/32793_27254_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.653018", - "last_seen": "2025-06-01T22:05:40.367675", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21944, - 51.55154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/158985776", - "info": { - "identifier": 158985776, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158985776", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Paul Simon Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45303/158985776/45303_P2640_IMG_26_0003_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.817087", - "last_seen": "2025-06-01T22:05:49.621262", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091177, - 51.59611 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.7, - "qmprice": 52.51, - "rooms": 2, - "total_price": 2820.0, - "url": "https://www.rightmove.co.uk/properties/158986280", - "info": { - "identifier": 158986280, - "sqm_ocr": 53.7, - "price": 2820.0, - "price_per_sqm": 52.513966480446925, - "url": "https://www.rightmove.co.uk/properties/158986280", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41337/158986280/41337_06744446_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.319750", - "last_seen": "2025-06-01T22:06:15.498743", - "price": 2820.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191, - 51.523 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/158986367", - "info": { - "identifier": 158986367, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158986367", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242966/158986367/242966_P141290_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.484627", - "last_seen": "2025-06-01T22:05:38.757791", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2473, - 51.59593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.23, - "qmprice": 59.83, - "rooms": 2, - "total_price": 3185.0, - "url": "https://www.rightmove.co.uk/properties/158990084", - "info": { - "identifier": 158990084, - "sqm_ocr": 53.23, - "price": 3185.0, - "price_per_sqm": 59.83467969190306, - "url": "https://www.rightmove.co.uk/properties/158990084", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32391/158990084/32391_33715491_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.488820", - "last_seen": "2025-06-01T22:05:42.758836", - "price": 3185 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124854, - 51.527992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.9, - "qmprice": 63.0, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/158991719", - "info": { - "identifier": 158991719, - "sqm_ocr": 61.9, - "price": 3900.0, - "price_per_sqm": 63.004846526655896, - "url": "https://www.rightmove.co.uk/properties/158991719", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/158991719/15942_1316791_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.115245", - "last_seen": "2025-06-01T22:05:57.609200", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185923, - 51.497047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.2, - "qmprice": 43.1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/158991746", - "info": { - "identifier": 158991746, - "sqm_ocr": 81.2, - "price": 3500.0, - "price_per_sqm": 43.103448275862064, - "url": "https://www.rightmove.co.uk/properties/158991746", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/158991746/55101_1315430_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.409100", - "last_seen": "2025-06-01T22:06:05.250653", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.045273, - 51.499943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/158991830", - "info": { - "identifier": 158991830, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158991830", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/158991830/26207_IUL250084_L_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.104085", - "last_seen": "2025-06-01T22:05:53.545247", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095265, - 51.528027 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.6, - "qmprice": 48.97, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/158991848", - "info": { - "identifier": 158991848, - "sqm_ocr": 77.6, - "price": 3800.0, - "price_per_sqm": 48.96907216494846, - "url": "https://www.rightmove.co.uk/properties/158991848", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/158991848/73120_1317186_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.114631", - "last_seen": "2025-06-01T22:05:53.522735", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105407, - 51.521477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/158993420", - "info": { - "identifier": 158993420, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158993420", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 74, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71137/158993420/71137_33715648_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.465650", - "last_seen": "2025-06-01T22:06:06.432904", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095147, - 51.485626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/158994935", - "info": { - "identifier": 158994935, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158994935", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158994935/96668_240676904032025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.855597", - "last_seen": "2025-06-01T22:06:02.694100", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.041071, - 51.523335 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.1, - "qmprice": 31.12, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/158995220", - "info": { - "identifier": 158995220, - "sqm_ocr": 73.1, - "price": 2275.0, - "price_per_sqm": 31.121751025991795, - "url": "https://www.rightmove.co.uk/properties/158995220", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/158995220/65124_CEL240112_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.318245", - "last_seen": "2025-06-01T22:05:44.917541", - "price": 2240.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.336562, - 51.506344 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158996111", - "info": { - "identifier": 158996111, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158996111", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Christopher Rawlinson & Co Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262271/158996111/262271_28784801_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.872471", - "last_seen": "2025-06-01T22:05:40.302908", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295646, - 51.583485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/158997971", - "info": { - "identifier": 158997971, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158997971", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/158997971/96668_240393802032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.466183", - "last_seen": "2025-06-01T22:05:51.550471", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.40248, - 51.55439 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/158998370", - "info": { - "identifier": 158998370, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/158998370", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53226/158998370/53226_STH250078_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.836958", - "last_seen": "2025-06-01T22:06:05.553579", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091102, - 51.439598 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159004133", - "info": { - "identifier": 159004133, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159004133", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co, Docklands & City", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47285/159004133/47285_DCL250216_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.884878", - "last_seen": "2025-06-01T22:06:05.174450", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042497, - 51.505157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.06, - "qmprice": 38.77, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159007412", - "info": { - "identifier": 159007412, - "sqm_ocr": 67.06, - "price": 2600.0, - "price_per_sqm": 38.77124962719952, - "url": "https://www.rightmove.co.uk/properties/159007412", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/159007412/48101_1316833_IMG_02_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.902908", - "last_seen": "2025-06-01T22:06:03.186999", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.049052, - 51.512905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.3, - "qmprice": 31.97, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/159009401", - "info": { - "identifier": 159009401, - "sqm_ocr": 74.3, - "price": 2375.0, - "price_per_sqm": 31.965006729475103, - "url": "https://www.rightmove.co.uk/properties/159009401", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250583/159009401/250583_P159217_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.278644", - "last_seen": "2025-06-01T22:05:51.859162", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28903, - 51.48828 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.8, - "qmprice": 35.27, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159011870", - "info": { - "identifier": 159011870, - "sqm_ocr": 63.8, - "price": 2250.0, - "price_per_sqm": 35.26645768025079, - "url": "https://www.rightmove.co.uk/properties/159011870", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/159011870/77192_NDV2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.515472", - "last_seen": "2025-06-01T22:05:49.790600", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08989, - 51.58646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.4, - "qmprice": 23.6, - "rooms": 3, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/159019145", - "info": { - "identifier": 159019145, - "sqm_ocr": 116.4, - "price": 2747.0, - "price_per_sqm": 23.599656357388316, - "url": "https://www.rightmove.co.uk/properties/159019145", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50343/159019145/50343_33716952_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.854237", - "last_seen": "2025-06-01T22:05:40.780846", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.239722, - 51.53349 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/159020882", - "info": { - "identifier": 159020882, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159020882", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14614/159020882/14614_BLA150442_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.735200", - "last_seen": "2025-06-01T22:05:46.890663", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0237, - 51.47748 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 35.48, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159021128", - "info": { - "identifier": 159021128, - "sqm_ocr": 62.0, - "price": 2200.0, - "price_per_sqm": 35.483870967741936, - "url": "https://www.rightmove.co.uk/properties/159021128", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "jdm", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250727/159021128/250727_LBL200073_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.501584", - "last_seen": "2025-06-01T22:05:47.116674", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.018051, - 51.474136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/159023870", - "info": { - "identifier": 159023870, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159023870", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78395/159023870/78395_33717314_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.175999", - "last_seen": "2025-06-01T22:06:10.249001", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068752, - 51.51461 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.5, - "qmprice": 28.86, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159024164", - "info": { - "identifier": 159024164, - "sqm_ocr": 74.5, - "price": 2150.0, - "price_per_sqm": 28.859060402684563, - "url": "https://www.rightmove.co.uk/properties/159024164", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118042/159024164/118042_33717335_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.294324", - "last_seen": "2025-06-01T22:05:46.844659", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.082662, - 51.494846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.9, - "qmprice": 22.14, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159024932", - "info": { - "identifier": 159024932, - "sqm_ocr": 103.9, - "price": 2300.0, - "price_per_sqm": 22.13666987487969, - "url": "https://www.rightmove.co.uk/properties/159024932", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Cameron Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17627/159024932/17627_33717389_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.491979", - "last_seen": "2025-06-01T22:05:51.674273", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.463151, - 51.506123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 65.57, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159025547", - "info": { - "identifier": 159025547, - "sqm_ocr": 61.0, - "price": 4000.0, - "price_per_sqm": 65.57377049180327, - "url": "https://www.rightmove.co.uk/properties/159025547", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/159025547/16023_1317327_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.510206", - "last_seen": "2025-06-01T22:05:58.328537", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159006, - 51.49511 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.4, - "qmprice": 43.66, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/159025685", - "info": { - "identifier": 159025685, - "sqm_ocr": 79.4, - "price": 3467.0, - "price_per_sqm": 43.66498740554156, - "url": "https://www.rightmove.co.uk/properties/159025685", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/159025685/250739_1315547_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.927538", - "last_seen": "2025-06-01T22:05:40.924727", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.259545, - 51.59223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/159027467", - "info": { - "identifier": 159027467, - "sqm_ocr": null, - "price": 3792.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159027467", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/159027467/17888_37999_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.155572", - "last_seen": "2025-06-01T22:05:42.733974", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1431, - 51.52752 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3532.0, - "url": "https://www.rightmove.co.uk/properties/159027581", - "info": { - "identifier": 159027581, - "sqm_ocr": null, - "price": 3532.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159027581", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/159027581/17888_33088_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.594119", - "last_seen": "2025-06-01T22:05:42.113548", - "price": 3531 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14344, - 51.52635 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.3, - "qmprice": 21.31, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/159029753", - "info": { - "identifier": 159029753, - "sqm_ocr": 110.3, - "price": 2350.0, - "price_per_sqm": 21.30553037171351, - "url": "https://www.rightmove.co.uk/properties/159029753", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30602/159029753/30602_06760499_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.979845", - "last_seen": "2025-06-01T22:05:50.697262", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.362, - 51.58 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159031565", - "info": { - "identifier": 159031565, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159031565", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Short Lets", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235637/159031565/235637_JDW-SL-0003352_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.196713", - "last_seen": "2025-06-01T22:05:49.056233", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21864, - 51.4783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.9, - "qmprice": 60.93, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/159035441", - "info": { - "identifier": 159035441, - "sqm_ocr": 56.9, - "price": 3467.0, - "price_per_sqm": 60.93145869947276, - "url": "https://www.rightmove.co.uk/properties/159035441", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/159035441/76585_1317358_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.901231", - "last_seen": "2025-06-01T22:05:54.973100", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13341, - 51.519035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.02, - "qmprice": 65.39, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/159035444", - "info": { - "identifier": 159035444, - "sqm_ocr": 53.02, - "price": 3467.0, - "price_per_sqm": 65.39041870992078, - "url": "https://www.rightmove.co.uk/properties/159035444", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Golden Eagle International", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49332/159035444/49332_575_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.744226", - "last_seen": "2025-06-01T22:06:14.304830", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159607, - 51.514 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159039974", - "info": { - "identifier": 159039974, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159039974", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Paramount", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62636/159039974/62636_PAR250072_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.547234", - "last_seen": "2025-06-01T22:05:49.827001", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08982, - 51.58647 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/159040883", - "info": { - "identifier": 159040883, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159040883", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191426/159040883/191426_2704757_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.443133", - "last_seen": "2025-06-01T22:05:38.892699", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183406, - 51.617424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 155.1, - "qmprice": 23.21, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/159041681", - "info": { - "identifier": 159041681, - "sqm_ocr": 155.1, - "price": 3600.0, - "price_per_sqm": 23.21083172147002, - "url": "https://www.rightmove.co.uk/properties/159041681", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/159041681/87812_1317156_IMG_09_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.176738", - "last_seen": "2025-06-01T22:05:39.807504", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203284, - 51.578285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.89, - "qmprice": 53.06, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159042005", - "info": { - "identifier": 159042005, - "sqm_ocr": 50.89, - "price": 2700.0, - "price_per_sqm": 53.0556101395166, - "url": "https://www.rightmove.co.uk/properties/159042005", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56712/159042005/56712_SHO140182_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.165559", - "last_seen": "2025-06-01T22:06:08.925578", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068303, - 51.523907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/159043898", - "info": { - "identifier": 159043898, - "sqm_ocr": null, - "price": 2349.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159043898", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 69, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7964/159043898/7964_33710447_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.325280", - "last_seen": "2025-06-01T22:05:52.524108", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312073, - 51.491913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3380.0, - "url": "https://www.rightmove.co.uk/properties/159044321", - "info": { - "identifier": 159044321, - "sqm_ocr": null, - "price": 3380.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159044321", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/159044321/78429_LON-577_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.712414", - "last_seen": "2025-06-01T22:05:57.448724", - "price": 3380.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16387, - 51.49511 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.1, - "qmprice": 34.39, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/159045374", - "info": { - "identifier": 159045374, - "sqm_ocr": 87.1, - "price": 2995.0, - "price_per_sqm": 34.385763490241104, - "url": "https://www.rightmove.co.uk/properties/159045374", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/159045374/55101_1317394_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.332992", - "last_seen": "2025-06-01T22:06:06.655524", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065803, - 51.49585 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.65, - "qmprice": 32.82, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159045671", - "info": { - "identifier": 159045671, - "sqm_ocr": 106.65, - "price": 3500.0, - "price_per_sqm": 32.81762775433661, - "url": "https://www.rightmove.co.uk/properties/159045671", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/159045671/43310_CSL250060_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.795757", - "last_seen": "2025-06-01T22:05:46.994991", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07, - 51.49 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.22, - "qmprice": 37.17, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/159047150", - "info": { - "identifier": 159047150, - "sqm_ocr": 102.22, - "price": 3800.0, - "price_per_sqm": 37.174721189591075, - "url": "https://www.rightmove.co.uk/properties/159047150", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108938/159047150/108938_1313039_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.974781", - "last_seen": "2025-06-01T22:05:47.403418", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089875, - 51.57091 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.06, - "qmprice": 60.61, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/159053882", - "info": { - "identifier": 159053882, - "sqm_ocr": 50.06, - "price": 3034.0, - "price_per_sqm": 60.607271274470634, - "url": "https://www.rightmove.co.uk/properties/159053882", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/159053882/15942_1311183_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.325910", - "last_seen": "2025-06-01T22:05:57.754810", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181862, - 51.485092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 44.56, - "qmprice": 68.09, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/159053891", - "info": { - "identifier": 159053891, - "sqm_ocr": 44.56, - "price": 3034.0, - "price_per_sqm": 68.08797127468581, - "url": "https://www.rightmove.co.uk/properties/159053891", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/159053891/15942_1312383_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.379729", - "last_seen": "2025-06-01T22:05:58.303701", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181862, - 51.485092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.96, - "qmprice": 50.03, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/159054389", - "info": { - "identifier": 159054389, - "sqm_ocr": 65.96, - "price": 3300.0, - "price_per_sqm": 50.03032140691329, - "url": "https://www.rightmove.co.uk/properties/159054389", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Teddy", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257156/159054389/257156_RX546424_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.720357", - "last_seen": "2025-06-01T22:06:12.382980", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148422, - 51.4723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159055976", - "info": { - "identifier": 159055976, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159055976", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94448/159055976/94448_EAL090255_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.921072", - "last_seen": "2025-06-01T22:05:57.349414", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3082, - 51.506283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159060743", - "info": { - "identifier": 159060743, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159060743", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Excel Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99425/159060743/99425_102708041945_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.049220", - "last_seen": "2025-06-01T22:05:41.107212", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21944, - 51.55154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.6, - "qmprice": 54.47, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/159062831", - "info": { - "identifier": 159062831, - "sqm_ocr": 71.6, - "price": 3900.0, - "price_per_sqm": 54.469273743016764, - "url": "https://www.rightmove.co.uk/properties/159062831", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/159062831/80281_1315848_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.654596", - "last_seen": "2025-06-01T22:06:07.697764", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009749, - 51.54816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.7, - "qmprice": 29.34, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159062849", - "info": { - "identifier": 159062849, - "sqm_ocr": 76.7, - "price": 2250.0, - "price_per_sqm": 29.335071707953063, - "url": "https://www.rightmove.co.uk/properties/159062849", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/159062849/130309_1313184_IMG_02_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.472451", - "last_seen": "2025-06-01T22:06:07.873821", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147649, - 51.346584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.8, - "qmprice": 38.77, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/159062879", - "info": { - "identifier": 159062879, - "sqm_ocr": 74.8, - "price": 2900.0, - "price_per_sqm": 38.77005347593583, - "url": "https://www.rightmove.co.uk/properties/159062879", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/159062879/48101_1317515_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.0328, - 51.508247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.8, - "qmprice": 40.11, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159062885", - "info": { - "identifier": 159062885, - "sqm_ocr": 74.8, - "price": 3000.0, - "price_per_sqm": 40.106951871657756, - "url": "https://www.rightmove.co.uk/properties/159062885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/159062885/48101_1317514_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.0328, - 51.508247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/159063752", - "info": { - "identifier": 159063752, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159063752", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 58, - "status": null, - "last_seen": 0, - "agency": "HYBR", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269531/159063752/269531_81372946-2d80-4b28-ac82-74997f2e5eb3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.396445", - "last_seen": "2025-06-01T22:06:08.326062", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064228, - 51.50722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159065399", - "info": { - "identifier": 159065399, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159065399", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47640/159065399/47640_33720025_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.200312", - "last_seen": "2025-06-01T22:05:47.690794", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072313, - 51.532475 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.36, - "qmprice": 26.0, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/159067172", - "info": { - "identifier": 159067172, - "sqm_ocr": 88.36, - "price": 2297.0, - "price_per_sqm": 25.995925758261656, - "url": "https://www.rightmove.co.uk/properties/159067172", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/159067172/163859_2680076_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.297878", - "last_seen": "2025-06-01T22:06:02.883435", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07365, - 51.50689 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.0, - "qmprice": 40.7, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159068399", - "info": { - "identifier": 159068399, - "sqm_ocr": 86.0, - "price": 3500.0, - "price_per_sqm": 40.69767441860465, - "url": "https://www.rightmove.co.uk/properties/159068399", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Daniels", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167654/159068399/167654_33720241_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.045502", - "last_seen": "2025-06-01T22:05:57.647520", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213418, - 51.527245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.1, - "qmprice": 34.15, - "rooms": 3, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/159070277", - "info": { - "identifier": 159070277, - "sqm_ocr": 73.1, - "price": 2496.0, - "price_per_sqm": 34.14500683994528, - "url": "https://www.rightmove.co.uk/properties/159070277", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218729/159070277/218729_32148124_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.058921", - "last_seen": "2025-06-01T22:05:42.659871", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150225, - 51.553738 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/159070760", - "info": { - "identifier": 159070760, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159070760", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159070760/96668_169805705052023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.767535", - "last_seen": "2025-06-01T22:05:58.768258", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.263271, - 51.390682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/159076190", - "info": { - "identifier": 159076190, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159076190", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97525/159076190/97525_NOL250026_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.694547", - "last_seen": "2025-06-01T22:05:48.424920", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221345, - 51.512074 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.1, - "qmprice": 38.91, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/159079154", - "info": { - "identifier": 159079154, - "sqm_ocr": 68.1, - "price": 2650.0, - "price_per_sqm": 38.91336270190896, - "url": "https://www.rightmove.co.uk/properties/159079154", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107632/159079154/107632_33399925_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.604998", - "last_seen": "2025-06-01T22:06:04.265524", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.298656, - 51.455723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159079238", - "info": { - "identifier": 159079238, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159079238", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/277k/276209/159079238/276209_805_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.420368", - "last_seen": "2025-06-01T22:05:51.267371", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.444985, - 51.530006 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.67, - "qmprice": 44.54, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/159080396", - "info": { - "identifier": 159080396, - "sqm_ocr": 65.67, - "price": 2925.0, - "price_per_sqm": 44.540886249428965, - "url": "https://www.rightmove.co.uk/properties/159080396", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Foundation Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/189k/188543/159080396/188543_32511145_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:20:00.016272", - "last_seen": "2025-06-01T22:06:11.475314", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066989, - 51.51314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159087782", - "info": { - "identifier": 159087782, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159087782", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "Frestons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259079/159087782/259079_RL5972_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.057771", - "last_seen": "2025-06-01T22:05:41.138592", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.248724, - 51.5574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.62, - "qmprice": 24.83, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159087998", - "info": { - "identifier": 159087998, - "sqm_ocr": 92.62, - "price": 2300.0, - "price_per_sqm": 24.83264953573742, - "url": "https://www.rightmove.co.uk/properties/159087998", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Pinnacle Housing Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212189/159087998/212189_2622_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.944608", - "last_seen": "2025-06-01T22:06:02.492292", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03831, - 51.53179 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.8, - "qmprice": 24.83, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159088136", - "info": { - "identifier": 159088136, - "sqm_ocr": 120.8, - "price": 3000.0, - "price_per_sqm": 24.834437086092716, - "url": "https://www.rightmove.co.uk/properties/159088136", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35975/159088136/35975_06760535_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.442933", - "last_seen": "2025-06-01T22:05:51.279622", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.417, - 51.613 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.2, - "qmprice": 61.35, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159091151", - "info": { - "identifier": 159091151, - "sqm_ocr": 65.2, - "price": 4000.0, - "price_per_sqm": 61.349693251533736, - "url": "https://www.rightmove.co.uk/properties/159091151", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/159091151/253853_1316853_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.979958", - "last_seen": "2025-06-01T22:06:05.203169", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098094, - 51.489777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.2, - "qmprice": 41.02, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159091157", - "info": { - "identifier": 159091157, - "sqm_ocr": 51.2, - "price": 2100.0, - "price_per_sqm": 41.015625, - "url": "https://www.rightmove.co.uk/properties/159091157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/159091157/253853_1316539_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.965738", - "last_seen": "2025-06-01T22:06:05.201368", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088104, - 51.487206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.2, - "qmprice": 35.28, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159091166", - "info": { - "identifier": 159091166, - "sqm_ocr": 65.2, - "price": 2300.0, - "price_per_sqm": 35.2760736196319, - "url": "https://www.rightmove.co.uk/properties/159091166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/159091166/253853_1316852_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.946464", - "last_seen": "2025-06-01T22:06:05.190829", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098094, - 51.489777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.7, - "qmprice": 29.92, - "rooms": 2, - "total_price": 2115.0, - "url": "https://www.rightmove.co.uk/properties/159091382", - "info": { - "identifier": 159091382, - "sqm_ocr": 70.7, - "price": 2115.0, - "price_per_sqm": 29.915134370579914, - "url": "https://www.rightmove.co.uk/properties/159091382", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82857/159091382/82857_1316949_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.019318, - 51.520744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2890.0, - "url": "https://www.rightmove.co.uk/properties/159099608", - "info": { - "identifier": 159099608, - "sqm_ocr": null, - "price": 2890.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159099608", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 87, - "status": null, - "last_seen": 0, - "agency": "Urban Bubble", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263303/159099608/263303_802PCOURT_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.105859", - "last_seen": "2025-06-01T22:06:12.559745", - "price": 2890.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18985, - 51.46177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/159100331", - "info": { - "identifier": 159100331, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159100331", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 73, - "status": null, - "last_seen": 0, - "agency": "Hawksgrove Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278102/159100331/278102_33721938_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.015535", - "last_seen": "2025-06-01T22:05:45.749859", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098121, - 51.660442 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159103199", - "info": { - "identifier": 159103199, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159103199", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": 0.0, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Davis & Gibbs Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213929/159103199/213929_28794158_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.690250", - "last_seen": "2025-06-01T22:06:00.128915", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112958, - 51.480175 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.8, - "qmprice": 30.52, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159103352", - "info": { - "identifier": 159103352, - "sqm_ocr": 68.8, - "price": 2100.0, - "price_per_sqm": 30.52325581395349, - "url": "https://www.rightmove.co.uk/properties/159103352", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Mi Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/154k/153011/159103352/153011_102099002683_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.357751", - "last_seen": "2025-06-01T22:05:38.709780", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17899, - 51.61192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159108305", - "info": { - "identifier": 159108305, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159108305", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hunter & Hunter", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77085/159108305/77085_RL0038_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.203751", - "last_seen": "2025-06-01T22:05:50.840334", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.335923, - 51.566612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 50.0, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/159116633", - "info": { - "identifier": 159116633, - "sqm_ocr": 63.0, - "price": 3150.0, - "price_per_sqm": 50.0, - "url": "https://www.rightmove.co.uk/properties/159116633", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/159116633/15951_1316314_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.167953", - "last_seen": "2025-06-01T22:05:52.235644", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.253444, - 51.486317 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.0, - "qmprice": 26.8, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159117182", - "info": { - "identifier": 159117182, - "sqm_ocr": 97.0, - "price": 2600.0, - "price_per_sqm": 26.804123711340207, - "url": "https://www.rightmove.co.uk/properties/159117182", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Chissick Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/224k/223832/159117182/223832_CK3698_IMG_04_0001_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.141938", - "last_seen": "2025-06-01T22:06:02.483788", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01811, - 51.50867 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.1, - "qmprice": 31.9, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/159117647", - "info": { - "identifier": 159117647, - "sqm_ocr": 75.1, - "price": 2396.0, - "price_per_sqm": 31.90412782956059, - "url": "https://www.rightmove.co.uk/properties/159117647", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/159117647/84833_33699860_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.053589", - "last_seen": "2025-06-01T22:05:58.293126", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212506, - 51.50072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/159118964", - "info": { - "identifier": 159118964, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159118964", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13325/159118964/13325_CHL240020_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.233188", - "last_seen": "2025-06-01T22:05:52.361620", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.253768, - 51.489616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.5, - "qmprice": 54.58, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/159122309", - "info": { - "identifier": 159122309, - "sqm_ocr": 67.5, - "price": 3684.0, - "price_per_sqm": 54.577777777777776, - "url": "https://www.rightmove.co.uk/properties/159122309", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/159122309/15942_1317740_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.038566", - "last_seen": "2025-06-01T22:05:57.605641", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180174, - 51.49357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.4, - "qmprice": 53.01, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/159134126", - "info": { - "identifier": 159134126, - "sqm_ocr": 65.4, - "price": 3467.0, - "price_per_sqm": 53.01223241590213, - "url": "https://www.rightmove.co.uk/properties/159134126", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/159134126/76585_1316149_IMG_01_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.480093", - "last_seen": "2025-06-01T22:06:14.923884", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164623, - 51.526676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.4, - "qmprice": 43.89, - "rooms": 3, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/159134294", - "info": { - "identifier": 159134294, - "sqm_ocr": 77.4, - "price": 3397.0, - "price_per_sqm": 43.888888888888886, - "url": "https://www.rightmove.co.uk/properties/159134294", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3355/159134294/3355_33723604_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.762941", - "last_seen": "2025-06-01T22:05:53.497007", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110108, - 51.567703 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.39, - "qmprice": 37.68, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159134528", - "info": { - "identifier": 159134528, - "sqm_ocr": 58.39, - "price": 2200.0, - "price_per_sqm": 37.67768453502312, - "url": "https://www.rightmove.co.uk/properties/159134528", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137360/159134528/137360_1315565_IMG_01_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.350579", - "last_seen": "2025-06-01T22:05:41.689013", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042559, - 51.399143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 154.0, - "qmprice": 24.68, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/159135125", - "info": { - "identifier": 159135125, - "sqm_ocr": 154.0, - "price": 3800.0, - "price_per_sqm": 24.675324675324674, - "url": "https://www.rightmove.co.uk/properties/159135125", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Roundtree Real Estate", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46965/159135125/46965_56979_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.658749", - "last_seen": "2025-06-01T22:05:39.139550", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.230392, - 51.583443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.3, - "qmprice": 34.11, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159136610", - "info": { - "identifier": 159136610, - "sqm_ocr": 73.3, - "price": 2500.0, - "price_per_sqm": 34.106412005457024, - "url": "https://www.rightmove.co.uk/properties/159136610", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Warwick Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/3k/2979/159136610/2979_29663125_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.168853", - "last_seen": "2025-06-01T22:06:15.916741", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211262, - 51.531914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.7, - "qmprice": 30.13, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159136727", - "info": { - "identifier": 159136727, - "sqm_ocr": 69.7, - "price": 2100.0, - "price_per_sqm": 30.12912482065997, - "url": "https://www.rightmove.co.uk/properties/159136727", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 68, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84869/159136727/84869_33723741_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.739583", - "last_seen": "2025-06-01T22:05:58.747162", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307342, - 51.40853 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.7, - "qmprice": 30.13, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159136838", - "info": { - "identifier": 159136838, - "sqm_ocr": 69.7, - "price": 2100.0, - "price_per_sqm": 30.12912482065997, - "url": "https://www.rightmove.co.uk/properties/159136838", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84800/159136838/84800_33723752_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.647380", - "last_seen": "2025-06-01T22:05:58.560725", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307342, - 51.40853 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159138377", - "info": { - "identifier": 159138377, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159138377", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9170/159138377/9170_P387882_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.628824", - "last_seen": "2025-06-01T22:05:58.685023", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29515, - 51.40519 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.26, - "qmprice": 25.19, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159138632", - "info": { - "identifier": 159138632, - "sqm_ocr": 95.26, - "price": 2400.0, - "price_per_sqm": 25.19420533277346, - "url": "https://www.rightmove.co.uk/properties/159138632", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/159138632/250739_1317793_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.939284", - "last_seen": "2025-06-01T22:05:50.296525", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303084, - 51.615215 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159139535", - "info": { - "identifier": 159139535, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159139535", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46992/159139535/46992_33723978_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.744343", - "last_seen": "2025-06-01T22:05:45.151473", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.370911, - 51.52453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159144257", - "info": { - "identifier": 159144257, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159144257", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 72, - "status": null, - "last_seen": 0, - "agency": "Invest & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219485/159144257/219485_103426000349_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.963144", - "last_seen": "2025-06-01T22:05:56.973823", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26166, - 51.52223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159144527", - "info": { - "identifier": 159144527, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159144527", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Zuker Property Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147848/159144527/147848_LFM_1005_Sky_View_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.230987", - "last_seen": "2025-06-01T22:06:07.570846", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01323, - 51.53042 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159145160", - "info": { - "identifier": 159145160, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159145160", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/159145160/87187_39940_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.220479", - "last_seen": "2025-06-01T22:05:41.456229", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276833, - 51.561653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.1, - "qmprice": 27.2, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159145883", - "info": { - "identifier": 159145883, - "sqm_ocr": 101.1, - "price": 2750.0, - "price_per_sqm": 27.200791295746786, - "url": "https://www.rightmove.co.uk/properties/159145883", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9170/159145883/9170_P100021_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.592383", - "last_seen": "2025-06-01T22:05:58.489601", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307, - 51.41507 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159147011", - "info": { - "identifier": 159147011, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159147011", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 57, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11495/159147011/11495_0435_FJL043502231_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.536554", - "last_seen": "2025-06-01T22:06:11.552011", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05847, - 51.509186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/159147509", - "info": { - "identifier": 159147509, - "sqm_ocr": null, - "price": 2925.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159147509", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 86, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77695/159147509/77695_33724534_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.510054", - "last_seen": "2025-06-01T22:06:14.989473", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14422, - 51.48932 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.2, - "qmprice": 32.58, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/159147692", - "info": { - "identifier": 159147692, - "sqm_ocr": 75.2, - "price": 2450.0, - "price_per_sqm": 32.57978723404255, - "url": "https://www.rightmove.co.uk/properties/159147692", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "SeOUL Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73282/159147692/73282_10304_SR4U_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.402438", - "last_seen": "2025-06-01T22:06:01.349106", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202496, - 51.420746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 136.3, - "qmprice": 24.92, - "rooms": 4, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/159151385", - "info": { - "identifier": 159151385, - "sqm_ocr": 136.3, - "price": 3397.0, - "price_per_sqm": 24.922964049889945, - "url": "https://www.rightmove.co.uk/properties/159151385", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/159151385/84791_33724200_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.035136", - "last_seen": "2025-06-01T22:05:44.076081", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.294669, - 51.52348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 136.3, - "qmprice": 24.92, - "rooms": 4, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/159151664", - "info": { - "identifier": 159151664, - "sqm_ocr": 136.3, - "price": 3397.0, - "price_per_sqm": 24.922964049889945, - "url": "https://www.rightmove.co.uk/properties/159151664", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7963/159151664/7963_33724442_IMG_10_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.362623", - "last_seen": "2025-06-01T22:05:44.592142", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.294669, - 51.52348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.5, - "qmprice": 31.91, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/159159578", - "info": { - "identifier": 159159578, - "sqm_ocr": 117.5, - "price": 3750.0, - "price_per_sqm": 31.914893617021278, - "url": "https://www.rightmove.co.uk/properties/159159578", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/159159578/52887_33725323_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.329337", - "last_seen": "2025-06-01T22:06:01.081655", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215328, - 51.42212 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.81, - "qmprice": 64.04, - "rooms": 3, - "total_price": 3510.0, - "url": "https://www.rightmove.co.uk/properties/159159812", - "info": { - "identifier": 159159812, - "sqm_ocr": 54.81, - "price": 3510.0, - "price_per_sqm": 64.03940886699507, - "url": "https://www.rightmove.co.uk/properties/159159812", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 51, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50969/159159812/50969_P0189M3609_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.435828", - "last_seen": "2025-06-01T22:06:14.838929", - "price": 3510 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13066, - 51.50745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.73, - "qmprice": 68.34, - "rooms": 3, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/159159818", - "info": { - "identifier": 159159818, - "sqm_ocr": 50.73, - "price": 3467.0, - "price_per_sqm": 68.34220382416716, - "url": "https://www.rightmove.co.uk/properties/159159818", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 51, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50969/159159818/50969_P4997J1512_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.432700", - "last_seen": "2025-06-01T22:06:14.835492", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13066, - 51.50745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.42, - "qmprice": 71.02, - "rooms": 3, - "total_price": 3510.0, - "url": "https://www.rightmove.co.uk/properties/159159935", - "info": { - "identifier": 159159935, - "sqm_ocr": 49.42, - "price": 3510.0, - "price_per_sqm": 71.02387697288547, - "url": "https://www.rightmove.co.uk/properties/159159935", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 51, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50969/159159935/50969_P5074M0309_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.761372", - "last_seen": "2025-06-01T22:06:15.291864", - "price": 3510 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13066, - 51.50745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159163361", - "info": { - "identifier": 159163361, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159163361", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159163361/96668_238987617022025_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.432859", - "last_seen": "2025-06-01T22:06:13.675387", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151729, - 51.476234 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.96, - "qmprice": 47.21, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/159163601", - "info": { - "identifier": 159163601, - "sqm_ocr": 70.96, - "price": 3350.0, - "price_per_sqm": 47.20969560315671, - "url": "https://www.rightmove.co.uk/properties/159163601", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117466/159163601/117466_BBL250012_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.044719", - "last_seen": "2025-06-01T22:05:59.200150", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128157, - 51.480762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2175.0, - "url": "https://www.rightmove.co.uk/properties/159170882", - "info": { - "identifier": 159170882, - "sqm_ocr": null, - "price": 2175.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159170882", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159170882/96668_239623623022025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.588272", - "last_seen": "2025-06-01T22:05:49.842234", - "price": 2175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128005, - 51.57882 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.0, - "qmprice": 33.02, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159172505", - "info": { - "identifier": 159172505, - "sqm_ocr": 106.0, - "price": 3500.0, - "price_per_sqm": 33.0188679245283, - "url": "https://www.rightmove.co.uk/properties/159172505", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 85, - "status": null, - "last_seen": 0, - "agency": "Fullers Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56520/159172505/56520_cecilrdtolet_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.959732", - "last_seen": "2025-06-01T22:05:45.494614", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08728, - 51.65188 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/159177452", - "info": { - "identifier": 159177452, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159177452", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Bryants Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21740/159177452/21740_3442_BRYT_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.497553", - "last_seen": "2025-06-01T22:06:03.213431", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.038879, - 51.5456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.8, - "qmprice": 30.94, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159177518", - "info": { - "identifier": 159177518, - "sqm_ocr": 80.8, - "price": 2500.0, - "price_per_sqm": 30.940594059405942, - "url": "https://www.rightmove.co.uk/properties/159177518", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/159177518/15975_1317889_IMG_01_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.433350", - "last_seen": "2025-06-01T22:06:01.426086", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224735, - 51.40829 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3207.0, - "url": "https://www.rightmove.co.uk/properties/159177647", - "info": { - "identifier": 159177647, - "sqm_ocr": null, - "price": 3207.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159177647", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "RR Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/105k/104080/159177647/104080_13-132NAY_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.407600", - "last_seen": "2025-06-01T22:05:57.675608", - "price": 3206 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18736, - 51.49485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159189533", - "info": { - "identifier": 159189533, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159189533", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159189533/96668_241179409032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.421210", - "last_seen": "2025-06-01T22:05:40.184906", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295487, - 51.55381 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159193787", - "info": { - "identifier": 159193787, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159193787", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hub Of Homes", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281309/159193787/281309_24286_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.851122", - "last_seen": "2025-06-01T22:06:07.277496", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.008004, - 51.539158 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159196757", - "info": { - "identifier": 159196757, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159196757", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48456/159196757/48456_YLM080086_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.396425", - "last_seen": "2025-06-01T22:06:04.515426", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305654, - 51.452923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159198041", - "info": { - "identifier": 159198041, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159198041", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159198041/96668_241202109032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.120297", - "last_seen": "2025-06-01T22:05:54.911619", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.064881, - 51.49098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159198077", - "info": { - "identifier": 159198077, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159198077", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159198077/96668_237829206022025_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.409464", - "last_seen": "2025-06-01T22:06:00.679870", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034256, - 51.44882 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.95, - "qmprice": 39.07, - "rooms": 2, - "total_price": 2225.0, - "url": "https://www.rightmove.co.uk/properties/159198821", - "info": { - "identifier": 159198821, - "sqm_ocr": 56.95, - "price": 2225.0, - "price_per_sqm": 39.06935908691835, - "url": "https://www.rightmove.co.uk/properties/159198821", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69292/159198821/69292_P214381_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.987412", - "last_seen": "2025-06-01T22:05:54.032335", - "price": 2225.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12473, - 51.56059 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2401.0, - "url": "https://www.rightmove.co.uk/properties/159199283", - "info": { - "identifier": 159199283, - "sqm_ocr": null, - "price": 2401.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159199283", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Lessel", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191471/159199283/191471_33705857_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.954115", - "last_seen": "2025-06-01T22:06:02.254586", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.022215, - 51.50833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.8, - "qmprice": 50.88, - "rooms": 3, - "total_price": 3857.0, - "url": "https://www.rightmove.co.uk/properties/159201473", - "info": { - "identifier": 159201473, - "sqm_ocr": 75.8, - "price": 3857.0, - "price_per_sqm": 50.88390501319262, - "url": "https://www.rightmove.co.uk/properties/159201473", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/159201473/16023_1317898_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.361034", - "last_seen": "2025-06-01T22:05:58.275327", - "price": 3857.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163977, - 51.492905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2938.0, - "url": "https://www.rightmove.co.uk/properties/159202094", - "info": { - "identifier": 159202094, - "sqm_ocr": null, - "price": 2938.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159202094", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/159202094/146147_PR252939_IMG_00_0012_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.522449", - "last_seen": "2025-06-01T22:05:46.684971", - "price": 2938 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.029428, - 51.458492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.4, - "qmprice": 33.4, - "rooms": 2, - "total_price": 2752.0, - "url": "https://www.rightmove.co.uk/properties/159203123", - "info": { - "identifier": 159203123, - "sqm_ocr": 82.4, - "price": 2752.0, - "price_per_sqm": 33.398058252427184, - "url": "https://www.rightmove.co.uk/properties/159203123", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/29k/28238/159203123/28238_CEI243085_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.705416", - "last_seen": "2025-06-01T22:06:07.538794", - "price": 2751 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.001464, - 51.538265 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.6, - "qmprice": 29.21, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159206261", - "info": { - "identifier": 159206261, - "sqm_ocr": 73.6, - "price": 2150.0, - "price_per_sqm": 29.211956521739133, - "url": "https://www.rightmove.co.uk/properties/159206261", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/159206261/87815_1317915_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.928323", - "last_seen": "2025-06-01T22:05:55.608812", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126307, - 51.63444 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 37.68, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159208241", - "info": { - "identifier": 159208241, - "sqm_ocr": 69.0, - "price": 2600.0, - "price_per_sqm": 37.68115942028985, - "url": "https://www.rightmove.co.uk/properties/159208241", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50719/159208241/50719_33727549_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.252771", - "last_seen": "2025-06-01T22:05:49.505604", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228003, - 51.50473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.53, - "qmprice": 43.31, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/159209975", - "info": { - "identifier": 159209975, - "sqm_ocr": 59.53, - "price": 2578.0, - "price_per_sqm": 43.30589618679657, - "url": "https://www.rightmove.co.uk/properties/159209975", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Laurence Leigh Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80035/159209975/80035_LLR180044_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.994227", - "last_seen": "2025-06-01T22:06:15.808165", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174903, - 51.52795 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159210062", - "info": { - "identifier": 159210062, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159210062", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Pinnacle Housing Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212189/159210062/212189_2630_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.327529", - "last_seen": "2025-06-01T22:06:09.975729", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03919, - 51.51674 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/159211940", - "info": { - "identifier": 159211940, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159211940", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Majestic Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284723/159211940/284723_14512_000092_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.527645", - "last_seen": "2025-06-01T22:05:44.944668", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.342321, - 51.553375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159212018", - "info": { - "identifier": 159212018, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159212018", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11309/159212018/11309_000645726_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.05272, - 51.53414 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.01, - "qmprice": 45.01, - "rooms": 2, - "total_price": 3601.0, - "url": "https://www.rightmove.co.uk/properties/159212255", - "info": { - "identifier": 159212255, - "sqm_ocr": 80.01, - "price": 3601.0, - "price_per_sqm": 45.00687414073241, - "url": "https://www.rightmove.co.uk/properties/159212255", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32391/159212255/32391_33727851_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.595738", - "last_seen": "2025-06-01T22:05:57.305451", - "price": 3601 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137703, - 51.525032 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.3, - "qmprice": 47.55, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/159212888", - "info": { - "identifier": 159212888, - "sqm_ocr": 67.3, - "price": 3200.0, - "price_per_sqm": 47.548291233283805, - "url": "https://www.rightmove.co.uk/properties/159212888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99755/159212888/99755_2589642_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.537386", - "last_seen": "2025-06-01T22:06:16.017816", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161806, - 51.525097 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.7, - "qmprice": 39.46, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159213317", - "info": { - "identifier": 159213317, - "sqm_ocr": 88.7, - "price": 3500.0, - "price_per_sqm": 39.45885005636978, - "url": "https://www.rightmove.co.uk/properties/159213317", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "Mi Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/154k/153011/159213317/153011_102099002682_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.334872", - "last_seen": "2025-06-01T22:05:38.574937", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17899, - 51.61192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159215339", - "info": { - "identifier": 159215339, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159215339", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "RENNIE & CO LIMITED", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83109/159215339/83109_102887004873_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.940657", - "last_seen": "2025-06-01T22:05:41.267429", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27168, - 51.56977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 35.96, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/159218615", - "info": { - "identifier": 159218615, - "sqm_ocr": 57.0, - "price": 2050.0, - "price_per_sqm": 35.96491228070175, - "url": "https://www.rightmove.co.uk/properties/159218615", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/159218615/66771_1317913_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.201347", - "last_seen": "2025-06-01T22:05:59.142357", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114136, - 51.47762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159225353", - "info": { - "identifier": 159225353, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159225353", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Citidwell Limited.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90728/159225353/90728_DOIDtwuw6652_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.489993", - "last_seen": "2025-06-01T22:05:40.971975", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24473, - 51.55372 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2260.0, - "url": "https://www.rightmove.co.uk/properties/159229187", - "info": { - "identifier": 159229187, - "sqm_ocr": null, - "price": 2260.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159229187", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159229187/96668_239150018022025_IMG_41_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.939829", - "last_seen": "2025-06-01T22:06:02.360427", - "price": 2260.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.020394, - 51.51398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 155.3, - "qmprice": 22.54, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159229229", - "info": { - "identifier": 159229229, - "sqm_ocr": 155.3, - "price": 3500.0, - "price_per_sqm": 22.537025112685125, - "url": "https://www.rightmove.co.uk/properties/159229229", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Petermans", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45479/159229229/45479_EDG190373_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.180412", - "last_seen": "2025-06-01T22:05:38.373226", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267892, - 51.61712 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.17, - "qmprice": 35.21, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159229400", - "info": { - "identifier": 159229400, - "sqm_ocr": 68.17, - "price": 2400.0, - "price_per_sqm": 35.20610239108112, - "url": "https://www.rightmove.co.uk/properties/159229400", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62634/159229400/62634_33729045_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.559964", - "last_seen": "2025-06-01T22:06:01.768146", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184433, - 51.405785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2465.0, - "url": "https://www.rightmove.co.uk/properties/159229925", - "info": { - "identifier": 159229925, - "sqm_ocr": null, - "price": 2465.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159229925", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 75, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/159229925/80340_a1G4J000002607cUAA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.353746", - "last_seen": "2025-06-01T22:05:52.220547", - "price": 2465.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28455, - 51.48849 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2340.0, - "url": "https://www.rightmove.co.uk/properties/159230822", - "info": { - "identifier": 159230822, - "sqm_ocr": null, - "price": 2340.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159230822", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/159230822/17888_39238_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.610021", - "last_seen": "2025-06-01T22:05:49.958233", - "price": 2340 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10699, - 51.59537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/159231314", - "info": { - "identifier": 159231314, - "sqm_ocr": null, - "price": 3650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159231314", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Richard James", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10982/159231314/10982_33729147_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.476696", - "last_seen": "2025-06-01T22:05:38.615632", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223631, - 51.611233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.2, - "qmprice": 44.43, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/159234353", - "info": { - "identifier": 159234353, - "sqm_ocr": 51.2, - "price": 2275.0, - "price_per_sqm": 44.43359375, - "url": "https://www.rightmove.co.uk/properties/159234353", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/159234353/16023_1318031_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.515617", - "last_seen": "2025-06-01T22:05:58.458797", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163977, - 51.492905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.0, - "qmprice": 32.02, - "rooms": 2, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/159236345", - "info": { - "identifier": 159236345, - "sqm_ocr": 103.0, - "price": 3298.0, - "price_per_sqm": 32.019417475728154, - "url": "https://www.rightmove.co.uk/properties/159236345", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 62, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53537/159236345/53537_CRR250023_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.399624", - "last_seen": "2025-06-01T22:06:14.522675", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128694, - 51.494385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.92, - "qmprice": 25.53, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159236540", - "info": { - "identifier": 159236540, - "sqm_ocr": 97.92, - "price": 2500.0, - "price_per_sqm": 25.531045751633986, - "url": "https://www.rightmove.co.uk/properties/159236540", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249770/159236540/249770_33729461_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.690315", - "last_seen": "2025-06-01T22:05:39.711818", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188342, - 51.611485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.5, - "qmprice": 49.03, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/159236726", - "info": { - "identifier": 159236726, - "sqm_ocr": 77.5, - "price": 3800.0, - "price_per_sqm": 49.03225806451613, - "url": "https://www.rightmove.co.uk/properties/159236726", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 74, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/159236726/15948_1316321_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.187959, - 51.468594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159237854", - "info": { - "identifier": 159237854, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159237854", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159237854/96668_181333327082023_IMG_56_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.578668", - "last_seen": "2025-06-01T22:05:44.253038", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265392, - 51.513294 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159238265", - "info": { - "identifier": 159238265, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159238265", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Douglas Pryce", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227717/159238265/227717_33729742_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.619602", - "last_seen": "2025-06-01T22:06:09.197062", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.030689, - 51.509315 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.2, - "qmprice": 47.71, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/159240614", - "info": { - "identifier": 159240614, - "sqm_ocr": 77.2, - "price": 3683.0, - "price_per_sqm": 47.70725388601036, - "url": "https://www.rightmove.co.uk/properties/159240614", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54732/159240614/54732_LHL220280_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.483618", - "last_seen": "2025-06-01T22:06:15.338511", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171545, - 51.524086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.0, - "qmprice": 29.89, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/159248537", - "info": { - "identifier": 159248537, - "sqm_ocr": 117.0, - "price": 3497.0, - "price_per_sqm": 29.88888888888889, - "url": "https://www.rightmove.co.uk/properties/159248537", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77695/159248537/77695_33729415_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.986145", - "last_seen": "2025-06-01T22:06:15.810165", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135725, - 51.489388 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.0, - "qmprice": 62.5, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159250397", - "info": { - "identifier": 159250397, - "sqm_ocr": 48.0, - "price": 3000.0, - "price_per_sqm": 62.5, - "url": "https://www.rightmove.co.uk/properties/159250397", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206645/159250397/206645_33730271_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.189367", - "last_seen": "2025-06-01T22:05:50.764510", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.332345, - 51.580925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.4, - "qmprice": 47.94, - "rooms": 2, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/159251927", - "info": { - "identifier": 159251927, - "sqm_ocr": 82.4, - "price": 3950.0, - "price_per_sqm": 47.93689320388349, - "url": "https://www.rightmove.co.uk/properties/159251927", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43814/159251927/43814_P296888_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.0668, - 51.50812 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.9, - "qmprice": 54.63, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/159256421", - "info": { - "identifier": 159256421, - "sqm_ocr": 54.9, - "price": 2999.0, - "price_per_sqm": 54.626593806921676, - "url": "https://www.rightmove.co.uk/properties/159256421", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50713/159256421/50713_33730679_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.008904", - "last_seen": "2025-06-01T22:05:57.453361", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205036, - 51.509617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159257201", - "info": { - "identifier": 159257201, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159257201", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 82, - "status": null, - "last_seen": 0, - "agency": "Birchills", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115933/159257201/115933_98cd4c33-c92c-4ad0-bdbe-ec03e8007e9e_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.839636", - "last_seen": "2025-06-01T22:06:03.882062", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.035659, - 51.606285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.6, - "qmprice": 27.78, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/159257582", - "info": { - "identifier": 159257582, - "sqm_ocr": 84.6, - "price": 2350.0, - "price_per_sqm": 27.77777777777778, - "url": "https://www.rightmove.co.uk/properties/159257582", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118051/159257582/118051_33730760_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.021117", - "last_seen": "2025-06-01T22:06:05.031659", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065406, - 51.48518 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.02, - "qmprice": 29.82, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/159257588", - "info": { - "identifier": 159257588, - "sqm_ocr": 77.02, - "price": 2297.0, - "price_per_sqm": 29.823422487665542, - "url": "https://www.rightmove.co.uk/properties/159257588", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/159257588/191255_33730762_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.096146", - "last_seen": "2025-06-01T22:06:08.159310", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.040069, - 51.51014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159258275", - "info": { - "identifier": 159258275, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159258275", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "PropertyLoop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222287/159258275/222287_mNMb6mCF_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.772711", - "last_seen": "2025-06-01T22:06:03.963062", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06752, - 51.55915 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/159258941", - "info": { - "identifier": 159258941, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159258941", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 56, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/159258941/176261_102708033190_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.846273", - "last_seen": "2025-06-01T22:05:49.906540", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11203, - 51.59563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.2, - "qmprice": 29.68, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/159258947", - "info": { - "identifier": 159258947, - "sqm_ocr": 111.2, - "price": 3300.0, - "price_per_sqm": 29.676258992805753, - "url": "https://www.rightmove.co.uk/properties/159258947", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/159258947/71419_1318131_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.758826", - "last_seen": "2025-06-01T22:05:59.699876", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121774, - 51.443466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159259628", - "info": { - "identifier": 159259628, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159259628", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Mile", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53010/159259628/53010_101541007883_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.830713", - "last_seen": "2025-06-01T22:05:40.998270", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23827, - 51.53456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 36.44, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159260969", - "info": { - "identifier": 159260969, - "sqm_ocr": 59.0, - "price": 2150.0, - "price_per_sqm": 36.440677966101696, - "url": "https://www.rightmove.co.uk/properties/159260969", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Century 21 Royale", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/180k/179552/159260969/179552_R209727_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.846728", - "last_seen": "2025-06-01T22:05:58.717999", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.280244, - 51.41284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.06, - "qmprice": 52.82, - "rooms": 2, - "total_price": 3965.0, - "url": "https://www.rightmove.co.uk/properties/159261077", - "info": { - "identifier": 159261077, - "sqm_ocr": 75.06, - "price": 3965.0, - "price_per_sqm": 52.8244071409539, - "url": "https://www.rightmove.co.uk/properties/159261077", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/159261077/44537_TOL240763_L_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "16/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.278196", - "last_seen": "2025-06-01T22:06:06.809855", - "price": 3965.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096813, - 51.492886 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.95, - "qmprice": 49.41, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159261593", - "info": { - "identifier": 159261593, - "sqm_ocr": 80.95, - "price": 4000.0, - "price_per_sqm": 49.413218035824585, - "url": "https://www.rightmove.co.uk/properties/159261593", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/159261593/228512_33731038_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.064965", - "last_seen": "2025-06-01T22:05:54.361543", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094477, - 51.52896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.03, - "qmprice": 28.45, - "rooms": 2, - "total_price": 2049.0, - "url": "https://www.rightmove.co.uk/properties/159262760", - "info": { - "identifier": 159262760, - "sqm_ocr": 72.03, - "price": 2049.0, - "price_per_sqm": 28.446480633069555, - "url": "https://www.rightmove.co.uk/properties/159262760", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Edward Chase", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281156/159262760/281156_12258042_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.629087", - "last_seen": "2025-06-01T22:05:39.323834", - "price": 2049.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24093, - 51.57552 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.2, - "qmprice": 42.92, - "rooms": 3, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/159265694", - "info": { - "identifier": 159265694, - "sqm_ocr": 86.2, - "price": 3700.0, - "price_per_sqm": 42.92343387470998, - "url": "https://www.rightmove.co.uk/properties/159265694", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 74, - "status": null, - "last_seen": 0, - "agency": "Farrar & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128314/159265694/128314_26184_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.252244", - "last_seen": "2025-06-01T22:05:58.020849", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18804, - 51.48137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.9, - "qmprice": 46.7, - "rooms": 2, - "total_price": 3965.0, - "url": "https://www.rightmove.co.uk/properties/159266387", - "info": { - "identifier": 159266387, - "sqm_ocr": 84.9, - "price": 3965.0, - "price_per_sqm": 46.7020023557126, - "url": "https://www.rightmove.co.uk/properties/159266387", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Battersea & Nine Elms Estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143171/159266387/143171_33731309_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.018133", - "last_seen": "2025-06-01T22:05:49.173353", - "price": 3965 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188307, - 51.477177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 41.67, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159266858", - "info": { - "identifier": 159266858, - "sqm_ocr": 84.0, - "price": 3500.0, - "price_per_sqm": 41.666666666666664, - "url": "https://www.rightmove.co.uk/properties/159266858", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/159266858/87187_38869_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.255634", - "last_seen": "2025-06-01T22:05:47.834076", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093059, - 51.569775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/159269729", - "info": { - "identifier": 159269729, - "sqm_ocr": null, - "price": 2595.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159269729", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262865/159269729/262865_a1G8d000002QBOqEAO_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.321064", - "last_seen": "2025-06-01T22:06:03.184241", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00996, - 51.51357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.7, - "qmprice": 29.65, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159270197", - "info": { - "identifier": 159270197, - "sqm_ocr": 87.7, - "price": 2600.0, - "price_per_sqm": 29.646522234891677, - "url": "https://www.rightmove.co.uk/properties/159270197", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Core London Property Advisors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266807/159270197/266807_RX547864_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.538038", - "last_seen": "2025-06-01T22:05:44.974412", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.286043, - 51.509922 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159271058", - "info": { - "identifier": 159271058, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159271058", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Oaktree West London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237683/159271058/237683_OWL250007_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.019781", - "last_seen": "2025-06-01T22:06:02.020484", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.025112, - 51.499016 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2225.0, - "url": "https://www.rightmove.co.uk/properties/159271307", - "info": { - "identifier": 159271307, - "sqm_ocr": null, - "price": 2225.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159271307", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/159271307/208253_PRL250513_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.387695", - "last_seen": "2025-06-01T22:05:38.617269", - "price": 2225.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.241289, - 51.57777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.4, - "qmprice": 43.55, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159272567", - "info": { - "identifier": 159272567, - "sqm_ocr": 57.4, - "price": 2500.0, - "price_per_sqm": 43.55400696864112, - "url": "https://www.rightmove.co.uk/properties/159272567", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/159272567/149153_1317721_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.070719", - "last_seen": "2025-06-01T22:06:07.815381", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198857, - 51.359226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159275417", - "info": { - "identifier": 159275417, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159275417", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "VOYAGER", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272312/159275417/272312_hollyroad_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.924022", - "last_seen": "2025-06-01T22:05:45.703628", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03661, - 51.67713 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.48, - "qmprice": 34.89, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/159277283", - "info": { - "identifier": 159277283, - "sqm_ocr": 61.48, - "price": 2145.0, - "price_per_sqm": 34.88939492517892, - "url": "https://www.rightmove.co.uk/properties/159277283", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/159277283/48101_1318223_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.876417", - "last_seen": "2025-06-01T22:06:09.591758", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008275, - 51.499653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.8, - "qmprice": 46.59, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159277316", - "info": { - "identifier": 159277316, - "sqm_ocr": 55.8, - "price": 2600.0, - "price_per_sqm": 46.59498207885305, - "url": "https://www.rightmove.co.uk/properties/159277316", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253316/159277316/253316_NHO210072_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.534335", - "last_seen": "2025-06-01T22:06:15.506569", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195432, - 51.518597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.45, - "qmprice": 38.26, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/159277367", - "info": { - "identifier": 159277367, - "sqm_ocr": 76.45, - "price": 2925.0, - "price_per_sqm": 38.26030085022891, - "url": "https://www.rightmove.co.uk/properties/159277367", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/159277367/76585_1318220_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.887923", - "last_seen": "2025-06-01T22:05:42.988050", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141259, - 51.523785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159278558", - "info": { - "identifier": 159278558, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159278558", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5847/159278558/5847_P98280_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.853349", - "last_seen": "2025-06-01T22:05:43.536862", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10306, - 51.39486 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.3, - "qmprice": 35.61, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159279494", - "info": { - "identifier": 159279494, - "sqm_ocr": 98.3, - "price": 3500.0, - "price_per_sqm": 35.60528992878942, - "url": "https://www.rightmove.co.uk/properties/159279494", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43754/159279494/43754_P296940_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.585203", - "last_seen": "2025-06-01T22:05:59.584290", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13296, - 51.46189 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159280691", - "info": { - "identifier": 159280691, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159280691", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "Wayne & Silver", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91636/159280691/91636_33732253_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.478693", - "last_seen": "2025-06-01T22:05:59.969721", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098474, - 51.46282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159281486", - "info": { - "identifier": 159281486, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159281486", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Homefinders", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32903/159281486/32903_5738190_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.879356", - "last_seen": "2025-06-01T22:05:47.598834", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.040549, - 51.548897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.48, - "qmprice": 45.54, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/159282374", - "info": { - "identifier": 159282374, - "sqm_ocr": 61.48, - "price": 2800.0, - "price_per_sqm": 45.54326610279766, - "url": "https://www.rightmove.co.uk/properties/159282374", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/159282374/48101_1290258_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.677436", - "last_seen": "2025-06-01T22:06:10.368564", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008275, - 51.499653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.97, - "qmprice": 49.4, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159282509", - "info": { - "identifier": 159282509, - "sqm_ocr": 80.97, - "price": 4000.0, - "price_per_sqm": 49.401012720760775, - "url": "https://www.rightmove.co.uk/properties/159282509", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244724/159282509/244724_LHL240349_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.140216", - "last_seen": "2025-06-01T22:06:12.313676", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129524, - 51.482418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.66, - "qmprice": 35.48, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159285713", - "info": { - "identifier": 159285713, - "sqm_ocr": 98.66, - "price": 3500.0, - "price_per_sqm": 35.47536995742956, - "url": "https://www.rightmove.co.uk/properties/159285713", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78395/159285713/78395_33732632_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.505258", - "last_seen": "2025-06-01T22:05:43.283844", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07534, - 51.51248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.71, - "qmprice": 36.38, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/159286223", - "info": { - "identifier": 159286223, - "sqm_ocr": 90.71, - "price": 3300.0, - "price_per_sqm": 36.37967148054239, - "url": "https://www.rightmove.co.uk/properties/159286223", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "ABX Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281000/159286223/281000_RL0204_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.192737", - "last_seen": "2025-06-01T22:05:44.334974", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.341265, - 51.5104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159287015", - "info": { - "identifier": 159287015, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159287015", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159287015/96668_241422311032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.693589", - "last_seen": "2025-06-01T22:06:10.379050", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02397, - 51.48966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/159287369", - "info": { - "identifier": 159287369, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159287369", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242966/159287369/242966_P139426_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.463006", - "last_seen": "2025-06-01T22:05:39.048180", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2476, - 51.59576 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 30.0, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159287660", - "info": { - "identifier": 159287660, - "sqm_ocr": 80.0, - "price": 2400.0, - "price_per_sqm": 30.0, - "url": "https://www.rightmove.co.uk/properties/159287660", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118042/159287660/118042_33732703_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.271047", - "last_seen": "2025-06-01T22:05:46.154608", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.018535, - 51.474 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.4, - "qmprice": 33.08, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/159288245", - "info": { - "identifier": 159288245, - "sqm_ocr": 63.4, - "price": 2097.0, - "price_per_sqm": 33.07570977917981, - "url": "https://www.rightmove.co.uk/properties/159288245", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25214/159288245/25214_33561973_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.181090", - "last_seen": "2025-06-01T22:06:06.699115", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07477, - 51.493664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.7, - "qmprice": 26.55, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159289100", - "info": { - "identifier": 159289100, - "sqm_ocr": 101.7, - "price": 2700.0, - "price_per_sqm": 26.548672566371682, - "url": "https://www.rightmove.co.uk/properties/159289100", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/159289100/198539_33732788_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.592843", - "last_seen": "2025-06-01T22:06:07.913260", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025955, - 51.49235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/159289583", - "info": { - "identifier": 159289583, - "sqm_ocr": null, - "price": 3445.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159289583", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159289583/96668_241487511032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.201372", - "last_seen": "2025-06-01T22:05:57.734726", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185282, - 51.484676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159294170", - "info": { - "identifier": 159294170, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159294170", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "UK Investment Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74980/159294170/74980_RL0161_IMG_10_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.014829", - "last_seen": "2025-06-01T22:06:13.321911", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224459, - 51.45449 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159296120", - "info": { - "identifier": 159296120, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159296120", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Reeds Rains", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46503/159296120/46503_PLA250078_L_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.844205", - "last_seen": "2025-06-01T22:06:02.161457", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.044602, - 51.532406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.6, - "qmprice": 31.61, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159297746", - "info": { - "identifier": 159297746, - "sqm_ocr": 69.6, - "price": 2200.0, - "price_per_sqm": 31.60919540229885, - "url": "https://www.rightmove.co.uk/properties/159297746", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99865/159297746/99865_33733152_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.990578", - "last_seen": "2025-06-01T22:05:58.986666", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126011, - 51.449326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.6, - "qmprice": 44.04, - "rooms": 2, - "total_price": 3814.0, - "url": "https://www.rightmove.co.uk/properties/159305402", - "info": { - "identifier": 159305402, - "sqm_ocr": 86.6, - "price": 3814.0, - "price_per_sqm": 44.04157043879908, - "url": "https://www.rightmove.co.uk/properties/159305402", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/159305402/15948_1318186_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.116546", - "last_seen": "2025-06-01T22:05:48.348104", - "price": 3814.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18739, - 51.467445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.2, - "qmprice": 26.84, - "rooms": 2, - "total_price": 2904.0, - "url": "https://www.rightmove.co.uk/properties/159305468", - "info": { - "identifier": 159305468, - "sqm_ocr": 108.2, - "price": 2904.0, - "price_per_sqm": 26.839186691312385, - "url": "https://www.rightmove.co.uk/properties/159305468", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/159305468/48101_1317750_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.392993", - "last_seen": "2025-06-01T22:06:08.571640", - "price": 2904.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028271, - 51.50701 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 32.48, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159307184", - "info": { - "identifier": 159307184, - "sqm_ocr": 73.9, - "price": 2400.0, - "price_per_sqm": 32.47631935047361, - "url": "https://www.rightmove.co.uk/properties/159307184", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/159307184/238841_P296968_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.549837", - "last_seen": "2025-06-01T22:05:46.863775", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05982, - 51.49418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/159307907", - "info": { - "identifier": 159307907, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159307907", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/159307907/80340_a1G4J0000025xpdUAA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.159905", - "last_seen": "2025-06-01T22:05:52.612460", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28512, - 51.48876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.38, - "qmprice": 28.93, - "rooms": 2, - "total_price": 2499.0, - "url": "https://www.rightmove.co.uk/properties/159309692", - "info": { - "identifier": 159309692, - "sqm_ocr": 86.38, - "price": 2499.0, - "price_per_sqm": 28.93030794165316, - "url": "https://www.rightmove.co.uk/properties/159309692", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Goldstone Letting & Management Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206063/159309692/206063_GLD210006_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.437342", - "last_seen": "2025-06-01T22:05:39.552364", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24042, - 51.59466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.13, - "qmprice": 34.24, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/159311480", - "info": { - "identifier": 159311480, - "sqm_ocr": 105.13, - "price": 3600.0, - "price_per_sqm": 34.243317797013226, - "url": "https://www.rightmove.co.uk/properties/159311480", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/159311480/15951_1305728_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.248841", - "last_seen": "2025-06-01T22:05:51.855218", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.301068, - 51.48301 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159312218", - "info": { - "identifier": 159312218, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159312218", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/256k/255365/159312218/255365_P159417_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.886145", - "last_seen": "2025-06-01T22:05:50.461033", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3364, - 51.57969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.5, - "qmprice": 27.07, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/159315224", - "info": { - "identifier": 159315224, - "sqm_ocr": 88.5, - "price": 2396.0, - "price_per_sqm": 27.073446327683616, - "url": "https://www.rightmove.co.uk/properties/159315224", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/159315224/82537_33734295_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.411291", - "last_seen": "2025-06-01T17:39:03.988991", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021323, - 51.498035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/159316304", - "info": { - "identifier": 159316304, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159316304", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/159316304/174452_4800_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.334681", - "last_seen": "2025-06-01T22:05:46.522679", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00797, - 51.50093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.5, - "qmprice": 27.07, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/159316526", - "info": { - "identifier": 159316526, - "sqm_ocr": 88.5, - "price": 2396.0, - "price_per_sqm": 27.073446327683616, - "url": "https://www.rightmove.co.uk/properties/159316526", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 66, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/159316526/198539_33734388_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.274924", - "last_seen": "2025-06-01T20:19:59.810504", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021323, - 51.498035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 52.63, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159317306", - "info": { - "identifier": 159317306, - "sqm_ocr": 76.0, - "price": 4000.0, - "price_per_sqm": 52.63157894736842, - "url": "https://www.rightmove.co.uk/properties/159317306", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/139k/138797/159317306/138797_BPQ012578291_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.578039", - "last_seen": "2025-06-01T22:05:54.811142", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161348, - 51.54875 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159319118", - "info": { - "identifier": 159319118, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159319118", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/159319118/238769_qwq3423questhouse920r8903_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.897236", - "last_seen": "2025-06-01T22:06:09.787895", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00666, - 51.50852 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.2, - "qmprice": 51.98, - "rooms": 2, - "total_price": 3077.0, - "url": "https://www.rightmove.co.uk/properties/159320222", - "info": { - "identifier": 159320222, - "sqm_ocr": 59.2, - "price": 3077.0, - "price_per_sqm": 51.97635135135135, - "url": "https://www.rightmove.co.uk/properties/159320222", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/159320222/16023_1318368_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.536260", - "last_seen": "2025-06-01T22:05:57.974649", - "price": 3077.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169535, - 51.48667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/159322457", - "info": { - "identifier": 159322457, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159322457", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11427/159322457/11427_0405_HRT062000837_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.953015", - "last_seen": "2025-06-01T22:06:14.273629", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173973, - 51.468784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159323141", - "info": { - "identifier": 159323141, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159323141", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66176/159323141/66176_P4745G4911_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.141213", - "last_seen": "2025-06-01T22:05:39.173794", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19101, - 51.59184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159325238", - "info": { - "identifier": 159325238, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159325238", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 81, - "status": null, - "last_seen": 0, - "agency": "Kirby Colletti", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9974/159325238/9974_33734998_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.989004", - "last_seen": "2025-06-01T22:05:45.393146", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.047995, - 51.68094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 51.45, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/159327590", - "info": { - "identifier": 159327590, - "sqm_ocr": 69.0, - "price": 3550.0, - "price_per_sqm": 51.44927536231884, - "url": "https://www.rightmove.co.uk/properties/159327590", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/159327590/264326_Y38559_13_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.305582", - "last_seen": "2025-06-01T22:05:58.422389", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.156345, - 51.494125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.0, - "qmprice": 27.52, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159327614", - "info": { - "identifier": 159327614, - "sqm_ocr": 109.0, - "price": 3000.0, - "price_per_sqm": 27.522935779816514, - "url": "https://www.rightmove.co.uk/properties/159327614", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50249/159327614/50249_RCL200043_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.830373", - "last_seen": "2025-06-01T22:05:51.419321", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.418597, - 51.61388 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/159333704", - "info": { - "identifier": 159333704, - "sqm_ocr": null, - "price": 3120.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159333704", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/159333704/146147_PR222292_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.328975", - "last_seen": "2025-06-01T20:19:59.928070", - "price": 3120 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071519, - 51.510513 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.1, - "qmprice": 40.52, - "rooms": 2, - "total_price": 3246.0, - "url": "https://www.rightmove.co.uk/properties/159336467", - "info": { - "identifier": 159336467, - "sqm_ocr": 80.1, - "price": 3246.0, - "price_per_sqm": 40.524344569288395, - "url": "https://www.rightmove.co.uk/properties/159336467", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/159336467/65124_CEH240036_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.931943", - "last_seen": "2025-06-01T22:06:06.872378", - "price": 3245 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098134, - 51.49253 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.3, - "qmprice": 44.75, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/159339845", - "info": { - "identifier": 159339845, - "sqm_ocr": 82.3, - "price": 3683.0, - "price_per_sqm": 44.75091130012151, - "url": "https://www.rightmove.co.uk/properties/159339845", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greater London Properties", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6474/159339845/6474_GRT_SH_LFSYCL_252_40097664_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.960406", - "last_seen": "2025-06-01T22:06:16.055467", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128973, - 51.511833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 29.58, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159341216", - "info": { - "identifier": 159341216, - "sqm_ocr": 71.0, - "price": 2100.0, - "price_per_sqm": 29.577464788732396, - "url": "https://www.rightmove.co.uk/properties/159341216", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/159341216/15975_1317637_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.348801", - "last_seen": "2025-06-01T22:06:01.303628", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197585, - 51.43951 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159342227", - "info": { - "identifier": 159342227, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159342227", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159342227/96668_228109803112024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.256714", - "last_seen": "2025-06-01T22:06:08.788836", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03642, - 51.52729 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159343019", - "info": { - "identifier": 159343019, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159343019", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Such Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238883/159343019/238883_274601_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.439346", - "last_seen": "2025-06-01T22:05:59.454620", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09875, - 51.43976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 43.7, - "qmprice": 68.63, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/159346901", - "info": { - "identifier": 159346901, - "sqm_ocr": 43.7, - "price": 2999.0, - "price_per_sqm": 68.62700228832952, - "url": "https://www.rightmove.co.uk/properties/159346901", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/159346901/108515_1314388_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.117349", - "last_seen": "2025-06-01T22:05:58.307670", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195853, - 51.4933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.8, - "qmprice": 61.72, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/159346910", - "info": { - "identifier": 159346910, - "sqm_ocr": 48.8, - "price": 3012.0, - "price_per_sqm": 61.72131147540984, - "url": "https://www.rightmove.co.uk/properties/159346910", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/159346910/108515_1314385_IMG_00_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.109739", - "last_seen": "2025-06-01T22:05:58.317339", - "price": 3012.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190044, - 51.486126 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.6, - "qmprice": 41.21, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159350189", - "info": { - "identifier": 159350189, - "sqm_ocr": 54.6, - "price": 2250.0, - "price_per_sqm": 41.208791208791204, - "url": "https://www.rightmove.co.uk/properties/159350189", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84818/159350189/84818_33736495_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.326051", - "last_seen": "2025-06-01T22:06:04.495563", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.341062, - 51.446735 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159354548", - "info": { - "identifier": 159354548, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159354548", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 52, - "status": null, - "last_seen": 0, - "agency": "Bumblebee", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/193k/192527/159354548/192527_bumblebee_1944803223_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.966773", - "last_seen": "2025-06-01T22:05:49.627573", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084658, - 51.614716 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159356168", - "info": { - "identifier": 159356168, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159356168", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Pinnacle Housing Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212189/159356168/212189_2532_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.290860", - "last_seen": "2025-06-01T22:06:10.290860", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03901, - 51.51714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.2, - "qmprice": 24.46, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159356498", - "info": { - "identifier": 159356498, - "sqm_ocr": 102.2, - "price": 2500.0, - "price_per_sqm": 24.461839530332682, - "url": "https://www.rightmove.co.uk/properties/159356498", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75148/159356498/75148_1318475_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.244582", - "last_seen": "2025-06-01T22:05:46.285095", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.073495, - 51.43803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.25, - "qmprice": 41.55, - "rooms": 2, - "total_price": 3999.0, - "url": "https://www.rightmove.co.uk/properties/159357464", - "info": { - "identifier": 159357464, - "sqm_ocr": 96.25, - "price": 3999.0, - "price_per_sqm": 41.54805194805195, - "url": "https://www.rightmove.co.uk/properties/159357464", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "LUGUS HOMES", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274007/159357464/274007_33734651_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.207427", - "last_seen": "2025-06-01T22:06:12.358808", - "price": 3999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172573, - 51.47461 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.14, - "qmprice": 39.21, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159360473", - "info": { - "identifier": 159360473, - "sqm_ocr": 70.14, - "price": 2750.0, - "price_per_sqm": 39.2072996863416, - "url": "https://www.rightmove.co.uk/properties/159360473", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98363/159360473/98363_P296896_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.359035", - "last_seen": "2025-06-01T22:05:59.870681", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13073, - 51.43524 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.2, - "qmprice": 52.84, - "rooms": 3, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/159361601", - "info": { - "identifier": 159361601, - "sqm_ocr": 65.2, - "price": 3445.0, - "price_per_sqm": 52.83742331288343, - "url": "https://www.rightmove.co.uk/properties/159361601", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/159361601/16050_1318440_IMG_13_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.237590", - "last_seen": "2025-06-01T22:05:47.367316", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0812, - 51.531918 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2405.0, - "url": "https://www.rightmove.co.uk/properties/159362306", - "info": { - "identifier": 159362306, - "sqm_ocr": null, - "price": 2405.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159362306", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/159362306/49784_37222_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.567117", - "last_seen": "2025-06-01T22:05:59.193066", - "price": 2405 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12626, - 51.425 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/159363287", - "info": { - "identifier": 159363287, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159363287", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/159363287/181787_181787_526_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.345086", - "last_seen": "2025-06-01T22:06:07.076629", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09516, - 51.48562 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159365138", - "info": { - "identifier": 159365138, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159365138", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107680/159365138/107680_33737509_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.208060", - "last_seen": "2025-06-01T22:06:07.621653", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.000418, - 51.543888 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.5, - "qmprice": 39.82, - "rooms": 2, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/159365465", - "info": { - "identifier": 159365465, - "sqm_ocr": 66.5, - "price": 2648.0, - "price_per_sqm": 39.81954887218045, - "url": "https://www.rightmove.co.uk/properties/159365465", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Liv International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54583/159365465/54583_LIVH_018004_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.529365", - "last_seen": "2025-06-01T22:06:15.879572", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192405, - 51.523727 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.9, - "qmprice": 50.65, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/159365699", - "info": { - "identifier": 159365699, - "sqm_ocr": 59.9, - "price": 3034.0, - "price_per_sqm": 50.651085141903174, - "url": "https://www.rightmove.co.uk/properties/159365699", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/159365699/15942_1318532_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.356189", - "last_seen": "2025-06-01T22:05:57.633553", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180674, - 51.49829 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.76, - "qmprice": 58.29, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159365714", - "info": { - "identifier": 159365714, - "sqm_ocr": 55.76, - "price": 3250.0, - "price_per_sqm": 58.285509325681495, - "url": "https://www.rightmove.co.uk/properties/159365714", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 80, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/159365714/15942_1318531_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.043365", - "last_seen": "2025-06-01T22:05:57.434867", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180674, - 51.49829 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.65, - "qmprice": 32.69, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/159365921", - "info": { - "identifier": 159365921, - "sqm_ocr": 85.65, - "price": 2800.0, - "price_per_sqm": 32.691185055458256, - "url": "https://www.rightmove.co.uk/properties/159365921", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Pinnacle Housing Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212189/159365921/212189_2667_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.543242", - "last_seen": "2025-06-01T22:06:03.384770", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03958, - 51.50227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.8, - "qmprice": 29.63, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159368255", - "info": { - "identifier": 159368255, - "sqm_ocr": 92.8, - "price": 2750.0, - "price_per_sqm": 29.633620689655174, - "url": "https://www.rightmove.co.uk/properties/159368255", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Parkheath", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72716/159368255/72716_31389074_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.345064", - "last_seen": "2025-06-01T22:05:40.582807", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20744, - 51.54614 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.7, - "qmprice": 26.08, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159372083", - "info": { - "identifier": 159372083, - "sqm_ocr": 99.7, - "price": 2600.0, - "price_per_sqm": 26.078234704112337, - "url": "https://www.rightmove.co.uk/properties/159372083", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Humphrey & CO Property Services", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79533/159372083/79533_33737902_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.708118", - "last_seen": "2025-06-01T22:06:11.702184", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019483, - 51.600086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.1, - "qmprice": 34.62, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159372665", - "info": { - "identifier": 159372665, - "sqm_ocr": 62.1, - "price": 2150.0, - "price_per_sqm": 34.62157809983897, - "url": "https://www.rightmove.co.uk/properties/159372665", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84848/159372665/84848_33737959_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.594419", - "last_seen": "2025-06-01T22:06:04.823278", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.352924, - 51.435844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159373745", - "info": { - "identifier": 159373745, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159373745", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159373745/96668_230640826112024_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.662312", - "last_seen": "2025-06-01T22:06:03.405897", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017972, - 51.51874 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/159375815", - "info": { - "identifier": 159375815, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159375815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/159375815/82537_33738013_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.709097", - "last_seen": "2025-06-01T22:06:09.719142", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023878, - 51.515457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3999.0, - "url": "https://www.rightmove.co.uk/properties/159377135", - "info": { - "identifier": 159377135, - "sqm_ocr": null, - "price": 3999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159377135", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Battersea Power Station", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166181/159377135/166181_a2R3z000002vWQZEA2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.045796", - "last_seen": "2025-06-01T22:06:13.194679", - "price": 3999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146368, - 51.482002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/159378062", - "info": { - "identifier": 159378062, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159378062", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Highcastle Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198884/159378062/198884_RL1509_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.704107", - "last_seen": "2025-06-01T22:06:07.580492", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.009207, - 51.5511 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.4, - "qmprice": 38.6, - "rooms": 2, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/159378185", - "info": { - "identifier": 159378185, - "sqm_ocr": 72.4, - "price": 2795.0, - "price_per_sqm": 38.60497237569061, - "url": "https://www.rightmove.co.uk/properties/159378185", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/159378185/212327_P159479_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.546625", - "last_seen": "2025-06-01T22:06:08.827187", - "price": 2795 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03829, - 51.51079 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.8, - "qmprice": 35.91, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/159378809", - "info": { - "identifier": 159378809, - "sqm_ocr": 73.8, - "price": 2650.0, - "price_per_sqm": 35.90785907859079, - "url": "https://www.rightmove.co.uk/properties/159378809", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/159378809/15963_1318414_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.274716", - "last_seen": "2025-06-01T22:06:13.882014", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225969, - 51.462944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.8, - "qmprice": 53.86, - "rooms": 3, - "total_price": 3975.0, - "url": "https://www.rightmove.co.uk/properties/159378827", - "info": { - "identifier": 159378827, - "sqm_ocr": 73.8, - "price": 3975.0, - "price_per_sqm": 53.861788617886184, - "url": "https://www.rightmove.co.uk/properties/159378827", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/159378827/15963_1318415_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.259326", - "last_seen": "2025-06-01T22:06:13.940906", - "price": 3975.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225969, - 51.462944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159379376", - "info": { - "identifier": 159379376, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159379376", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159379376/96668_241723713032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.051713", - "last_seen": "2025-06-01T22:05:55.410704", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.264465, - 51.518337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 40.4, - "qmprice": 54.46, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159382058", - "info": { - "identifier": 159382058, - "sqm_ocr": 40.4, - "price": 2200.0, - "price_per_sqm": 54.45544554455446, - "url": "https://www.rightmove.co.uk/properties/159382058", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Mercer Taylor", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/274k/273146/159382058/273146_33738587_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.223575", - "last_seen": "2025-06-01T22:06:01.340144", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159528, - 51.42002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159384965", - "info": { - "identifier": 159384965, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159384965", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Bumblebee", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/193k/192527/159384965/192527_Clydesdale,__IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.071586", - "last_seen": "2025-06-01T22:05:45.711641", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.040864, - 51.64677 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159384974", - "info": { - "identifier": 159384974, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159384974", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marble Sales & Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280370/159384974/280370_MARB_000939_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.764859", - "last_seen": "2025-06-01T22:05:44.590080", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.352906, - 51.556274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159389552", - "info": { - "identifier": 159389552, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159389552", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Andrew Reeves", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20732/159389552/20732_000896670_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.915493", - "last_seen": "2025-06-01T22:06:00.888758", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03506, - 51.4352 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.48, - "qmprice": 41.61, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/159391205", - "info": { - "identifier": 159391205, - "sqm_ocr": 56.48, - "price": 2350.0, - "price_per_sqm": 41.607648725212464, - "url": "https://www.rightmove.co.uk/properties/159391205", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/159391205/52887_33739095_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.425843", - "last_seen": "2025-06-01T22:06:01.572966", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19484, - 51.415623 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.9, - "qmprice": 34.3, - "rooms": 2, - "total_price": 2775.0, - "url": "https://www.rightmove.co.uk/properties/159391562", - "info": { - "identifier": 159391562, - "sqm_ocr": 80.9, - "price": 2775.0, - "price_per_sqm": 34.301606922126076, - "url": "https://www.rightmove.co.uk/properties/159391562", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "FMX PROPERTIES LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264155/159391562/264155_1516FairmontAvenue2b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.471883", - "last_seen": "2025-06-01T17:39:04.026116", - "price": 2775.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00448, - 51.50626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.0, - "qmprice": 22.94, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159393113", - "info": { - "identifier": 159393113, - "sqm_ocr": 109.0, - "price": 2500.0, - "price_per_sqm": 22.93577981651376, - "url": "https://www.rightmove.co.uk/properties/159393113", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Adam Hayes Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82115/159393113/82115_33739356_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.386325", - "last_seen": "2025-06-01T22:05:38.516302", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169238, - 51.608204 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.65, - "qmprice": 24.09, - "rooms": 3, - "total_price": 2690.0, - "url": "https://www.rightmove.co.uk/properties/159393452", - "info": { - "identifier": 159393452, - "sqm_ocr": 111.65, - "price": 2690.0, - "price_per_sqm": 24.093148231079265, - "url": "https://www.rightmove.co.uk/properties/159393452", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159393452/96668_135110123032022_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.806516", - "last_seen": "2025-06-01T22:05:46.617597", - "price": 2690.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014755, - 51.47315 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.9, - "qmprice": 51.06, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/159398786", - "info": { - "identifier": 159398786, - "sqm_ocr": 67.9, - "price": 3467.0, - "price_per_sqm": 51.060382916053015, - "url": "https://www.rightmove.co.uk/properties/159398786", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/159398786/15948_1317951_IMG_01_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.049116", - "last_seen": "2025-06-01T22:05:57.441210", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185328, - 51.479774 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159401240", - "info": { - "identifier": 159401240, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159401240", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Mayfords Estate Agent", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226394/159401240/226394_mayfords_1937194292_IMG_09_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.610970", - "last_seen": "2025-06-01T22:05:39.483602", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201591, - 51.59781 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/159403856", - "info": { - "identifier": 159403856, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159403856", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/159403856/136139_2699162_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.013318", - "last_seen": "2025-06-01T17:39:04.516930", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00942, - 51.50933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2475.0, - "url": "https://www.rightmove.co.uk/properties/159404654", - "info": { - "identifier": 159404654, - "sqm_ocr": null, - "price": 2475.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159404654", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7189/159404654/7189_33739803_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.014639", - "last_seen": "2025-06-01T22:06:00.561000", - "price": 2475.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038237, - 51.438896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 50.0, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159405941", - "info": { - "identifier": 159405941, - "sqm_ocr": 70.0, - "price": 3500.0, - "price_per_sqm": 50.0, - "url": "https://www.rightmove.co.uk/properties/159405941", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44510/159405941/44510_HYL020006_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "09/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.285834", - "last_seen": "2025-06-01T22:06:15.136621", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170044, - 51.516098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3490.0, - "url": "https://www.rightmove.co.uk/properties/159410324", - "info": { - "identifier": 159410324, - "sqm_ocr": null, - "price": 3490.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159410324", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/159410324/78429_LON-335_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.123076", - "last_seen": "2025-06-01T22:06:09.856571", - "price": 3490.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06019, - 51.51089 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159412976", - "info": { - "identifier": 159412976, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159412976", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Huttons & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257087/159412976/257087_YVQ-28401367_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.516140", - "last_seen": "2025-06-01T22:06:08.687542", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.000322, - 51.50996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159413132", - "info": { - "identifier": 159413132, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159413132", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Crown House Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235946/159413132/235946_830_IMG_11_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.043111", - "last_seen": "2025-06-01T22:05:45.488366", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04093, - 51.67717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.3, - "qmprice": 34.76, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159416120", - "info": { - "identifier": 159416120, - "sqm_ocr": 63.3, - "price": 2200.0, - "price_per_sqm": 34.75513428120063, - "url": "https://www.rightmove.co.uk/properties/159416120", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Wembley Park Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80783/159416120/80783_2355204_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.460896", - "last_seen": "2025-06-01T22:05:40.707453", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28393, - 51.55871 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.38, - "qmprice": 42.49, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159416141", - "info": { - "identifier": 159416141, - "sqm_ocr": 82.38, - "price": 3500.0, - "price_per_sqm": 42.48604030104394, - "url": "https://www.rightmove.co.uk/properties/159416141", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "PropertyLoop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222287/159416141/222287_p4FzZsIT_IMG_02_0001_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.004721", - "last_seen": "2025-06-01T22:05:57.827781", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19833, - 51.50895 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.3, - "qmprice": 56.72, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159416843", - "info": { - "identifier": 159416843, - "sqm_ocr": 57.3, - "price": 3250.0, - "price_per_sqm": 56.719022687609076, - "url": "https://www.rightmove.co.uk/properties/159416843", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/159416843/15975_1318171_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.586437", - "last_seen": "2025-06-01T22:06:01.533238", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187532, - 51.42015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 41.93, - "qmprice": 92.51, - "rooms": 4, - "total_price": 3879.0, - "url": "https://www.rightmove.co.uk/properties/159416900", - "info": { - "identifier": 159416900, - "sqm_ocr": 41.93, - "price": 3879.0, - "price_per_sqm": 92.51132840448366, - "url": "https://www.rightmove.co.uk/properties/159416900", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/159416900/16023_1318702_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.290772", - "last_seen": "2025-06-01T22:05:57.650024", - "price": 3879.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181141, - 51.47859 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.7, - "qmprice": 30.12, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159420953", - "info": { - "identifier": 159420953, - "sqm_ocr": 74.7, - "price": 2250.0, - "price_per_sqm": 30.12048192771084, - "url": "https://www.rightmove.co.uk/properties/159420953", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Truepenny's Property Consultants", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228695/159420953/228695_4601_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.371773", - "last_seen": "2025-06-01T22:05:46.654656", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05809, - 51.49412 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159425126", - "info": { - "identifier": 159425126, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159425126", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Franklyn James", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66685/159425126/66685_33741183_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.435445", - "last_seen": "2025-06-01T22:05:56.578447", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.018818, - 51.48066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.1, - "qmprice": 33.67, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159425951", - "info": { - "identifier": 159425951, - "sqm_ocr": 89.1, - "price": 3000.0, - "price_per_sqm": 33.670033670033675, - "url": "https://www.rightmove.co.uk/properties/159425951", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/159425951/15957_1318734_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.561099", - "last_seen": "2025-06-01T22:05:55.988226", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202815, - 51.543697 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159429485", - "info": { - "identifier": 159429485, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159429485", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 79, - "status": null, - "last_seen": 0, - "agency": "Cottage Fields", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65535/159429485/65535_27c36006-432b-4c63-9869-d9f342d0c6d9_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.738480", - "last_seen": "2025-06-01T22:05:49.644640", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078948, - 51.583794 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 28.77, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159429683", - "info": { - "identifier": 159429683, - "sqm_ocr": 73.0, - "price": 2100.0, - "price_per_sqm": 28.767123287671232, - "url": "https://www.rightmove.co.uk/properties/159429683", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Domeview Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53040/159429683/53040_675459_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.684790", - "last_seen": "2025-06-01T22:05:41.197774", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.275499, - 51.560627 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.1, - "qmprice": 35.66, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159431282", - "info": { - "identifier": 159431282, - "sqm_ocr": 70.1, - "price": 2500.0, - "price_per_sqm": 35.66333808844508, - "url": "https://www.rightmove.co.uk/properties/159431282", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 79, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57275/159431282/57275_1309468_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.454074", - "last_seen": "2025-06-01T22:05:51.661504", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.396388, - 51.559307 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159431798", - "info": { - "identifier": 159431798, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159431798", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11475/159431798/11475_0439_FJL043903344_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.553428", - "last_seen": "2025-06-01T22:06:02.760440", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.010875, - 51.517212 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.8, - "qmprice": 22.82, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159434183", - "info": { - "identifier": 159434183, - "sqm_ocr": 100.8, - "price": 2300.0, - "price_per_sqm": 22.817460317460316, - "url": "https://www.rightmove.co.uk/properties/159434183", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 0.0, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Moreland", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6263/159434183/6263_MRL_MRL_LFSYCL_637_831404272_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.510488", - "last_seen": "2025-06-01T22:05:39.817379", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210322, - 51.57652 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.9, - "qmprice": 22.5, - "rooms": 2, - "total_price": 2225.0, - "url": "https://www.rightmove.co.uk/properties/159434552", - "info": { - "identifier": 159434552, - "sqm_ocr": 98.9, - "price": 2225.0, - "price_per_sqm": 22.49747219413549, - "url": "https://www.rightmove.co.uk/properties/159434552", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Madison Brook", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49239/159434552/49239_33741842_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.099998", - "last_seen": "2025-06-01T22:06:02.848019", - "price": 2225.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.027733, - 51.505276 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159435269", - "info": { - "identifier": 159435269, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159435269", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Reeds Rains", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46473/159435269/46473_CAT250064_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.916936", - "last_seen": "2025-06-01T22:06:00.920337", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035522, - 51.432358 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.2, - "qmprice": 33.69, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159435710", - "info": { - "identifier": 159435710, - "sqm_ocr": 74.2, - "price": 2500.0, - "price_per_sqm": 33.692722371967655, - "url": "https://www.rightmove.co.uk/properties/159435710", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Portland Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139901/159435710/139901_33490712_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.758494", - "last_seen": "2025-06-01T22:05:41.368704", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23519, - 51.55051 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 24.72, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159441137", - "info": { - "identifier": 159441137, - "sqm_ocr": 89.0, - "price": 2200.0, - "price_per_sqm": 24.719101123595507, - "url": "https://www.rightmove.co.uk/properties/159441137", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Your Move", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6589/159441137/6589_BLA230129_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.201314", - "last_seen": "2025-06-01T22:05:46.459699", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03432, - 51.478127 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.16, - "qmprice": 51.65, - "rooms": 2, - "total_price": 2384.0, - "url": "https://www.rightmove.co.uk/properties/159441995", - "info": { - "identifier": 159441995, - "sqm_ocr": 46.16, - "price": 2384.0, - "price_per_sqm": 51.646447140381284, - "url": "https://www.rightmove.co.uk/properties/159441995", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/159441995/15954_1318784_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.963702", - "last_seen": "2025-06-01T22:05:53.098114", - "price": 2384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094825, - 51.547417 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.8, - "qmprice": 37.09, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159442571", - "info": { - "identifier": 159442571, - "sqm_ocr": 72.8, - "price": 2700.0, - "price_per_sqm": 37.08791208791209, - "url": "https://www.rightmove.co.uk/properties/159442571", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 76, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/159442571/84866_33742367_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.163864", - "last_seen": "2025-06-01T22:05:52.382946", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.261269, - 51.490593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.8, - "qmprice": 45.94, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/159443255", - "info": { - "identifier": 159443255, - "sqm_ocr": 59.8, - "price": 2747.0, - "price_per_sqm": 45.93645484949833, - "url": "https://www.rightmove.co.uk/properties/159443255", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Chard", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141944/159443255/141944_33742407_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.020907", - "last_seen": "2025-06-01T22:05:48.393818", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201573, - 51.477135 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/159455570", - "info": { - "identifier": 159455570, - "sqm_ocr": null, - "price": 3358.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159455570", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/159455570/169658_272952_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.456457", - "last_seen": "2025-06-01T22:06:08.746207", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025361, - 51.502365 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159460916", - "info": { - "identifier": 159460916, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159460916", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Benson & Partners", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5427/159460916/5427_102893012355_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.791748", - "last_seen": "2025-06-01T22:05:43.348094", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0916, - 51.40763 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.8, - "qmprice": 29.3, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159465164", - "info": { - "identifier": 159465164, - "sqm_ocr": 76.8, - "price": 2250.0, - "price_per_sqm": 29.296875, - "url": "https://www.rightmove.co.uk/properties/159465164", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 36, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84818/159465164/84818_33743204_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.529113", - "last_seen": "2025-06-01T22:06:04.331070", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.352911, - 51.456795 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.8, - "qmprice": 41.75, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159467168", - "info": { - "identifier": 159467168, - "sqm_ocr": 95.8, - "price": 4000.0, - "price_per_sqm": 41.75365344467641, - "url": "https://www.rightmove.co.uk/properties/159467168", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159467168/96668_241900315032025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "06/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.049569", - "last_seen": "2025-06-01T22:05:47.911796", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035216, - 51.54709 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159468377", - "info": { - "identifier": 159468377, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159468377", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159468377/96668_240585103032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.397088", - "last_seen": "2025-06-01T22:05:41.658700", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.078436, - 51.38073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159476981", - "info": { - "identifier": 159476981, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159476981", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/159476981/228512_33683574_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.103268", - "last_seen": "2025-06-01T22:06:03.008527", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.058991, - 51.52566 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/159479321", - "info": { - "identifier": 159479321, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159479321", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159479321/96668_238337111022025_IMG_08_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.460100", - "last_seen": "2025-06-01T22:06:05.589732", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092688, - 51.48093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.0, - "qmprice": 43.6, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/159481997", - "info": { - "identifier": 159481997, - "sqm_ocr": 86.0, - "price": 3750.0, - "price_per_sqm": 43.604651162790695, - "url": "https://www.rightmove.co.uk/properties/159481997", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/159481997/238265_L103459_IMG_10_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.245000", - "last_seen": "2025-06-01T22:06:10.245000", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061165, - 51.50593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/159482066", - "info": { - "identifier": 159482066, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159482066", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "EGRE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82293/159482066/82293_391_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.103562", - "last_seen": "2025-06-01T22:05:48.023828", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093936, - 51.5692 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/159482081", - "info": { - "identifier": 159482081, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159482081", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "EGRE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82293/159482081/82293_392_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.095218", - "last_seen": "2025-06-01T22:05:47.726086", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093936, - 51.5692 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159482645", - "info": { - "identifier": 159482645, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159482645", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66533/159482645/66533_SNL250004_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.833840", - "last_seen": "2025-06-01T22:05:43.580085", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08244, - 51.4048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159486050", - "info": { - "identifier": 159486050, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159486050", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/159486050/238265_L100523_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.887486", - "last_seen": "2025-06-01T22:05:56.940341", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.327475, - 51.512554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.3, - "qmprice": 37.12, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/159487592", - "info": { - "identifier": 159487592, - "sqm_ocr": 63.3, - "price": 2350.0, - "price_per_sqm": 37.12480252764613, - "url": "https://www.rightmove.co.uk/properties/159487592", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/159487592/84878_33743816_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.262193", - "last_seen": "2025-06-01T22:06:01.328095", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21521, - 51.415813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2525.0, - "url": "https://www.rightmove.co.uk/properties/159488585", - "info": { - "identifier": 159488585, - "sqm_ocr": null, - "price": 2525.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159488585", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Bennett Holmes", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51389/159488585/51389_7491933_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.091412", - "last_seen": "2025-06-01T22:05:50.324560", - "price": 2525.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.360931, - 51.59602 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159489332", - "info": { - "identifier": 159489332, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159489332", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Aston Rowe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230534/159489332/230534_33743925_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.021170", - "last_seen": "2025-06-01T22:05:44.469641", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.268534, - 51.512585 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.95, - "qmprice": 48.63, - "rooms": 2, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/159492806", - "info": { - "identifier": 159492806, - "sqm_ocr": 69.95, - "price": 3402.0, - "price_per_sqm": 48.63473909935668, - "url": "https://www.rightmove.co.uk/properties/159492806", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58654/159492806/58654_KBR250037_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.363868", - "last_seen": "2025-06-01T22:05:57.513098", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17221, - 51.49442 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 30.0, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159493694", - "info": { - "identifier": 159493694, - "sqm_ocr": 70.0, - "price": 2100.0, - "price_per_sqm": 30.0, - "url": "https://www.rightmove.co.uk/properties/159493694", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 76, - "status": null, - "last_seen": 0, - "agency": "Truepenny's", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93562/159493694/93562_2895_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.419739", - "last_seen": "2025-06-01T22:05:46.172910", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023993, - 51.484608 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.24, - "qmprice": 56.76, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/159494024", - "info": { - "identifier": 159494024, - "sqm_ocr": 70.24, - "price": 3987.0, - "price_per_sqm": 56.7625284738041, - "url": "https://www.rightmove.co.uk/properties/159494024", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51310/159494024/51310_HEA155550_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.541551", - "last_seen": "2025-06-01T22:05:58.059118", - "price": 3987.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.157555, - 51.497707 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.2, - "qmprice": 43.14, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/159495665", - "info": { - "identifier": 159495665, - "sqm_ocr": 67.2, - "price": 2899.0, - "price_per_sqm": 43.13988095238095, - "url": "https://www.rightmove.co.uk/properties/159495665", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53654/159495665/53654_33744314_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.916223", - "last_seen": "2025-06-01T22:05:49.215293", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185075, - 51.474815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.1, - "qmprice": 38.41, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159496592", - "info": { - "identifier": 159496592, - "sqm_ocr": 78.1, - "price": 3000.0, - "price_per_sqm": 38.4122919334187, - "url": "https://www.rightmove.co.uk/properties/159496592", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84073/159496592/84073_1318843_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.579517", - "last_seen": "2025-06-01T22:05:49.701863", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120928, - 51.581017 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/159497300", - "info": { - "identifier": 159497300, - "sqm_ocr": null, - "price": 3684.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159497300", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/159497300/16023_1318845_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.246452", - "last_seen": "2025-06-01T22:05:57.903322", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178121, - 51.48246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/159498266", - "info": { - "identifier": 159498266, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159498266", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "URBAN BASE PROPERTIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287006/159498266/287006_157RAINHILLWAY_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.180320", - "last_seen": "2025-06-01T22:06:09.864381", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01838, - 51.5279 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.25, - "qmprice": 44.53, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/159499877", - "info": { - "identifier": 159499877, - "sqm_ocr": 66.25, - "price": 2950.0, - "price_per_sqm": 44.528301886792455, - "url": "https://www.rightmove.co.uk/properties/159499877", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "CKB Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/187k/186113/159499877/186113_CKBE_003230_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.202622", - "last_seen": "2025-06-01T22:05:46.448671", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.034877, - 51.45178 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/159501179", - "info": { - "identifier": 159501179, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159501179", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Maurice Louis", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/159k/158258/159501179/158258_038PHC_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.567849", - "last_seen": "2025-06-01T22:06:06.494405", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.050534, - 51.49868 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.48, - "qmprice": 53.89, - "rooms": 2, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/159502253", - "info": { - "identifier": 159502253, - "sqm_ocr": 55.48, - "price": 2990.0, - "price_per_sqm": 53.893294881038216, - "url": "https://www.rightmove.co.uk/properties/159502253", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78265/159502253/78265_CEL210117_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.512563", - "last_seen": "2025-06-01T22:05:58.050054", - "price": 2990 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180904, - 51.485874 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.24, - "qmprice": 43.66, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159506237", - "info": { - "identifier": 159506237, - "sqm_ocr": 49.24, - "price": 2150.0, - "price_per_sqm": 43.66368805848903, - "url": "https://www.rightmove.co.uk/properties/159506237", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148955/159506237/148955_SJL120048_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.585604", - "last_seen": "2025-06-01T22:06:04.580704", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.292399, - 51.45969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.3, - "qmprice": 31.65, - "rooms": 4, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/159510965", - "info": { - "identifier": 159510965, - "sqm_ocr": 88.3, - "price": 2795.0, - "price_per_sqm": 31.653454133635336, - "url": "https://www.rightmove.co.uk/properties/159510965", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Elizabeth Wightwick Bespoke Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/178k/177239/159510965/177239_33745294_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.551106", - "last_seen": "2025-06-01T22:06:01.507245", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219625, - 51.412777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 37.5, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159512192", - "info": { - "identifier": 159512192, - "sqm_ocr": 72.0, - "price": 2700.0, - "price_per_sqm": 37.5, - "url": "https://www.rightmove.co.uk/properties/159512192", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159512192/96668_225425409102024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.377553", - "last_seen": "2025-06-01T22:05:46.945984", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012158, - 51.494003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.15, - "qmprice": 54.38, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/159512501", - "info": { - "identifier": 159512501, - "sqm_ocr": 66.15, - "price": 3597.0, - "price_per_sqm": 54.37641723356008, - "url": "https://www.rightmove.co.uk/properties/159512501", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 76, - "status": null, - "last_seen": 0, - "agency": "London Habitat", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96380/159512501/96380_RL3453_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.353784", - "last_seen": "2025-06-01T22:06:15.150143", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162307, - 51.536434 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/159512738", - "info": { - "identifier": 159512738, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159512738", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81158/159512738/81158_33745395_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.761826", - "last_seen": "2025-06-01T22:05:51.468036", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.382234, - 51.523483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159513521", - "info": { - "identifier": 159513521, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159513521", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Property Hub", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286352/159513521/286352_103231003204_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.888883", - "last_seen": "2025-06-01T22:05:45.459126", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14328, - 51.61537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/159513692", - "info": { - "identifier": 159513692, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159513692", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108343/159513692/108343_CSV160925_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.593866", - "last_seen": "2025-06-01T22:05:48.476590", - "price": 3497.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242626, - 51.50753 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/159514916", - "info": { - "identifier": 159514916, - "sqm_ocr": null, - "price": 3748.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159514916", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/159514916/146147_PR211660_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.801466", - "last_seen": "2025-06-01T22:06:10.173167", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067022, - 51.50871 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/159516563", - "info": { - "identifier": 159516563, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159516563", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Districts London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245744/159516563/245744_33745652_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.020980", - "last_seen": "2025-06-01T22:06:09.419003", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022206, - 51.501595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2453.0, - "url": "https://www.rightmove.co.uk/properties/159517334", - "info": { - "identifier": 159517334, - "sqm_ocr": null, - "price": 2453.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159517334", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/159517334/146147_PR222242_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.493840", - "last_seen": "2025-06-01T17:39:04.044277", - "price": 2452 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009283, - 51.52127 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159519110", - "info": { - "identifier": 159519110, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159519110", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 76, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81158/159519110/81158_33745854_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.229308", - "last_seen": "2025-06-01T22:05:40.011775", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.10709, - 51.462666 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 47.83, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/159519587", - "info": { - "identifier": 159519587, - "sqm_ocr": 77.0, - "price": 3683.0, - "price_per_sqm": 47.83116883116883, - "url": "https://www.rightmove.co.uk/properties/159519587", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greater London Properties", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6474/159519587/6474_GRT_SH_LFSYCL_252_40097510_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.639977", - "last_seen": "2025-06-01T22:06:15.983345", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132154, - 51.51086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.14, - "qmprice": 40.37, - "rooms": 3, - "total_price": 2670.0, - "url": "https://www.rightmove.co.uk/properties/159524501", - "info": { - "identifier": 159524501, - "sqm_ocr": 66.14, - "price": 2670.0, - "price_per_sqm": 40.3689144239492, - "url": "https://www.rightmove.co.uk/properties/159524501", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/159524501/80340_a1G4J00000262rEUAQ_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.373115", - "last_seen": "2025-06-01T22:05:59.711097", - "price": 2670.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12724, - 51.47834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.67, - "qmprice": 50.26, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/159525683", - "info": { - "identifier": 159525683, - "sqm_ocr": 62.67, - "price": 3150.0, - "price_per_sqm": 50.263283867879366, - "url": "https://www.rightmove.co.uk/properties/159525683", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/159525683/48101_1318939_IMG_01_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.477986", - "last_seen": "2025-06-01T22:06:10.477084", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020013, - 51.500065 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/159526448", - "info": { - "identifier": 159526448, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159526448", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159526448/96668_180073515082023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.011702", - "last_seen": "2025-06-01T22:06:05.296922", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091414, - 51.50457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/159528254", - "info": { - "identifier": 159528254, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159528254", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "UK Investment Property Services", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74980/159528254/74980_RL0116_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.449676", - "last_seen": "2025-06-01T22:05:59.185578", - "price": 3675.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12801, - 51.481396 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.3, - "qmprice": 57.38, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/159528302", - "info": { - "identifier": 159528302, - "sqm_ocr": 62.3, - "price": 3575.0, - "price_per_sqm": 57.383627608346714, - "url": "https://www.rightmove.co.uk/properties/159528302", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/159528302/76585_1318955_IMG_01_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.15996, - 51.51971 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 30.26, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159528383", - "info": { - "identifier": 159528383, - "sqm_ocr": 76.0, - "price": 2300.0, - "price_per_sqm": 30.263157894736842, - "url": "https://www.rightmove.co.uk/properties/159528383", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166331/159528383/166331_1318754_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.462332", - "last_seen": "2025-06-01T22:05:40.599701", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29333, - 51.553734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/159535283", - "info": { - "identifier": 159535283, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159535283", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84785/159535283/84785_33746652_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.711074", - "last_seen": "2025-06-01T22:05:44.743883", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.250722, - 51.5078 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2566.0, - "url": "https://www.rightmove.co.uk/properties/159537440", - "info": { - "identifier": 159537440, - "sqm_ocr": null, - "price": 2566.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159537440", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Way of Life", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256148/159537440/256148_EVER-M2M3YWZhZDYtNjUxMy00MDRkLTkzOGQtMjVjZGFjMGFlMDRkLTM=_IMG_29_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.071344", - "last_seen": "2025-06-01T17:39:03.575348", - "price": 2566.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01022, - 51.52516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 135.0, - "qmprice": 22.19, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/159537494", - "info": { - "identifier": 159537494, - "sqm_ocr": 135.0, - "price": 2995.0, - "price_per_sqm": 22.185185185185187, - "url": "https://www.rightmove.co.uk/properties/159537494", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "ABACO Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/184k/183806/159537494/183806_33746908_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.630928", - "last_seen": "2025-06-01T22:06:15.414468", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166875, - 51.526836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.0, - "qmprice": 23.81, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159537776", - "info": { - "identifier": 159537776, - "sqm_ocr": 105.0, - "price": 2500.0, - "price_per_sqm": 23.80952380952381, - "url": "https://www.rightmove.co.uk/properties/159537776", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/256k/255212/159537776/255212_33746935_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.003719", - "last_seen": "2025-06-01T22:05:59.445544", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095499, - 51.46938 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/159537953", - "info": { - "identifier": 159537953, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159537953", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 36, - "status": null, - "last_seen": 0, - "agency": "Japan Letting Agency", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258848/159537953/258848_33746947_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.330682", - "last_seen": "2025-06-01T22:05:47.694062", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075044, - 51.531044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.5, - "qmprice": 46.45, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/159539033", - "info": { - "identifier": 159539033, - "sqm_ocr": 55.5, - "price": 2578.0, - "price_per_sqm": 46.450450450450454, - "url": "https://www.rightmove.co.uk/properties/159539033", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 67, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/159539033/84866_33747016_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.969347", - "last_seen": "2025-06-01T22:05:52.133521", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.251035, - 51.493996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159539306", - "info": { - "identifier": 159539306, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159539306", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 75, - "status": null, - "last_seen": 0, - "agency": "Hinton Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69686/159539306/69686_102800004655_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.207900", - "last_seen": "2025-06-01T22:05:50.691528", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34438, - 51.59824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/159539921", - "info": { - "identifier": 159539921, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159539921", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/159539921/198539_33747077_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.373998", - "last_seen": "2025-06-01T22:06:10.027759", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023878, - 51.515457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.3, - "qmprice": 47.02, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159540131", - "info": { - "identifier": 159540131, - "sqm_ocr": 55.3, - "price": 2600.0, - "price_per_sqm": 47.016274864376136, - "url": "https://www.rightmove.co.uk/properties/159540131", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50713/159540131/50713_33747095_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.343278", - "last_seen": "2025-06-01T22:05:57.980030", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202051, - 51.518204 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 142.8, - "qmprice": 21.01, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159547004", - "info": { - "identifier": 159547004, - "sqm_ocr": 142.8, - "price": 3000.0, - "price_per_sqm": 21.008403361344538, - "url": "https://www.rightmove.co.uk/properties/159547004", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86531/159547004/86531_P296915_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.597235", - "last_seen": "2025-06-01T22:05:58.696815", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30733, - 51.41022 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.1, - "qmprice": 31.01, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/159548867", - "info": { - "identifier": 159548867, - "sqm_ocr": 66.1, - "price": 2050.0, - "price_per_sqm": 31.013615733736764, - "url": "https://www.rightmove.co.uk/properties/159548867", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/159548867/238841_P297314_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.684700", - "last_seen": "2025-06-01T22:05:55.233840", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05982, - 51.49418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.1, - "qmprice": 33.29, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159549029", - "info": { - "identifier": 159549029, - "sqm_ocr": 75.1, - "price": 2500.0, - "price_per_sqm": 33.288948069241016, - "url": "https://www.rightmove.co.uk/properties/159549029", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/159549029/238841_P297313_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.667227", - "last_seen": "2025-06-01T22:05:56.211241", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05982, - 51.49418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 29.77, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159549164", - "info": { - "identifier": 159549164, - "sqm_ocr": 73.9, - "price": 2200.0, - "price_per_sqm": 29.769959404600808, - "url": "https://www.rightmove.co.uk/properties/159549164", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112915/159549164/112915_P297312_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.131518", - "last_seen": "2025-06-01T22:05:56.736764", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05982, - 51.49418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.1, - "qmprice": 30.26, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159549506", - "info": { - "identifier": 159549506, - "sqm_ocr": 66.1, - "price": 2000.0, - "price_per_sqm": 30.257186081694407, - "url": "https://www.rightmove.co.uk/properties/159549506", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/159549506/238841_P297318_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.275305", - "last_seen": "2025-06-01T22:05:46.486112", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05982, - 51.49418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.2, - "qmprice": 29.91, - "rooms": 2, - "total_price": 2040.0, - "url": "https://www.rightmove.co.uk/properties/159550040", - "info": { - "identifier": 159550040, - "sqm_ocr": 68.2, - "price": 2040.0, - "price_per_sqm": 29.912023460410555, - "url": "https://www.rightmove.co.uk/properties/159550040", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/159550040/238841_P297321_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.116698", - "last_seen": "2025-06-01T22:05:57.180916", - "price": 2040.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05982, - 51.49418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3610.0, - "url": "https://www.rightmove.co.uk/properties/159550454", - "info": { - "identifier": 159550454, - "sqm_ocr": null, - "price": 3610.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159550454", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/159550454/78429_LON-234_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.920681", - "last_seen": "2025-06-01T22:05:47.497047", - "price": 3610.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07952, - 51.52775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159552074", - "info": { - "identifier": 159552074, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159552074", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159552074/96668_231145101122024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.601869", - "last_seen": "2025-06-01T22:05:50.087132", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.062951, - 51.59818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159552497", - "info": { - "identifier": 159552497, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159552497", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "URBAN BASE PROPERTIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287006/159552497/287006_8WGR33RH_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.832625", - "last_seen": "2025-06-01T22:06:11.086163", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01962, - 51.51938 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159553607", - "info": { - "identifier": 159553607, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159553607", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "A. C. Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10005/159553607/10005_a33445_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.344717", - "last_seen": "2025-06-01T22:05:51.039630", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.2313, - 51.56281 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.0, - "qmprice": 25.0, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159553649", - "info": { - "identifier": 159553649, - "sqm_ocr": 86.0, - "price": 2150.0, - "price_per_sqm": 25.0, - "url": "https://www.rightmove.co.uk/properties/159553649", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15224/159553649/15224_P461995_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.323790", - "last_seen": "2025-06-01T22:05:41.586080", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02139, - 51.39719 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 155.14, - "qmprice": 22.56, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159558194", - "info": { - "identifier": 159558194, - "sqm_ocr": 155.14, - "price": 3500.0, - "price_per_sqm": 22.560268144901382, - "url": "https://www.rightmove.co.uk/properties/159558194", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "R L Morris Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105431/159558194/105431_RLM_001373_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.842681", - "last_seen": "2025-06-01T22:06:04.120002", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013017, - 51.591427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/159559406", - "info": { - "identifier": 159559406, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159559406", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159559406/96668_242103217032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.898744", - "last_seen": "2025-06-01T22:05:45.005024", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.327093, - 51.5094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.5, - "qmprice": 30.4, - "rooms": 3, - "total_price": 3845.0, - "url": "https://www.rightmove.co.uk/properties/159559445", - "info": { - "identifier": 159559445, - "sqm_ocr": 126.5, - "price": 3845.0, - "price_per_sqm": 30.395256916996047, - "url": "https://www.rightmove.co.uk/properties/159559445", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214295/159559445/214295_LHL250551_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.639706", - "last_seen": "2025-06-01T22:05:38.761759", - "price": 3845.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222426, - 51.571667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.08, - "qmprice": 33.06, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/159563978", - "info": { - "identifier": 159563978, - "sqm_ocr": 71.08, - "price": 2350.0, - "price_per_sqm": 33.06133933595948, - "url": "https://www.rightmove.co.uk/properties/159563978", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/159563978/87187_50291_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.537619", - "last_seen": "2025-06-01T22:05:39.697803", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238156, - 51.594902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/159564698", - "info": { - "identifier": 159564698, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159564698", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/159564698/43310_CWL250122_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.906851", - "last_seen": "2025-06-01T22:06:01.011156", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035204, - 51.492516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2401.0, - "url": "https://www.rightmove.co.uk/properties/159565376", - "info": { - "identifier": 159565376, - "sqm_ocr": null, - "price": 2401.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159565376", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Quest London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/274k/273062/159565376/273062_Shirley_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.086111", - "last_seen": "2025-06-01T22:05:38.254160", - "price": 2400 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.09428, - 51.54186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159565505", - "info": { - "identifier": 159565505, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159565505", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159565505/96668_242200218032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.110499", - "last_seen": "2025-06-01T22:05:50.258791", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.377938, - 51.595234 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159566693", - "info": { - "identifier": 159566693, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159566693", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Butler & Stag", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/145k/144140/159566693/144140_33748584_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.497816", - "last_seen": "2025-06-01T22:06:08.250214", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03642, - 51.52729 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/159567449", - "info": { - "identifier": 159567449, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159567449", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/159567449/181787_181787_1036_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.775484", - "last_seen": "2025-06-01T22:06:05.428657", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08942, - 51.50129 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.83, - "qmprice": 39.93, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/159567695", - "info": { - "identifier": 159567695, - "sqm_ocr": 86.83, - "price": 3467.0, - "price_per_sqm": 39.928596107336176, - "url": "https://www.rightmove.co.uk/properties/159567695", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Eccord", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242501/159567695/242501_10148_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.112757", - "last_seen": "2025-06-01T22:05:53.899194", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09711, - 51.525963 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.3, - "qmprice": 36.52, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159569804", - "info": { - "identifier": 159569804, - "sqm_ocr": 75.3, - "price": 2750.0, - "price_per_sqm": 36.52058432934927, - "url": "https://www.rightmove.co.uk/properties/159569804", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210110/159569804/210110_P297358_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.122546", - "last_seen": "2025-06-01T22:06:15.433970", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20006, - 51.52355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 34.66, - "rooms": 2, - "total_price": 2149.0, - "url": "https://www.rightmove.co.uk/properties/159575204", - "info": { - "identifier": 159575204, - "sqm_ocr": 62.0, - "price": 2149.0, - "price_per_sqm": 34.66129032258065, - "url": "https://www.rightmove.co.uk/properties/159575204", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Abacus Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26267/159575204/26267_ABAC_017422_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.416366", - "last_seen": "2025-06-01T22:05:40.484326", - "price": 2149 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218947, - 51.55711 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.99, - "qmprice": 44.7, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/159576833", - "info": { - "identifier": 159576833, - "sqm_ocr": 65.99, - "price": 2950.0, - "price_per_sqm": 44.70374299136233, - "url": "https://www.rightmove.co.uk/properties/159576833", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84073/159576833/84073_1319135_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.393910", - "last_seen": "2025-06-01T22:05:49.819154", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116594, - 51.587772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.9, - "qmprice": 29.64, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159577562", - "info": { - "identifier": 159577562, - "sqm_ocr": 75.9, - "price": 2250.0, - "price_per_sqm": 29.644268774703555, - "url": "https://www.rightmove.co.uk/properties/159577562", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166331/159577562/166331_1318500_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.715366", - "last_seen": "2025-06-01T22:05:41.247533", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29333, - 51.553734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.5, - "qmprice": 30.83, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/159580895", - "info": { - "identifier": 159580895, - "sqm_ocr": 126.5, - "price": 3900.0, - "price_per_sqm": 30.8300395256917, - "url": "https://www.rightmove.co.uk/properties/159580895", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214295/159580895/214295_LHL250550_L_IMG_04_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.606047", - "last_seen": "2025-06-01T22:05:38.784371", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221321, - 51.57142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159581879", - "info": { - "identifier": 159581879, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159581879", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "The Property Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270950/159581879/270950_croydoncompanylet_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.595864", - "last_seen": "2025-06-01T22:05:43.798918", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08514, - 51.37641 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.57, - "qmprice": 50.36, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159582764", - "info": { - "identifier": 159582764, - "sqm_ocr": 59.57, - "price": 3000.0, - "price_per_sqm": 50.36091992613732, - "url": "https://www.rightmove.co.uk/properties/159582764", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Mile", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53010/159582764/53010_101541007897_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.041305", - "last_seen": "2025-06-01T22:05:55.668627", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24598, - 51.53647 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.7, - "qmprice": 27.99, - "rooms": 2, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/159583277", - "info": { - "identifier": 159583277, - "sqm_ocr": 92.7, - "price": 2595.0, - "price_per_sqm": 27.993527508090615, - "url": "https://www.rightmove.co.uk/properties/159583277", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84815/159583277/84815_33740574_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.635551", - "last_seen": "2025-06-01T22:06:04.653300", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.318981, - 51.417126 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/159583424", - "info": { - "identifier": 159583424, - "sqm_ocr": null, - "price": 3987.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159583424", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/159583424/120463_33749697_IMG_00_0000_max_656x437.png", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.482866", - "last_seen": "2025-06-01T22:06:15.318735", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14425, - 51.52133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.28, - "qmprice": 39.32, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/159584063", - "info": { - "identifier": 159584063, - "sqm_ocr": 76.28, - "price": 2999.0, - "price_per_sqm": 39.315679077084425, - "url": "https://www.rightmove.co.uk/properties/159584063", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84794/159584063/84794_31985155_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.089677", - "last_seen": "2025-06-01T22:05:57.091812", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210419, - 51.478226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.54, - "qmprice": 45.56, - "rooms": 2, - "total_price": 3077.0, - "url": "https://www.rightmove.co.uk/properties/159584321", - "info": { - "identifier": 159584321, - "sqm_ocr": 67.54, - "price": 3077.0, - "price_per_sqm": 45.55818774059816, - "url": "https://www.rightmove.co.uk/properties/159584321", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51411/159584321/51411_4998_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.449730", - "last_seen": "2025-06-01T22:05:57.999579", - "price": 3076 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169387, - 51.486557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.22, - "qmprice": 59.21, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159591608", - "info": { - "identifier": 159591608, - "sqm_ocr": 42.22, - "price": 2500.0, - "price_per_sqm": 59.21364282330649, - "url": "https://www.rightmove.co.uk/properties/159591608", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19059/159591608/19059_bccab192-f11a-4dcb-808b-9534fa2cdf33_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.104159", - "last_seen": "2025-06-01T22:05:50.270273", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303869, - 51.605747 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.0, - "qmprice": 26.7, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159592757", - "info": { - "identifier": 159592757, - "sqm_ocr": 103.0, - "price": 2750.0, - "price_per_sqm": 26.699029126213592, - "url": "https://www.rightmove.co.uk/properties/159592757", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "jdm", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250727/159592757/250727_LGW250034_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.576243", - "last_seen": "2025-06-01T22:05:46.139347", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.045325, - 51.471622 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 43.38, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/159594530", - "info": { - "identifier": 159594530, - "sqm_ocr": 68.0, - "price": 2950.0, - "price_per_sqm": 43.38235294117647, - "url": "https://www.rightmove.co.uk/properties/159594530", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129652/159594530/129652_P5552D3818_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.713043", - "last_seen": "2025-06-01T22:05:49.608255", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11721, - 51.58897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159594968", - "info": { - "identifier": 159594968, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159594968", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Andrew Reeves", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20732/159594968/20732_000881341_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.331800", - "last_seen": "2025-06-01T22:05:41.534552", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05643, - 51.41991 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159595235", - "info": { - "identifier": 159595235, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159595235", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "LONDON & COUNTRY", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284030/159595235/284030_PRP_1042_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.069556", - "last_seen": "2025-06-01T22:06:00.287964", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038003, - 51.492104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.42, - "qmprice": 37.65, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/159595733", - "info": { - "identifier": 159595733, - "sqm_ocr": 62.42, - "price": 2350.0, - "price_per_sqm": 37.648189682793976, - "url": "https://www.rightmove.co.uk/properties/159595733", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Charles Henry Peppiatt Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78489/159595733/78489_15760_AGRN_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.242987", - "last_seen": "2025-06-01T22:05:46.457896", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013033, - 51.496876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159596042", - "info": { - "identifier": 159596042, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159596042", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48456/159596042/48456_YLM170030_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.352240", - "last_seen": "2025-06-01T22:06:04.701851", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31822, - 51.45526 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 34.05, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/159597125", - "info": { - "identifier": 159597125, - "sqm_ocr": 63.0, - "price": 2145.0, - "price_per_sqm": 34.04761904761905, - "url": "https://www.rightmove.co.uk/properties/159597125", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 74, - "status": null, - "last_seen": 0, - "agency": "ADN Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283532/159597125/283532_33750452_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.115493", - "last_seen": "2025-06-01T22:05:39.743815", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178335, - 51.590584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159597524", - "info": { - "identifier": 159597524, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159597524", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Langford Rae Property Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43395/159597524/43395_dbc04cf6-1315-4b6e-82e2-9110204c6de2_IMG_11_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.261519", - "last_seen": "2025-06-01T22:05:41.611651", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.108104, - 51.35621 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159600239", - "info": { - "identifier": 159600239, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159600239", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30575/159600239/30575_05311847_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.244534", - "last_seen": "2025-06-01T22:06:01.707755", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198088, - 51.42537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.6, - "qmprice": 29.04, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/159600332", - "info": { - "identifier": 159600332, - "sqm_ocr": 101.6, - "price": 2950.0, - "price_per_sqm": 29.035433070866144, - "url": "https://www.rightmove.co.uk/properties/159600332", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Birchills", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115933/159600332/115933_bbcaae41-10b1-4f49-b4e7-7cd1fb73e568_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.700688", - "last_seen": "2025-06-01T22:06:11.859525", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021061, - 51.567886 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159601385", - "info": { - "identifier": 159601385, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159601385", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Warren Powell-Richards", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107821/159601385/107821_HAS250055_L_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.348284", - "last_seen": "2025-06-01T22:05:51.561261", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.421698, - 51.49887 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159602198", - "info": { - "identifier": 159602198, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159602198", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97142/159602198/97142_33659837_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.916524", - "last_seen": "2025-06-01T22:06:13.685612", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213468, - 51.45972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.9, - "qmprice": 63.34, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/159604025", - "info": { - "identifier": 159604025, - "sqm_ocr": 47.9, - "price": 3034.0, - "price_per_sqm": 63.340292275574114, - "url": "https://www.rightmove.co.uk/properties/159604025", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/159604025/15942_1319120_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.258031", - "last_seen": "2025-06-01T22:05:57.599105", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183839, - 51.490776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.6, - "qmprice": 40.57, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159604421", - "info": { - "identifier": 159604421, - "sqm_ocr": 98.6, - "price": 4000.0, - "price_per_sqm": 40.56795131845842, - "url": "https://www.rightmove.co.uk/properties/159604421", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151658/159604421/151658_1316919_IMG_00_0013_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.242121", - "last_seen": "2025-06-01T22:06:15.759189", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177902, - 51.521545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.2, - "qmprice": 46.18, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/159611531", - "info": { - "identifier": 159611531, - "sqm_ocr": 81.2, - "price": 3750.0, - "price_per_sqm": 46.18226600985221, - "url": "https://www.rightmove.co.uk/properties/159611531", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 59, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82857/159611531/82857_1319215_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.588596", - "last_seen": "2025-06-01T22:06:11.007279", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017478, - 51.521534 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.2, - "qmprice": 43.14, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/159612056", - "info": { - "identifier": 159612056, - "sqm_ocr": 67.2, - "price": 2899.0, - "price_per_sqm": 43.13988095238095, - "url": "https://www.rightmove.co.uk/properties/159612056", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84869/159612056/84869_33751355_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.518814", - "last_seen": "2025-06-01T22:05:49.150385", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185075, - 51.474815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159616079", - "info": { - "identifier": 159616079, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159616079", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Coady Phillips", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14167/159616079/14167_837_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.560335", - "last_seen": "2025-06-01T22:06:14.050977", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142969, - 51.426 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3290.0, - "url": "https://www.rightmove.co.uk/properties/159616106", - "info": { - "identifier": 159616106, - "sqm_ocr": null, - "price": 3290.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159616106", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/159616106/78429_LON-217_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.690210", - "last_seen": "2025-06-01T22:06:12.025254", - "price": 3290.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04216, - 51.58796 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.6, - "qmprice": 48.91, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/159617945", - "info": { - "identifier": 159617945, - "sqm_ocr": 57.6, - "price": 2817.0, - "price_per_sqm": 48.90625, - "url": "https://www.rightmove.co.uk/properties/159617945", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32391/159617945/32391_33751756_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.142652", - "last_seen": "2025-06-01T22:05:41.967255", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12817, - 51.526592 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/159619403", - "info": { - "identifier": 159619403, - "sqm_ocr": null, - "price": 3987.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159619403", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92503/159619403/92503_FUL230067_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.507725", - "last_seen": "2025-06-01T22:05:49.297327", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223542, - 51.48246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.8, - "qmprice": 35.18, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/159620312", - "info": { - "identifier": 159620312, - "sqm_ocr": 66.8, - "price": 2350.0, - "price_per_sqm": 35.17964071856287, - "url": "https://www.rightmove.co.uk/properties/159620312", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/159620312/87815_1318291_IMG_03_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.583265", - "last_seen": "2025-06-01T22:05:39.688217", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204656, - 51.646347 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.8, - "qmprice": 56.14, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/159620315", - "info": { - "identifier": 159620315, - "sqm_ocr": 66.8, - "price": 3750.0, - "price_per_sqm": 56.137724550898206, - "url": "https://www.rightmove.co.uk/properties/159620315", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/159620315/87815_1318292_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.577269", - "last_seen": "2025-06-01T22:05:39.692605", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204656, - 51.646347 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 36.81, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/159620468", - "info": { - "identifier": 159620468, - "sqm_ocr": 72.0, - "price": 2650.0, - "price_per_sqm": 36.80555555555556, - "url": "https://www.rightmove.co.uk/properties/159620468", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/193k/192209/159620468/192209_33751896_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.478250", - "last_seen": "2025-06-01T22:05:44.777238", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303546, - 51.49717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3530.0, - "url": "https://www.rightmove.co.uk/properties/159620663", - "info": { - "identifier": 159620663, - "sqm_ocr": null, - "price": 3530.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159620663", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/159620663/78429_LON-102_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.565444", - "last_seen": "2025-06-01T22:05:59.582561", - "price": 3530.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1116, - 51.50147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.21, - "qmprice": 28.67, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159620873", - "info": { - "identifier": 159620873, - "sqm_ocr": 87.21, - "price": 2500.0, - "price_per_sqm": 28.666437335167988, - "url": "https://www.rightmove.co.uk/properties/159620873", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Fieldhouse Residential Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5539/159620873/5539_33751922_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.263822", - "last_seen": "2025-06-01T22:06:14.252064", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167406, - 51.428444 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.8, - "qmprice": 45.79, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/159624002", - "info": { - "identifier": 159624002, - "sqm_ocr": 80.8, - "price": 3700.0, - "price_per_sqm": 45.79207920792079, - "url": "https://www.rightmove.co.uk/properties/159624002", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chase Apartments", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34047/159624002/34047_33752106_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.195297", - "last_seen": "2025-06-01T22:05:49.119672", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.226129, - 51.487617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.2, - "qmprice": 29.34, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159624632", - "info": { - "identifier": 159624632, - "sqm_ocr": 85.2, - "price": 2500.0, - "price_per_sqm": 29.342723004694836, - "url": "https://www.rightmove.co.uk/properties/159624632", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14614/159624632/14614_BLA170924_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.617656", - "last_seen": "2025-06-01T22:05:56.470441", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012806, - 51.45951 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3077.0, - "url": "https://www.rightmove.co.uk/properties/159624950", - "info": { - "identifier": 159624950, - "sqm_ocr": null, - "price": 3077.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159624950", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 68, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/159624950/120463_33752175_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.137453", - "last_seen": "2025-06-01T22:06:15.627593", - "price": 3076 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170448, - 51.515163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.9, - "qmprice": 35.78, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/159624968", - "info": { - "identifier": 159624968, - "sqm_ocr": 96.9, - "price": 3467.0, - "price_per_sqm": 35.779153766769866, - "url": "https://www.rightmove.co.uk/properties/159624968", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/159624968/15942_1319312_IMG_00_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.474817", - "last_seen": "2025-06-01T22:05:58.085008", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186509, - 51.496086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.8, - "qmprice": 31.84, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159625892", - "info": { - "identifier": 159625892, - "sqm_ocr": 84.8, - "price": 2700.0, - "price_per_sqm": 31.839622641509436, - "url": "https://www.rightmove.co.uk/properties/159625892", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84803/159625892/84803_33752244_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.095940", - "last_seen": "2025-06-01T22:06:12.850817", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195801, - 51.45697 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159626648", - "info": { - "identifier": 159626648, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159626648", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "HYBR", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269531/159626648/269531_d75d2834-231c-4492-afb8-ade78ef235c5_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.205289", - "last_seen": "2025-06-01T22:05:45.316249", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.280965, - 51.5176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.3, - "qmprice": 38.43, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/159627161", - "info": { - "identifier": 159627161, - "sqm_ocr": 73.3, - "price": 2817.0, - "price_per_sqm": 38.43110504774898, - "url": "https://www.rightmove.co.uk/properties/159627161", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50701/159627161/50701_33752332_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.051896", - "last_seen": "2025-06-01T22:05:57.767332", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182117, - 51.49156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.49, - "qmprice": 47.58, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/159628007", - "info": { - "identifier": 159628007, - "sqm_ocr": 73.49, - "price": 3497.0, - "price_per_sqm": 47.58470540209553, - "url": "https://www.rightmove.co.uk/properties/159628007", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191579/159628007/191579_KCR210413_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.895777", - "last_seen": "2025-06-01T22:05:53.820264", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121351, - 51.532707 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159628514", - "info": { - "identifier": 159628514, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159628514", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Link Up Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16013/159628514/16013_2d6a55e3-56f5-4a4f-a363-40e0be02b9a8_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.341659, - 51.56781 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159630827", - "info": { - "identifier": 159630827, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159630827", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "Bells Estate Agent", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270521/159630827/270521_33752609_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.136739", - "last_seen": "2025-06-01T22:06:03.294850", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06182, - 51.53693 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.6, - "qmprice": 25.74, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159630950", - "info": { - "identifier": 159630950, - "sqm_ocr": 81.6, - "price": 2100.0, - "price_per_sqm": 25.73529411764706, - "url": "https://www.rightmove.co.uk/properties/159630950", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/159630950/130309_1319382_IMG_00_0010_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.868044", - "last_seen": "2025-06-01T22:05:43.585780", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094226, - 51.376102 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.3, - "qmprice": 40.93, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159631313", - "info": { - "identifier": 159631313, - "sqm_ocr": 73.3, - "price": 3000.0, - "price_per_sqm": 40.92769440654843, - "url": "https://www.rightmove.co.uk/properties/159631313", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108938/159631313/108938_1319284_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.261899", - "last_seen": "2025-06-01T22:05:55.539955", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079343, - 51.556847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/159632783", - "info": { - "identifier": 159632783, - "sqm_ocr": null, - "price": 3397.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159632783", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/159632783/17888_39683_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.299407", - "last_seen": "2025-06-01T22:05:42.830944", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13918, - 51.54238 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.2, - "qmprice": 34.15, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159634679", - "info": { - "identifier": 159634679, - "sqm_ocr": 73.2, - "price": 2500.0, - "price_per_sqm": 34.15300546448087, - "url": "https://www.rightmove.co.uk/properties/159634679", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66768/159634679/66768_1319434_IMG_00_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.082387", - "last_seen": "2025-06-01T22:06:05.147519", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06706, - 51.46374 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.9, - "qmprice": 63.34, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/159634697", - "info": { - "identifier": 159634697, - "sqm_ocr": 47.9, - "price": 3034.0, - "price_per_sqm": 63.340292275574114, - "url": "https://www.rightmove.co.uk/properties/159634697", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/159634697/15942_1319417_IMG_00_0012_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.312850", - "last_seen": "2025-06-01T22:05:57.471408", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183839, - 51.490776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 137.7, - "qmprice": 21.79, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159635720", - "info": { - "identifier": 159635720, - "sqm_ocr": 137.7, - "price": 3000.0, - "price_per_sqm": 21.786492374727672, - "url": "https://www.rightmove.co.uk/properties/159635720", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Colin Dean Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118630/159635720/118630_33752884_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.820731", - "last_seen": "2025-06-01T22:05:40.320194", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.306376, - 51.58594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.06, - "qmprice": 33.69, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159636929", - "info": { - "identifier": 159636929, - "sqm_ocr": 89.06, - "price": 3000.0, - "price_per_sqm": 33.68515607455648, - "url": "https://www.rightmove.co.uk/properties/159636929", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/159636929/15966_1319378_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.807435", - "last_seen": "2025-06-01T22:06:12.099776", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175757, - 51.471684 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.05, - "qmprice": 48.71, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/159636944", - "info": { - "identifier": 159636944, - "sqm_ocr": 60.05, - "price": 2925.0, - "price_per_sqm": 48.70940882597835, - "url": "https://www.rightmove.co.uk/properties/159636944", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/159636944/15945_1319229_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.383054", - "last_seen": "2025-06-01T22:05:57.382234", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19823, - 51.511185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.5, - "qmprice": 52.1, - "rooms": 2, - "total_price": 2579.0, - "url": "https://www.rightmove.co.uk/properties/159636947", - "info": { - "identifier": 159636947, - "sqm_ocr": 49.5, - "price": 2579.0, - "price_per_sqm": 52.101010101010104, - "url": "https://www.rightmove.co.uk/properties/159636947", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/159636947/15945_1318200_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.045368", - "last_seen": "2025-06-01T22:06:14.283625", - "price": 2579.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185777, - 51.511612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3325.0, - "url": "https://www.rightmove.co.uk/properties/159638306", - "info": { - "identifier": 159638306, - "sqm_ocr": null, - "price": 3325.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159638306", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/159638306/253853_1319269_IMG_00_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.047735", - "last_seen": "2025-06-01T22:06:05.566178", - "price": 3325.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102929, - 51.492832 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.6, - "qmprice": 34.56, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/159638762", - "info": { - "identifier": 159638762, - "sqm_ocr": 92.6, - "price": 3200.0, - "price_per_sqm": 34.55723542116631, - "url": "https://www.rightmove.co.uk/properties/159638762", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Akelius Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102505/159638762/102505_40013-39_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.128681", - "last_seen": "2025-06-01T22:05:59.537103", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10309, - 51.47733 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.4, - "qmprice": 39.31, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/159650168", - "info": { - "identifier": 159650168, - "sqm_ocr": 81.4, - "price": 3200.0, - "price_per_sqm": 39.31203931203931, - "url": "https://www.rightmove.co.uk/properties/159650168", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/159650168/253853_1319107_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.440301", - "last_seen": "2025-06-01T22:06:06.487301", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101788, - 51.49341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.83, - "qmprice": 52.05, - "rooms": 2, - "total_price": 3999.0, - "url": "https://www.rightmove.co.uk/properties/159651209", - "info": { - "identifier": 159651209, - "sqm_ocr": 76.83, - "price": 3999.0, - "price_per_sqm": 52.04998047637642, - "url": "https://www.rightmove.co.uk/properties/159651209", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/159651209/238265_L104557_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.088072", - "last_seen": "2025-06-01T22:06:13.583060", - "price": 3999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134262, - 51.480274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/159651671", - "info": { - "identifier": 159651671, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159651671", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/159651671/272819_33753396_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.760584", - "last_seen": "2025-06-01T22:05:48.782634", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223849, - 51.51098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/159651689", - "info": { - "identifier": 159651689, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159651689", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/159651689/272819_33753384_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.383157", - "last_seen": "2025-06-01T22:06:06.125298", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096282, - 51.489227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.7, - "qmprice": 29.55, - "rooms": 2, - "total_price": 2296.0, - "url": "https://www.rightmove.co.uk/properties/159651731", - "info": { - "identifier": 159651731, - "sqm_ocr": 77.7, - "price": 2296.0, - "price_per_sqm": 29.54954954954955, - "url": "https://www.rightmove.co.uk/properties/159651731", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/159651731/272819_33753381_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.609165", - "last_seen": "2025-06-01T22:06:03.139478", - "price": 2296.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.073794, - 51.50689 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.3, - "qmprice": 33.31, - "rooms": 2, - "total_price": 2075.0, - "url": "https://www.rightmove.co.uk/properties/159653771", - "info": { - "identifier": 159653771, - "sqm_ocr": 62.3, - "price": 2075.0, - "price_per_sqm": 33.30658105939005, - "url": "https://www.rightmove.co.uk/properties/159653771", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 73, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/159653771/77192_WDG123_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.435558", - "last_seen": "2025-06-01T22:05:49.686691", - "price": 2075.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09187, - 51.5873 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.51, - "qmprice": 46.54, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/159654926", - "info": { - "identifier": 159654926, - "sqm_ocr": 67.51, - "price": 3142.0, - "price_per_sqm": 46.54125314768182, - "url": "https://www.rightmove.co.uk/properties/159654926", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/159654926/15954_1319276_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.788166", - "last_seen": "2025-06-01T22:05:54.143901", - "price": 3142.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114441, - 51.54806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 30.86, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159655046", - "info": { - "identifier": 159655046, - "sqm_ocr": 81.0, - "price": 2500.0, - "price_per_sqm": 30.864197530864196, - "url": "https://www.rightmove.co.uk/properties/159655046", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49000/159655046/49000_DOL010179_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.254219", - "last_seen": "2025-06-01T22:06:09.450344", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063494, - 51.503864 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.33, - "qmprice": 44.03, - "rooms": 3, - "total_price": 3449.0, - "url": "https://www.rightmove.co.uk/properties/159656042", - "info": { - "identifier": 159656042, - "sqm_ocr": 78.33, - "price": 3449.0, - "price_per_sqm": 44.03166092174135, - "url": "https://www.rightmove.co.uk/properties/159656042", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3355/159656042/3355_33753905_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.862067", - "last_seen": "2025-06-01T22:05:53.062627", - "price": 3449 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114268, - 51.56613 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/159656846", - "info": { - "identifier": 159656846, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159656846", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/159656846/238265_L48336_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.557945", - "last_seen": "2025-06-01T22:05:59.822028", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132944, - 51.474255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.49, - "qmprice": 47.63, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159657413", - "info": { - "identifier": 159657413, - "sqm_ocr": 52.49, - "price": 2500.0, - "price_per_sqm": 47.62811964183654, - "url": "https://www.rightmove.co.uk/properties/159657413", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44645/159657413/44645_WFL190027_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.788715", - "last_seen": "2025-06-01T22:05:49.516086", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213458, - 51.48041 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159658157", - "info": { - "identifier": 159658157, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159658157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13325/159658157/13325_CHL150011_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.291956", - "last_seen": "2025-06-01T22:05:52.249590", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30162, - 51.4831 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.87, - "qmprice": 33.7, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159660134", - "info": { - "identifier": 159660134, - "sqm_ocr": 103.87, - "price": 3500.0, - "price_per_sqm": 33.69596611148551, - "url": "https://www.rightmove.co.uk/properties/159660134", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63509/159660134/63509_P2694J3104_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.262263", - "last_seen": "2025-06-01T22:06:13.475970", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17092, - 51.42679 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.1, - "qmprice": 33.01, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/159662102", - "info": { - "identifier": 159662102, - "sqm_ocr": 115.1, - "price": 3800.0, - "price_per_sqm": 33.01476976542138, - "url": "https://www.rightmove.co.uk/properties/159662102", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 52, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210107/159662102/210107_P297146_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.015894", - "last_seen": "2025-06-01T22:05:40.743752", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20673, - 51.54092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/159662585", - "info": { - "identifier": 159662585, - "sqm_ocr": null, - "price": 2496.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159662585", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202016/159662585/202016_33674950_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.508028", - "last_seen": "2025-06-01T22:05:57.068819", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.315685, - 51.50203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.3, - "qmprice": 49.18, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/159663398", - "info": { - "identifier": 159663398, - "sqm_ocr": 79.3, - "price": 3900.0, - "price_per_sqm": 49.18032786885246, - "url": "https://www.rightmove.co.uk/properties/159663398", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212384/159663398/212384_P159541_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.881272", - "last_seen": "2025-06-01T22:05:47.871816", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08832, - 51.52745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 28.19, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/159664289", - "info": { - "identifier": 159664289, - "sqm_ocr": 85.0, - "price": 2396.0, - "price_per_sqm": 28.188235294117646, - "url": "https://www.rightmove.co.uk/properties/159664289", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85699/159664289/85699_CHI250128_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.323119", - "last_seen": "2025-06-01T22:05:48.415530", - "price": 2396.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225105, - 51.505623 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159664781", - "info": { - "identifier": 159664781, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159664781", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Northwoods Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18680/159664781/18680_NORT_004908_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.735980", - "last_seen": "2025-06-01T22:05:43.358201", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.086725, - 51.40084 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.16, - "qmprice": 49.18, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159664880", - "info": { - "identifier": 159664880, - "sqm_ocr": 71.16, - "price": 3500.0, - "price_per_sqm": 49.184935356942105, - "url": "https://www.rightmove.co.uk/properties/159664880", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/159664880/15951_1318933_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.008786", - "last_seen": "2025-06-01T22:05:52.131783", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.272043, - 51.485493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159668963", - "info": { - "identifier": 159668963, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159668963", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/159668963/17888_39686_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.331268", - "last_seen": "2025-06-01T22:06:15.208691", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16608, - 51.51547 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159672935", - "info": { - "identifier": 159672935, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159672935", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "The Property Shop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167138/159672935/167138_TPR1001210_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.172292", - "last_seen": "2025-06-01T22:05:50.681085", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27283, - 51.60422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.5, - "qmprice": 50.19, - "rooms": 2, - "total_price": 2384.0, - "url": "https://www.rightmove.co.uk/properties/159672986", - "info": { - "identifier": 159672986, - "sqm_ocr": 47.5, - "price": 2384.0, - "price_per_sqm": 50.189473684210526, - "url": "https://www.rightmove.co.uk/properties/159672986", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/159672986/15957_1319546_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.370907", - "last_seen": "2025-06-01T22:05:42.923249", - "price": 2384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164573, - 51.549057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159677864", - "info": { - "identifier": 159677864, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159677864", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Peter Michael Estates & Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25176/159677864/25176_512_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.260324", - "last_seen": "2025-06-01T22:05:45.555490", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14777, - 51.64785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2599.0, - "url": "https://www.rightmove.co.uk/properties/159678029", - "info": { - "identifier": 159678029, - "sqm_ocr": null, - "price": 2599.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159678029", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Century 21 London Central", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45920/159678029/45920_R209812_IMG_09_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.056475", - "last_seen": "2025-06-01T22:06:05.555912", - "price": 2599.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.085619, - 51.485615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/159678341", - "info": { - "identifier": 159678341, - "sqm_ocr": null, - "price": 3597.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159678341", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/159678341/84788_33755291_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.144981", - "last_seen": "2025-06-01T22:05:51.862482", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.253768, - 51.489616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.08, - "qmprice": 46.83, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/159678485", - "info": { - "identifier": 159678485, - "sqm_ocr": 80.08, - "price": 3750.0, - "price_per_sqm": 46.82817182817183, - "url": "https://www.rightmove.co.uk/properties/159678485", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/159678485/48994_CNL210047_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:56.222551", - "last_seen": "2025-06-01T22:06:09.772306", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013619, - 51.50003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2245.0, - "url": "https://www.rightmove.co.uk/properties/159681434", - "info": { - "identifier": 159681434, - "sqm_ocr": null, - "price": 2245.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159681434", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Fyfe McDade Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53027/159681434/53027_FML001883_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.439509", - "last_seen": "2025-06-01T22:05:47.374080", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.045139, - 51.556007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159681461", - "info": { - "identifier": 159681461, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159681461", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/159681461/44537_TOL240766_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.643812", - "last_seen": "2025-06-01T22:06:05.363288", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077838, - 51.49606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.4, - "qmprice": 46.83, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159681941", - "info": { - "identifier": 159681941, - "sqm_ocr": 69.4, - "price": 3250.0, - "price_per_sqm": 46.82997118155619, - "url": "https://www.rightmove.co.uk/properties/159681941", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/159681941/15942_1319571_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.268651", - "last_seen": "2025-06-01T22:05:57.522297", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180952, - 51.479717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.18, - "qmprice": 42.95, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/159682166", - "info": { - "identifier": 159682166, - "sqm_ocr": 72.18, - "price": 3100.0, - "price_per_sqm": 42.94818509282349, - "url": "https://www.rightmove.co.uk/properties/159682166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Camerons Stiff & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34175/159682166/34175_33755628_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.868554", - "last_seen": "2025-06-01T22:05:40.233500", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210208, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 45.2, - "rooms": 2, - "total_price": 3164.0, - "url": "https://www.rightmove.co.uk/properties/159682307", - "info": { - "identifier": 159682307, - "sqm_ocr": 70.0, - "price": 3164.0, - "price_per_sqm": 45.2, - "url": "https://www.rightmove.co.uk/properties/159682307", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/159682307/48101_1319567_IMG_00_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.549917", - "last_seen": "2025-06-01T22:06:10.202985", - "price": 3164.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019639, - 51.498684 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 46.95, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/159683327", - "info": { - "identifier": 159683327, - "sqm_ocr": 60.0, - "price": 2817.0, - "price_per_sqm": 46.95, - "url": "https://www.rightmove.co.uk/properties/159683327", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/159683327/55101_1319670_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.249635", - "last_seen": "2025-06-01T22:06:06.034195", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038245, - 51.492836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/159683897", - "info": { - "identifier": 159683897, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159683897", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/159683897/194222_HRP250218_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.280329", - "last_seen": "2025-06-01T22:06:01.243624", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212722, - 51.415947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.31, - "qmprice": 24.6, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/159683996", - "info": { - "identifier": 159683996, - "sqm_ocr": 89.31, - "price": 2197.0, - "price_per_sqm": 24.59970887918486, - "url": "https://www.rightmove.co.uk/properties/159683996", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/159683996/84788_33756859_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.113732", - "last_seen": "2025-06-01T22:05:52.561606", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.250392, - 51.488747 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159684086", - "info": { - "identifier": 159684086, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159684086", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 59, - "status": null, - "last_seen": 0, - "agency": "Humphrey & CO Property Services", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79533/159684086/79533_33756870_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.657822", - "last_seen": "2025-06-01T22:06:11.706676", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017652, - 51.59982 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/159684812", - "info": { - "identifier": 159684812, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159684812", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/159684812/176261_102708042184_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.628647", - "last_seen": "2025-06-01T22:05:49.650015", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05559, - 51.58851 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.0, - "qmprice": 26.26, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159685445", - "info": { - "identifier": 159685445, - "sqm_ocr": 99.0, - "price": 2600.0, - "price_per_sqm": 26.262626262626263, - "url": "https://www.rightmove.co.uk/properties/159685445", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/159685445/44537_TOL250785_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.539044", - "last_seen": "2025-06-01T22:06:06.728101", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077838, - 51.49606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159686222", - "info": { - "identifier": 159686222, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159686222", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 72, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58464/159686222/58464_33757060_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.784563", - "last_seen": "2025-06-01T22:05:58.692992", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300699, - 51.4113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2099.0, - "url": "https://www.rightmove.co.uk/properties/159687041", - "info": { - "identifier": 159687041, - "sqm_ocr": null, - "price": 2099.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159687041", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159687041/96668_242540521032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.902077", - "last_seen": "2025-06-01T22:05:49.364880", - "price": 2099.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.236482, - 51.50635 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159687482", - "info": { - "identifier": 159687482, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159687482", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Belvoir", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235832/159687482/235832_P255_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.588755", - "last_seen": "2025-06-01T22:05:48.463926", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21892, - 51.48364 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/159687575", - "info": { - "identifier": 159687575, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159687575", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "QSR ESTATES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284531/159687575/284531_QSR103_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.033871", - "last_seen": "2025-06-01T22:06:03.568781", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0369, - 51.52606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/159690773", - "info": { - "identifier": 159690773, - "sqm_ocr": null, - "price": 3597.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159690773", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Primden Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261275/159690773/261275_14241_000590_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.994990", - "last_seen": "2025-06-01T22:05:53.851291", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117873, - 51.556034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.69, - "qmprice": 50.83, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159692261", - "info": { - "identifier": 159692261, - "sqm_ocr": 78.69, - "price": 4000.0, - "price_per_sqm": 50.832380226204094, - "url": "https://www.rightmove.co.uk/properties/159692261", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51316/159692261/51316_LIL080393_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.012742", - "last_seen": "2025-06-01T22:06:14.314606", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193492, - 51.528168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.5, - "qmprice": 36.42, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/159692828", - "info": { - "identifier": 159692828, - "sqm_ocr": 86.5, - "price": 3150.0, - "price_per_sqm": 36.41618497109827, - "url": "https://www.rightmove.co.uk/properties/159692828", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166334/159692828/166334_1319695_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.396980", - "last_seen": "2025-06-01T22:05:49.986791", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.054456, - 51.58857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.53, - "qmprice": 43.39, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/159693221", - "info": { - "identifier": 159693221, - "sqm_ocr": 57.53, - "price": 2496.0, - "price_per_sqm": 43.38605944724492, - "url": "https://www.rightmove.co.uk/properties/159693221", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/159693221/84866_33757567_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.326346", - "last_seen": "2025-06-01T22:05:52.381045", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.282233, - 51.49009 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/159694121", - "info": { - "identifier": 159694121, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159694121", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/159694121/32793_39243_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.414175", - "last_seen": "2025-06-01T22:05:40.506864", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28835, - 51.56012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159695942", - "info": { - "identifier": 159695942, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159695942", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Houseen Lettings & Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76994/159695942/76994_33048095_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.524394", - "last_seen": "2025-06-01T22:06:06.694387", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095841, - 51.4926 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.11, - "qmprice": 38.91, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159697628", - "info": { - "identifier": 159697628, - "sqm_ocr": 77.11, - "price": 3000.0, - "price_per_sqm": 38.905459732849174, - "url": "https://www.rightmove.co.uk/properties/159697628", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57118/159697628/57118_P214422_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.898407", - "last_seen": "2025-06-01T22:06:06.203892", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07065, - 51.50207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/159697877", - "info": { - "identifier": 159697877, - "sqm_ocr": null, - "price": 3550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159697877", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "AP Living London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235805/159697877/235805_33757845_IMG_00_0000_max_656x437.png", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.971235", - "last_seen": "2025-06-01T22:05:54.527013", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095103, - 51.528904 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 37.85, - "rooms": 2, - "total_price": 3293.0, - "url": "https://www.rightmove.co.uk/properties/159699194", - "info": { - "identifier": 159699194, - "sqm_ocr": 87.0, - "price": 3293.0, - "price_per_sqm": 37.85057471264368, - "url": "https://www.rightmove.co.uk/properties/159699194", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Glentree Estates Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/191k/190037/159699194/190037_33757930_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.909420", - "last_seen": "2025-06-01T22:05:55.801929", - "price": 3293 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196815, - 51.564705 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.7, - "qmprice": 30.29, - "rooms": 3, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/159699488", - "info": { - "identifier": 159699488, - "sqm_ocr": 90.7, - "price": 2747.0, - "price_per_sqm": 30.286659316427784, - "url": "https://www.rightmove.co.uk/properties/159699488", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6954/159699488/6954_33757951_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.656678", - "last_seen": "2025-06-01T22:05:44.830808", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.253164, - 51.524273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159699989", - "info": { - "identifier": 159699989, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159699989", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hilton & Fox", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237869/159699989/237869_hilton_925442353_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.153829", - "last_seen": "2025-06-01T22:05:41.144026", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.291523, - 51.543274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 27.98, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159705242", - "info": { - "identifier": 159705242, - "sqm_ocr": 82.2, - "price": 2300.0, - "price_per_sqm": 27.980535279805352, - "url": "https://www.rightmove.co.uk/properties/159705242", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 69, - "status": null, - "last_seen": 0, - "agency": "Xavi & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88636/159705242/88636_548_XAVI_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.951113", - "last_seen": "2025-06-01T22:05:56.246932", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.311259, - 51.484188 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.0, - "qmprice": 87.71, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/159706706", - "info": { - "identifier": 159706706, - "sqm_ocr": 42.0, - "price": 3684.0, - "price_per_sqm": 87.71428571428571, - "url": "https://www.rightmove.co.uk/properties/159706706", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94246/159706706/94246_1319743_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.168081", - "last_seen": "2025-06-01T22:05:42.555439", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121325, - 51.520264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.21, - "qmprice": 54.1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159707333", - "info": { - "identifier": 159707333, - "sqm_ocr": 46.21, - "price": 2500.0, - "price_per_sqm": 54.10084397316598, - "url": "https://www.rightmove.co.uk/properties/159707333", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/159707333/249341_DOD1725_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.914974", - "last_seen": "2025-06-01T22:06:05.116545", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10743, - 51.49917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/159708533", - "info": { - "identifier": 159708533, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159708533", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Makeurmove.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61700/159708533/61700_36409_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.428727", - "last_seen": "2025-06-01T22:06:02.604149", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02925, - 51.50973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/159709022", - "info": { - "identifier": 159709022, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159709022", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Highwood Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281201/159709022/281201_RL0130_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.077534", - "last_seen": "2025-06-01T22:05:39.577695", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.253774, - 51.5969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/159711374", - "info": { - "identifier": 159711374, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159711374", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Abacus Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26267/159711374/26267_ABAC_017159_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.761645", - "last_seen": "2025-06-01T22:05:41.358488", - "price": 2166 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225054, - 51.56303 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.4, - "qmprice": 45.99, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/159712187", - "info": { - "identifier": 159712187, - "sqm_ocr": 67.4, - "price": 3100.0, - "price_per_sqm": 45.994065281899104, - "url": "https://www.rightmove.co.uk/properties/159712187", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/159712187/253853_1316875_IMG_02_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.435774", - "last_seen": "2025-06-01T22:06:06.663789", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099764, - 51.49691 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.9, - "qmprice": 51.38, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/159712241", - "info": { - "identifier": 159712241, - "sqm_ocr": 75.9, - "price": 3900.0, - "price_per_sqm": 51.383399209486164, - "url": "https://www.rightmove.co.uk/properties/159712241", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/159712241/253853_1319593_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.919109", - "last_seen": "2025-06-01T22:06:05.081680", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101788, - 51.49341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159712331", - "info": { - "identifier": 159712331, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159712331", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 59, - "status": null, - "last_seen": 0, - "agency": "Xavi & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88636/159712331/88636_391_XAVI_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.013703", - "last_seen": "2025-06-01T22:05:52.094834", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.311259, - 51.484188 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2885.0, - "url": "https://www.rightmove.co.uk/properties/159715121", - "info": { - "identifier": 159715121, - "sqm_ocr": null, - "price": 2885.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159715121", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 72, - "status": null, - "last_seen": 0, - "agency": "Urban Bubble", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263303/159715121/263303_102Pioneer_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.592508", - "last_seen": "2025-06-01T22:06:12.401636", - "price": 2885.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1909, - 51.46178 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159717464", - "info": { - "identifier": 159717464, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159717464", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/159717464/48101_1319823_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.396571", - "last_seen": "2025-06-01T22:06:02.641246", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01223, - 51.51664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/159717665", - "info": { - "identifier": 159717665, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159717665", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Statons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30912/159717665/30912_LET250045_L_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.489535", - "last_seen": "2025-06-01T22:05:39.075627", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.239974, - 51.647682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159718700", - "info": { - "identifier": 159718700, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159718700", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Grey & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7000/159718700/7000_GRY_GRY_LFSYCL_254_402317740_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.767529", - "last_seen": "2025-06-01T22:05:41.334794", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.273418, - 51.56346 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/159720962", - "info": { - "identifier": 159720962, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159720962", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "London House", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287183/159720962/287183_LOH222959_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.242147", - "last_seen": "2025-06-01T22:05:57.507765", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170815, - 51.49218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.09, - "qmprice": 29.81, - "rooms": 2, - "total_price": 2149.0, - "url": "https://www.rightmove.co.uk/properties/159721154", - "info": { - "identifier": 159721154, - "sqm_ocr": 72.09, - "price": 2149.0, - "price_per_sqm": 29.809959772506588, - "url": "https://www.rightmove.co.uk/properties/159721154", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72541/159721154/72541_33759470_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.811218", - "last_seen": "2025-06-01T22:05:40.248512", - "price": 2149 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221857, - 51.559406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.2, - "qmprice": 32.86, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/159728063", - "info": { - "identifier": 159728063, - "sqm_ocr": 85.2, - "price": 2800.0, - "price_per_sqm": 32.863849765258216, - "url": "https://www.rightmove.co.uk/properties/159728063", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/159728063/264326_Y78246_3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.100254", - "last_seen": "2025-06-01T22:06:12.547834", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.160328, - 51.47375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159735242", - "info": { - "identifier": 159735242, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159735242", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7558/159735242/7558_FIN230236_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.695327", - "last_seen": "2025-06-01T22:05:56.951715", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196174, - 51.597782 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.2, - "qmprice": 37.55, - "rooms": 3, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/159735545", - "info": { - "identifier": 159735545, - "sqm_ocr": 95.2, - "price": 3575.0, - "price_per_sqm": 37.55252100840336, - "url": "https://www.rightmove.co.uk/properties/159735545", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/29k/28238/159735545/28238_CEC250006_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.210226", - "last_seen": "2025-06-01T22:06:07.584395", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.007492, - 51.54093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 131.0, - "qmprice": 22.52, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/159735587", - "info": { - "identifier": 159735587, - "sqm_ocr": 131.0, - "price": 2950.0, - "price_per_sqm": 22.519083969465647, - "url": "https://www.rightmove.co.uk/properties/159735587", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112924/159735587/112924_P297277_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.694370", - "last_seen": "2025-06-01T22:05:46.712639", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03327, - 51.45103 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 32.74, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159736739", - "info": { - "identifier": 159736739, - "sqm_ocr": 84.0, - "price": 2750.0, - "price_per_sqm": 32.73809523809524, - "url": "https://www.rightmove.co.uk/properties/159736739", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Mi Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/154k/153011/159736739/153011_102099001027_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.082782", - "last_seen": "2025-06-01T22:05:45.520034", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08553, - 51.62137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 58.34, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/159737417", - "info": { - "identifier": 159737417, - "sqm_ocr": 65.0, - "price": 3792.0, - "price_per_sqm": 58.33846153846154, - "url": "https://www.rightmove.co.uk/properties/159737417", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/159737417/97423_CEI243268_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.344409", - "last_seen": "2025-06-01T22:05:48.346521", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223249, - 51.511383 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159739283", - "info": { - "identifier": 159739283, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159739283", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Statons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30912/159739283/30912_LET170222_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.679637", - "last_seen": "2025-06-01T22:05:38.450696", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181997, - 51.617268 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2625.0, - "url": "https://www.rightmove.co.uk/properties/159745067", - "info": { - "identifier": 159745067, - "sqm_ocr": null, - "price": 2625.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159745067", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159745067/96668_242740123032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.894935", - "last_seen": "2025-06-01T22:05:43.171104", - "price": 2625.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150826, - 51.54634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159747119", - "info": { - "identifier": 159747119, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159747119", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/159747119/272819_33760350_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:41.695721", - "last_seen": "2025-06-01T22:06:09.644668", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064646, - 51.50822 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.53, - "qmprice": 43.1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/159748487", - "info": { - "identifier": 159748487, - "sqm_ocr": 54.53, - "price": 2350.0, - "price_per_sqm": 43.09554373739226, - "url": "https://www.rightmove.co.uk/properties/159748487", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194231/159748487/194231_HWV230288_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.344369", - "last_seen": "2025-06-01T22:06:01.462830", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194752, - 51.415684 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.39, - "qmprice": 31.25, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159751589", - "info": { - "identifier": 159751589, - "sqm_ocr": 70.39, - "price": 2200.0, - "price_per_sqm": 31.254439551072597, - "url": "https://www.rightmove.co.uk/properties/159751589", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49021/159751589/49021_BRL250020_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.073078", - "last_seen": "2025-06-01T22:05:52.198858", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324606, - 51.468372 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.26, - "qmprice": 33.22, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159751787", - "info": { - "identifier": 159751787, - "sqm_ocr": 78.26, - "price": 2600.0, - "price_per_sqm": 33.222591362126245, - "url": "https://www.rightmove.co.uk/properties/159751787", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49021/159751787/49021_BRL250018_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.172047", - "last_seen": "2025-06-01T22:05:51.763869", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324606, - 51.468372 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.19, - "qmprice": 37.59, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159751871", - "info": { - "identifier": 159751871, - "sqm_ocr": 57.19, - "price": 2150.0, - "price_per_sqm": 37.59398496240602, - "url": "https://www.rightmove.co.uk/properties/159751871", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49021/159751871/49021_BRL250021_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.004152", - "last_seen": "2025-06-01T22:05:52.080952", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324606, - 51.468372 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159752303", - "info": { - "identifier": 159752303, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159752303", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 42, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/159752303/209042_BBRO-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.968615", - "last_seen": "2025-06-01T22:06:13.906078", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215852, - 51.465096 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.45, - "qmprice": 52.53, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/159753917", - "info": { - "identifier": 159753917, - "sqm_ocr": 50.45, - "price": 2650.0, - "price_per_sqm": 52.527254707631315, - "url": "https://www.rightmove.co.uk/properties/159753917", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/159753917/54616_DAN240910_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.537971", - "last_seen": "2025-06-01T22:05:57.636434", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193978, - 51.48906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 43.91, - "rooms": 2, - "total_price": 3293.0, - "url": "https://www.rightmove.co.uk/properties/159756719", - "info": { - "identifier": 159756719, - "sqm_ocr": 75.0, - "price": 3293.0, - "price_per_sqm": 43.906666666666666, - "url": "https://www.rightmove.co.uk/properties/159756719", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/159756719/169658_391783_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.417276", - "last_seen": "2025-06-01T22:06:10.648645", - "price": 3293 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025046, - 51.501984 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.4, - "qmprice": 49.8, - "rooms": 2, - "total_price": 3207.0, - "url": "https://www.rightmove.co.uk/properties/159761171", - "info": { - "identifier": 159761171, - "sqm_ocr": 64.4, - "price": 3207.0, - "price_per_sqm": 49.79813664596273, - "url": "https://www.rightmove.co.uk/properties/159761171", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Battersea & Nine Elms Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143171/159761171/143171_32638204_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.289504", - "last_seen": "2025-06-01T22:06:13.384299", - "price": 3206 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135169, - 51.4797 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.19, - "qmprice": 59.58, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/159761429", - "info": { - "identifier": 159761429, - "sqm_ocr": 58.19, - "price": 3467.0, - "price_per_sqm": 59.58068396631724, - "url": "https://www.rightmove.co.uk/properties/159761429", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/159761429/76585_1319984_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.710400", - "last_seen": "2025-06-01T22:05:42.330876", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13799, - 51.522995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.9, - "qmprice": 61.5, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/159761438", - "info": { - "identifier": 159761438, - "sqm_ocr": 59.9, - "price": 3684.0, - "price_per_sqm": 61.502504173622704, - "url": "https://www.rightmove.co.uk/properties/159761438", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/159761438/76585_1320008_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.500761", - "last_seen": "2025-06-01T22:06:15.138816", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15885, - 51.51433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.7, - "qmprice": 31.92, - "rooms": 2, - "total_price": 2225.0, - "url": "https://www.rightmove.co.uk/properties/159762023", - "info": { - "identifier": 159762023, - "sqm_ocr": 69.7, - "price": 2225.0, - "price_per_sqm": 31.922525107604017, - "url": "https://www.rightmove.co.uk/properties/159762023", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/159762023/56751_1320011_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.465855", - "last_seen": "2025-06-01T22:05:58.954664", - "price": 2225.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126202, - 51.468147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.9, - "qmprice": 38.25, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159762776", - "info": { - "identifier": 159762776, - "sqm_ocr": 71.9, - "price": 2750.0, - "price_per_sqm": 38.24756606397774, - "url": "https://www.rightmove.co.uk/properties/159762776", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3355/159762776/3355_33763176_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.650785", - "last_seen": "2025-06-01T22:05:53.783114", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107262, - 51.56494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159762851", - "info": { - "identifier": 159762851, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159762851", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/159762851/87187_53830_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.494861", - "last_seen": "2025-06-01T22:06:09.079998", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066672, - 51.50791 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.9, - "qmprice": 28.16, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159762896", - "info": { - "identifier": 159762896, - "sqm_ocr": 79.9, - "price": 2250.0, - "price_per_sqm": 28.16020025031289, - "url": "https://www.rightmove.co.uk/properties/159762896", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84848/159762896/84848_30584249_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.658854", - "last_seen": "2025-06-01T22:06:04.375080", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.346287, - 51.44023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.0, - "qmprice": 28.87, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/159763070", - "info": { - "identifier": 159763070, - "sqm_ocr": 97.0, - "price": 2800.0, - "price_per_sqm": 28.8659793814433, - "url": "https://www.rightmove.co.uk/properties/159763070", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13093/159763070/13093_FIL220050_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.127889", - "last_seen": "2025-06-01T22:05:38.718077", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191346, - 51.603394 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 41.6, - "rooms": 3, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/159763130", - "info": { - "identifier": 159763130, - "sqm_ocr": 60.0, - "price": 2496.0, - "price_per_sqm": 41.6, - "url": "https://www.rightmove.co.uk/properties/159763130", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50713/159763130/50713_33763198_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.302707", - "last_seen": "2025-06-01T22:05:57.422390", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213919, - 51.524956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3501.0, - "url": "https://www.rightmove.co.uk/properties/159763169", - "info": { - "identifier": 159763169, - "sqm_ocr": null, - "price": 3501.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159763169", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53537/159763169/53537_TOL160006_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.952163", - "last_seen": "2025-06-01T22:06:14.327099", - "price": 3501 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133344, - 51.491905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.9, - "qmprice": 36.61, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/159763436", - "info": { - "identifier": 159763436, - "sqm_ocr": 79.9, - "price": 2925.0, - "price_per_sqm": 36.608260325406754, - "url": "https://www.rightmove.co.uk/properties/159763436", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/159763436/107533_1320023_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.108970", - "last_seen": "2025-06-01T22:05:46.709239", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017561, - 51.48294 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.14, - "qmprice": 51.87, - "rooms": 2, - "total_price": 2860.0, - "url": "https://www.rightmove.co.uk/properties/159763493", - "info": { - "identifier": 159763493, - "sqm_ocr": 55.14, - "price": 2860.0, - "price_per_sqm": 51.86797243380486, - "url": "https://www.rightmove.co.uk/properties/159763493", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/159763493/108515_1318803_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.342025", - "last_seen": "2025-06-01T22:05:58.153063", - "price": 2860.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195525, - 51.488316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.2, - "qmprice": 55.4, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159763745", - "info": { - "identifier": 159763745, - "sqm_ocr": 72.2, - "price": 4000.0, - "price_per_sqm": 55.40166204986149, - "url": "https://www.rightmove.co.uk/properties/159763745", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/159763745/16050_1320017_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.967554", - "last_seen": "2025-06-01T22:06:11.187785", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.045444, - 51.519527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.2, - "qmprice": 38.78, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/159763748", - "info": { - "identifier": 159763748, - "sqm_ocr": 72.2, - "price": 2800.0, - "price_per_sqm": 38.78116343490304, - "url": "https://www.rightmove.co.uk/properties/159763748", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/159763748/16050_1320016_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.960819", - "last_seen": "2025-06-01T22:06:11.268263", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.045444, - 51.519527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.34, - "qmprice": 27.51, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159764444", - "info": { - "identifier": 159764444, - "sqm_ocr": 76.34, - "price": 2100.0, - "price_per_sqm": 27.508514540214826, - "url": "https://www.rightmove.co.uk/properties/159764444", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233849/159764444/233849_2709524_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.908049", - "last_seen": "2025-06-01T22:05:45.153179", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37555, - 51.50579 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159765791", - "info": { - "identifier": 159765791, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159765791", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159765791/96668_242640322032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.334981", - "last_seen": "2025-06-01T22:05:51.873042", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.370719, - 51.46605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159765908", - "info": { - "identifier": 159765908, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159765908", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159765908/96668_239718724022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.241588", - "last_seen": "2025-06-01T22:05:50.920522", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.197119, - 51.515198 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3075.0, - "url": "https://www.rightmove.co.uk/properties/159766016", - "info": { - "identifier": 159766016, - "sqm_ocr": null, - "price": 3075.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159766016", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159766016/96668_242869824032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.260641", - "last_seen": "2025-06-01T22:06:08.100357", - "price": 3075.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.054169, - 51.51642 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159766064", - "info": { - "identifier": 159766064, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159766064", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159766064/96668_242879324032025_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "27/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.140000", - "last_seen": "2025-06-01T22:05:55.409045", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123107, - 51.522587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/159767009", - "info": { - "identifier": 159767009, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159767009", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Japan Services Rent", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94576/159767009/94576_P0602_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.675632", - "last_seen": "2025-06-01T22:05:44.919629", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28226, - 51.51876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/159769829", - "info": { - "identifier": 159769829, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159769829", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Imperial Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85765/159769829/85765_000019860b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.961942", - "last_seen": "2025-06-01T22:05:48.235093", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18483, - 51.4766 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159771245", - "info": { - "identifier": 159771245, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159771245", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Houst", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170132/159771245/170132_12542_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.167786", - "last_seen": "2025-06-01T22:05:59.840595", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128568, - 51.4574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159773252", - "info": { - "identifier": 159773252, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159773252", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48456/159773252/48456_YLM150136_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.563587", - "last_seen": "2025-06-01T22:06:04.466451", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.317595, - 51.456017 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.67, - "qmprice": 32.51, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159773951", - "info": { - "identifier": 159773951, - "sqm_ocr": 107.67, - "price": 3500.0, - "price_per_sqm": 32.506733537661376, - "url": "https://www.rightmove.co.uk/properties/159773951", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Realm Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75509/159773951/75509_REAL_001947_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.876817", - "last_seen": "2025-06-01T22:06:13.718043", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214229, - 51.459316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.2, - "qmprice": 39.37, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159774047", - "info": { - "identifier": 159774047, - "sqm_ocr": 76.2, - "price": 3000.0, - "price_per_sqm": 39.37007874015748, - "url": "https://www.rightmove.co.uk/properties/159774047", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/159774047/65785_33763746_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.467584", - "last_seen": "2025-06-01T22:06:14.120261", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146285, - 51.436947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.3, - "qmprice": 31.05, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159775970", - "info": { - "identifier": 159775970, - "sqm_ocr": 77.3, - "price": 2400.0, - "price_per_sqm": 31.047865459249678, - "url": "https://www.rightmove.co.uk/properties/159775970", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/159775970/111050_1317929_IMG_01_0013_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.542418", - "last_seen": "2025-06-01T22:06:01.274345", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181997, - 51.40487 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.1, - "qmprice": 29.08, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/159776546", - "info": { - "identifier": 159776546, - "sqm_ocr": 72.1, - "price": 2097.0, - "price_per_sqm": 29.08460471567268, - "url": "https://www.rightmove.co.uk/properties/159776546", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/159776546/84788_33763951_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.471427", - "last_seen": "2025-06-01T22:05:55.964805", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.264846, - 51.500267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/159776861", - "info": { - "identifier": 159776861, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159776861", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/159776861/275489_19042024-CN588_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.852468", - "last_seen": "2025-06-01T22:06:11.911612", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.041747, - 51.58759 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/159777074", - "info": { - "identifier": 159777074, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159777074", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/159777074/275489_08092022-CN611_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.690981", - "last_seen": "2025-06-01T22:06:03.068571", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.022172, - 51.508408 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 38.04, - "rooms": 2, - "total_price": 2815.0, - "url": "https://www.rightmove.co.uk/properties/159777932", - "info": { - "identifier": 159777932, - "sqm_ocr": 74.0, - "price": 2815.0, - "price_per_sqm": 38.04054054054054, - "url": "https://www.rightmove.co.uk/properties/159777932", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/159777932/87187_40543_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.753013", - "last_seen": "2025-06-01T22:05:49.000170", - "price": 2815.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238014, - 51.49115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.4, - "qmprice": 49.11, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/159777935", - "info": { - "identifier": 159777935, - "sqm_ocr": 78.4, - "price": 3850.0, - "price_per_sqm": 49.107142857142854, - "url": "https://www.rightmove.co.uk/properties/159777935", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/159777935/87187_65406_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.751443", - "last_seen": "2025-06-01T22:05:49.004501", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18462, - 51.476624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159778304", - "info": { - "identifier": 159778304, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159778304", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75088/159778304/75088_000417377_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.298352", - "last_seen": "2025-06-01T22:05:50.865184", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.19054, - 51.53138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.22, - "qmprice": 36.72, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/159780302", - "info": { - "identifier": 159780302, - "sqm_ocr": 91.22, - "price": 3350.0, - "price_per_sqm": 36.724402543301906, - "url": "https://www.rightmove.co.uk/properties/159780302", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/159780302/87187_70541_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.211906", - "last_seen": "2025-06-01T22:05:55.593622", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088313, - 51.57247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.0, - "qmprice": 25.6, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/159780521", - "info": { - "identifier": 159780521, - "sqm_ocr": 125.0, - "price": 3200.0, - "price_per_sqm": 25.6, - "url": "https://www.rightmove.co.uk/properties/159780521", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/159780521/250739_1319087_IMG_01_0013_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.031305", - "last_seen": "2025-06-01T22:05:50.834283", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.341341, - 51.614872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.07, - "qmprice": 41.76, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/159780755", - "info": { - "identifier": 159780755, - "sqm_ocr": 61.07, - "price": 2550.0, - "price_per_sqm": 41.755362698542655, - "url": "https://www.rightmove.co.uk/properties/159780755", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/159780755/16050_1318609_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.039532", - "last_seen": "2025-06-01T22:06:08.430258", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068031, - 51.518456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.07, - "qmprice": 57.31, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159780761", - "info": { - "identifier": 159780761, - "sqm_ocr": 61.07, - "price": 3500.0, - "price_per_sqm": 57.31128213525463, - "url": "https://www.rightmove.co.uk/properties/159780761", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/159780761/16050_1318573_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.058387", - "last_seen": "2025-06-01T22:06:08.400040", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068031, - 51.518456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159782714", - "info": { - "identifier": 159782714, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159782714", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Houseen Lettings & Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76994/159782714/76994_33105029_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.298355", - "last_seen": "2025-06-01T22:06:06.863614", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096625, - 51.49289 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/159782972", - "info": { - "identifier": 159782972, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159782972", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/159782972/87187_70546_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.308631", - "last_seen": "2025-06-01T22:05:48.366403", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.233122, - 51.492607 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159783320", - "info": { - "identifier": 159783320, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159783320", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 43, - "status": null, - "last_seen": 0, - "agency": "Redstone Lettings and Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279974/159783320/279974_RPT230122_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.848311", - "last_seen": "2025-06-01T22:06:00.312193", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.036124, - 51.48654 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3856.0, - "url": "https://www.rightmove.co.uk/properties/159784016", - "info": { - "identifier": 159784016, - "sqm_ocr": null, - "price": 3856.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159784016", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "RiverHomes", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11121/159784016/11121_33764439_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.937308", - "last_seen": "2025-06-01T20:19:57.895263", - "price": 3856.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027263, - 51.505966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159785666", - "info": { - "identifier": 159785666, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159785666", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Maxwell Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81507/159785666/81507_33212530_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.112375", - "last_seen": "2025-06-01T22:05:39.760342", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204812, - 51.61373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.6, - "qmprice": 45.33, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/159785687", - "info": { - "identifier": 159785687, - "sqm_ocr": 70.6, - "price": 3200.0, - "price_per_sqm": 45.3257790368272, - "url": "https://www.rightmove.co.uk/properties/159785687", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/159785687/15963_1320108_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.302988", - "last_seen": "2025-06-01T22:06:14.096888", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218612, - 51.45263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.51, - "qmprice": 42.1, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/159785990", - "info": { - "identifier": 159785990, - "sqm_ocr": 87.51, - "price": 3684.0, - "price_per_sqm": 42.098045937607125, - "url": "https://www.rightmove.co.uk/properties/159785990", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/159785990/15960_1320093_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.996004", - "last_seen": "2025-06-01T22:06:15.302057", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17798, - 51.53837 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/159786521", - "info": { - "identifier": 159786521, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159786521", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/159786521/87187_70554_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.122434", - "last_seen": "2025-06-01T22:05:47.257857", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088313, - 51.57247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3857.0, - "url": "https://www.rightmove.co.uk/properties/159788510", - "info": { - "identifier": 159788510, - "sqm_ocr": null, - "price": 3857.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159788510", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Interlet Sales and Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76342/159788510/76342_ISL955868_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.338511", - "last_seen": "2025-06-01T20:19:57.585143", - "price": 3856 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027756, - 51.507206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.73, - "qmprice": 27.74, - "rooms": 3, - "total_price": 3293.0, - "url": "https://www.rightmove.co.uk/properties/159788819", - "info": { - "identifier": 159788819, - "sqm_ocr": 118.73, - "price": 3293.0, - "price_per_sqm": 27.735197506948538, - "url": "https://www.rightmove.co.uk/properties/159788819", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/205k/204995/159788819/204995_QPL250021_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.933330", - "last_seen": "2025-06-01T22:05:55.335457", - "price": 3293 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21782, - 51.546185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.6, - "qmprice": 32.91, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/159788837", - "info": { - "identifier": 159788837, - "sqm_ocr": 86.6, - "price": 2850.0, - "price_per_sqm": 32.90993071593534, - "url": "https://www.rightmove.co.uk/properties/159788837", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 59, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65794/159788837/65794_33764794_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.721310", - "last_seen": "2025-06-01T22:06:12.064381", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177741, - 51.43587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.9, - "qmprice": 45.31, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/159790214", - "info": { - "identifier": 159790214, - "sqm_ocr": 78.9, - "price": 3575.0, - "price_per_sqm": 45.3105196451204, - "url": "https://www.rightmove.co.uk/properties/159790214", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/159790214/48101_1320126_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.853563", - "last_seen": "2025-06-01T22:06:11.530766", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027833, - 51.494793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.8, - "qmprice": 45.77, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159790982", - "info": { - "identifier": 159790982, - "sqm_ocr": 56.8, - "price": 2600.0, - "price_per_sqm": 45.774647887323944, - "url": "https://www.rightmove.co.uk/properties/159790982", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/159790982/15957_1319892_IMG_01_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.248791", - "last_seen": "2025-06-01T22:05:39.754061", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212814, - 51.55681 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.6, - "qmprice": 27.65, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/159791381", - "info": { - "identifier": 159791381, - "sqm_ocr": 88.6, - "price": 2450.0, - "price_per_sqm": 27.652370203160274, - "url": "https://www.rightmove.co.uk/properties/159791381", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/159791381/228512_33636417_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.148632", - "last_seen": "2025-06-01T22:05:50.687669", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297452, - 51.605965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.6, - "qmprice": 52.92, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/159794078", - "info": { - "identifier": 159794078, - "sqm_ocr": 69.6, - "price": 3683.0, - "price_per_sqm": 52.91666666666667, - "url": "https://www.rightmove.co.uk/properties/159794078", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43739/159794078/43739_P297753_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.375657", - "last_seen": "2025-06-01T22:06:15.854576", - "price": 3683.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15349, - 51.52232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159795374", - "info": { - "identifier": 159795374, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159795374", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/159795374/84866_33765222_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.717460", - "last_seen": "2025-06-01T22:05:44.841065", - "price": 2500 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26885, - 51.495037 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159796409", - "info": { - "identifier": 159796409, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159796409", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Oakwood Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67323/159796409/67323_28870234_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.438167", - "last_seen": "2025-06-01T22:05:51.401101", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.45911, - 51.49759 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.3, - "qmprice": 38.39, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159796670", - "info": { - "identifier": 159796670, - "sqm_ocr": 57.3, - "price": 2200.0, - "price_per_sqm": 38.39441535776614, - "url": "https://www.rightmove.co.uk/properties/159796670", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84806/159796670/84806_33765328_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.515173", - "last_seen": "2025-06-01T22:06:04.529279", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.287441, - 51.465794 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.68, - "qmprice": 44.64, - "rooms": 2, - "total_price": 2709.0, - "url": "https://www.rightmove.co.uk/properties/159799136", - "info": { - "identifier": 159799136, - "sqm_ocr": 60.68, - "price": 2709.0, - "price_per_sqm": 44.64403427818062, - "url": "https://www.rightmove.co.uk/properties/159799136", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/159799136/84889_1314011_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.525897", - "last_seen": "2025-06-01T22:06:15.165455", - "price": 2709.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139178, - 51.485725 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159801053", - "info": { - "identifier": 159801053, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159801053", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159801053/96668_242973825032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.279862", - "last_seen": "2025-06-01T22:06:07.450096", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013846, - 51.53625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.9, - "qmprice": 52.07, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/159802442", - "info": { - "identifier": 159802442, - "sqm_ocr": 74.9, - "price": 3900.0, - "price_per_sqm": 52.0694259012016, - "url": "https://www.rightmove.co.uk/properties/159802442", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5122/159802442/5122_CAL250128_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.446446", - "last_seen": "2025-06-01T22:06:15.628904", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151108, - 51.487564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.08, - "qmprice": 49.95, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159802670", - "info": { - "identifier": 159802670, - "sqm_ocr": 80.08, - "price": 4000.0, - "price_per_sqm": 49.95004995004995, - "url": "https://www.rightmove.co.uk/properties/159802670", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44645/159802670/44645_FWL230441_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.079910", - "last_seen": "2025-06-01T22:05:48.580245", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184801, - 51.47584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.8, - "qmprice": 40.72, - "rooms": 2, - "total_price": 2557.0, - "url": "https://www.rightmove.co.uk/properties/159804254", - "info": { - "identifier": 159804254, - "sqm_ocr": 62.8, - "price": 2557.0, - "price_per_sqm": 40.71656050955414, - "url": "https://www.rightmove.co.uk/properties/159804254", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94658/159804254/94658_33765811_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.455340", - "last_seen": "2025-06-01T22:05:58.175000", - "price": 2556 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20282, - 51.495728 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159804680", - "info": { - "identifier": 159804680, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159804680", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Goodfellows", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/9k/8972/159804680/8972_GMO250064_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.357675", - "last_seen": "2025-06-01T22:06:01.496635", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221133, - 51.41561 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.7, - "qmprice": 45.92, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/159804977", - "info": { - "identifier": 159804977, - "sqm_ocr": 63.7, - "price": 2925.0, - "price_per_sqm": 45.91836734693877, - "url": "https://www.rightmove.co.uk/properties/159804977", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/159804977/76585_1319810_IMG_04_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.464832", - "last_seen": "2025-06-01T22:06:14.351071", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170453, - 51.51356 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.67, - "qmprice": 44.12, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159805484", - "info": { - "identifier": 159805484, - "sqm_ocr": 73.67, - "price": 3250.0, - "price_per_sqm": 44.11565087552599, - "url": "https://www.rightmove.co.uk/properties/159805484", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Gardiner Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75433/159805484/75433_2492_GARD_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.862902", - "last_seen": "2025-06-01T22:05:44.071126", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307675, - 51.51386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.7, - "qmprice": 40.8, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159806702", - "info": { - "identifier": 159806702, - "sqm_ocr": 52.7, - "price": 2150.0, - "price_per_sqm": 40.79696394686907, - "url": "https://www.rightmove.co.uk/properties/159806702", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "SeOUL Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73282/159806702/73282_9472_SR4U_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.199178", - "last_seen": "2025-06-01T22:06:12.345152", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222257, - 51.44289 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/159806711", - "info": { - "identifier": 159806711, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159806711", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Citian & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256973/159806711/256973_274717_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.310849", - "last_seen": "2025-06-01T22:06:08.011491", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01354, - 51.50003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159807425", - "info": { - "identifier": 159807425, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159807425", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Canary Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85774/159807425/85774_162525032025_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.038593", - "last_seen": "2025-06-01T20:19:57.965207", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01566, - 51.49764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.1, - "qmprice": 28.12, - "rooms": 2, - "total_price": 2730.0, - "url": "https://www.rightmove.co.uk/properties/159807791", - "info": { - "identifier": 159807791, - "sqm_ocr": 97.1, - "price": 2730.0, - "price_per_sqm": 28.115345005149333, - "url": "https://www.rightmove.co.uk/properties/159807791", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/29k/28238/159807791/28238_CEI242402_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.269711", - "last_seen": "2025-06-01T22:06:10.045042", - "price": 2730 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011522, - 51.507923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 34.62, - "rooms": 2, - "total_price": 2285.0, - "url": "https://www.rightmove.co.uk/properties/159808106", - "info": { - "identifier": 159808106, - "sqm_ocr": 66.0, - "price": 2285.0, - "price_per_sqm": 34.621212121212125, - "url": "https://www.rightmove.co.uk/properties/159808106", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Una Living", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87553/159808106/87553_101435001877_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.354812", - "last_seen": "2025-06-01T22:05:41.306039", - "price": 2285.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28255, - 51.53018 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159811910", - "info": { - "identifier": 159811910, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159811910", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Eldridge Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283214/159811910/283214_RL0289_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.277142", - "last_seen": "2025-06-01T22:06:14.678340", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170542, - 51.5209 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/159812078", - "info": { - "identifier": 159812078, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159812078", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159812078/96668_237743905022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.821334", - "last_seen": "2025-06-01T22:05:58.807004", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.292199, - 51.4004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159812573", - "info": { - "identifier": 159812573, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159812573", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159812573/96668_243010625032025_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.184472", - "last_seen": "2025-06-01T22:06:14.991824", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198814, - 51.52308 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.8, - "qmprice": 32.99, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159813116", - "info": { - "identifier": 159813116, - "sqm_ocr": 78.8, - "price": 2600.0, - "price_per_sqm": 32.994923857868024, - "url": "https://www.rightmove.co.uk/properties/159813116", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/159813116/107533_1308772_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.317217", - "last_seen": "2025-06-01T22:05:46.673268", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021015, - 51.48325 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.5, - "qmprice": 31.58, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159813245", - "info": { - "identifier": 159813245, - "sqm_ocr": 85.5, - "price": 2700.0, - "price_per_sqm": 31.57894736842105, - "url": "https://www.rightmove.co.uk/properties/159813245", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/159813245/66771_1319535_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.730325", - "last_seen": "2025-06-01T22:05:59.220462", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123864, - 51.476353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 53.83, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/159813461", - "info": { - "identifier": 159813461, - "sqm_ocr": 64.0, - "price": 3445.0, - "price_per_sqm": 53.828125, - "url": "https://www.rightmove.co.uk/properties/159813461", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Manors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85334/159813461/85334_BAL240004_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.379072", - "last_seen": "2025-06-01T22:06:15.814645", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155864, - 51.519535 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.3, - "qmprice": 39.22, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159814703", - "info": { - "identifier": 159814703, - "sqm_ocr": 66.3, - "price": 2600.0, - "price_per_sqm": 39.21568627450981, - "url": "https://www.rightmove.co.uk/properties/159814703", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246848/159814703/246848_BEL190088_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.948077", - "last_seen": "2025-06-01T22:06:06.410607", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08211, - 51.496902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.1, - "qmprice": 29.24, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/159816194", - "info": { - "identifier": 159816194, - "sqm_ocr": 74.1, - "price": 2167.0, - "price_per_sqm": 29.244264507422404, - "url": "https://www.rightmove.co.uk/properties/159816194", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/159816194/111056_1320221_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.948661", - "last_seen": "2025-06-01T22:06:08.578728", - "price": 2167.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.040455, - 51.51016 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.0, - "qmprice": 65.31, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/159817478", - "info": { - "identifier": 159817478, - "sqm_ocr": 49.0, - "price": 3200.0, - "price_per_sqm": 65.3061224489796, - "url": "https://www.rightmove.co.uk/properties/159817478", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "LizardProperty", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274388/159817478/274388_JMD2_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.637231", - "last_seen": "2025-06-01T22:05:43.106936", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13814, - 51.52195 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159817574", - "info": { - "identifier": 159817574, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159817574", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159817574/96668_242889324032025_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.799744", - "last_seen": "2025-06-01T20:19:59.645379", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035857, - 51.519447 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/159817619", - "info": { - "identifier": 159817619, - "sqm_ocr": null, - "price": 2195.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159817619", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159817619/96668_241513511032025_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.201311", - "last_seen": "2025-06-01T22:05:39.985340", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.149075, - 51.48937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/159821039", - "info": { - "identifier": 159821039, - "sqm_ocr": null, - "price": 3684.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159821039", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/159821039/60927_000013272b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.273301", - "last_seen": "2025-06-01T22:05:48.350132", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22553, - 51.48761 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.8, - "qmprice": 21.79, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159821474", - "info": { - "identifier": 159821474, - "sqm_ocr": 91.8, - "price": 2000.0, - "price_per_sqm": 21.78649237472767, - "url": "https://www.rightmove.co.uk/properties/159821474", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Alexander Charles & Browne", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206588/159821474/206588_27962049_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.073112", - "last_seen": "2025-06-01T22:06:00.858161", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03615, - 51.439358 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/159824411", - "info": { - "identifier": 159824411, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159824411", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Statons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30912/159824411/30912_LET160215_L_IMG_09_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.189231", - "last_seen": "2025-06-01T22:05:38.495734", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187402, - 51.630714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.66, - "qmprice": 28.17, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159825188", - "info": { - "identifier": 159825188, - "sqm_ocr": 81.66, - "price": 2300.0, - "price_per_sqm": 28.16556453588048, - "url": "https://www.rightmove.co.uk/properties/159825188", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/159825188/48994_CNL130154_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.348446", - "last_seen": "2025-06-01T22:06:09.873174", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006353, - 51.505585 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159827219", - "info": { - "identifier": 159827219, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159827219", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159827219/96668_241948215032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.082502", - "last_seen": "2025-06-01T22:05:38.300426", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.131349, - 51.562565 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3601.0, - "url": "https://www.rightmove.co.uk/properties/159827432", - "info": { - "identifier": 159827432, - "sqm_ocr": null, - "price": 3601.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159827432", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/159827432/275489_15082024-CN684_IMG_00_0000_max_656x437.png", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:40.579755", - "last_seen": "2025-06-01T22:06:09.423375", - "price": 3601 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00947, - 51.50924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.1, - "qmprice": 30.84, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/159827753", - "info": { - "identifier": 159827753, - "sqm_ocr": 97.1, - "price": 2995.0, - "price_per_sqm": 30.844490216271886, - "url": "https://www.rightmove.co.uk/properties/159827753", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84815/159827753/84815_33764490_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.630695", - "last_seen": "2025-06-01T22:06:04.368652", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312854, - 51.412766 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.4, - "qmprice": 30.65, - "rooms": 2, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/159827756", - "info": { - "identifier": 159827756, - "sqm_ocr": 81.4, - "price": 2495.0, - "price_per_sqm": 30.65110565110565, - "url": "https://www.rightmove.co.uk/properties/159827756", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84815/159827756/84815_33762122_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.632212", - "last_seen": "2025-06-01T22:06:04.365890", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.337131, - 51.430252 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159828191", - "info": { - "identifier": 159828191, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159828191", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "Prime Collection", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256154/159828191/256154_5debe4c6-04e6-4dbe-8cc9-f750d2c55087_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.631644", - "last_seen": "2025-06-01T22:05:43.219760", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144318, - 51.540974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.8, - "qmprice": 22.49, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159828374", - "info": { - "identifier": 159828374, - "sqm_ocr": 97.8, - "price": 2200.0, - "price_per_sqm": 22.494887525562373, - "url": "https://www.rightmove.co.uk/properties/159828374", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100624/159828374/100624_33343783_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.627136", - "last_seen": "2025-06-01T22:05:59.920954", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109742, - 51.440758 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/159829037", - "info": { - "identifier": 159829037, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159829037", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84848/159829037/84848_33767298_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.587200", - "last_seen": "2025-06-01T22:06:04.411316", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.369525, - 51.43944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/159829580", - "info": { - "identifier": 159829580, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159829580", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47640/159829580/47640_33767330_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.911482", - "last_seen": "2025-06-01T22:06:08.657242", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.045305, - 51.5147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.6, - "qmprice": 43.4, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159831974", - "info": { - "identifier": 159831974, - "sqm_ocr": 57.6, - "price": 2500.0, - "price_per_sqm": 43.40277777777778, - "url": "https://www.rightmove.co.uk/properties/159831974", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/159831974/253853_1320166_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.281761", - "last_seen": "2025-06-01T22:06:06.716474", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094325, - 51.48382 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159831992", - "info": { - "identifier": 159831992, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159831992", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/159831992/247697_102708021888_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.036151", - "last_seen": "2025-06-01T22:05:54.082559", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11902, - 51.55564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/159832076", - "info": { - "identifier": 159832076, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159832076", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 67, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167687/159832076/167687_2710075_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.707975", - "last_seen": "2025-06-01T22:05:40.812542", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27733, - 51.56158 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.81, - "qmprice": 37.2, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/159832094", - "info": { - "identifier": 159832094, - "sqm_ocr": 100.81, - "price": 3750.0, - "price_per_sqm": 37.198690606090665, - "url": "https://www.rightmove.co.uk/properties/159832094", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/159832094/87187_70582_IMG_17_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.532968", - "last_seen": "2025-06-01T22:05:39.127656", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238317, - 51.595665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 33.82, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159832199", - "info": { - "identifier": 159832199, - "sqm_ocr": 68.0, - "price": 2300.0, - "price_per_sqm": 33.8235294117647, - "url": "https://www.rightmove.co.uk/properties/159832199", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84073/159832199/84073_1320248_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.788477", - "last_seen": "2025-06-01T22:05:49.722672", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105764, - 51.57989 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2380.0, - "url": "https://www.rightmove.co.uk/properties/159832433", - "info": { - "identifier": 159832433, - "sqm_ocr": null, - "price": 2380.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159832433", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Citidwell Limited.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90728/159832433/90728_MSGSYD82_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.398685", - "last_seen": "2025-06-01T22:05:41.262307", - "price": 2380.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24473, - 51.55372 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/159833585", - "info": { - "identifier": 159833585, - "sqm_ocr": null, - "price": 3550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159833585", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159833585/96668_241354410032025_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.015217, - 51.54248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159833753", - "info": { - "identifier": 159833753, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159833753", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/159833753/95098_P297359_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.164276", - "last_seen": "2025-06-01T22:06:09.124692", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02156, - 51.50772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2513.0, - "url": "https://www.rightmove.co.uk/properties/159835427", - "info": { - "identifier": 159835427, - "sqm_ocr": null, - "price": 2513.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159835427", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75088/159835427/75088_000820851_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.256648", - "last_seen": "2025-06-01T22:05:50.995495", - "price": 2513.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.17535, - 51.57913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.52, - "qmprice": 34.15, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159835712", - "info": { - "identifier": 159835712, - "sqm_ocr": 80.52, - "price": 2750.0, - "price_per_sqm": 34.15300546448088, - "url": "https://www.rightmove.co.uk/properties/159835712", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/159835712/87187_54456_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.912922", - "last_seen": "2025-06-01T22:06:02.245438", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.022099, - 51.50867 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159835862", - "info": { - "identifier": 159835862, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159835862", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Proctors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9274/159835862/9274_27627576_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.308571", - "last_seen": "2025-06-01T22:05:41.771611", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.069455, - 51.39037 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.95, - "qmprice": 24.55, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/159835997", - "info": { - "identifier": 159835997, - "sqm_ocr": 107.95, - "price": 2650.0, - "price_per_sqm": 24.548402037980544, - "url": "https://www.rightmove.co.uk/properties/159835997", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Pinnacle Housing Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212189/159835997/212189_2769_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.674299", - "last_seen": "2025-06-01T22:06:03.154691", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03958, - 51.50227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.1, - "qmprice": 40.49, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159836642", - "info": { - "identifier": 159836642, - "sqm_ocr": 53.1, - "price": 2150.0, - "price_per_sqm": 40.48964218455744, - "url": "https://www.rightmove.co.uk/properties/159836642", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78410/159836642/78410_33768045_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.921235", - "last_seen": "2025-06-01T22:06:12.760768", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166799, - 51.463802 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.4, - "qmprice": 46.16, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159840683", - "info": { - "identifier": 159840683, - "sqm_ocr": 70.4, - "price": 3250.0, - "price_per_sqm": 46.16477272727273, - "url": "https://www.rightmove.co.uk/properties/159840683", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Andrew", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80996/159840683/80996_9e747b9d-7e81-4e5c-9298-62ec0e91f094_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.581961", - "last_seen": "2025-06-01T22:05:54.151969", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09589, - 51.534126 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.71, - "qmprice": 34.38, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159840719", - "info": { - "identifier": 159840719, - "sqm_ocr": 72.71, - "price": 2500.0, - "price_per_sqm": 34.38316600192546, - "url": "https://www.rightmove.co.uk/properties/159840719", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Andrew", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93623/159840719/93623_9e747d3f-24d8-4836-8f37-d3e458df175c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.404167", - "last_seen": "2025-06-01T22:05:54.364577", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10936, - 51.563282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159841154", - "info": { - "identifier": 159841154, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159841154", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12686/159841154/12686_NFL160057_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.355120", - "last_seen": "2025-06-01T22:05:51.796027", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31412, - 51.490578 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159841781", - "info": { - "identifier": 159841781, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159841781", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159841781/96668_243094126032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.132291", - "last_seen": "2025-06-01T22:05:43.994902", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265073, - 51.520687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159842189", - "info": { - "identifier": 159842189, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159842189", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Excel Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99425/159842189/99425_102708035863_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.360151", - "last_seen": "2025-06-01T22:06:15.658210", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17541, - 51.5309 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/159842435", - "info": { - "identifier": 159842435, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159842435", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/159842435/146147_PR252958_IMG_00_0010_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.682382", - "last_seen": "2025-06-01T22:05:49.487853", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222549, - 51.511818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.3, - "qmprice": 54.0, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159842534", - "info": { - "identifier": 159842534, - "sqm_ocr": 46.3, - "price": 2500.0, - "price_per_sqm": 53.99568034557236, - "url": "https://www.rightmove.co.uk/properties/159842534", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/159842534/130309_1314794_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.703886", - "last_seen": "2025-06-01T22:05:43.539096", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.044395, - 51.355076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159843812", - "info": { - "identifier": 159843812, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159843812", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Beresfords Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61219/159843812/61219_HAV250034_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.329050", - "last_seen": "2025-06-01T22:05:50.892381", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.247235, - 51.604893 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159844490", - "info": { - "identifier": 159844490, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159844490", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Truepenny's", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93562/159844490/93562_1889_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.737577", - "last_seen": "2025-06-01T22:05:46.238805", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017035, - 51.478725 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.9, - "qmprice": 30.04, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159845189", - "info": { - "identifier": 159845189, - "sqm_ocr": 79.9, - "price": 2400.0, - "price_per_sqm": 30.03754693366708, - "url": "https://www.rightmove.co.uk/properties/159845189", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159845189/96668_239459221022025_IMG_04_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.618428", - "last_seen": "2025-06-01T22:06:01.133497", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218659, - 51.408188 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.2, - "qmprice": 44.43, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/159846176", - "info": { - "identifier": 159846176, - "sqm_ocr": 51.2, - "price": 2275.0, - "price_per_sqm": 44.43359375, - "url": "https://www.rightmove.co.uk/properties/159846176", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/159846176/111056_1320319_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.542888", - "last_seen": "2025-06-01T22:06:10.794153", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055352, - 51.517677 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.7, - "qmprice": 40.39, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159846203", - "info": { - "identifier": 159846203, - "sqm_ocr": 55.7, - "price": 2250.0, - "price_per_sqm": 40.394973070017954, - "url": "https://www.rightmove.co.uk/properties/159846203", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/159846203/57272_1320320_IMG_01_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.806949", - "last_seen": "2025-06-01T22:05:58.582856", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279802, - 51.421646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159846440", - "info": { - "identifier": 159846440, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159846440", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/159846440/146147_PR252922_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.266819", - "last_seen": "2025-06-01T22:05:46.481437", - "price": 2500 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.029428, - 51.458492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159847427", - "info": { - "identifier": 159847427, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159847427", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43260/159847427/43260_HRL240024_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.303096, - 51.61681 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.57, - "qmprice": 32.48, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159849104", - "info": { - "identifier": 159849104, - "sqm_ocr": 61.57, - "price": 2000.0, - "price_per_sqm": 32.4833522819555, - "url": "https://www.rightmove.co.uk/properties/159849104", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/159849104/52415_33768818_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.621226", - "last_seen": "2025-06-01T22:05:59.345270", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131706, - 51.42655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159850052", - "info": { - "identifier": 159850052, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159850052", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Squires Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46983/159850052/46983_33768904_IMG_07_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.124000", - "last_seen": "2025-06-01T22:05:38.608296", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210206, - 51.60048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.1, - "qmprice": 36.99, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159851246", - "info": { - "identifier": 159851246, - "sqm_ocr": 81.1, - "price": 3000.0, - "price_per_sqm": 36.99136868064119, - "url": "https://www.rightmove.co.uk/properties/159851246", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/159851246/96392_SVL190147_L_IMG_25_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.901449", - "last_seen": "2025-06-01T22:06:14.294087", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175288, - 51.530952 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.23, - "qmprice": 49.85, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/159853700", - "info": { - "identifier": 159853700, - "sqm_ocr": 78.23, - "price": 3900.0, - "price_per_sqm": 49.85299757126422, - "url": "https://www.rightmove.co.uk/properties/159853700", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/159853700/87187_11927_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.164513", - "last_seen": "2025-06-01T22:05:57.978354", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165492, - 51.491486 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.7, - "qmprice": 64.58, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/159854237", - "info": { - "identifier": 159854237, - "sqm_ocr": 55.7, - "price": 3597.0, - "price_per_sqm": 64.57809694793536, - "url": "https://www.rightmove.co.uk/properties/159854237", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62293/159854237/62293_33769160_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.484566", - "last_seen": "2025-06-01T22:06:14.420881", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159662, - 51.514908 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.8, - "qmprice": 38.68, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/159854720", - "info": { - "identifier": 159854720, - "sqm_ocr": 56.8, - "price": 2197.0, - "price_per_sqm": 38.679577464788736, - "url": "https://www.rightmove.co.uk/properties/159854720", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/159854720/25485_33769195_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.275270", - "last_seen": "2025-06-01T22:05:39.614751", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197137, - 51.561398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.28, - "qmprice": 35.97, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159858218", - "info": { - "identifier": 159858218, - "sqm_ocr": 72.28, - "price": 2600.0, - "price_per_sqm": 35.97122302158273, - "url": "https://www.rightmove.co.uk/properties/159858218", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/159858218/44537_TOL140092_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.264417", - "last_seen": "2025-06-01T22:06:05.541039", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08211, - 51.496902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 129.3, - "qmprice": 25.51, - "rooms": 3, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/159858572", - "info": { - "identifier": 159858572, - "sqm_ocr": 129.3, - "price": 3298.0, - "price_per_sqm": 25.50657385924207, - "url": "https://www.rightmove.co.uk/properties/159858572", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6954/159858572/6954_33769448_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.823761", - "last_seen": "2025-06-01T22:05:44.106493", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.271451, - 51.513573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3185.0, - "url": "https://www.rightmove.co.uk/properties/159859916", - "info": { - "identifier": 159859916, - "sqm_ocr": null, - "price": 3185.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159859916", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Golden Eagle International", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49332/159859916/49332_585_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.841756", - "last_seen": "2025-06-01T22:06:16.053644", - "price": 3185 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159607, - 51.514 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.1, - "qmprice": 30.24, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159860384", - "info": { - "identifier": 159860384, - "sqm_ocr": 71.1, - "price": 2150.0, - "price_per_sqm": 30.239099859353026, - "url": "https://www.rightmove.co.uk/properties/159860384", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Look Property Services Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/9k/8286/159860384/8286_5508815_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.812339", - "last_seen": "2025-06-01T22:06:07.716684", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.012494, - 51.53106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.8, - "qmprice": 39.58, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/159860462", - "info": { - "identifier": 159860462, - "sqm_ocr": 80.8, - "price": 3198.0, - "price_per_sqm": 39.57920792079208, - "url": "https://www.rightmove.co.uk/properties/159860462", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "CHARMILL RESIDENTIAL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233558/159860462/233558_33769590_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.543007", - "last_seen": "2025-06-01T22:06:15.615691", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177478, - 51.532173 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/159861734", - "info": { - "identifier": 159861734, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159861734", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/159861734/17888_31328_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.882245", - "last_seen": "2025-06-01T22:06:14.323775", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19543, - 51.51673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159862427", - "info": { - "identifier": 159862427, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159862427", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/159862427/51286_CLL250083_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.061875", - "last_seen": "2025-06-01T22:05:48.604555", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242617, - 51.507523 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.01, - "qmprice": 46.42, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/159862865", - "info": { - "identifier": 159862865, - "sqm_ocr": 63.01, - "price": 2925.0, - "price_per_sqm": 46.42120298365339, - "url": "https://www.rightmove.co.uk/properties/159862865", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55362/159862865/55362_33624222_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.860990", - "last_seen": "2025-06-01T22:06:14.375761", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170219, - 51.513836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 149.8, - "qmprice": 26.7, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159863003", - "info": { - "identifier": 159863003, - "sqm_ocr": 149.8, - "price": 4000.0, - "price_per_sqm": 26.702269692923895, - "url": "https://www.rightmove.co.uk/properties/159863003", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43814/159863003/43814_P297885_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.798870", - "last_seen": "2025-06-01T22:06:05.036639", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05932, - 51.49424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.6, - "qmprice": 26.81, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159864350", - "info": { - "identifier": 159864350, - "sqm_ocr": 74.6, - "price": 2000.0, - "price_per_sqm": 26.809651474530835, - "url": "https://www.rightmove.co.uk/properties/159864350", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12685/159864350/12685_CRL190023_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.572981", - "last_seen": "2025-06-01T22:05:43.719987", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096719, - 51.37692 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.32, - "qmprice": 57.37, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/159865397", - "info": { - "identifier": 159865397, - "sqm_ocr": 62.32, - "price": 3575.0, - "price_per_sqm": 57.36521181001284, - "url": "https://www.rightmove.co.uk/properties/159865397", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90830/159865397/90830_SJD110675_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.023480", - "last_seen": "2025-06-01T22:06:15.192269", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175417, - 51.532597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.0, - "qmprice": 32.5, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159865439", - "info": { - "identifier": 159865439, - "sqm_ocr": 100.0, - "price": 3250.0, - "price_per_sqm": 32.5, - "url": "https://www.rightmove.co.uk/properties/159865439", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Latymers Estate Agents", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74302/159865439/74302_LATYM_000025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.647676", - "last_seen": "2025-06-01T22:05:49.318583", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213786, - 51.49538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.5, - "qmprice": 17.47, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159865547", - "info": { - "identifier": 159865547, - "sqm_ocr": 114.5, - "price": 2000.0, - "price_per_sqm": 17.467248908296945, - "url": "https://www.rightmove.co.uk/properties/159865547", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Mile", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/179k/178880/159865547/178880_101541004816_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.540111", - "last_seen": "2025-06-01T22:05:39.123208", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25915, - 51.59557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3289.0, - "url": "https://www.rightmove.co.uk/properties/159867344", - "info": { - "identifier": 159867344, - "sqm_ocr": null, - "price": 3289.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159867344", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159867344/96668_241765913032025_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.529301", - "last_seen": "2025-06-01T22:06:06.264919", - "price": 3289 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091828, - 51.50396 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3874.0, - "url": "https://www.rightmove.co.uk/properties/159867365", - "info": { - "identifier": 159867365, - "sqm_ocr": null, - "price": 3874.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159867365", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159867365/96668_243103826032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.781486", - "last_seen": "2025-06-01T22:05:42.708551", - "price": 3874 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130872, - 51.51989 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 43.86, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/159867719", - "info": { - "identifier": 159867719, - "sqm_ocr": 84.0, - "price": 3684.0, - "price_per_sqm": 43.857142857142854, - "url": "https://www.rightmove.co.uk/properties/159867719", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/159867719/15948_1320393_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.517468", - "last_seen": "2025-06-01T22:05:49.460513", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196005, - 51.482533 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.2, - "qmprice": 32.4, - "rooms": 2, - "total_price": 2080.0, - "url": "https://www.rightmove.co.uk/properties/159867836", - "info": { - "identifier": 159867836, - "sqm_ocr": 64.2, - "price": 2080.0, - "price_per_sqm": 32.398753894081, - "url": "https://www.rightmove.co.uk/properties/159867836", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49922/159867836/49922_CEI240273_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.845821", - "last_seen": "2025-06-01T22:06:03.061764", - "price": 2080.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.036838, - 51.50064 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.58, - "qmprice": 56.56, - "rooms": 2, - "total_price": 3879.0, - "url": "https://www.rightmove.co.uk/properties/159867884", - "info": { - "identifier": 159867884, - "sqm_ocr": 68.58, - "price": 3879.0, - "price_per_sqm": 56.56167979002625, - "url": "https://www.rightmove.co.uk/properties/159867884", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/159867884/15942_1320388_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.096902", - "last_seen": "2025-06-01T22:05:58.171800", - "price": 3879.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188093, - 51.495384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.6, - "qmprice": 58.69, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159868748", - "info": { - "identifier": 159868748, - "sqm_ocr": 42.6, - "price": 2500.0, - "price_per_sqm": 58.68544600938967, - "url": "https://www.rightmove.co.uk/properties/159868748", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/159868748/15954_1320397_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.319541", - "last_seen": "2025-06-01T22:05:47.425029", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078401, - 51.544586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159870572", - "info": { - "identifier": 159870572, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159870572", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159870572/96668_83536809072020_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.085265", - "last_seen": "2025-06-01T22:05:40.419866", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217347, - 51.54613 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159871178", - "info": { - "identifier": 159871178, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159871178", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40233/159871178/40233_SUQ250009_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.410520", - "last_seen": "2025-06-01T22:06:06.380600", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055213, - 51.484818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.1, - "qmprice": 39.24, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/159879572", - "info": { - "identifier": 159879572, - "sqm_ocr": 84.1, - "price": 3300.0, - "price_per_sqm": 39.239001189060644, - "url": "https://www.rightmove.co.uk/properties/159879572", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72056/159879572/72056_33770444_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.108618", - "last_seen": "2025-06-01T22:06:01.766038", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153808, - 51.416405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/159879947", - "info": { - "identifier": 159879947, - "sqm_ocr": null, - "price": 3142.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159879947", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/159879947/80796_400_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.062951", - "last_seen": "2025-06-01T22:06:00.159999", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13271, - 51.47151 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.8, - "qmprice": 53.55, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/159880916", - "info": { - "identifier": 159880916, - "sqm_ocr": 68.8, - "price": 3684.0, - "price_per_sqm": 53.54651162790698, - "url": "https://www.rightmove.co.uk/properties/159880916", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/159880916/73120_1320272_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.755215", - "last_seen": "2025-06-01T22:05:53.646206", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097272, - 51.52542 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159881144", - "info": { - "identifier": 159881144, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159881144", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/159881144/238265_L83491_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.628917", - "last_seen": "2025-06-01T22:06:06.160292", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097858, - 51.48752 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.9, - "qmprice": 47.04, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/159882905", - "info": { - "identifier": 159882905, - "sqm_ocr": 82.9, - "price": 3900.0, - "price_per_sqm": 47.04463208685163, - "url": "https://www.rightmove.co.uk/properties/159882905", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Fraser & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163088/159882905/163088_HNK240066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.072946", - "last_seen": "2025-06-01T22:06:08.053877", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022521, - 51.500908 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159884018", - "info": { - "identifier": 159884018, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159884018", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30602/159884018/30602_06780081_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.028471", - "last_seen": "2025-06-01T22:05:50.540711", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.341, - 51.599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.4, - "qmprice": 28.88, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/159885062", - "info": { - "identifier": 159885062, - "sqm_ocr": 100.4, - "price": 2900.0, - "price_per_sqm": 28.88446215139442, - "url": "https://www.rightmove.co.uk/properties/159885062", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/141k/140183/159885062/140183_CSG201878_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.491247", - "last_seen": "2025-06-01T22:05:40.787094", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214167, - 51.53699 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/159886658", - "info": { - "identifier": 159886658, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159886658", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159886658/96668_241565212032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.099015", - "last_seen": "2025-06-01T20:19:58.084720", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034485, - 51.52556 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.31, - "qmprice": 42.34, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/159887759", - "info": { - "identifier": 159887759, - "sqm_ocr": 67.31, - "price": 2850.0, - "price_per_sqm": 42.341405437527854, - "url": "https://www.rightmove.co.uk/properties/159887759", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Settio Property Experience Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267794/159887759/267794_16447_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.243153", - "last_seen": "2025-06-01T20:19:58.262855", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01966, - 51.49843 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.3, - "qmprice": 36.2, - "rooms": 3, - "total_price": 3848.0, - "url": "https://www.rightmove.co.uk/properties/159888350", - "info": { - "identifier": 159888350, - "sqm_ocr": 106.3, - "price": 3848.0, - "price_per_sqm": 36.19943555973659, - "url": "https://www.rightmove.co.uk/properties/159888350", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84869/159888350/84869_33770995_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.099320", - "last_seen": "2025-06-01T22:05:48.511880", - "price": 3848 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182253, - 51.472492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.8, - "qmprice": 32.45, - "rooms": 2, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/159888617", - "info": { - "identifier": 159888617, - "sqm_ocr": 73.8, - "price": 2395.0, - "price_per_sqm": 32.452574525745256, - "url": "https://www.rightmove.co.uk/properties/159888617", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84809/159888617/84809_32968787_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.313014, - 51.45624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.2, - "qmprice": 30.65, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/159889502", - "info": { - "identifier": 159889502, - "sqm_ocr": 83.2, - "price": 2550.0, - "price_per_sqm": 30.64903846153846, - "url": "https://www.rightmove.co.uk/properties/159889502", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86531/159889502/86531_P297908_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.636680", - "last_seen": "2025-06-01T22:05:58.702090", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30738, - 51.41256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.3, - "qmprice": 30.87, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/159890423", - "info": { - "identifier": 159890423, - "sqm_ocr": 79.3, - "price": 2448.0, - "price_per_sqm": 30.870113493064313, - "url": "https://www.rightmove.co.uk/properties/159890423", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/159890423/198539_33771119_IMG_06_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.052885", - "last_seen": "2025-06-01T20:19:57.915740", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004933, - 51.512787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.61, - "qmprice": 37.35, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/159891209", - "info": { - "identifier": 159891209, - "sqm_ocr": 77.61, - "price": 2899.0, - "price_per_sqm": 37.3534338358459, - "url": "https://www.rightmove.co.uk/properties/159891209", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50930/159891209/50930_P5677I0616_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.177837", - "last_seen": "2025-06-01T22:05:44.823596", - "price": 2899.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30278, - 51.51357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 36.36, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/159892022", - "info": { - "identifier": 159892022, - "sqm_ocr": 59.0, - "price": 2145.0, - "price_per_sqm": 36.355932203389834, - "url": "https://www.rightmove.co.uk/properties/159892022", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79825/159892022/79825_P297926_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.620750", - "last_seen": "2025-06-01T22:05:57.313223", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1788, - 51.59021 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/159892184", - "info": { - "identifier": 159892184, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159892184", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "ABACO Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/184k/183806/159892184/183806_33771224_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.397653", - "last_seen": "2025-06-01T22:05:38.788154", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178336, - 51.590584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/159893033", - "info": { - "identifier": 159893033, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159893033", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Tatlers", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/156k/155624/159893033/155624_MUH250127_L_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.496317", - "last_seen": "2025-06-01T22:05:39.497606", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178336, - 51.590584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.56, - "qmprice": 34.04, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/159893396", - "info": { - "identifier": 159893396, - "sqm_ocr": 114.56, - "price": 3900.0, - "price_per_sqm": 34.04329608938547, - "url": "https://www.rightmove.co.uk/properties/159893396", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/159893396/228512_33655319_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.515959", - "last_seen": "2025-06-01T22:05:43.091980", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187856, - 51.546246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/159894515", - "info": { - "identifier": 159894515, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159894515", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Laurence Leigh Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80035/159894515/80035_LLR250044_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.561550", - "last_seen": "2025-06-01T22:05:39.082167", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178336, - 51.590584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 127.97, - "qmprice": 21.1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159894578", - "info": { - "identifier": 159894578, - "sqm_ocr": 127.97, - "price": 2700.0, - "price_per_sqm": 21.09869500664218, - "url": "https://www.rightmove.co.uk/properties/159894578", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/159894578/48101_1320262_IMG_01_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.682507", - "last_seen": "2025-06-01T22:06:10.416983", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027833, - 51.494793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.1, - "qmprice": 43.58, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159894995", - "info": { - "identifier": 159894995, - "sqm_ocr": 63.1, - "price": 2750.0, - "price_per_sqm": 43.58161648177496, - "url": "https://www.rightmove.co.uk/properties/159894995", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/159894995/15963_1320435_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.020644", - "last_seen": "2025-06-01T22:06:14.137273", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183892, - 51.4503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.08, - "qmprice": 34.0, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/159895634", - "info": { - "identifier": 159895634, - "sqm_ocr": 63.08, - "price": 2145.0, - "price_per_sqm": 34.00443880786303, - "url": "https://www.rightmove.co.uk/properties/159895634", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129652/159895634/129652_P0519D4027_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.596063", - "last_seen": "2025-06-01T22:05:39.869366", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1788, - 51.59021 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159896405", - "info": { - "identifier": 159896405, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159896405", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "GCP", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/196k/195305/159896405/195305_195305_p0195228_1401_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.067040", - "last_seen": "2025-06-01T22:05:40.445123", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27849, - 51.56177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.4, - "qmprice": 30.96, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/159897971", - "info": { - "identifier": 159897971, - "sqm_ocr": 90.4, - "price": 2799.0, - "price_per_sqm": 30.962389380530972, - "url": "https://www.rightmove.co.uk/properties/159897971", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48695/159897971/48695_33771584_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.563809", - "last_seen": "2025-06-01T22:06:15.599022", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178534, - 51.533604 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.2, - "qmprice": 33.56, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/159898157", - "info": { - "identifier": 159898157, - "sqm_ocr": 104.2, - "price": 3497.0, - "price_per_sqm": 33.56046065259117, - "url": "https://www.rightmove.co.uk/properties/159898157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Robert Lehrer Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57714/159898157/57714_ROBEL_001846_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.441793", - "last_seen": "2025-06-01T22:05:39.362990", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225332, - 51.61799 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/159898394", - "info": { - "identifier": 159898394, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159898394", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/159898394/105856_3434_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.134996", - "last_seen": "2025-06-01T22:06:05.840883", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10427, - 51.4834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159898814", - "info": { - "identifier": 159898814, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159898814", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 66, - "status": null, - "last_seen": 0, - "agency": "Hilton & Fox", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237869/159898814/237869_hilton_41140294_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.222768", - "last_seen": "2025-06-01T22:05:52.107226", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.390967, - 51.483753 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.5, - "qmprice": 49.74, - "rooms": 2, - "total_price": 2860.0, - "url": "https://www.rightmove.co.uk/properties/159899222", - "info": { - "identifier": 159899222, - "sqm_ocr": 57.5, - "price": 2860.0, - "price_per_sqm": 49.73913043478261, - "url": "https://www.rightmove.co.uk/properties/159899222", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/159899222/15954_1320385_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.723144", - "last_seen": "2025-06-01T22:05:53.751491", - "price": 2860.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119618, - 51.53686 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.5, - "qmprice": 33.49, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159900875", - "info": { - "identifier": 159900875, - "sqm_ocr": 104.5, - "price": 3500.0, - "price_per_sqm": 33.49282296650718, - "url": "https://www.rightmove.co.uk/properties/159900875", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46013/159900875/46013_KGL250026_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.390660", - "last_seen": "2025-06-01T22:05:38.489977", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.236513, - 51.623318 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159902531", - "info": { - "identifier": 159902531, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159902531", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Birchills", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115933/159902531/115933_0d33be1b-2059-4f41-b6fa-81ff9e195879_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.912612", - "last_seen": "2025-06-01T22:06:03.955271", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017943, - 51.57671 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.8, - "qmprice": 41.79, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/159907397", - "info": { - "identifier": 159907397, - "sqm_ocr": 64.8, - "price": 2708.0, - "price_per_sqm": 41.79012345679013, - "url": "https://www.rightmove.co.uk/properties/159907397", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76478/159907397/76478_CEI244404_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.134181", - "last_seen": "2025-06-01T20:19:57.938885", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015812, - 51.49736 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.4, - "qmprice": 45.84, - "rooms": 2, - "total_price": 3502.0, - "url": "https://www.rightmove.co.uk/properties/159908228", - "info": { - "identifier": 159908228, - "sqm_ocr": 76.4, - "price": 3502.0, - "price_per_sqm": 45.83769633507853, - "url": "https://www.rightmove.co.uk/properties/159908228", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151658/159908228/151658_1320475_IMG_01_0010_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.149002", - "last_seen": "2025-06-01T22:06:14.857034", - "price": 3502.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205962, - 51.528687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.2, - "qmprice": 42.12, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/159908441", - "info": { - "identifier": 159908441, - "sqm_ocr": 71.2, - "price": 2999.0, - "price_per_sqm": 42.12078651685393, - "url": "https://www.rightmove.co.uk/properties/159908441", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/159908441/55101_1316200_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.296146", - "last_seen": "2025-06-01T22:06:07.026245", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.046298, - 51.50529 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.71, - "qmprice": 61.72, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159908657", - "info": { - "identifier": 159908657, - "sqm_ocr": 56.71, - "price": 3500.0, - "price_per_sqm": 61.71751013930523, - "url": "https://www.rightmove.co.uk/properties/159908657", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Andre Joseph Estates Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74973/159908657/74973_528319_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.809545", - "last_seen": "2025-06-01T22:06:06.609725", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093642, - 51.504925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159908888", - "info": { - "identifier": 159908888, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159908888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159908888/96668_240979106032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.001339", - "last_seen": "2025-06-01T22:06:15.117118", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175703, - 51.52859 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159909428", - "info": { - "identifier": 159909428, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159909428", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Ashton Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/2k/1457/159909428/1457_AEA250154_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.142864, - 51.57238 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.32, - "qmprice": 57.37, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/159910247", - "info": { - "identifier": 159910247, - "sqm_ocr": 62.32, - "price": 3575.0, - "price_per_sqm": 57.36521181001284, - "url": "https://www.rightmove.co.uk/properties/159910247", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Laurence Leigh Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80035/159910247/80035_LLR190019_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.164061", - "last_seen": "2025-06-01T22:06:14.837190", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177019, - 51.5331 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2834.0, - "url": "https://www.rightmove.co.uk/properties/159910502", - "info": { - "identifier": 159910502, - "sqm_ocr": null, - "price": 2834.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159910502", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/159910502/146147_PR211689_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.308417", - "last_seen": "2025-06-01T22:06:03.563992", - "price": 2834 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.025208, - 51.498943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2898.0, - "url": "https://www.rightmove.co.uk/properties/159911360", - "info": { - "identifier": 159911360, - "sqm_ocr": null, - "price": 2898.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159911360", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Emoov", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/181k/180266/159911360/180266_1466_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.154876", - "last_seen": "2025-06-01T22:05:48.395797", - "price": 2898.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208436, - 51.4774 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/159911441", - "info": { - "identifier": 159911441, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159911441", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 65, - "status": null, - "last_seen": 0, - "agency": "Kevin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278792/159911441/278792_LSWE16_IMG_02_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.188887", - "last_seen": "2025-06-01T22:06:01.901841", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07517, - 51.50542 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.0, - "qmprice": 21.93, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159913226", - "info": { - "identifier": 159913226, - "sqm_ocr": 114.0, - "price": 2500.0, - "price_per_sqm": 21.92982456140351, - "url": "https://www.rightmove.co.uk/properties/159913226", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/159913226/57272_1320492_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.727357", - "last_seen": "2025-06-01T22:05:58.687043", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293132, - 51.37729 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.9, - "qmprice": 52.32, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159913397", - "info": { - "identifier": 159913397, - "sqm_ocr": 66.9, - "price": 3500.0, - "price_per_sqm": 52.3168908819133, - "url": "https://www.rightmove.co.uk/properties/159913397", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/159913397/16050_1320484_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.273190", - "last_seen": "2025-06-01T20:19:58.216855", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056877, - 51.513332 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.85, - "qmprice": 26.68, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/159914609", - "info": { - "identifier": 159914609, - "sqm_ocr": 76.85, - "price": 2050.0, - "price_per_sqm": 26.67534157449577, - "url": "https://www.rightmove.co.uk/properties/159914609", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Madison Brook", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181718/159914609/181718_33772818_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.336208", - "last_seen": "2025-06-01T22:05:46.700169", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.072946, - 51.493694 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.5, - "qmprice": 25.13, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159914642", - "info": { - "identifier": 159914642, - "sqm_ocr": 95.5, - "price": 2400.0, - "price_per_sqm": 25.130890052356023, - "url": "https://www.rightmove.co.uk/properties/159914642", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6769/159914642/6769_GGN160269_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.445788", - "last_seen": "2025-06-01T22:05:39.440437", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186779, - 51.57085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/159915572", - "info": { - "identifier": 159915572, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159915572", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Century 21 Heritage", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105398/159915572/105398_ZCQ-60662542_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.421437", - "last_seen": "2025-06-01T22:06:02.443159", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.027482, - 51.539356 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.4, - "qmprice": 25.46, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159917357", - "info": { - "identifier": 159917357, - "sqm_ocr": 86.4, - "price": 2200.0, - "price_per_sqm": 25.462962962962962, - "url": "https://www.rightmove.co.uk/properties/159917357", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/159917357/66771_1320496_IMG_01_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.293788", - "last_seen": "2025-06-01T22:06:06.009009", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096912, - 51.48563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.5, - "qmprice": 33.74, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159918107", - "info": { - "identifier": 159918107, - "sqm_ocr": 81.5, - "price": 2750.0, - "price_per_sqm": 33.74233128834356, - "url": "https://www.rightmove.co.uk/properties/159918107", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Rentals And Sales", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50366/159918107/50366_RWI-31268552_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.417876", - "last_seen": "2025-06-01T22:06:01.405343", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191181, - 51.418224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.6, - "qmprice": 24.81, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/159918509", - "info": { - "identifier": 159918509, - "sqm_ocr": 80.6, - "price": 2000.0, - "price_per_sqm": 24.81389578163772, - "url": "https://www.rightmove.co.uk/properties/159918509", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118048/159918509/118048_33773058_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.839946", - "last_seen": "2025-06-01T22:06:00.913313", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.025721, - 51.440777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.2, - "qmprice": 35.19, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159918881", - "info": { - "identifier": 159918881, - "sqm_ocr": 68.2, - "price": 2400.0, - "price_per_sqm": 35.19061583577712, - "url": "https://www.rightmove.co.uk/properties/159918881", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Oliver Jaques", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6844/159918881/6844_af2ae7ce-6c81-4943-a71a-a52a51d2f25e_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.259110", - "last_seen": "2025-06-01T22:06:09.767322", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020975, - 51.531322 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.2, - "qmprice": 42.48, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159918971", - "info": { - "identifier": 159918971, - "sqm_ocr": 61.2, - "price": 2600.0, - "price_per_sqm": 42.48366013071895, - "url": "https://www.rightmove.co.uk/properties/159918971", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/159918971/15954_1320512_IMG_07_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.605013", - "last_seen": "2025-06-01T22:05:53.818633", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088911, - 51.537464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.1, - "qmprice": 36.29, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/159929678", - "info": { - "identifier": 159929678, - "sqm_ocr": 59.1, - "price": 2145.0, - "price_per_sqm": 36.29441624365482, - "url": "https://www.rightmove.co.uk/properties/159929678", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Adam Hayes Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137693/159929678/137693_33773348_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.345983", - "last_seen": "2025-06-01T22:05:39.319541", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178335, - 51.590584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.23, - "qmprice": 43.21, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/159931367", - "info": { - "identifier": 159931367, - "sqm_ocr": 53.23, - "price": 2300.0, - "price_per_sqm": 43.20871688897239, - "url": "https://www.rightmove.co.uk/properties/159931367", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Parkheath", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72716/159931367/72716_32214377_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.807062", - "last_seen": "2025-06-01T22:05:42.778610", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189274, - 51.539673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159931883", - "info": { - "identifier": 159931883, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159931883", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Cosway Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9970/159931883/9970_32596385_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.119946", - "last_seen": "2025-06-01T22:05:39.556417", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.235838, - 51.622963 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.0, - "qmprice": 32.33, - "rooms": 4, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/159931922", - "info": { - "identifier": 159931922, - "sqm_ocr": 102.0, - "price": 3298.0, - "price_per_sqm": 32.333333333333336, - "url": "https://www.rightmove.co.uk/properties/159931922", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90035/159931922/90035_33482892_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.717747", - "last_seen": "2025-06-01T22:05:59.161072", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117105, - 51.49132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2397.0, - "url": "https://www.rightmove.co.uk/properties/159932267", - "info": { - "identifier": 159932267, - "sqm_ocr": null, - "price": 2397.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159932267", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11495/159932267/11495_0435_FJL043502237_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.438001", - "last_seen": "2025-06-01T22:06:09.435116", - "price": 2397.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064447, - 51.506954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/159933200", - "info": { - "identifier": 159933200, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159933200", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50713/159933200/50713_33773548_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.488811", - "last_seen": "2025-06-01T22:05:57.601153", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210357, - 51.51848 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.81, - "qmprice": 50.77, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/159936503", - "info": { - "identifier": 159936503, - "sqm_ocr": 76.81, - "price": 3900.0, - "price_per_sqm": 50.774638718916805, - "url": "https://www.rightmove.co.uk/properties/159936503", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/115k/114493/159936503/114493_P297914_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.949114", - "last_seen": "2025-06-01T22:05:45.854918", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1359, - 51.65779 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.5, - "qmprice": 41.42, - "rooms": 2, - "total_price": 3293.0, - "url": "https://www.rightmove.co.uk/properties/159936869", - "info": { - "identifier": 159936869, - "sqm_ocr": 79.5, - "price": 3293.0, - "price_per_sqm": 41.42138364779874, - "url": "https://www.rightmove.co.uk/properties/159936869", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/159936869/212327_P159686_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.972410", - "last_seen": "2025-06-01T20:19:57.565303", - "price": 3293 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01354, - 51.50003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.56, - "qmprice": 67.16, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/159936956", - "info": { - "identifier": 159936956, - "sqm_ocr": 53.56, - "price": 3597.0, - "price_per_sqm": 67.15832710978341, - "url": "https://www.rightmove.co.uk/properties/159936956", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44510/159936956/44510_KYC250133_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.663675", - "last_seen": "2025-06-01T22:06:15.573840", - "price": 3597.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159371, - 51.513958 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.6, - "qmprice": 30.67, - "rooms": 2, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/159937358", - "info": { - "identifier": 159937358, - "sqm_ocr": 84.6, - "price": 2595.0, - "price_per_sqm": 30.673758865248228, - "url": "https://www.rightmove.co.uk/properties/159937358", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84845/159937358/84845_31307839_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.466231", - "last_seen": "2025-06-01T22:06:04.522997", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.308928, - 51.42093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.85, - "qmprice": 31.09, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159940163", - "info": { - "identifier": 159940163, - "sqm_ocr": 86.85, - "price": 2700.0, - "price_per_sqm": 31.088082901554404, - "url": "https://www.rightmove.co.uk/properties/159940163", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50951/159940163/50951_P0128D1225_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.035111", - "last_seen": "2025-06-01T22:06:06.878204", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09642, - 51.48549 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 38.19, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159940169", - "info": { - "identifier": 159940169, - "sqm_ocr": 72.0, - "price": 2750.0, - "price_per_sqm": 38.19444444444444, - "url": "https://www.rightmove.co.uk/properties/159940169", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34217/159940169/34217_OXL250056_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.611714", - "last_seen": "2025-06-01T22:05:43.054441", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146354, - 51.536236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.84, - "qmprice": 31.76, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159941051", - "info": { - "identifier": 159941051, - "sqm_ocr": 70.84, - "price": 2250.0, - "price_per_sqm": 31.76171654432524, - "url": "https://www.rightmove.co.uk/properties/159941051", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/159941051/80340_a1G4J0000026080UAA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.303660", - "last_seen": "2025-06-01T22:05:51.843786", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28455, - 51.48849 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.0, - "qmprice": 29.65, - "rooms": 4, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/159941660", - "info": { - "identifier": 159941660, - "sqm_ocr": 113.0, - "price": 3350.0, - "price_per_sqm": 29.646017699115045, - "url": "https://www.rightmove.co.uk/properties/159941660", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/193k/192209/159941660/192209_33774115_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.580137", - "last_seen": "2025-06-01T22:05:44.306696", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267356, - 51.5222 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.8, - "qmprice": 30.91, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159943550", - "info": { - "identifier": 159943550, - "sqm_ocr": 72.8, - "price": 2250.0, - "price_per_sqm": 30.90659340659341, - "url": "https://www.rightmove.co.uk/properties/159943550", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "EO ESTATE AGENTS", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245249/159943550/245249_EEA250062_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.828722", - "last_seen": "2025-06-01T22:06:14.160531", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.239448, - 51.44914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.1, - "qmprice": 22.72, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/159944459", - "info": { - "identifier": 159944459, - "sqm_ocr": 101.1, - "price": 2297.0, - "price_per_sqm": 22.72007912957468, - "url": "https://www.rightmove.co.uk/properties/159944459", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/159944459/48101_1320559_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.707803", - "last_seen": "2025-06-01T22:06:02.110856", - "price": 2297.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.023543, - 51.508648 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.11, - "qmprice": 41.5, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/159944819", - "info": { - "identifier": 159944819, - "sqm_ocr": 77.11, - "price": 3200.0, - "price_per_sqm": 41.49915704837245, - "url": "https://www.rightmove.co.uk/properties/159944819", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/139k/138215/159944819/138215_100783015771_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.893156", - "last_seen": "2025-06-01T22:06:12.630888", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197477, - 51.46207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.5, - "qmprice": 37.12, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/159946997", - "info": { - "identifier": 159946997, - "sqm_ocr": 56.5, - "price": 2097.0, - "price_per_sqm": 37.11504424778761, - "url": "https://www.rightmove.co.uk/properties/159946997", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146498/159946997/146498_33774474_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.270210", - "last_seen": "2025-06-01T22:05:59.733243", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117059, - 51.487347 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2459.0, - "url": "https://www.rightmove.co.uk/properties/159947198", - "info": { - "identifier": 159947198, - "sqm_ocr": null, - "price": 2459.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159947198", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159947198/96668_220030323082024_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.309036", - "last_seen": "2025-06-01T22:05:44.680754", - "price": 2459.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.338347, - 51.508224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/159947348", - "info": { - "identifier": 159947348, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159947348", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/159947348/60927_000013129b_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.325295", - "last_seen": "2025-06-01T22:05:56.966441", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22716, - 51.49384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.0, - "qmprice": 56.0, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/159948182", - "info": { - "identifier": 159948182, - "sqm_ocr": 50.0, - "price": 2800.0, - "price_per_sqm": 56.0, - "url": "https://www.rightmove.co.uk/properties/159948182", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51295/159948182/51295_PTL210221_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.691620", - "last_seen": "2025-06-01T22:05:42.679829", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17871, - 51.55186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.6, - "qmprice": 39.94, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159948347", - "info": { - "identifier": 159948347, - "sqm_ocr": 62.6, - "price": 2500.0, - "price_per_sqm": 39.936102236421725, - "url": "https://www.rightmove.co.uk/properties/159948347", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/159948347/111056_1320575_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.428278", - "last_seen": "2025-06-01T22:06:11.512924", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066971, - 51.514885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 34.29, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159951386", - "info": { - "identifier": 159951386, - "sqm_ocr": 70.0, - "price": 2400.0, - "price_per_sqm": 34.285714285714285, - "url": "https://www.rightmove.co.uk/properties/159951386", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13096/159951386/13096_EAF230196_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.149163", - "last_seen": "2025-06-01T22:05:39.848302", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167212, - 51.590714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 54.79, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159953885", - "info": { - "identifier": 159953885, - "sqm_ocr": 73.0, - "price": 4000.0, - "price_per_sqm": 54.794520547945204, - "url": "https://www.rightmove.co.uk/properties/159953885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65875/159953885/65875_KNQ012515297_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.249451", - "last_seen": "2025-06-01T22:05:57.900061", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159784, - 51.500572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 131.36, - "qmprice": 22.84, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159953999", - "info": { - "identifier": 159953999, - "sqm_ocr": 131.36, - "price": 3000.0, - "price_per_sqm": 22.83800243605359, - "url": "https://www.rightmove.co.uk/properties/159953999", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 65, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238277/159953999/238277_L69377_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.794904", - "last_seen": "2025-06-01T22:06:11.694664", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.007233, - 51.625362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.94, - "qmprice": 28.97, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/159955703", - "info": { - "identifier": 159955703, - "sqm_ocr": 94.94, - "price": 2750.0, - "price_per_sqm": 28.96566252369918, - "url": "https://www.rightmove.co.uk/properties/159955703", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Pinnacle Housing Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212189/159955703/212189_2787_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.438504", - "last_seen": "2025-06-01T22:06:02.063052", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03958, - 51.50227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 135.8, - "qmprice": 22.09, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159956837", - "info": { - "identifier": 159956837, - "sqm_ocr": 135.8, - "price": 3000.0, - "price_per_sqm": 22.091310751104565, - "url": "https://www.rightmove.co.uk/properties/159956837", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12686/159956837/12686_EAL110315_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.593720", - "last_seen": "2025-06-01T22:05:44.250743", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.319141, - 51.523624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.1, - "qmprice": 50.21, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/159957647", - "info": { - "identifier": 159957647, - "sqm_ocr": 56.1, - "price": 2817.0, - "price_per_sqm": 50.213903743315505, - "url": "https://www.rightmove.co.uk/properties/159957647", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/159957647/15942_1320531_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.300018", - "last_seen": "2025-06-01T22:05:57.934657", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179203, - 51.48459 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.9, - "qmprice": 46.03, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159959066", - "info": { - "identifier": 159959066, - "sqm_ocr": 86.9, - "price": 4000.0, - "price_per_sqm": 46.029919447640964, - "url": "https://www.rightmove.co.uk/properties/159959066", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22245/159959066/22245_PUL160009_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.231073", - "last_seen": "2025-06-01T22:06:13.823259", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223031, - 51.46559 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 45.31, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/159960533", - "info": { - "identifier": 159960533, - "sqm_ocr": 64.0, - "price": 2900.0, - "price_per_sqm": 45.3125, - "url": "https://www.rightmove.co.uk/properties/159960533", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210110/159960533/210110_P298040_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.842629", - "last_seen": "2025-06-01T22:06:15.354120", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18749, - 51.52434 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159962255", - "info": { - "identifier": 159962255, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159962255", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Oakwood Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67323/159962255/67323_28886762_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.773815", - "last_seen": "2025-06-01T22:05:51.167038", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.47912, - 51.51527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159964484", - "info": { - "identifier": 159964484, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159964484", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Barrain London Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249296/159964484/249296_33775494_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.402434", - "last_seen": "2025-06-01T22:06:02.395246", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.021397, - 51.507572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.3, - "qmprice": 24.92, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/159965015", - "info": { - "identifier": 159965015, - "sqm_ocr": 88.3, - "price": 2200.0, - "price_per_sqm": 24.91506228765572, - "url": "https://www.rightmove.co.uk/properties/159965015", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Spencer James Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283697/159965015/283697_13473_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.066983", - "last_seen": "2025-06-01T22:06:02.997331", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.076, - 51.50546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.88, - "qmprice": 28.89, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/159965639", - "info": { - "identifier": 159965639, - "sqm_ocr": 77.88, - "price": 2250.0, - "price_per_sqm": 28.890600924499232, - "url": "https://www.rightmove.co.uk/properties/159965639", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82844/159965639/82844_P5658D3513_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.061920", - "last_seen": "2025-06-01T22:06:12.286427", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1407, - 51.4237 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.44, - "qmprice": 66.07, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/159965894", - "info": { - "identifier": 159965894, - "sqm_ocr": 54.44, - "price": 3597.0, - "price_per_sqm": 66.07274063188832, - "url": "https://www.rightmove.co.uk/properties/159965894", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Napier Watt Limited", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83443/159965894/83443_33775560_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.336903", - "last_seen": "2025-06-01T22:06:16.033587", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.160562, - 51.516335 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 43.33, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/159967241", - "info": { - "identifier": 159967241, - "sqm_ocr": 85.0, - "price": 3683.0, - "price_per_sqm": 43.32941176470588, - "url": "https://www.rightmove.co.uk/properties/159967241", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212321/159967241/212321_P159837_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.447959", - "last_seen": "2025-06-01T22:06:13.426918", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13201, - 51.48097 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/159969527", - "info": { - "identifier": 159969527, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159969527", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35969/159969527/35969_06910668_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.438997", - "last_seen": "2025-06-01T22:05:39.456268", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178, - 51.59 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/159974660", - "info": { - "identifier": 159974660, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159974660", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81158/159974660/81158_33775999_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.102861", - "last_seen": "2025-06-01T22:05:50.439272", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.376784, - 51.561634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/159976310", - "info": { - "identifier": 159976310, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159976310", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/159976310/163859_2710216_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.788279", - "last_seen": "2025-06-01T22:05:46.124535", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.065465, - 51.49446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3297.0, - "url": "https://www.rightmove.co.uk/properties/159976562", - "info": { - "identifier": 159976562, - "sqm_ocr": null, - "price": 3297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159976562", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Joseph Scott", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17295/159976562/17295_12636431_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.236518", - "last_seen": "2025-06-01T22:05:39.766716", - "price": 3297.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210938, - 51.61377 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159977228", - "info": { - "identifier": 159977228, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159977228", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238277/159977228/238277_L105645_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.692233", - "last_seen": "2025-06-01T22:06:07.890140", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204025, - 51.379044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.3, - "qmprice": 35.19, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/159977645", - "info": { - "identifier": 159977645, - "sqm_ocr": 75.3, - "price": 2650.0, - "price_per_sqm": 35.1925630810093, - "url": "https://www.rightmove.co.uk/properties/159977645", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/159977645/57272_1320648_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.640930", - "last_seen": "2025-06-01T22:05:58.858306", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297861, - 51.41132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/159977879", - "info": { - "identifier": 159977879, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159977879", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cottage Fields", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65535/159977879/65535_4fbdb8cc-362e-4aa2-bba6-0b82afe7feb8_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.671279", - "last_seen": "2025-06-01T22:05:49.682145", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075638, - 51.58492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/159978737", - "info": { - "identifier": 159978737, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159978737", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/159978737/17882_37798_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.613956", - "last_seen": "2025-06-01T22:05:53.769470", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13262, - 51.56436 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.3, - "qmprice": 21.87, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/159979568", - "info": { - "identifier": 159979568, - "sqm_ocr": 114.3, - "price": 2500.0, - "price_per_sqm": 21.872265966754156, - "url": "https://www.rightmove.co.uk/properties/159979568", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249770/159979568/249770_33776279_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.521856", - "last_seen": "2025-06-01T22:05:39.348971", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169239, - 51.608204 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.18, - "qmprice": 29.29, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/159979814", - "info": { - "identifier": 159979814, - "sqm_ocr": 96.18, - "price": 2817.0, - "price_per_sqm": 29.28883343730505, - "url": "https://www.rightmove.co.uk/properties/159979814", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/159979814/73120_1320121_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.997982", - "last_seen": "2025-06-01T22:05:56.279014", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099575, - 51.52514 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2890.0, - "url": "https://www.rightmove.co.uk/properties/159982163", - "info": { - "identifier": 159982163, - "sqm_ocr": null, - "price": 2890.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159982163", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Brithomes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275363/159982163/275363_Unfurnished_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.893845", - "last_seen": "2025-06-01T22:05:52.694846", - "price": 2890.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30912, - 51.48272 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/159982244", - "info": { - "identifier": 159982244, - "sqm_ocr": null, - "price": 2383.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159982244", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/159982244/115768_784525225_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "21/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.507857", - "last_seen": "2025-06-01T22:06:11.461230", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02426, - 51.49212 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/159985469", - "info": { - "identifier": 159985469, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159985469", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "LAND", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278897/159985469/278897_RL0823_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.204782", - "last_seen": "2025-06-01T20:19:58.040105", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018126, - 51.498333 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3315.0, - "url": "https://www.rightmove.co.uk/properties/159985493", - "info": { - "identifier": 159985493, - "sqm_ocr": null, - "price": 3315.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159985493", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "LAND", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278897/159985493/278897_RL0828_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.135473", - "last_seen": "2025-06-01T20:19:57.873813", - "price": 3315 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025374, - 51.502247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/159987527", - "info": { - "identifier": 159987527, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159987527", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159987527/96668_243416929032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.895588", - "last_seen": "2025-06-01T22:06:03.673330", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.095755, - 51.55752 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/159989249", - "info": { - "identifier": 159989249, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159989249", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/159989249/105856_3106_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/05/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.422664", - "last_seen": "2025-06-01T22:06:05.224440", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10246, - 51.483902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.94, - "qmprice": 42.71, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/159989420", - "info": { - "identifier": 159989420, - "sqm_ocr": 81.94, - "price": 3500.0, - "price_per_sqm": 42.7141811081279, - "url": "https://www.rightmove.co.uk/properties/159989420", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6073/159989420/6073_33776286_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.628502", - "last_seen": "2025-06-01T22:05:54.366900", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110501, - 51.52811 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/159989744", - "info": { - "identifier": 159989744, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159989744", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/159989744/17888_26752_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.132786", - "last_seen": "2025-06-01T22:05:52.902470", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1411, - 51.56957 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.2, - "qmprice": 34.27, - "rooms": 2, - "total_price": 2166.0, - "url": "https://www.rightmove.co.uk/properties/159990833", - "info": { - "identifier": 159990833, - "sqm_ocr": 63.2, - "price": 2166.0, - "price_per_sqm": 34.27215189873417, - "url": "https://www.rightmove.co.uk/properties/159990833", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49922/159990833/49922_CEI244230_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.799989", - "last_seen": "2025-06-01T22:06:03.386520", - "price": 2166.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.038253, - 51.50184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2773.0, - "url": "https://www.rightmove.co.uk/properties/159991406", - "info": { - "identifier": 159991406, - "sqm_ocr": null, - "price": 2773.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159991406", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/159991406/17888_31173_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.254761", - "last_seen": "2025-06-01T22:05:42.704340", - "price": 2773 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13436, - 51.5334 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.2, - "qmprice": 36.75, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/159991538", - "info": { - "identifier": 159991538, - "sqm_ocr": 65.2, - "price": 2396.0, - "price_per_sqm": 36.74846625766871, - "url": "https://www.rightmove.co.uk/properties/159991538", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50719/159991538/50719_33776793_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.511694", - "last_seen": "2025-06-01T22:05:48.740916", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208952, - 51.495586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2901.0, - "url": "https://www.rightmove.co.uk/properties/159993476", - "info": { - "identifier": 159993476, - "sqm_ocr": null, - "price": 2901.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159993476", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Happy Living Residential Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275498/159993476/275498_D09_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.459394", - "last_seen": "2025-06-01T22:05:47.362809", - "price": 2901.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06983, - 51.54722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2901.0, - "url": "https://www.rightmove.co.uk/properties/159993536", - "info": { - "identifier": 159993536, - "sqm_ocr": null, - "price": 2901.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159993536", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Happy Living Residential Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275498/159993536/275498_B33_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.451049", - "last_seen": "2025-06-01T22:05:56.452798", - "price": 2901.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06983, - 51.54722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2901.0, - "url": "https://www.rightmove.co.uk/properties/159993650", - "info": { - "identifier": 159993650, - "sqm_ocr": null, - "price": 2901.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159993650", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Happy Living Residential Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275498/159993650/275498_D6_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.276407", - "last_seen": "2025-06-01T22:05:47.406169", - "price": 2901.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06983, - 51.54722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.64, - "qmprice": 35.23, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/159993956", - "info": { - "identifier": 159993956, - "sqm_ocr": 76.64, - "price": 2700.0, - "price_per_sqm": 35.22964509394572, - "url": "https://www.rightmove.co.uk/properties/159993956", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55326/159993956/55326_ISS200117_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.063327", - "last_seen": "2025-06-01T22:05:53.120022", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087757, - 51.52406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.4, - "qmprice": 34.93, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/159994460", - "info": { - "identifier": 159994460, - "sqm_ocr": 61.4, - "price": 2145.0, - "price_per_sqm": 34.93485342019544, - "url": "https://www.rightmove.co.uk/properties/159994460", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/159994460/111056_1320678_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.454821", - "last_seen": "2025-06-01T22:06:10.241750", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039709, - 51.510098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.0, - "qmprice": 24.96, - "rooms": 3, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/159994571", - "info": { - "identifier": 159994571, - "sqm_ocr": 100.0, - "price": 2496.0, - "price_per_sqm": 24.96, - "url": "https://www.rightmove.co.uk/properties/159994571", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3355/159994571/3355_33777028_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.595472", - "last_seen": "2025-06-01T22:05:50.078092", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108647, - 51.573696 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/159995099", - "info": { - "identifier": 159995099, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159995099", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159995099/96668_241720213032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.834988", - "last_seen": "2025-06-01T22:06:00.976947", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021627, - 51.47366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/159996194", - "info": { - "identifier": 159996194, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/159996194", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/159996194/96668_243249827032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.127213", - "last_seen": "2025-06-01T22:06:14.022463", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1806, - 51.43393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.3, - "qmprice": 34.41, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/159997292", - "info": { - "identifier": 159997292, - "sqm_ocr": 68.3, - "price": 2350.0, - "price_per_sqm": 34.40702781844802, - "url": "https://www.rightmove.co.uk/properties/159997292", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22320/159997292/22320_CSZ181525_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.177609", - "last_seen": "2025-06-01T22:06:13.950928", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153808, - 51.43925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160001270", - "info": { - "identifier": 160001270, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160001270", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "AIROPERATE LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275732/160001270/275732_Three-Bedroom-Apt-Short-Let-Vauxall_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "31/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.229881", - "last_seen": "2025-06-01T22:05:59.053797", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12959, - 51.47721 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/160001462", - "info": { - "identifier": 160001462, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160001462", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "AIROPERATE LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275732/160001462/275732_3-Bedroom-Flat-Short-Let-Cyprus-Road_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.666198", - "last_seen": "2025-06-01T22:05:39.777074", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19994, - 51.59602 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/160004879", - "info": { - "identifier": 160004879, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160004879", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160004879/96668_243478329032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.390847", - "last_seen": "2025-06-01T22:06:10.150102", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020334, - 51.512993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2440.0, - "url": "https://www.rightmove.co.uk/properties/160004921", - "info": { - "identifier": 160004921, - "sqm_ocr": null, - "price": 2440.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160004921", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160004921/96668_243478929032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.323698", - "last_seen": "2025-06-01T22:05:39.476512", - "price": 2440.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218316, - 51.64355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160005233", - "info": { - "identifier": 160005233, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160005233", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160005233/96668_243487630032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.371542", - "last_seen": "2025-06-01T22:06:07.754198", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174074, - 51.38937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/160012688", - "info": { - "identifier": 160012688, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160012688", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Your Apartment", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81684/160012688/81684_BRIXAPR_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.460979", - "last_seen": "2025-06-01T22:05:59.659346", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11568, - 51.46176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2770.0, - "url": "https://www.rightmove.co.uk/properties/160013798", - "info": { - "identifier": 160013798, - "sqm_ocr": null, - "price": 2770.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160013798", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/160013798/208253_PRL250658_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.713977", - "last_seen": "2025-06-01T22:05:39.864835", - "price": 2770.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.241224, - 51.577717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.14, - "qmprice": 27.24, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160014824", - "info": { - "identifier": 160014824, - "sqm_ocr": 121.14, - "price": 3300.0, - "price_per_sqm": 27.241208519068845, - "url": "https://www.rightmove.co.uk/properties/160014824", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/160014824/135416_WBL110105_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.538540", - "last_seen": "2025-06-01T22:06:14.039167", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179235, - 51.46742 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160015268", - "info": { - "identifier": 160015268, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160015268", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 985.0, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Teddy", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257156/160015268/257156_RX567198_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.896248", - "last_seen": "2025-06-01T22:05:51.860792", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.288412, - 51.4884 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 40.37, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160020611", - "info": { - "identifier": 160020611, - "sqm_ocr": 80.5, - "price": 3250.0, - "price_per_sqm": 40.37267080745342, - "url": "https://www.rightmove.co.uk/properties/160020611", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Lessel", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191471/160020611/191471_33777759_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.334358", - "last_seen": "2025-06-01T22:06:08.642284", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056666, - 51.518402 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.87, - "qmprice": 57.79, - "rooms": 2, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/160020788", - "info": { - "identifier": 160020788, - "sqm_ocr": 58.87, - "price": 3402.0, - "price_per_sqm": 57.788347205707495, - "url": "https://www.rightmove.co.uk/properties/160020788", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Lessel", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191471/160020788/191471_33777770_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.054767", - "last_seen": "2025-06-01T22:06:09.410211", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018666, - 51.500744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.0, - "qmprice": 39.89, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160021052", - "info": { - "identifier": 160021052, - "sqm_ocr": 94.0, - "price": 3750.0, - "price_per_sqm": 39.8936170212766, - "url": "https://www.rightmove.co.uk/properties/160021052", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Excel Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99425/160021052/99425_102708035842_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.306173", - "last_seen": "2025-06-01T22:06:15.873550", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17847, - 51.53365 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.8, - "qmprice": 26.43, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160024598", - "info": { - "identifier": 160024598, - "sqm_ocr": 90.8, - "price": 2400.0, - "price_per_sqm": 26.431718061674008, - "url": "https://www.rightmove.co.uk/properties/160024598", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71785/160024598/71785_33777978_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.073623", - "last_seen": "2025-06-01T22:05:59.897807", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134714, - 51.447636 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.4, - "qmprice": 42.15, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/160024859", - "info": { - "identifier": 160024859, - "sqm_ocr": 66.4, - "price": 2799.0, - "price_per_sqm": 42.153614457831324, - "url": "https://www.rightmove.co.uk/properties/160024859", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/160024859/17888_39444_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.840572", - "last_seen": "2025-06-01T22:05:50.079529", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11982, - 51.58182 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.02, - "qmprice": 42.84, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160025438", - "info": { - "identifier": 160025438, - "sqm_ocr": 56.02, - "price": 2400.0, - "price_per_sqm": 42.84184219921456, - "url": "https://www.rightmove.co.uk/properties/160025438", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/146k/145463/160025438/145463_JWL230040_L_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.681225", - "last_seen": "2025-06-01T22:06:12.986180", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189043, - 51.450954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2903.0, - "url": "https://www.rightmove.co.uk/properties/160026560", - "info": { - "identifier": 160026560, - "sqm_ocr": null, - "price": 2903.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160026560", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/160026560/17882_38473_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.814964", - "last_seen": "2025-06-01T22:05:49.775384", - "price": 2903 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11982, - 51.58182 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160026611", - "info": { - "identifier": 160026611, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160026611", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12687/160026611/12687_PTL170092_L_IMG_22_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.073600", - "last_seen": "2025-06-01T22:06:13.942684", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196696, - 51.456154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.6, - "qmprice": 48.24, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/160026623", - "info": { - "identifier": 160026623, - "sqm_ocr": 78.6, - "price": 3792.0, - "price_per_sqm": 48.24427480916031, - "url": "https://www.rightmove.co.uk/properties/160026623", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/160026623/15945_1320223_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.288133", - "last_seen": "2025-06-01T22:06:15.850025", - "price": 3792.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183571, - 51.514194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.74, - "qmprice": 39.82, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160027064", - "info": { - "identifier": 160027064, - "sqm_ocr": 52.74, - "price": 2100.0, - "price_per_sqm": 39.81797497155859, - "url": "https://www.rightmove.co.uk/properties/160027064", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/160027064/48994_CNL230074_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.933514", - "last_seen": "2025-06-01T22:06:05.394698", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.032573, - 51.503044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.3, - "qmprice": 30.67, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/160028951", - "info": { - "identifier": 160028951, - "sqm_ocr": 88.3, - "price": 2708.0, - "price_per_sqm": 30.668176670441678, - "url": "https://www.rightmove.co.uk/properties/160028951", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/160028951/212327_P159848_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.300196", - "last_seen": "2025-06-01T17:39:04.750315", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03691, - 51.50933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.2, - "qmprice": 26.14, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160030148", - "info": { - "identifier": 160030148, - "sqm_ocr": 105.2, - "price": 2750.0, - "price_per_sqm": 26.140684410646386, - "url": "https://www.rightmove.co.uk/properties/160030148", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84845/160030148/84845_33778218_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.198892", - "last_seen": "2025-06-01T22:06:04.684403", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.337225, - 51.42359 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.2, - "qmprice": 28.17, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160030352", - "info": { - "identifier": 160030352, - "sqm_ocr": 85.2, - "price": 2400.0, - "price_per_sqm": 28.16901408450704, - "url": "https://www.rightmove.co.uk/properties/160030352", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247508/160030352/247508_P286506_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.970023", - "last_seen": "2025-06-01T22:06:03.845366", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.08472, - 51.56946 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.39, - "qmprice": 38.81, - "rooms": 2, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/160031666", - "info": { - "identifier": 160031666, - "sqm_ocr": 80.39, - "price": 3120.0, - "price_per_sqm": 38.81079736285608, - "url": "https://www.rightmove.co.uk/properties/160031666", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Messila Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92735/160031666/92735_33778323_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.031022", - "last_seen": "2025-06-01T22:06:15.494958", - "price": 3120 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178924, - 51.529533 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.2, - "qmprice": 28.67, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160031771", - "info": { - "identifier": 160031771, - "sqm_ocr": 87.2, - "price": 2500.0, - "price_per_sqm": 28.6697247706422, - "url": "https://www.rightmove.co.uk/properties/160031771", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68804/160031771/68804_P298088_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.924875", - "last_seen": "2025-06-01T22:06:05.390954", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08159, - 51.45791 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.9, - "qmprice": 49.26, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160032515", - "info": { - "identifier": 160032515, - "sqm_ocr": 60.9, - "price": 3000.0, - "price_per_sqm": 49.26108374384236, - "url": "https://www.rightmove.co.uk/properties/160032515", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/160032515/84889_1317036_IMG_02_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.560283", - "last_seen": "2025-06-01T22:06:15.317042", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13485, - 51.490135 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 43.91, - "rooms": 2, - "total_price": 3337.0, - "url": "https://www.rightmove.co.uk/properties/160032647", - "info": { - "identifier": 160032647, - "sqm_ocr": 76.0, - "price": 3337.0, - "price_per_sqm": 43.9078947368421, - "url": "https://www.rightmove.co.uk/properties/160032647", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75847/160032647/75847_CLK240105_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.386653", - "last_seen": "2025-06-01T22:05:42.796530", - "price": 3336 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127607, - 51.5156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.6, - "qmprice": 32.3, - "rooms": 2, - "total_price": 2474.0, - "url": "https://www.rightmove.co.uk/properties/160033460", - "info": { - "identifier": 160033460, - "sqm_ocr": 76.6, - "price": 2474.0, - "price_per_sqm": 32.297650130548305, - "url": "https://www.rightmove.co.uk/properties/160033460", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/160033460/84791_33778475_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.630505", - "last_seen": "2025-06-01T22:05:44.794414", - "price": 2474 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.288459, - 51.518684 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160034315", - "info": { - "identifier": 160034315, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160034315", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "CROWN HOME BUYING AND LETTING", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218051/160034315/218051_RL0889_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.356708", - "last_seen": "2025-06-01T22:06:09.672954", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066662, - 51.508343 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.86, - "qmprice": 35.79, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160035275", - "info": { - "identifier": 160035275, - "sqm_ocr": 69.86, - "price": 2500.0, - "price_per_sqm": 35.785857429144, - "url": "https://www.rightmove.co.uk/properties/160035275", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191426/160035275/191426_2710274_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.332031", - "last_seen": "2025-06-01T22:06:11.312085", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015504, - 51.486675 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 131.96, - "qmprice": 22.73, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160036439", - "info": { - "identifier": 160036439, - "sqm_ocr": 131.96, - "price": 3000.0, - "price_per_sqm": 22.734161867232494, - "url": "https://www.rightmove.co.uk/properties/160036439", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/160036439/108947_1320728_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.893845", - "last_seen": "2025-06-01T22:05:50.336017", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.339133, - 51.572067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.6, - "qmprice": 55.73, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/160037213", - "info": { - "identifier": 160037213, - "sqm_ocr": 64.6, - "price": 3600.0, - "price_per_sqm": 55.72755417956657, - "url": "https://www.rightmove.co.uk/properties/160037213", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238277/160037213/238277_L105683_IMG_03_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.566488", - "last_seen": "2025-06-01T22:05:43.484496", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10025, - 51.31343 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160037693", - "info": { - "identifier": 160037693, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160037693", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "James Kei London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79893/160037693/79893_RL0140_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.458646", - "last_seen": "2025-06-01T22:05:39.056517", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.226406, - 51.580368 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.6, - "qmprice": 24.11, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160038815", - "info": { - "identifier": 160038815, - "sqm_ocr": 101.6, - "price": 2450.0, - "price_per_sqm": 24.11417322834646, - "url": "https://www.rightmove.co.uk/properties/160038815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22320/160038815/22320_CSV171372_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.997208", - "last_seen": "2025-06-01T22:06:13.028684", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147617, - 51.4489 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.0, - "qmprice": 70.76, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/160040912", - "info": { - "identifier": 160040912, - "sqm_ocr": 49.0, - "price": 3467.0, - "price_per_sqm": 70.75510204081633, - "url": "https://www.rightmove.co.uk/properties/160040912", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/160040912/15942_1314450_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.583201", - "last_seen": "2025-06-01T22:05:58.365485", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18087, - 51.4959 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.0, - "qmprice": 29.9, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/160041326", - "info": { - "identifier": 160041326, - "sqm_ocr": 97.0, - "price": 2900.0, - "price_per_sqm": 29.896907216494846, - "url": "https://www.rightmove.co.uk/properties/160041326", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/160041326/221711_2746_EAF_148787_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.827662", - "last_seen": "2025-06-01T22:06:00.508402", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.036272, - 51.491814 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.13, - "qmprice": 33.53, - "rooms": 2, - "total_price": 2620.0, - "url": "https://www.rightmove.co.uk/properties/160041383", - "info": { - "identifier": 160041383, - "sqm_ocr": 78.13, - "price": 2620.0, - "price_per_sqm": 33.53385383335467, - "url": "https://www.rightmove.co.uk/properties/160041383", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55326/160041383/55326_ISS200098_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.426128", - "last_seen": "2025-06-01T22:05:53.144992", - "price": 2620.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105387, - 51.553905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160044323", - "info": { - "identifier": 160044323, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160044323", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46013/160044323/46013_HEA745918_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.787296", - "last_seen": "2025-06-01T22:05:55.009885", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151061, - 51.549583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2895.0, - "url": "https://www.rightmove.co.uk/properties/160045523", - "info": { - "identifier": 160045523, - "sqm_ocr": null, - "price": 2895.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160045523", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Armford Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283439/160045523/283439_14502_000252_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.531972", - "last_seen": "2025-06-01T22:05:43.263835", - "price": 2895.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07704, - 51.515816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.82, - "qmprice": 47.92, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160045805", - "info": { - "identifier": 160045805, - "sqm_ocr": 67.82, - "price": 3250.0, - "price_per_sqm": 47.92096726629313, - "url": "https://www.rightmove.co.uk/properties/160045805", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/160045805/44537_CSL250067_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.588611", - "last_seen": "2025-06-01T22:06:05.302301", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077838, - 51.49606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.27, - "qmprice": 37.69, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/160046345", - "info": { - "identifier": 160046345, - "sqm_ocr": 78.27, - "price": 2950.0, - "price_per_sqm": 37.69004727226268, - "url": "https://www.rightmove.co.uk/properties/160046345", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/160046345/71419_1320454_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.458246", - "last_seen": "2025-06-01T22:05:59.667617", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126861, - 51.433422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/160046807", - "info": { - "identifier": 160046807, - "sqm_ocr": null, - "price": 2395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160046807", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84800/160046807/84800_33779364_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.779129", - "last_seen": "2025-06-01T22:05:58.734596", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277662, - 51.40899 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/160047035", - "info": { - "identifier": 160047035, - "sqm_ocr": null, - "price": 2899.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160047035", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/160047035/96542_ROCH_001874_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.225283", - "last_seen": "2025-06-01T22:05:42.696775", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140675, - 51.55657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/160048007", - "info": { - "identifier": 160048007, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160048007", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Robert Lehrer Properties", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57714/160048007/57714_ROBEL_003065_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.839413", - "last_seen": "2025-06-01T22:05:50.084926", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114861, - 51.58504 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160048331", - "info": { - "identifier": 160048331, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160048331", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "AJ Dwellings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80172/160048331/80172_PDL_WARWICK5_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.694842", - "last_seen": "2025-06-01T22:06:11.562718", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.001389, - 51.580612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 44.64, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160048652", - "info": { - "identifier": 160048652, - "sqm_ocr": 84.0, - "price": 3750.0, - "price_per_sqm": 44.642857142857146, - "url": "https://www.rightmove.co.uk/properties/160048652", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Austin Homes London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105559/160048652/105559_f06fbdae-9287-4c54-9bad-b4803b5791b2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.621823", - "last_seen": "2025-06-01T22:05:53.876426", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096832, - 51.52986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.4, - "qmprice": 34.86, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160050482", - "info": { - "identifier": 160050482, - "sqm_ocr": 100.4, - "price": 3500.0, - "price_per_sqm": 34.8605577689243, - "url": "https://www.rightmove.co.uk/properties/160050482", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43823/160050482/43823_P298128_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.290446", - "last_seen": "2025-06-01T22:05:56.553255", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28816, - 51.48845 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.79, - "qmprice": 20.95, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160050512", - "info": { - "identifier": 160050512, - "sqm_ocr": 109.79, - "price": 2300.0, - "price_per_sqm": 20.94908461608525, - "url": "https://www.rightmove.co.uk/properties/160050512", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "At Home with Hannah", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278006/160050512/278006_MICHAELRD_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.730882", - "last_seen": "2025-06-01T22:05:43.735361", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08797, - 51.40145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160051097", - "info": { - "identifier": 160051097, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160051097", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 58, - "status": null, - "last_seen": 0, - "agency": "Discover Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/185k/184304/160051097/184304_dagenham_IMG_11_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:43.982048", - "last_seen": "2025-06-01T22:05:38.236761", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.16888, - 51.54284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.18, - "qmprice": 29.92, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160051256", - "info": { - "identifier": 160051256, - "sqm_ocr": 70.18, - "price": 2100.0, - "price_per_sqm": 29.923055001424906, - "url": "https://www.rightmove.co.uk/properties/160051256", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/160051256/55101_1320746_IMG_13_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.146422", - "last_seen": "2025-06-01T22:06:06.107190", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035218, - 51.494568 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 139.8, - "qmprice": 25.04, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160051391", - "info": { - "identifier": 160051391, - "sqm_ocr": 139.8, - "price": 3500.0, - "price_per_sqm": 25.035765379113016, - "url": "https://www.rightmove.co.uk/properties/160051391", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194036/160051391/194036_HWV250015_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.260694", - "last_seen": "2025-06-01T22:06:01.700505", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210078, - 51.411804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160051469", - "info": { - "identifier": 160051469, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160051469", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "GREEN VIEW PROPERTY GROUP", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284939/160051469/284939_YRW-27479158_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.287690", - "last_seen": "2025-06-01T22:05:43.939102", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.335311, - 51.536198 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160051889", - "info": { - "identifier": 160051889, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160051889", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Sharpes Estates Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5353/160051889/5353_CQX-55397569_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.406461", - "last_seen": "2025-06-01T22:06:01.167479", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.235616, - 51.4126 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160052783", - "info": { - "identifier": 160052783, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160052783", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85763/160052783/85763_UXL240265_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.844591", - "last_seen": "2025-06-01T22:05:51.610973", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.485902, - 51.539833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2445.0, - "url": "https://www.rightmove.co.uk/properties/160053266", - "info": { - "identifier": 160053266, - "sqm_ocr": null, - "price": 2445.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160053266", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160053266/96668_243560231032025_IMG_28_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.326142", - "last_seen": "2025-06-01T22:06:12.129937", - "price": 2445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165694, - 51.43662 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160053659", - "info": { - "identifier": 160053659, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160053659", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 62, - "status": null, - "last_seen": 0, - "agency": "Evans & Company", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29484/160053659/29484_33779826_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.917817", - "last_seen": "2025-06-01T22:05:44.117349", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36193, - 51.52052 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.96, - "qmprice": 37.52, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160057379", - "info": { - "identifier": 160057379, - "sqm_ocr": 99.96, - "price": 3750.0, - "price_per_sqm": 37.515006002400966, - "url": "https://www.rightmove.co.uk/properties/160057379", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Alliance London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77148/160057379/77148_190048_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:37.342843", - "last_seen": "2025-06-01T22:06:09.322192", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018118, - 51.49833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.6, - "qmprice": 27.09, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160059149", - "info": { - "identifier": 160059149, - "sqm_ocr": 88.6, - "price": 2400.0, - "price_per_sqm": 27.088036117381492, - "url": "https://www.rightmove.co.uk/properties/160059149", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Langford Russell", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/196k/195821/160059149/195821_P276365_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.278543", - "last_seen": "2025-06-01T22:05:39.923500", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.1261, - 51.41692 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.0, - "qmprice": 26.4, - "rooms": 4, - "total_price": 3195.0, - "url": "https://www.rightmove.co.uk/properties/160059611", - "info": { - "identifier": 160059611, - "sqm_ocr": 121.0, - "price": 3195.0, - "price_per_sqm": 26.40495867768595, - "url": "https://www.rightmove.co.uk/properties/160059611", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79825/160059611/79825_P298153_IMG_22_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.103441", - "last_seen": "2025-06-01T22:05:39.666380", - "price": 3195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17177, - 51.6 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160060004", - "info": { - "identifier": 160060004, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160060004", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42912/160060004/42912_PUT220042_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.934329", - "last_seen": "2025-06-01T22:06:12.592953", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222744, - 51.44073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.79, - "qmprice": 41.88, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160060775", - "info": { - "identifier": 160060775, - "sqm_ocr": 78.79, - "price": 3300.0, - "price_per_sqm": 41.88348775225282, - "url": "https://www.rightmove.co.uk/properties/160060775", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43812/160060775/43812_33780304_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.958590", - "last_seen": "2025-06-01T22:06:05.408403", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070738, - 51.495846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 38.12, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160061573", - "info": { - "identifier": 160061573, - "sqm_ocr": 73.9, - "price": 2817.0, - "price_per_sqm": 38.1190798376184, - "url": "https://www.rightmove.co.uk/properties/160061573", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/160061573/15948_1320107_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.716835", - "last_seen": "2025-06-01T22:05:48.613258", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19199, - 51.47587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.2, - "qmprice": 57.83, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160061612", - "info": { - "identifier": 160061612, - "sqm_ocr": 56.2, - "price": 3250.0, - "price_per_sqm": 57.82918149466192, - "url": "https://www.rightmove.co.uk/properties/160061612", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/160061612/87815_1315520_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.100366", - "last_seen": "2025-06-01T22:05:39.622912", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21388, - 51.59733 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 37.09, - "qmprice": 72.8, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160061687", - "info": { - "identifier": 160061687, - "sqm_ocr": 37.09, - "price": 2700.0, - "price_per_sqm": 72.79590186033971, - "url": "https://www.rightmove.co.uk/properties/160061687", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108938/160061687/108938_1320812_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.429413", - "last_seen": "2025-06-01T22:05:47.840405", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084627, - 51.553635 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.1, - "qmprice": 43.7, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160062260", - "info": { - "identifier": 160062260, - "sqm_ocr": 80.1, - "price": 3500.0, - "price_per_sqm": 43.695380774032465, - "url": "https://www.rightmove.co.uk/properties/160062260", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61662/160062260/61662_TOL250193_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.659588", - "last_seen": "2025-06-01T22:06:12.967815", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163719, - 51.431515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.1, - "qmprice": 26.24, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160062470", - "info": { - "identifier": 160062470, - "sqm_ocr": 99.1, - "price": 2600.0, - "price_per_sqm": 26.236125126135217, - "url": "https://www.rightmove.co.uk/properties/160062470", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63329/160062470/63329_P1240D5029_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.792112", - "last_seen": "2025-06-01T22:05:58.756195", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27987, - 51.39858 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2530.0, - "url": "https://www.rightmove.co.uk/properties/160062935", - "info": { - "identifier": 160062935, - "sqm_ocr": null, - "price": 2530.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160062935", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 62, - "status": null, - "last_seen": 0, - "agency": "Bells Estate Agent", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270521/160062935/270521_33780436_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.333801", - "last_seen": "2025-06-01T22:06:11.345981", - "price": 2530.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043345, - 51.51199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/160063148", - "info": { - "identifier": 160063148, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160063148", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/160063148/176261_102708042305_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.602949", - "last_seen": "2025-06-01T22:05:53.896466", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13345, - 51.56612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.99, - "qmprice": 46.85, - "rooms": 2, - "total_price": 2951.0, - "url": "https://www.rightmove.co.uk/properties/160064006", - "info": { - "identifier": 160064006, - "sqm_ocr": 62.99, - "price": 2951.0, - "price_per_sqm": 46.84870614383235, - "url": "https://www.rightmove.co.uk/properties/160064006", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Plaza Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/29k/28956/160064006/28956_15446r_EAF_178599_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.921609", - "last_seen": "2025-06-01T22:06:15.125725", - "price": 2951 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16755, - 51.51756 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/160064117", - "info": { - "identifier": 160064117, - "sqm_ocr": null, - "price": 3012.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160064117", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160064117/96668_243633931032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.005419", - "last_seen": "2025-06-01T22:05:43.097460", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137985, - 51.521957 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.16, - "qmprice": 66.4, - "rooms": 2, - "total_price": 3596.0, - "url": "https://www.rightmove.co.uk/properties/160064144", - "info": { - "identifier": 160064144, - "sqm_ocr": 54.16, - "price": 3596.0, - "price_per_sqm": 66.39586410635155, - "url": "https://www.rightmove.co.uk/properties/160064144", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48606/160064144/48606_MYL230093_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.855300", - "last_seen": "2025-06-01T22:06:16.011821", - "price": 3596.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159607, - 51.514 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2539.0, - "url": "https://www.rightmove.co.uk/properties/160064249", - "info": { - "identifier": 160064249, - "sqm_ocr": null, - "price": 2539.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160064249", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cedar Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79883/160064249/79883_4065_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.800612", - "last_seen": "2025-06-01T22:06:11.907199", - "price": 2539 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01377, - 51.55876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160066076", - "info": { - "identifier": 160066076, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160066076", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160066076/96668_236520226012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.396599", - "last_seen": "2025-06-01T22:05:51.516724", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.415538, - 51.607906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.7, - "qmprice": 37.71, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160069409", - "info": { - "identifier": 160069409, - "sqm_ocr": 74.7, - "price": 2817.0, - "price_per_sqm": 37.71084337349397, - "url": "https://www.rightmove.co.uk/properties/160069409", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/160069409/275489_18072023-L2_CN70_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.663840", - "last_seen": "2025-06-01T22:05:49.286374", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.237788, - 51.491318 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.9, - "qmprice": 38.65, - "rooms": 2, - "total_price": 3359.0, - "url": "https://www.rightmove.co.uk/properties/160071386", - "info": { - "identifier": 160071386, - "sqm_ocr": 86.9, - "price": 3359.0, - "price_per_sqm": 38.6536248561565, - "url": "https://www.rightmove.co.uk/properties/160071386", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/160071386/16023_1313160_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.371681", - "last_seen": "2025-06-01T22:05:57.989773", - "price": 3359.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175251, - 51.484367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160075649", - "info": { - "identifier": 160075649, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160075649", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Maalems", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42021/160075649/42021_33780941_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.006199", - "last_seen": "2025-06-01T22:06:13.009610", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184941, - 51.438038 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.5, - "qmprice": 46.76, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160076450", - "info": { - "identifier": 160076450, - "sqm_ocr": 69.5, - "price": 3250.0, - "price_per_sqm": 46.76258992805755, - "url": "https://www.rightmove.co.uk/properties/160076450", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/160076450/65124_CEE250031_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.031911", - "last_seen": "2025-06-01T22:06:07.118517", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099496, - 51.492916 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160078160", - "info": { - "identifier": 160078160, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160078160", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Leonard Leese", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35405/160078160/35405_33781177_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.036750", - "last_seen": "2025-06-01T22:06:10.934602", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067079, - 51.52149 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.6, - "qmprice": 25.34, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160079141", - "info": { - "identifier": 160079141, - "sqm_ocr": 102.6, - "price": 2600.0, - "price_per_sqm": 25.3411306042885, - "url": "https://www.rightmove.co.uk/properties/160079141", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "DBK Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209063/160079141/209063_32992438_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.064530", - "last_seen": "2025-06-01T22:05:51.694677", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.401827, - 51.4691 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.4, - "qmprice": 21.28, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160079180", - "info": { - "identifier": 160079180, - "sqm_ocr": 103.4, - "price": 2200.0, - "price_per_sqm": 21.27659574468085, - "url": "https://www.rightmove.co.uk/properties/160079180", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64951/160079180/64951_P276369_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.234388", - "last_seen": "2025-06-01T22:05:39.959130", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.14949, - 51.44959 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/160079237", - "info": { - "identifier": 160079237, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160079237", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Property Inside London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270212/160079237/270212_Palgrave_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.176938", - "last_seen": "2025-06-01T22:06:14.368294", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16393, - 51.52587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.93, - "qmprice": 35.11, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160079606", - "info": { - "identifier": 160079606, - "sqm_ocr": 113.93, - "price": 4000.0, - "price_per_sqm": 35.10927762661283, - "url": "https://www.rightmove.co.uk/properties/160079606", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "All in the postcode...SW19.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34619/160079606/34619_12519191_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.336489", - "last_seen": "2025-06-01T22:06:01.333473", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18883, - 51.42361 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.8, - "qmprice": 37.79, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160080599", - "info": { - "identifier": 160080599, - "sqm_ocr": 68.8, - "price": 2600.0, - "price_per_sqm": 37.79069767441861, - "url": "https://www.rightmove.co.uk/properties/160080599", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160080599/96668_243664231032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.955671", - "last_seen": "2025-06-01T22:05:38.814416", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18715, - 51.58674 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.41, - "qmprice": 47.04, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160081400", - "info": { - "identifier": 160081400, - "sqm_ocr": 74.41, - "price": 3500.0, - "price_per_sqm": 47.03668861712136, - "url": "https://www.rightmove.co.uk/properties/160081400", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55326/160081400/55326_ISS230198_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.637434", - "last_seen": "2025-06-01T22:05:53.867336", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096329, - 51.54012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.1, - "qmprice": 21.76, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160081409", - "info": { - "identifier": 160081409, - "sqm_ocr": 101.1, - "price": 2200.0, - "price_per_sqm": 21.76063303659743, - "url": "https://www.rightmove.co.uk/properties/160081409", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107903/160081409/107903_P298103_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.983775", - "last_seen": "2025-06-01T22:05:50.651044", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31131, - 51.61791 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160081529", - "info": { - "identifier": 160081529, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160081529", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65902/160081529/65902_SJQ012573364_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.798256", - "last_seen": "2025-06-01T22:06:14.689846", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178992, - 51.530273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/160081772", - "info": { - "identifier": 160081772, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160081772", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160081772/87187_57338_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.089508", - "last_seen": "2025-06-01T22:06:13.972794", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130363, - 51.481976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.4, - "qmprice": 76.34, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160082135", - "info": { - "identifier": 160082135, - "sqm_ocr": 52.4, - "price": 4000.0, - "price_per_sqm": 76.33587786259542, - "url": "https://www.rightmove.co.uk/properties/160082135", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/160082135/44537_TBR230619_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.117154", - "last_seen": "2025-06-01T20:19:59.189846", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074374, - 51.516724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.7, - "qmprice": 41.73, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160082669", - "info": { - "identifier": 160082669, - "sqm_ocr": 64.7, - "price": 2700.0, - "price_per_sqm": 41.73106646058732, - "url": "https://www.rightmove.co.uk/properties/160082669", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Atlas Property Letting & Services Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/125k/124174/160082669/124174_107_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.929219", - "last_seen": "2025-06-01T22:05:44.126049", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3094, - 51.51771 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.5, - "qmprice": 44.69, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160083131", - "info": { - "identifier": 160083131, - "sqm_ocr": 89.5, - "price": 4000.0, - "price_per_sqm": 44.6927374301676, - "url": "https://www.rightmove.co.uk/properties/160083131", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/160083131/16050_1320883_IMG_02_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.295519", - "last_seen": "2025-06-01T17:39:04.745130", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042265, - 51.529457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.2, - "qmprice": 36.85, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160083149", - "info": { - "identifier": 160083149, - "sqm_ocr": 69.2, - "price": 2550.0, - "price_per_sqm": 36.849710982658955, - "url": "https://www.rightmove.co.uk/properties/160083149", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/160083149/16050_1320897_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.212876", - "last_seen": "2025-06-01T22:05:47.616591", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069848, - 51.53546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.2, - "qmprice": 50.58, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160083152", - "info": { - "identifier": 160083152, - "sqm_ocr": 69.2, - "price": 3500.0, - "price_per_sqm": 50.578034682080926, - "url": "https://www.rightmove.co.uk/properties/160083152", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/160083152/16050_1320896_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.221551", - "last_seen": "2025-06-01T22:05:47.625711", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069848, - 51.53546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.5, - "qmprice": 30.17, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160083158", - "info": { - "identifier": 160083158, - "sqm_ocr": 89.5, - "price": 2700.0, - "price_per_sqm": 30.16759776536313, - "url": "https://www.rightmove.co.uk/properties/160083158", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/160083158/16050_1320885_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.345732", - "last_seen": "2025-06-01T22:06:10.154851", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042265, - 51.529457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160083308", - "info": { - "identifier": 160083308, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160083308", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36789/160083308/36789_CAL250027_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.250377", - "last_seen": "2025-06-01T22:06:08.450828", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009074, - 51.512947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.1, - "qmprice": 27.14, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160083539", - "info": { - "identifier": 160083539, - "sqm_ocr": 92.1, - "price": 2500.0, - "price_per_sqm": 27.14440825190011, - "url": "https://www.rightmove.co.uk/properties/160083539", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 61, - "status": null, - "last_seen": 0, - "agency": "Charles Knight Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279419/160083539/279419_33781602_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.139690", - "last_seen": "2025-06-01T22:06:00.901120", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014604, - 51.462246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160083665", - "info": { - "identifier": 160083665, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160083665", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/160083665/208253_PRL250666_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.716105", - "last_seen": "2025-06-01T22:06:10.716105", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009074, - 51.512947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160083872", - "info": { - "identifier": 160083872, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160083872", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/160083872/208253_PRL250667_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.573578", - "last_seen": "2025-06-01T22:06:10.002379", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009074, - 51.512947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/160084532", - "info": { - "identifier": 160084532, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160084532", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/160084532/208253_PRL250669_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.246361", - "last_seen": "2025-06-01T22:06:09.711132", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009074, - 51.512947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.6, - "qmprice": 41.84, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160084646", - "info": { - "identifier": 160084646, - "sqm_ocr": 95.6, - "price": 4000.0, - "price_per_sqm": 41.84100418410042, - "url": "https://www.rightmove.co.uk/properties/160084646", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41334/160084646/41334_06792573_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.405239", - "last_seen": "2025-06-01T22:05:42.974597", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174, - 51.546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/160084796", - "info": { - "identifier": 160084796, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160084796", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Statons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30912/160084796/30912_LET250049_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.945387", - "last_seen": "2025-06-01T22:05:39.177314", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.235991, - 51.62321 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.86, - "qmprice": 49.43, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160084961", - "info": { - "identifier": 160084961, - "sqm_ocr": 75.86, - "price": 3750.0, - "price_per_sqm": 49.43316635908252, - "url": "https://www.rightmove.co.uk/properties/160084961", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/160084961/77197_VCT_VCT_LFSYCL_465_633142488_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.834987", - "last_seen": "2025-06-01T22:05:56.097894", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13916, - 51.535927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3495.0, - "url": "https://www.rightmove.co.uk/properties/160085522", - "info": { - "identifier": 160085522, - "sqm_ocr": null, - "price": 3495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160085522", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160085522/96668_243684701042025_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.873763", - "last_seen": "2025-06-01T22:05:47.300337", - "price": 3495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077965, - 51.52938 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.67, - "qmprice": 40.38, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160085753", - "info": { - "identifier": 160085753, - "sqm_ocr": 86.67, - "price": 3500.0, - "price_per_sqm": 40.38306218991577, - "url": "https://www.rightmove.co.uk/properties/160085753", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51322/160085753/51322_PIM200056_L_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.240015", - "last_seen": "2025-06-01T22:06:15.431515", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145448, - 51.493073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160085951", - "info": { - "identifier": 160085951, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160085951", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Affitto Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56291/160085951/56291_RL0173_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.216413", - "last_seen": "2025-06-01T22:06:04.671734", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.304954, - 51.459206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 34.6, - "qmprice": 78.27, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/160086143", - "info": { - "identifier": 160086143, - "sqm_ocr": 34.6, - "price": 2708.0, - "price_per_sqm": 78.26589595375722, - "url": "https://www.rightmove.co.uk/properties/160086143", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253307/160086143/253307_MAL250049_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.036681", - "last_seen": "2025-06-01T22:05:58.212815", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188472, - 51.486073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160086224", - "info": { - "identifier": 160086224, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160086224", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/160086224/77197_VCT_VCT_LFSYCL_465_633135558_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.883943", - "last_seen": "2025-06-01T22:06:08.387364", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067552, - 51.52367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160086509", - "info": { - "identifier": 160086509, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160086509", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36789/160086509/36789_CAL250028_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.496597", - "last_seen": "2025-06-01T22:06:10.486196", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009074, - 51.512947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 43.33, - "rooms": 2, - "total_price": 2903.0, - "url": "https://www.rightmove.co.uk/properties/160086542", - "info": { - "identifier": 160086542, - "sqm_ocr": 67.0, - "price": 2903.0, - "price_per_sqm": 43.32835820895522, - "url": "https://www.rightmove.co.uk/properties/160086542", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148892/160086542/148892_MVL230039_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.032700", - "last_seen": "2025-06-01T22:06:15.511176", - "price": 2903 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193272, - 51.527527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.5, - "qmprice": 27.73, - "rooms": 2, - "total_price": 2149.0, - "url": "https://www.rightmove.co.uk/properties/160086713", - "info": { - "identifier": 160086713, - "sqm_ocr": 77.5, - "price": 2149.0, - "price_per_sqm": 27.729032258064517, - "url": "https://www.rightmove.co.uk/properties/160086713", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/160086713/84791_33781847_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.261597", - "last_seen": "2025-06-01T22:05:55.742053", - "price": 2149 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302756, - 51.504932 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3848.0, - "url": "https://www.rightmove.co.uk/properties/160087307", - "info": { - "identifier": 160087307, - "sqm_ocr": null, - "price": 3848.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160087307", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36789/160087307/36789_CAL250030_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.127503", - "last_seen": "2025-06-01T22:06:08.756712", - "price": 3848 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009074, - 51.512947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.8, - "qmprice": 52.77, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/160087463", - "info": { - "identifier": 160087463, - "sqm_ocr": 69.8, - "price": 3683.0, - "price_per_sqm": 52.7650429799427, - "url": "https://www.rightmove.co.uk/properties/160087463", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32391/160087463/32391_33781906_IMG_07_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.926877", - "last_seen": "2025-06-01T22:05:42.391760", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11645, - 51.52193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160088057", - "info": { - "identifier": 160088057, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160088057", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Houseen Lettings & Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76994/160088057/76994_33390482_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.358470", - "last_seen": "2025-06-01T22:06:12.179982", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130423, - 51.4821 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160088777", - "info": { - "identifier": 160088777, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160088777", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Peach Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74746/160088777/74746_33781992_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.229218", - "last_seen": "2025-06-01T22:05:53.671629", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096466, - 51.53271 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160088852", - "info": { - "identifier": 160088852, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160088852", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/125k/124951/160088852/124951_P4298K1124_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.080714", - "last_seen": "2025-06-01T22:05:44.940892", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26543, - 51.50277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.56, - "qmprice": 38.27, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/160089761", - "info": { - "identifier": 160089761, - "sqm_ocr": 83.56, - "price": 3198.0, - "price_per_sqm": 38.27190043082815, - "url": "https://www.rightmove.co.uk/properties/160089761", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32391/160089761/32391_33782048_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.132314, - 51.53369 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.07, - "qmprice": 25.22, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160089917", - "info": { - "identifier": 160089917, - "sqm_ocr": 107.07, - "price": 2700.0, - "price_per_sqm": 25.21714766040908, - "url": "https://www.rightmove.co.uk/properties/160089917", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chard", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141944/160089917/141944_33782058_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.739463", - "last_seen": "2025-06-01T22:05:49.111541", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183744, - 51.46909 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.36, - "qmprice": 30.18, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/160091690", - "info": { - "identifier": 160091690, - "sqm_ocr": 104.36, - "price": 3150.0, - "price_per_sqm": 30.183978535837486, - "url": "https://www.rightmove.co.uk/properties/160091690", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/160091690/48994_CNL180169_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.551110", - "last_seen": "2025-06-01T22:06:09.929204", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027683, - 51.506474 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 131.1, - "qmprice": 19.79, - "rooms": 3, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/160091822", - "info": { - "identifier": 160091822, - "sqm_ocr": 131.1, - "price": 2595.0, - "price_per_sqm": 19.794050343249427, - "url": "https://www.rightmove.co.uk/properties/160091822", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35975/160091822/35975_06762283_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.546678", - "last_seen": "2025-06-01T22:05:51.651674", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.431, - 51.61 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.5, - "qmprice": 29.63, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160092053", - "info": { - "identifier": 160092053, - "sqm_ocr": 67.5, - "price": 2000.0, - "price_per_sqm": 29.62962962962963, - "url": "https://www.rightmove.co.uk/properties/160092053", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/160092053/130309_1320954_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.744650", - "last_seen": "2025-06-01T22:05:43.781675", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101337, - 51.371166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160092983", - "info": { - "identifier": 160092983, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160092983", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Sutherland Estates", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102775/160092983/102775_3299_ALPH_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.419903", - "last_seen": "2025-06-01T22:05:45.252218", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.378173, - 51.5203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160093943", - "info": { - "identifier": 160093943, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160093943", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 61, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/160093943/228512_33700118_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.823015", - "last_seen": "2025-06-01T22:05:40.550363", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202601, - 51.545395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.6, - "qmprice": 45.36, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160094444", - "info": { - "identifier": 160094444, - "sqm_ocr": 49.6, - "price": 2250.0, - "price_per_sqm": 45.36290322580645, - "url": "https://www.rightmove.co.uk/properties/160094444", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Finchleys", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49962/160094444/49962_33776719_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.204192", - "last_seen": "2025-06-01T22:05:38.712012", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178928, - 51.611984 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/160095995", - "info": { - "identifier": 160095995, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160095995", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Lionsgate Property Management", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/160k/159428/160095995/159428_6249_IMG_00_0000_max_656x437.png", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.732096", - "last_seen": "2025-06-01T22:05:49.126322", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184807, - 51.476597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.9, - "qmprice": 26.07, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160096448", - "info": { - "identifier": 160096448, - "sqm_ocr": 95.9, - "price": 2500.0, - "price_per_sqm": 26.068821689259643, - "url": "https://www.rightmove.co.uk/properties/160096448", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Daniels", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/25k/24347/160096448/24347_33782558_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.151112", - "last_seen": "2025-06-01T22:05:41.364305", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.278597, - 51.561035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 37.89, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160096457", - "info": { - "identifier": 160096457, - "sqm_ocr": 73.9, - "price": 2800.0, - "price_per_sqm": 37.88903924221921, - "url": "https://www.rightmove.co.uk/properties/160096457", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/160096457/100423_1319791_IMG_06_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.640261", - "last_seen": "2025-06-01T22:06:04.542416", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.289865, - 51.46875 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.3, - "qmprice": 43.48, - "rooms": 2, - "total_price": 2709.0, - "url": "https://www.rightmove.co.uk/properties/160096496", - "info": { - "identifier": 160096496, - "sqm_ocr": 62.3, - "price": 2709.0, - "price_per_sqm": 43.48314606741573, - "url": "https://www.rightmove.co.uk/properties/160096496", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/160096496/15945_1320962_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.258384", - "last_seen": "2025-06-01T22:06:15.825196", - "price": 2709.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17821, - 51.513466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160097102", - "info": { - "identifier": 160097102, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160097102", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Robert Cooper & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15002/160097102/15002_EAS250108_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.822296", - "last_seen": "2025-06-01T22:05:51.565669", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.399806, - 51.578552 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160097600", - "info": { - "identifier": 160097600, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160097600", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hunt Property Services Ltd", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86834/160097600/86834_33782638_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.909460", - "last_seen": "2025-06-01T22:06:04.117293", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0719, - 51.6042 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160098377", - "info": { - "identifier": 160098377, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160098377", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210101/160098377/210101_P298194_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.721088", - "last_seen": "2025-06-01T22:05:49.926209", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07985, - 51.58669 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.0, - "qmprice": 25.0, - "rooms": 4, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/160099829", - "info": { - "identifier": 160099829, - "sqm_ocr": 126.0, - "price": 3150.0, - "price_per_sqm": 25.0, - "url": "https://www.rightmove.co.uk/properties/160099829", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84809/160099829/84809_33782084_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.359111", - "last_seen": "2025-06-01T22:05:52.517154", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.326277, - 51.464928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160099985", - "info": { - "identifier": 160099985, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160099985", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117907/160099985/117907_33782744_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.676402", - "last_seen": "2025-06-01T22:05:51.442806", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.463171, - 51.504784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.3, - "qmprice": 31.97, - "rooms": 3, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/160100561", - "info": { - "identifier": 160100561, - "sqm_ocr": 79.3, - "price": 2535.0, - "price_per_sqm": 31.9672131147541, - "url": "https://www.rightmove.co.uk/properties/160100561", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91847/160100561/91847_WGL230004_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.650030", - "last_seen": "2025-06-01T22:05:40.667537", - "price": 2535.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23004, - 51.554886 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/160101893", - "info": { - "identifier": 160101893, - "sqm_ocr": null, - "price": 3358.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160101893", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Champions", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45441/160101893/45441_6296_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.887987", - "last_seen": "2025-06-01T22:06:15.367573", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17144, - 51.51834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.2, - "qmprice": 50.26, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/160102115", - "info": { - "identifier": 160102115, - "sqm_ocr": 58.2, - "price": 2925.0, - "price_per_sqm": 50.25773195876288, - "url": "https://www.rightmove.co.uk/properties/160102115", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/160102115/96392_SVL240027_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.085978", - "last_seen": "2025-06-01T22:06:15.652029", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166347, - 51.53467 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160102298", - "info": { - "identifier": 160102298, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160102298", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Stonebridge Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214412/160102298/214412_3154_STOB_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.227666", - "last_seen": "2025-06-01T22:05:50.881533", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.183349, - 51.52837 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 54.69, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160102772", - "info": { - "identifier": 160102772, - "sqm_ocr": 64.0, - "price": 3500.0, - "price_per_sqm": 54.6875, - "url": "https://www.rightmove.co.uk/properties/160102772", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Wapping", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32766/160102772/32766_OTSLPRMGWPSS010425_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.739034", - "last_seen": "2025-06-01T22:06:07.988765", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07173, - 51.51063 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.2, - "qmprice": 43.08, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/160102829", - "info": { - "identifier": 160102829, - "sqm_ocr": 52.2, - "price": 2249.0, - "price_per_sqm": 43.08429118773946, - "url": "https://www.rightmove.co.uk/properties/160102829", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71137/160102829/71137_33782954_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.511477", - "last_seen": "2025-06-01T22:06:05.512002", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105252, - 51.50135 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3999.0, - "url": "https://www.rightmove.co.uk/properties/160102844", - "info": { - "identifier": 160102844, - "sqm_ocr": null, - "price": 3999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160102844", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "STONEBANKS UK LTD", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272417/160102844/272417_33782957_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.850393", - "last_seen": "2025-06-01T22:05:43.416665", - "price": 3999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125025, - 51.403976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3999.0, - "url": "https://www.rightmove.co.uk/properties/160102952", - "info": { - "identifier": 160102952, - "sqm_ocr": null, - "price": 3999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160102952", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "STONEBANKS UK LTD", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272417/160102952/272417_33782967_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.718482", - "last_seen": "2025-06-01T22:05:43.760327", - "price": 3999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125025, - 51.403976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3999.0, - "url": "https://www.rightmove.co.uk/properties/160103138", - "info": { - "identifier": 160103138, - "sqm_ocr": null, - "price": 3999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160103138", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "STONEBANKS UK LTD", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272417/160103138/272417_33782983_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.875308", - "last_seen": "2025-06-01T22:05:43.753750", - "price": 3999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125025, - 51.403976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160104140", - "info": { - "identifier": 160104140, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160104140", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cottage Fields", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65535/160104140/65535_0030edcc-93b4-4c2c-bb22-1d1a6a9c5b34_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.921597", - "last_seen": "2025-06-01T22:05:49.767241", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11828, - 51.61177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160104434", - "info": { - "identifier": 160104434, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160104434", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Citydeal Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96880/160104434/96880_RL0909_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.027459", - "last_seen": "2025-06-01T22:05:44.219040", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290152, - 51.51302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.8, - "qmprice": 41.34, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160106561", - "info": { - "identifier": 160106561, - "sqm_ocr": 50.8, - "price": 2100.0, - "price_per_sqm": 41.338582677165356, - "url": "https://www.rightmove.co.uk/properties/160106561", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/160106561/149153_1320082_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.475793", - "last_seen": "2025-06-01T22:06:01.414500", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.237064, - 51.403973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.8, - "qmprice": 60.04, - "rooms": 2, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/160106567", - "info": { - "identifier": 160106567, - "sqm_ocr": 50.8, - "price": 3050.0, - "price_per_sqm": 60.03937007874016, - "url": "https://www.rightmove.co.uk/properties/160106567", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/160106567/149153_1320083_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.477133", - "last_seen": "2025-06-01T22:06:01.417368", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.237064, - 51.403973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.2, - "qmprice": 49.16, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160106798", - "info": { - "identifier": 160106798, - "sqm_ocr": 71.2, - "price": 3500.0, - "price_per_sqm": 49.157303370786515, - "url": "https://www.rightmove.co.uk/properties/160106798", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/160106798/15969_1313167_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.322021", - "last_seen": "2025-06-01T22:05:56.570174", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.289897, - 51.51835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.1, - "qmprice": 43.59, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/160106807", - "info": { - "identifier": 160106807, - "sqm_ocr": 67.1, - "price": 2925.0, - "price_per_sqm": 43.59165424739196, - "url": "https://www.rightmove.co.uk/properties/160106807", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/160106807/15945_1320995_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.536047", - "last_seen": "2025-06-01T22:06:15.202221", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197135, - 51.51847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/160107845", - "info": { - "identifier": 160107845, - "sqm_ocr": null, - "price": 3098.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160107845", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 61, - "status": null, - "last_seen": 0, - "agency": "JS Estate Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264161/160107845/264161_697909_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.132825", - "last_seen": "2025-06-01T22:05:46.146081", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.029507, - 51.45788 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160108259", - "info": { - "identifier": 160108259, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160108259", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Grange London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235148/160108259/235148_33783336_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.121227", - "last_seen": "2025-06-01T22:05:39.653186", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220976, - 51.57133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 40.45, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/160108847", - "info": { - "identifier": 160108847, - "sqm_ocr": 89.0, - "price": 3600.0, - "price_per_sqm": 40.449438202247194, - "url": "https://www.rightmove.co.uk/properties/160108847", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Property Inc", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191252/160108847/191252_PRI250069_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.216116", - "last_seen": "2025-06-01T22:05:42.788454", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139209, - 51.54257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.97, - "qmprice": 32.01, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160109168", - "info": { - "identifier": 160109168, - "sqm_ocr": 74.97, - "price": 2400.0, - "price_per_sqm": 32.01280512204882, - "url": "https://www.rightmove.co.uk/properties/160109168", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279227/160109168/279227_WLS240658_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.015415", - "last_seen": "2025-06-01T22:06:12.522027", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15311, - 51.42196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.2, - "qmprice": 37.74, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160109201", - "info": { - "identifier": 160109201, - "sqm_ocr": 74.2, - "price": 2800.0, - "price_per_sqm": 37.73584905660377, - "url": "https://www.rightmove.co.uk/properties/160109201", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46013/160109201/46013_KGL250028_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.554495", - "last_seen": "2025-06-01T22:05:49.846277", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119746, - 51.581867 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.0, - "qmprice": 35.33, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160109741", - "info": { - "identifier": 160109741, - "sqm_ocr": 92.0, - "price": 3250.0, - "price_per_sqm": 35.32608695652174, - "url": "https://www.rightmove.co.uk/properties/160109741", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chard", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141944/160109741/141944_33781348_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.559472", - "last_seen": "2025-06-01T22:05:48.495286", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195159, - 51.46616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 44.5, - "qmprice": 87.64, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160109924", - "info": { - "identifier": 160109924, - "sqm_ocr": 44.5, - "price": 3900.0, - "price_per_sqm": 87.64044943820225, - "url": "https://www.rightmove.co.uk/properties/160109924", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Golden Eagle International", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49332/160109924/49332_810_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.971747", - "last_seen": "2025-06-01T22:06:15.500673", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159607, - 51.514 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/160109999", - "info": { - "identifier": 160109999, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160109999", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/160109999/174452_17068_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.636155", - "last_seen": "2025-06-01T22:05:46.678239", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.007142, - 51.501698 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/160111160", - "info": { - "identifier": 160111160, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160111160", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Aldermartin Baines & Cuthbert", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261956/160111160/261956_33659777_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.314254", - "last_seen": "2025-06-01T22:06:14.729202", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172627, - 51.52298 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.75, - "qmprice": 35.83, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160111340", - "info": { - "identifier": 160111340, - "sqm_ocr": 76.75, - "price": 2750.0, - "price_per_sqm": 35.83061889250814, - "url": "https://www.rightmove.co.uk/properties/160111340", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/160111340/84827_33783532_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.215047", - "last_seen": "2025-06-01T22:05:49.538926", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207653, - 51.494133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.4, - "qmprice": 43.86, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160111562", - "info": { - "identifier": 160111562, - "sqm_ocr": 68.4, - "price": 3000.0, - "price_per_sqm": 43.859649122807014, - "url": "https://www.rightmove.co.uk/properties/160111562", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71785/160111562/71785_33783554_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.089378", - "last_seen": "2025-06-01T22:05:59.963420", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140502, - 51.455082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.6, - "qmprice": 45.34, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/160111769", - "info": { - "identifier": 160111769, - "sqm_ocr": 81.6, - "price": 3700.0, - "price_per_sqm": 45.34313725490196, - "url": "https://www.rightmove.co.uk/properties/160111769", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64127/160111769/64127_1320529_IMG_14_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.898033", - "last_seen": "2025-06-01T22:05:42.311987", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139217, - 51.527565 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.6, - "qmprice": 33.75, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160111847", - "info": { - "identifier": 160111847, - "sqm_ocr": 72.6, - "price": 2450.0, - "price_per_sqm": 33.7465564738292, - "url": "https://www.rightmove.co.uk/properties/160111847", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/160111847/149153_1320474_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.835633", - "last_seen": "2025-06-01T22:05:58.897737", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.271654, - 51.408894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3795.0, - "url": "https://www.rightmove.co.uk/properties/160112138", - "info": { - "identifier": 160112138, - "sqm_ocr": null, - "price": 3795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160112138", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/160112138/249692_RL4593_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.161824", - "last_seen": "2025-06-01T22:05:42.687933", - "price": 3795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141123, - 51.52782 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160112399", - "info": { - "identifier": 160112399, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160112399", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82086/160112399/82086_1320959_IMG_25_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.487765", - "last_seen": "2025-06-01T22:05:39.018450", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247257, - 51.59595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160112825", - "info": { - "identifier": 160112825, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160112825", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Concept Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82211/160112825/82211_1167_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.350100", - "last_seen": "2025-06-01T22:06:01.322107", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15296, - 51.41931 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.6, - "qmprice": 45.36, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160115045", - "info": { - "identifier": 160115045, - "sqm_ocr": 49.6, - "price": 2250.0, - "price_per_sqm": 45.36290322580645, - "url": "https://www.rightmove.co.uk/properties/160115045", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Andrew", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84953/160115045/84953_45a9ccfe-b491-4d5c-8858-9946de81f587_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.950918", - "last_seen": "2025-06-01T22:05:53.788996", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118932, - 51.55859 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.0, - "qmprice": 22.61, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160116173", - "info": { - "identifier": 160116173, - "sqm_ocr": 115.0, - "price": 2600.0, - "price_per_sqm": 22.608695652173914, - "url": "https://www.rightmove.co.uk/properties/160116173", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Your Move", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6589/160116173/6589_BLA210130_L_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.578735", - "last_seen": "2025-06-01T22:05:46.595762", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.038229, - 51.472267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3744.0, - "url": "https://www.rightmove.co.uk/properties/160116392", - "info": { - "identifier": 160116392, - "sqm_ocr": null, - "price": 3744.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160116392", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "JS Estate Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264161/160116392/264161_697684_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.106682", - "last_seen": "2025-06-01T22:06:01.907646", - "price": 3744 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.030736, - 51.500084 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2058.0, - "url": "https://www.rightmove.co.uk/properties/160117100", - "info": { - "identifier": 160117100, - "sqm_ocr": null, - "price": 2058.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160117100", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/160117100/17888_37508_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.041498", - "last_seen": "2025-06-01T22:05:53.291595", - "price": 2058 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12465, - 51.55915 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.8, - "qmprice": 30.41, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160117235", - "info": { - "identifier": 160117235, - "sqm_ocr": 88.8, - "price": 2700.0, - "price_per_sqm": 30.405405405405407, - "url": "https://www.rightmove.co.uk/properties/160117235", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/160117235/65785_33783942_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.641863", - "last_seen": "2025-06-01T22:06:13.309843", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.152263, - 51.446777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160117730", - "info": { - "identifier": 160117730, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160117730", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160117730/96668_242072417032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.880085", - "last_seen": "2025-06-01T22:05:39.184543", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.231908, - 51.582546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/160117835", - "info": { - "identifier": 160117835, - "sqm_ocr": null, - "price": 2295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160117835", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160117835/96668_243736001042025_IMG_13_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.108748", - "last_seen": "2025-06-01T22:06:12.663004", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218498, - 51.46471 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.3, - "qmprice": 42.88, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160117883", - "info": { - "identifier": 160117883, - "sqm_ocr": 58.3, - "price": 2500.0, - "price_per_sqm": 42.88164665523156, - "url": "https://www.rightmove.co.uk/properties/160117883", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160117883/96668_243712601042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.994639", - "last_seen": "2025-06-01T22:05:59.269146", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116499, - 51.47622 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/160118030", - "info": { - "identifier": 160118030, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160118030", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Abacus Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26267/160118030/26267_ABAC_017494_IMG_08_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.235258", - "last_seen": "2025-06-01T22:05:50.912427", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.17987, - 51.591087 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160118732", - "info": { - "identifier": 160118732, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160118732", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Oliver Jaques", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6844/160118732/6844_2a52e636-a095-42f7-9cda-e556680520fd_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.009010", - "last_seen": "2025-06-01T20:19:58.009010", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.030441, - 51.535805 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160118819", - "info": { - "identifier": 160118819, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160118819", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43812/160118819/43812_33784015_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.074316", - "last_seen": "2025-06-01T22:06:06.120337", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066076, - 51.49768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.2, - "qmprice": 45.32, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160118864", - "info": { - "identifier": 160118864, - "sqm_ocr": 66.2, - "price": 3000.0, - "price_per_sqm": 45.31722054380664, - "url": "https://www.rightmove.co.uk/properties/160118864", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/160118864/101522_1321037_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.227941", - "last_seen": "2025-06-01T22:05:47.666222", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056055, - 51.545918 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.4, - "qmprice": 25.84, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160118945", - "info": { - "identifier": 160118945, - "sqm_ocr": 77.4, - "price": 2000.0, - "price_per_sqm": 25.839793281653744, - "url": "https://www.rightmove.co.uk/properties/160118945", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/160118945/57272_1321052_IMG_03_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.643530", - "last_seen": "2025-06-01T22:05:58.589272", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279863, - 51.41888 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.36, - "qmprice": 59.85, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/160119530", - "info": { - "identifier": 160119530, - "sqm_ocr": 63.36, - "price": 3792.0, - "price_per_sqm": 59.84848484848485, - "url": "https://www.rightmove.co.uk/properties/160119530", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51411/160119530/51411_5024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.374212", - "last_seen": "2025-06-01T22:05:58.033618", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188828, - 51.489853 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.86, - "qmprice": 28.54, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160119698", - "info": { - "identifier": 160119698, - "sqm_ocr": 113.86, - "price": 3250.0, - "price_per_sqm": 28.543825750922185, - "url": "https://www.rightmove.co.uk/properties/160119698", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160119698/96668_243755801042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.507701", - "last_seen": "2025-06-01T22:05:42.036873", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183467, - 51.54279 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.2, - "qmprice": 57.26, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160119746", - "info": { - "identifier": 160119746, - "sqm_ocr": 49.2, - "price": 2817.0, - "price_per_sqm": 57.256097560975604, - "url": "https://www.rightmove.co.uk/properties/160119746", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64127/160119746/64127_1321075_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.799219", - "last_seen": "2025-06-01T22:05:42.491552", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129786, - 51.52869 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160120496", - "info": { - "identifier": 160120496, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160120496", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/160120496/238265_L105835_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.316786", - "last_seen": "2025-06-01T22:06:06.556920", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07784, - 51.495586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/160122326", - "info": { - "identifier": 160122326, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160122326", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33101/160122326/33101_SHE090386_L_IMG_10_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.516205", - "last_seen": "2025-06-01T22:05:48.253627", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23476, - 51.507465 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3925.0, - "url": "https://www.rightmove.co.uk/properties/160123979", - "info": { - "identifier": 160123979, - "sqm_ocr": null, - "price": 3925.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160123979", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160123979/96668_243521230032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.422987", - "last_seen": "2025-06-01T22:06:12.131767", - "price": 3925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176748, - 51.46055 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.76, - "qmprice": 55.05, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/160124198", - "info": { - "identifier": 160124198, - "sqm_ocr": 61.76, - "price": 3400.0, - "price_per_sqm": 55.05181347150259, - "url": "https://www.rightmove.co.uk/properties/160124198", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/160124198/272819_33784283_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.732508", - "last_seen": "2025-06-01T22:06:07.955547", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018206, - 51.500427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160128890", - "info": { - "identifier": 160128890, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160128890", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "James Gorey Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/221k/220718/160128890/220718_RX395672_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.255277", - "last_seen": "2025-06-01T22:05:47.114593", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.114192, - 51.5089 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.3, - "qmprice": 33.25, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160130150", - "info": { - "identifier": 160130150, - "sqm_ocr": 120.3, - "price": 4000.0, - "price_per_sqm": 33.25020781379884, - "url": "https://www.rightmove.co.uk/properties/160130150", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72056/160130150/72056_33784504_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.616619", - "last_seen": "2025-06-01T22:06:12.309494", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.160453, - 51.432545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.16, - "qmprice": 33.73, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160130276", - "info": { - "identifier": 160130276, - "sqm_ocr": 71.16, - "price": 2400.0, - "price_per_sqm": 33.72681281618887, - "url": "https://www.rightmove.co.uk/properties/160130276", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Blackfinch Property Management Ltd", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282167/160130276/282167_661239_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.293105", - "last_seen": "2025-06-01T22:05:40.524077", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283529, - 51.540894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.35, - "qmprice": 39.0, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/160130378", - "info": { - "identifier": 160130378, - "sqm_ocr": 74.35, - "price": 2900.0, - "price_per_sqm": 39.004707464694015, - "url": "https://www.rightmove.co.uk/properties/160130378", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/160130378/135416_HEA211716_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.079262", - "last_seen": "2025-06-01T22:06:14.055657", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177626, - 51.465767 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.86, - "qmprice": 41.92, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/160130510", - "info": { - "identifier": 160130510, - "sqm_ocr": 87.86, - "price": 3683.0, - "price_per_sqm": 41.9189619849761, - "url": "https://www.rightmove.co.uk/properties/160130510", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65902/160130510/65902_SJQ012536375_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.633191", - "last_seen": "2025-06-01T22:05:42.213950", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173253, - 51.540005 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/160130978", - "info": { - "identifier": 160130978, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160130978", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105760/160130978/105760_33779416_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.109976", - "last_seen": "2025-06-01T22:06:15.722253", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145166, - 51.486095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.0, - "qmprice": 21.93, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160132223", - "info": { - "identifier": 160132223, - "sqm_ocr": 114.0, - "price": 2500.0, - "price_per_sqm": 21.92982456140351, - "url": "https://www.rightmove.co.uk/properties/160132223", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210116/160132223/210116_P298202_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.988761", - "last_seen": "2025-06-01T22:05:40.996041", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20992, - 51.54411 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.5, - "qmprice": 41.37, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160133816", - "info": { - "identifier": 160133816, - "sqm_ocr": 72.5, - "price": 2999.0, - "price_per_sqm": 41.36551724137931, - "url": "https://www.rightmove.co.uk/properties/160133816", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71134/160133816/71134_33784754_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.522801", - "last_seen": "2025-06-01T22:05:43.289786", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101763, - 51.513577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160134179", - "info": { - "identifier": 160134179, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160134179", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Milegate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/124k/123322/160134179/123322_POINT_006332_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.888263", - "last_seen": "2025-06-01T22:05:51.794031", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.320575, - 51.479485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.9, - "qmprice": 46.21, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/160134614", - "info": { - "identifier": 160134614, - "sqm_ocr": 77.9, - "price": 3600.0, - "price_per_sqm": 46.21309370988446, - "url": "https://www.rightmove.co.uk/properties/160134614", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6073/160134614/6073_33784820_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.386041", - "last_seen": "2025-06-01T22:05:57.275058", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101044, - 51.526443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/160136744", - "info": { - "identifier": 160136744, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160136744", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/160136744/17888_38489_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.233237", - "last_seen": "2025-06-01T22:05:42.836761", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13648, - 51.53793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.3, - "qmprice": 53.58, - "rooms": 3, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/160136900", - "info": { - "identifier": 160136900, - "sqm_ocr": 64.3, - "price": 3445.0, - "price_per_sqm": 53.576982892690516, - "url": "https://www.rightmove.co.uk/properties/160136900", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157376/160136900/157376_33784954_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.072430", - "last_seen": "2025-06-01T22:05:47.568252", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080969, - 51.53229 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.4, - "qmprice": 60.56, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160137281", - "info": { - "identifier": 160137281, - "sqm_ocr": 64.4, - "price": 3900.0, - "price_per_sqm": 60.55900621118012, - "url": "https://www.rightmove.co.uk/properties/160137281", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94246/160137281/94246_1315502_IMG_02_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.374527", - "last_seen": "2025-06-01T22:05:43.027353", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12287, - 51.520542 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.8, - "qmprice": 31.25, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160138724", - "info": { - "identifier": 160138724, - "sqm_ocr": 76.8, - "price": 2400.0, - "price_per_sqm": 31.25, - "url": "https://www.rightmove.co.uk/properties/160138724", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "London Move", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261842/160138724/261842_1640_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.970449", - "last_seen": "2025-06-01T22:05:45.655393", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11794, - 51.62037 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 119.7, - "qmprice": 29.24, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160139456", - "info": { - "identifier": 160139456, - "sqm_ocr": 119.7, - "price": 3500.0, - "price_per_sqm": 29.239766081871345, - "url": "https://www.rightmove.co.uk/properties/160139456", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Woodward Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14627/160139456/14627_33785153_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.139080", - "last_seen": "2025-06-01T22:05:50.504099", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.344143, - 51.569828 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.5, - "qmprice": 37.17, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/160139726", - "info": { - "identifier": 160139726, - "sqm_ocr": 60.5, - "price": 2249.0, - "price_per_sqm": 37.17355371900826, - "url": "https://www.rightmove.co.uk/properties/160139726", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Strutt & Parker - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56065/160139726/56065_CSW250008_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.574923", - "last_seen": "2025-06-01T22:05:48.333722", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188528, - 51.468067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 31.25, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160139846", - "info": { - "identifier": 160139846, - "sqm_ocr": 80.0, - "price": 2500.0, - "price_per_sqm": 31.25, - "url": "https://www.rightmove.co.uk/properties/160139846", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48330/160139846/48330_HEA220474_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.176078", - "last_seen": "2025-06-01T22:05:59.513667", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103648, - 51.46856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 40.58, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160141529", - "info": { - "identifier": 160141529, - "sqm_ocr": 69.0, - "price": 2800.0, - "price_per_sqm": 40.57971014492754, - "url": "https://www.rightmove.co.uk/properties/160141529", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/160141529/253853_1319758_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.784854", - "last_seen": "2025-06-01T22:06:07.032203", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099715, - 51.4927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2699.0, - "url": "https://www.rightmove.co.uk/properties/160142138", - "info": { - "identifier": 160142138, - "sqm_ocr": null, - "price": 2699.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160142138", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160142138/96668_243809801042025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.115344", - "last_seen": "2025-06-01T20:19:58.115344", - "price": 2699.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068587, - 51.50518 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3785.0, - "url": "https://www.rightmove.co.uk/properties/160142183", - "info": { - "identifier": 160142183, - "sqm_ocr": null, - "price": 3785.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160142183", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160142183/96668_243815102042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.413670", - "last_seen": "2025-06-01T22:05:47.866445", - "price": 3785.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053882, - 51.53917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160142336", - "info": { - "identifier": 160142336, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160142336", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Infinity Property Solutions", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111497/160142336/111497_28718397_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.964507", - "last_seen": "2025-06-01T22:05:50.708686", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34669, - 51.59836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160142453", - "info": { - "identifier": 160142453, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160142453", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Homes With PJ", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267413/160142453/267413_L105874_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.412385", - "last_seen": "2025-06-01T22:06:01.083636", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150246, - 51.41274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.36, - "qmprice": 40.44, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160142777", - "info": { - "identifier": 160142777, - "sqm_ocr": 80.36, - "price": 3250.0, - "price_per_sqm": 40.44300647088104, - "url": "https://www.rightmove.co.uk/properties/160142777", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/160142777/227810_1315803_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.644967", - "last_seen": "2025-06-01T22:05:46.715487", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.079669, - 51.496956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/160143299", - "info": { - "identifier": 160143299, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160143299", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12687/160143299/12687_ELR090022_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.975635", - "last_seen": "2025-06-01T22:06:13.909994", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186815, - 51.44107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.2, - "qmprice": 36.05, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160143659", - "info": { - "identifier": 160143659, - "sqm_ocr": 83.2, - "price": 2999.0, - "price_per_sqm": 36.04567307692307, - "url": "https://www.rightmove.co.uk/properties/160143659", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3355/160143659/3355_33785469_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.957683", - "last_seen": "2025-06-01T22:05:47.467959", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090119, - 51.57097 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160143905", - "info": { - "identifier": 160143905, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160143905", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Homes With PJ", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267413/160143905/267413_L55291_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.157526", - "last_seen": "2025-06-01T22:06:12.758666", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148645, - 51.419952 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.6, - "qmprice": 36.31, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160143980", - "info": { - "identifier": 160143980, - "sqm_ocr": 82.6, - "price": 2999.0, - "price_per_sqm": 36.30750605326877, - "url": "https://www.rightmove.co.uk/properties/160143980", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77695/160143980/77695_33785140_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.366544", - "last_seen": "2025-06-01T22:06:14.884269", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143986, - 51.489235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.65, - "qmprice": 44.74, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160144028", - "info": { - "identifier": 160144028, - "sqm_ocr": 72.65, - "price": 3250.0, - "price_per_sqm": 44.73503097040605, - "url": "https://www.rightmove.co.uk/properties/160144028", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Property Partnership", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245174/160144028/245174_RL0187_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.498274", - "last_seen": "2025-06-01T22:06:04.568503", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305577, - 51.458656 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.5, - "qmprice": 28.9, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160144838", - "info": { - "identifier": 160144838, - "sqm_ocr": 86.5, - "price": 2500.0, - "price_per_sqm": 28.90173410404624, - "url": "https://www.rightmove.co.uk/properties/160144838", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/256k/255212/160144838/255212_33785524_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.457892", - "last_seen": "2025-06-01T22:06:06.747656", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.081961, - 51.457935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160146197", - "info": { - "identifier": 160146197, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160146197", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/160146197/247697_102708018064_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.079397", - "last_seen": "2025-06-01T22:05:54.038876", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11426, - 51.55974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.1, - "qmprice": 36.09, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160146926", - "info": { - "identifier": 160146926, - "sqm_ocr": 83.1, - "price": 2999.0, - "price_per_sqm": 36.089049338146815, - "url": "https://www.rightmove.co.uk/properties/160146926", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3355/160146926/3355_33785663_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.756614", - "last_seen": "2025-06-01T22:05:55.711283", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115559, - 51.56581 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.52, - "qmprice": 46.87, - "rooms": 2, - "total_price": 3727.0, - "url": "https://www.rightmove.co.uk/properties/160147034", - "info": { - "identifier": 160147034, - "sqm_ocr": 79.52, - "price": 3727.0, - "price_per_sqm": 46.868712273641854, - "url": "https://www.rightmove.co.uk/properties/160147034", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/160147034/48101_1321122_IMG_02_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.174019", - "last_seen": "2025-06-01T22:06:09.047433", - "price": 3727.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013733, - 51.50236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.2, - "qmprice": 27.04, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160147283", - "info": { - "identifier": 160147283, - "sqm_ocr": 83.2, - "price": 2250.0, - "price_per_sqm": 27.04326923076923, - "url": "https://www.rightmove.co.uk/properties/160147283", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107903/160147283/107903_P298266_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.074712", - "last_seen": "2025-06-01T22:05:56.630916", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28329, - 51.59116 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.8, - "qmprice": 45.9, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160148987", - "info": { - "identifier": 160148987, - "sqm_ocr": 70.8, - "price": 3250.0, - "price_per_sqm": 45.90395480225989, - "url": "https://www.rightmove.co.uk/properties/160148987", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "Dimension Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87953/160148987/87953_3759_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.244734", - "last_seen": "2025-06-01T22:06:10.199277", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.046744, - 51.5248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160149632", - "info": { - "identifier": 160149632, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160149632", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Woodland", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21761/160149632/21761_2734_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.304028", - "last_seen": "2025-06-01T22:06:02.830506", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.037875, - 51.5254 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.5, - "qmprice": 35.08, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160149848", - "info": { - "identifier": 160149848, - "sqm_ocr": 85.5, - "price": 2999.0, - "price_per_sqm": 35.07602339181287, - "url": "https://www.rightmove.co.uk/properties/160149848", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40512/160149848/40512_33785870_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.649798", - "last_seen": "2025-06-01T22:06:04.877988", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079326, - 51.500927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.19, - "qmprice": 21.66, - "rooms": 2, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/160151084", - "info": { - "identifier": 160151084, - "sqm_ocr": 115.19, - "price": 2495.0, - "price_per_sqm": 21.659866307839224, - "url": "https://www.rightmove.co.uk/properties/160151084", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/160151084/227810_1321116_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.744203", - "last_seen": "2025-06-01T22:05:46.706000", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07242, - 51.494026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.3, - "qmprice": 27.17, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160151183", - "info": { - "identifier": 160151183, - "sqm_ocr": 77.3, - "price": 2100.0, - "price_per_sqm": 27.166882276843467, - "url": "https://www.rightmove.co.uk/properties/160151183", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/160151183/111050_1320201_IMG_02_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.655305", - "last_seen": "2025-06-01T22:06:13.349274", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16446, - 51.428135 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.7, - "qmprice": 31.9, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160155206", - "info": { - "identifier": 160155206, - "sqm_ocr": 62.7, - "price": 2000.0, - "price_per_sqm": 31.897926634768737, - "url": "https://www.rightmove.co.uk/properties/160155206", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85766/160155206/85766_HRX250123_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.122223", - "last_seen": "2025-06-01T22:05:50.644484", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3368, - 51.5961 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2790.0, - "url": "https://www.rightmove.co.uk/properties/160155650", - "info": { - "identifier": 160155650, - "sqm_ocr": null, - "price": 2790.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160155650", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Homes With PJ", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267413/160155650/267413_L105898_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.679752", - "last_seen": "2025-06-01T22:06:13.380628", - "price": 2790.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154988, - 51.433872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160156814", - "info": { - "identifier": 160156814, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160156814", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6769/160156814/6769_GGL110056_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.001744", - "last_seen": "2025-06-01T22:05:39.462703", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208182, - 51.573696 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160156928", - "info": { - "identifier": 160156928, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160156928", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160156928/96668_242259818032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.889256", - "last_seen": "2025-06-01T22:05:50.272990", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.363733, - 51.55779 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160157024", - "info": { - "identifier": 160157024, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160157024", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160157024/96668_243246727032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.070717", - "last_seen": "2025-06-01T22:06:00.807550", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02986, - 51.482616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.91, - "qmprice": 65.51, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/160157594", - "info": { - "identifier": 160157594, - "sqm_ocr": 54.91, - "price": 3597.0, - "price_per_sqm": 65.50719358951011, - "url": "https://www.rightmove.co.uk/properties/160157594", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Manors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85334/160157594/85334_BAK190785_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.361514", - "last_seen": "2025-06-01T22:06:14.873053", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159418, - 51.513985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160158947", - "info": { - "identifier": 160158947, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160158947", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/160158947/17418_100415009531_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.214683", - "last_seen": "2025-06-01T22:05:50.802302", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3728, - 51.56267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 53.43, - "rooms": 2, - "total_price": 3580.0, - "url": "https://www.rightmove.co.uk/properties/160159334", - "info": { - "identifier": 160159334, - "sqm_ocr": 67.0, - "price": 3580.0, - "price_per_sqm": 53.43283582089552, - "url": "https://www.rightmove.co.uk/properties/160159334", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Cityscan", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257834/160159334/257834_33786600_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.629432", - "last_seen": "2025-06-01T22:05:48.373239", - "price": 3580.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223849, - 51.51098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160159655", - "info": { - "identifier": 160159655, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160159655", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Frestons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259079/160159655/259079_RL6003_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.855498", - "last_seen": "2025-06-01T22:05:40.758578", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229668, - 51.562107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160160705", - "info": { - "identifier": 160160705, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160160705", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/160160705/17888_25736_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.455535", - "last_seen": "2025-06-01T22:05:41.985970", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13817, - 51.54246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160161836", - "info": { - "identifier": 160161836, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160161836", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/126k/125851/160161836/125851_P3158E5325_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.243061", - "last_seen": "2025-06-01T17:38:54.985805", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24875, - 51.37402 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 48.67, - "rooms": 4, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/160161839", - "info": { - "identifier": 160161839, - "sqm_ocr": 75.0, - "price": 3650.0, - "price_per_sqm": 48.666666666666664, - "url": "https://www.rightmove.co.uk/properties/160161839", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/160161839/77197_VCT_VCT_LFSYCL_465_633143573_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.482317", - "last_seen": "2025-06-01T22:05:41.996907", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134875, - 51.535107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160161863", - "info": { - "identifier": 160161863, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160161863", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Douglas Pryce", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227717/160161863/227717_33787085_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.796734", - "last_seen": "2025-06-01T22:06:08.287878", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016793, - 51.48944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160162340", - "info": { - "identifier": 160162340, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160162340", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/160162340/80340_a1G4J0000025xbmUAA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.690165", - "last_seen": "2025-06-01T22:05:49.951931", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07286, - 51.58235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.8, - "qmprice": 47.4, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160162385", - "info": { - "identifier": 160162385, - "sqm_ocr": 53.8, - "price": 2550.0, - "price_per_sqm": 47.39776951672863, - "url": "https://www.rightmove.co.uk/properties/160162385", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/160162385/77197_VCT_VCT_LFSYCL_465_633192594_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.169282", - "last_seen": "2025-06-01T22:05:42.721897", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137399, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.52, - "qmprice": 40.3, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160162730", - "info": { - "identifier": 160162730, - "sqm_ocr": 64.52, - "price": 2600.0, - "price_per_sqm": 40.297582145071296, - "url": "https://www.rightmove.co.uk/properties/160162730", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/160162730/80340_a1G4J00000262rSUAQ_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.325233", - "last_seen": "2025-06-01T22:06:00.184708", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12724, - 51.47834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 27.27, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160163420", - "info": { - "identifier": 160163420, - "sqm_ocr": 88.0, - "price": 2400.0, - "price_per_sqm": 27.272727272727273, - "url": "https://www.rightmove.co.uk/properties/160163420", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112915/160163420/112915_P298327_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.526576", - "last_seen": "2025-06-01T22:05:46.542543", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01369, - 51.49345 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 41.67, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160164410", - "info": { - "identifier": 160164410, - "sqm_ocr": 60.0, - "price": 2500.0, - "price_per_sqm": 41.666666666666664, - "url": "https://www.rightmove.co.uk/properties/160164410", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/160164410/77197_VCT_VCT_LFSYCL_465_633147991_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.228136", - "last_seen": "2025-06-01T22:05:42.433185", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140305, - 51.528416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.3, - "qmprice": 49.77, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160164479", - "info": { - "identifier": 160164479, - "sqm_ocr": 65.3, - "price": 3250.0, - "price_per_sqm": 49.77029096477795, - "url": "https://www.rightmove.co.uk/properties/160164479", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/160164479/77197_VCT_VCT_LFSYCL_465_633335636_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.306934", - "last_seen": "2025-06-01T22:05:42.648894", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138135, - 51.53594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.22, - "qmprice": 45.57, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160164857", - "info": { - "identifier": 160164857, - "sqm_ocr": 70.22, - "price": 3200.0, - "price_per_sqm": 45.57106237539163, - "url": "https://www.rightmove.co.uk/properties/160164857", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 59, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55326/160164857/55326_ISS210117_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.012501", - "last_seen": "2025-06-01T22:05:47.469806", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087692, - 51.531555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160164938", - "info": { - "identifier": 160164938, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160164938", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Frestons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259079/160164938/259079_RL6005_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.834256", - "last_seen": "2025-06-01T20:19:57.834256", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.002314, - 51.5143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 154.5, - "qmprice": 25.57, - "rooms": 4, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/160164980", - "info": { - "identifier": 160164980, - "sqm_ocr": 154.5, - "price": 3950.0, - "price_per_sqm": 25.566343042071196, - "url": "https://www.rightmove.co.uk/properties/160164980", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/160164980/71419_1320871_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.744406", - "last_seen": "2025-06-01T22:06:00.104709", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119213, - 51.42946 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 25.0, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160165616", - "info": { - "identifier": 160165616, - "sqm_ocr": 84.0, - "price": 2100.0, - "price_per_sqm": 25.0, - "url": "https://www.rightmove.co.uk/properties/160165616", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/160165616/71401_1320585_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.233655", - "last_seen": "2025-06-01T22:05:41.336895", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224425, - 51.551994 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160165850", - "info": { - "identifier": 160165850, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160165850", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160165850/96668_243888502042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.855405", - "last_seen": "2025-06-01T17:38:55.810438", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201871, - 51.545517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160165856", - "info": { - "identifier": 160165856, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160165856", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160165856/96668_243867202042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.843588", - "last_seen": "2025-06-01T22:06:00.446608", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.033286, - 51.47588 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160165922", - "info": { - "identifier": 160165922, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160165922", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160165922/96668_243874602042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.217528", - "last_seen": "2025-06-01T22:05:44.481621", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.316033, - 51.51302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 44.03, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/160166477", - "info": { - "identifier": 160166477, - "sqm_ocr": 67.0, - "price": 2950.0, - "price_per_sqm": 44.02985074626866, - "url": "https://www.rightmove.co.uk/properties/160166477", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Xavi & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88636/160166477/88636_1112_XAVI_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.428223", - "last_seen": "2025-06-01T22:06:15.043384", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187765, - 51.51192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3185.0, - "url": "https://www.rightmove.co.uk/properties/160166900", - "info": { - "identifier": 160166900, - "sqm_ocr": null, - "price": 3185.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160166900", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/160166900/120463_33787440_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.386882", - "last_seen": "2025-06-01T22:06:14.962808", - "price": 3185 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174759, - 51.528122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/160169909", - "info": { - "identifier": 160169909, - "sqm_ocr": null, - "price": 2847.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160169909", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/160169909/96542_ROCH_000301_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.873629", - "last_seen": "2025-06-01T22:05:54.917256", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147952, - 51.546104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.4, - "qmprice": 67.62, - "rooms": 2, - "total_price": 3814.0, - "url": "https://www.rightmove.co.uk/properties/160169951", - "info": { - "identifier": 160169951, - "sqm_ocr": 56.4, - "price": 3814.0, - "price_per_sqm": 67.62411347517731, - "url": "https://www.rightmove.co.uk/properties/160169951", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/160169951/15948_1321217_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.839830", - "last_seen": "2025-06-01T22:05:48.677707", - "price": 3814.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213443, - 51.482555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.4, - "qmprice": 46.1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160169954", - "info": { - "identifier": 160169954, - "sqm_ocr": 56.4, - "price": 2600.0, - "price_per_sqm": 46.09929078014184, - "url": "https://www.rightmove.co.uk/properties/160169954", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/160169954/15948_1321216_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.836883", - "last_seen": "2025-06-01T22:05:48.675607", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213443, - 51.482555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.9, - "qmprice": 50.52, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/160170005", - "info": { - "identifier": 160170005, - "sqm_ocr": 57.9, - "price": 2925.0, - "price_per_sqm": 50.51813471502591, - "url": "https://www.rightmove.co.uk/properties/160170005", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/160170005/15954_1321228_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.388979", - "last_seen": "2025-06-01T22:05:47.846566", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089321, - 51.5356 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160170029", - "info": { - "identifier": 160170029, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160170029", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Citiland Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282164/160170029/282164_FA-79RSE27DJ_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.913427", - "last_seen": "2025-06-01T20:19:57.913427", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07446, - 51.52452 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160170257", - "info": { - "identifier": 160170257, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160170257", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Paramount", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62636/160170257/62636_PAR220172_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.063712", - "last_seen": "2025-06-01T22:05:44.222463", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295733, - 51.53129 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.63, - "qmprice": 26.99, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160170479", - "info": { - "identifier": 160170479, - "sqm_ocr": 92.63, - "price": 2500.0, - "price_per_sqm": 26.98909640505236, - "url": "https://www.rightmove.co.uk/properties/160170479", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47660/160170479/47660_33787667_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.736140", - "last_seen": "2025-06-01T22:05:49.829212", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090331, - 51.59459 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160170617", - "info": { - "identifier": 160170617, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160170617", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Joseph Scott", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17295/160170617/17295_12641156_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.943761", - "last_seen": "2025-06-01T22:05:39.387894", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211237, - 51.613968 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160171055", - "info": { - "identifier": 160171055, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160171055", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160171055/96668_241565012032025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.606908", - "last_seen": "2025-06-01T22:06:15.260302", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198814, - 51.52308 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.6, - "qmprice": 34.79, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160171751", - "info": { - "identifier": 160171751, - "sqm_ocr": 77.6, - "price": 2700.0, - "price_per_sqm": 34.79381443298969, - "url": "https://www.rightmove.co.uk/properties/160171751", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22320/160171751/22320_BHL080005_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.509529", - "last_seen": "2025-06-01T22:05:59.810485", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14281, - 51.45402 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 44.07, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160171892", - "info": { - "identifier": 160171892, - "sqm_ocr": 59.0, - "price": 2600.0, - "price_per_sqm": 44.067796610169495, - "url": "https://www.rightmove.co.uk/properties/160171892", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/160171892/15954_1321235_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.476954", - "last_seen": "2025-06-01T22:05:53.125099", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101561, - 51.53665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.2, - "qmprice": 45.32, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/160171937", - "info": { - "identifier": 160171937, - "sqm_ocr": 50.2, - "price": 2275.0, - "price_per_sqm": 45.31872509960159, - "url": "https://www.rightmove.co.uk/properties/160171937", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/160171937/15960_1321241_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.849903", - "last_seen": "2025-06-01T22:05:42.537834", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189268, - 51.53733 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160171997", - "info": { - "identifier": 160171997, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160171997", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7313/160171997/7313_MIL250010_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.473441", - "last_seen": "2025-06-01T22:05:38.982710", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220771, - 51.611362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.71, - "qmprice": 36.64, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160172009", - "info": { - "identifier": 160172009, - "sqm_ocr": 88.71, - "price": 3250.0, - "price_per_sqm": 36.63623041370759, - "url": "https://www.rightmove.co.uk/properties/160172009", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/160172009/111056_1321184_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.149379", - "last_seen": "2025-06-01T22:06:08.975737", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069761, - 51.506016 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/160172480", - "info": { - "identifier": 160172480, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160172480", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Letting Engine", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257840/160172480/257840_656_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.347331", - "last_seen": "2025-06-01T20:19:58.845352", - "price": 3497.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014932, - 51.50978 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2860.0, - "url": "https://www.rightmove.co.uk/properties/160174751", - "info": { - "identifier": 160174751, - "sqm_ocr": null, - "price": 2860.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160174751", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 59, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/160174751/115768_thenext654637_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "05/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.043583", - "last_seen": "2025-06-01T22:06:08.843328", - "price": 2860 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01841, - 51.49067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160174970", - "info": { - "identifier": 160174970, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160174970", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75847/160174970/75847_CLK250046_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.157830", - "last_seen": "2025-06-01T22:06:16.135152", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180736, - 51.51164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.26, - "qmprice": 45.42, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/160181303", - "info": { - "identifier": 160181303, - "sqm_ocr": 79.26, - "price": 3600.0, - "price_per_sqm": 45.420136260408775, - "url": "https://www.rightmove.co.uk/properties/160181303", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/143k/142382/160181303/142382_ALQ012511690_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.505970", - "last_seen": "2025-06-01T22:06:10.939667", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070175, - 51.514954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 54.62, - "rooms": 2, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/160181720", - "info": { - "identifier": 160181720, - "sqm_ocr": 71.0, - "price": 3878.0, - "price_per_sqm": 54.61971830985915, - "url": "https://www.rightmove.co.uk/properties/160181720", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Tavistock Bow", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/111k/110768/160181720/110768_101184000082_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.878453", - "last_seen": "2025-06-01T22:06:15.384585", - "price": 3878 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113002, - 51.513184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 42.24, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/160182467", - "info": { - "identifier": 160182467, - "sqm_ocr": 59.0, - "price": 2492.0, - "price_per_sqm": 42.23728813559322, - "url": "https://www.rightmove.co.uk/properties/160182467", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Cedar Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79883/160182467/79883_2366_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.191362", - "last_seen": "2025-06-01T22:05:42.767262", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19199, - 51.54537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.7, - "qmprice": 46.12, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160183217", - "info": { - "identifier": 160183217, - "sqm_ocr": 47.7, - "price": 2200.0, - "price_per_sqm": 46.12159329140461, - "url": "https://www.rightmove.co.uk/properties/160183217", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72056/160183217/72056_33788187_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.743554", - "last_seen": "2025-06-01T22:06:12.465722", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165257, - 51.421432 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 140.1, - "qmprice": 28.55, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160184216", - "info": { - "identifier": 160184216, - "sqm_ocr": 140.1, - "price": 4000.0, - "price_per_sqm": 28.551034975017846, - "url": "https://www.rightmove.co.uk/properties/160184216", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Core London Property Advisors", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266807/160184216/266807_RX567482_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.576660", - "last_seen": "2025-06-01T22:05:44.820277", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285773, - 51.52102 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.0, - "qmprice": 30.17, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160184975", - "info": { - "identifier": 160184975, - "sqm_ocr": 116.0, - "price": 3500.0, - "price_per_sqm": 30.17241379310345, - "url": "https://www.rightmove.co.uk/properties/160184975", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/160184975/15966_1320975_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.254148", - "last_seen": "2025-06-01T22:06:12.852773", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166705, - 51.47017 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.7, - "qmprice": 54.39, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160185014", - "info": { - "identifier": 160185014, - "sqm_ocr": 71.7, - "price": 3900.0, - "price_per_sqm": 54.39330543933054, - "url": "https://www.rightmove.co.uk/properties/160185014", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/160185014/80281_1321077_IMG_21_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.858113", - "last_seen": "2025-06-01T22:06:07.241973", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009749, - 51.54816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/160185368", - "info": { - "identifier": 160185368, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160185368", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Short Lets", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235637/160185368/235637_JDW-SL-0003373_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.084151", - "last_seen": "2025-06-01T22:05:49.059719", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23351, - 51.49316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160185416", - "info": { - "identifier": 160185416, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160185416", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Short Lets", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235637/160185416/235637_JDW-SL-0003375_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.118763", - "last_seen": "2025-06-01T22:06:12.647596", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18811, - 51.44616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/160186184", - "info": { - "identifier": 160186184, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160186184", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JS Estate Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264161/160186184/264161_702314_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.747152", - "last_seen": "2025-06-01T22:06:05.041573", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.040815, - 51.4936 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.25, - "qmprice": 37.15, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160189355", - "info": { - "identifier": 160189355, - "sqm_ocr": 63.25, - "price": 2350.0, - "price_per_sqm": 37.15415019762846, - "url": "https://www.rightmove.co.uk/properties/160189355", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66897/160189355/66897_33788613_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.022212", - "last_seen": "2025-06-01T22:06:00.724038", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.036514, - 51.455772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160189781", - "info": { - "identifier": 160189781, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160189781", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160189781/96668_238215010022025_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.622046", - "last_seen": "2025-06-01T22:05:50.185179", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155674, - 51.5815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.29, - "qmprice": 38.81, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160190126", - "info": { - "identifier": 160190126, - "sqm_ocr": 77.29, - "price": 3000.0, - "price_per_sqm": 38.814853150472246, - "url": "https://www.rightmove.co.uk/properties/160190126", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78395/160190126/78395_33788661_IMG_08_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.640569", - "last_seen": "2025-06-01T20:19:57.640569", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052492, - 51.516632 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.17, - "qmprice": 48.05, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160190537", - "info": { - "identifier": 160190537, - "sqm_ocr": 81.17, - "price": 3900.0, - "price_per_sqm": 48.04730811876309, - "url": "https://www.rightmove.co.uk/properties/160190537", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/160190537/66771_1316991_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.851509", - "last_seen": "2025-06-01T22:06:13.001222", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135319, - 51.480076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160190633", - "info": { - "identifier": 160190633, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160190633", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52617/160190633/52617_LVL100062_L_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.831616", - "last_seen": "2025-06-01T22:06:16.092120", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19051, - 51.52419 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160190807", - "info": { - "identifier": 160190807, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160190807", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Langhams Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25200/160190807/25200_12562387_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.917599", - "last_seen": "2025-06-01T22:05:51.836377", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3395, - 51.485443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 39.71, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160192208", - "info": { - "identifier": 160192208, - "sqm_ocr": 68.0, - "price": 2700.0, - "price_per_sqm": 39.705882352941174, - "url": "https://www.rightmove.co.uk/properties/160192208", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Network Agencies", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53310/160192208/53310_sussexway308_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.720830", - "last_seen": "2025-06-01T22:05:53.550865", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12293, - 51.56577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3943.0, - "url": "https://www.rightmove.co.uk/properties/160192937", - "info": { - "identifier": 160192937, - "sqm_ocr": null, - "price": 3943.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160192937", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Griffins Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253778/160192937/253778_griffins_1313728035_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.434255", - "last_seen": "2025-06-01T22:06:10.706347", - "price": 3943 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028043, - 51.507233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160195328", - "info": { - "identifier": 160195328, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160195328", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/160195328/249692_RL4595_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "17/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.044929", - "last_seen": "2025-06-01T22:05:42.578420", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140133, - 51.529583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160195634", - "info": { - "identifier": 160195634, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160195634", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "John Grants Estate Agents Ltd", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78074/160195634/78074_7309982_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.061395, - 51.648422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/160195901", - "info": { - "identifier": 160195901, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160195901", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Bryan & Keegan", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102278/160195901/102278_BBY150280_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.846754", - "last_seen": "2025-06-01T22:06:00.521826", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.032506, - 51.46914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160196972", - "info": { - "identifier": 160196972, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160196972", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191426/160196972/191426_2709697_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.859697", - "last_seen": "2025-06-01T22:05:39.305483", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17899, - 51.61192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160197158", - "info": { - "identifier": 160197158, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160197158", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/160197158/264878_CAN231899_L_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.347183", - "last_seen": "2025-06-01T22:06:10.534911", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018396, - 51.49838 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.4, - "qmprice": 29.45, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160197161", - "info": { - "identifier": 160197161, - "sqm_ocr": 76.4, - "price": 2250.0, - "price_per_sqm": 29.45026178010471, - "url": "https://www.rightmove.co.uk/properties/160197161", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Allday & Miller", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/226k/225662/160197161/225662_33788924_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.100927", - "last_seen": "2025-06-01T22:05:50.587589", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.335623, - 51.582375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/160197482", - "info": { - "identifier": 160197482, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160197482", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/160197482/198539_33788941_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.330956", - "last_seen": "2025-06-01T22:06:09.904145", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063228, - 51.50886 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.0, - "qmprice": 40.18, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160197635", - "info": { - "identifier": 160197635, - "sqm_ocr": 56.0, - "price": 2250.0, - "price_per_sqm": 40.17857142857143, - "url": "https://www.rightmove.co.uk/properties/160197635", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78395/160197635/78395_33788141_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.548172", - "last_seen": "2025-06-01T22:06:11.064640", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06626, - 51.52035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.37, - "qmprice": 25.52, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160197692", - "info": { - "identifier": 160197692, - "sqm_ocr": 110.37, - "price": 2817.0, - "price_per_sqm": 25.52324001087252, - "url": "https://www.rightmove.co.uk/properties/160197692", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/160197692/111056_1321244_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:11.416640", - "last_seen": "2025-06-01T22:06:11.416640", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.060068, - 51.50328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/160197773", - "info": { - "identifier": 160197773, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160197773", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 51, - "status": null, - "last_seen": 0, - "agency": "ABACO Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/184k/183806/160197773/183806_33788964_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.298125", - "last_seen": "2025-06-01T22:06:14.663098", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188465, - 51.531555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.95, - "qmprice": 42.13, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160198058", - "info": { - "identifier": 160198058, - "sqm_ocr": 94.95, - "price": 4000.0, - "price_per_sqm": 42.1274354923644, - "url": "https://www.rightmove.co.uk/properties/160198058", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65439/160198058/65439_NEL210087_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.208593", - "last_seen": "2025-06-01T22:05:59.535750", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127934, - 51.48163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.83, - "qmprice": 56.47, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160198490", - "info": { - "identifier": 160198490, - "sqm_ocr": 70.83, - "price": 4000.0, - "price_per_sqm": 56.47324579980234, - "url": "https://www.rightmove.co.uk/properties/160198490", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239366/160198490/239366_OER240171_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.768853", - "last_seen": "2025-06-01T22:06:14.386437", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17045, - 51.50141 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160198673", - "info": { - "identifier": 160198673, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160198673", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "SAB Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261782/160198673/261782_9b6ed129-abdb-4873-84d1-e5a5f9d118f2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.865752", - "last_seen": "2025-06-01T22:05:45.195362", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37149, - 51.52803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.2, - "qmprice": 36.43, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/160198988", - "info": { - "identifier": 160198988, - "sqm_ocr": 67.2, - "price": 2448.0, - "price_per_sqm": 36.42857142857142, - "url": "https://www.rightmove.co.uk/properties/160198988", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218729/160198988/218729_33789031_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.710654", - "last_seen": "2025-06-01T22:05:53.527541", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133018, - 51.553997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160199432", - "info": { - "identifier": 160199432, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160199432", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279224/160199432/279224_CSL250101_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.571368", - "last_seen": "2025-06-01T22:05:59.891032", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093326, - 51.429085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.9, - "qmprice": 68.45, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/160199948", - "info": { - "identifier": 160199948, - "sqm_ocr": 45.9, - "price": 3142.0, - "price_per_sqm": 68.45315904139434, - "url": "https://www.rightmove.co.uk/properties/160199948", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Bentley & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/205k/204560/160199948/204560_835_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.650396", - "last_seen": "2025-06-01T22:05:42.212038", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144013, - 51.5297 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.5, - "qmprice": 32.17, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160201460", - "info": { - "identifier": 160201460, - "sqm_ocr": 71.5, - "price": 2300.0, - "price_per_sqm": 32.16783216783217, - "url": "https://www.rightmove.co.uk/properties/160201460", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Surrey Quays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60474/160201460/60474_12370304AW_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.866817", - "last_seen": "2025-06-01T22:06:00.510659", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01218, - 51.46503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.3, - "qmprice": 37.33, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160201895", - "info": { - "identifier": 160201895, - "sqm_ocr": 64.3, - "price": 2400.0, - "price_per_sqm": 37.32503888024883, - "url": "https://www.rightmove.co.uk/properties/160201895", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/160201895/55101_1321317_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.245185", - "last_seen": "2025-06-01T22:06:06.510085", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063759, - 51.4931 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/160201913", - "info": { - "identifier": 160201913, - "sqm_ocr": null, - "price": 2295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160201913", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43260/160201913/43260_HRL230006_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.925312", - "last_seen": "2025-06-01T22:05:50.305045", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300393, - 51.61826 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160202567", - "info": { - "identifier": 160202567, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160202567", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160202567/87187_64214_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.372572", - "last_seen": "2025-06-01T22:05:39.612006", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238156, - 51.594902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160202600", - "info": { - "identifier": 160202600, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160202600", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Lionsgate Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/160k/159428/160202600/159428_4801_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.563134", - "last_seen": "2025-06-01T22:05:48.239701", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223516, - 51.511642 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.09, - "qmprice": 39.14, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/160202783", - "info": { - "identifier": 160202783, - "sqm_ocr": 74.09, - "price": 2900.0, - "price_per_sqm": 39.141584559319746, - "url": "https://www.rightmove.co.uk/properties/160202783", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242966/160202783/242966_P142395_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.261670", - "last_seen": "2025-06-01T22:05:38.791291", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24732, - 51.59581 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160204193", - "info": { - "identifier": 160204193, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160204193", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85766/160204193/85766_HRX251429_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.186023", - "last_seen": "2025-06-01T22:05:50.795739", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.335993, - 51.5969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.96, - "qmprice": 51.33, - "rooms": 2, - "total_price": 3848.0, - "url": "https://www.rightmove.co.uk/properties/160205528", - "info": { - "identifier": 160205528, - "sqm_ocr": 74.96, - "price": 3848.0, - "price_per_sqm": 51.33404482390609, - "url": "https://www.rightmove.co.uk/properties/160205528", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/160205528/136148_2664470_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.544876", - "last_seen": "2025-06-01T22:05:57.335788", - "price": 3848 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18483, - 51.4766 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2675.0, - "url": "https://www.rightmove.co.uk/properties/160206035", - "info": { - "identifier": 160206035, - "sqm_ocr": null, - "price": 2675.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160206035", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "ABACO Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/184k/183806/160206035/183806_33737611_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.943533", - "last_seen": "2025-06-01T22:06:15.543106", - "price": 2675.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180937, - 51.534184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/160206455", - "info": { - "identifier": 160206455, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160206455", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Jorgensen Turner", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85507/160206455/85507_33789548_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.809038", - "last_seen": "2025-06-01T22:06:16.140382", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165876, - 51.52272 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 37.78, - "rooms": 3, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/160207670", - "info": { - "identifier": 160207670, - "sqm_ocr": 82.0, - "price": 3098.0, - "price_per_sqm": 37.78048780487805, - "url": "https://www.rightmove.co.uk/properties/160207670", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146498/160207670/146498_33789629_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.521169", - "last_seen": "2025-06-01T22:05:59.881331", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122957, - 51.484245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.08, - "qmprice": 60.21, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/160207748", - "info": { - "identifier": 160207748, - "sqm_ocr": 58.08, - "price": 3497.0, - "price_per_sqm": 60.210055096418735, - "url": "https://www.rightmove.co.uk/properties/160207748", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157817/160207748/157817_2708494_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.065696", - "last_seen": "2025-06-01T22:06:08.706189", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018767, - 51.500824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160208012", - "info": { - "identifier": 160208012, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160208012", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160208012/96668_243889102042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.691406", - "last_seen": "2025-06-01T22:05:43.508596", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08485, - 51.38543 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 144.85, - "qmprice": 25.89, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160208138", - "info": { - "identifier": 160208138, - "sqm_ocr": 144.85, - "price": 3750.0, - "price_per_sqm": 25.888850535036244, - "url": "https://www.rightmove.co.uk/properties/160208138", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39740/160208138/39740_FIN200230_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.019940", - "last_seen": "2025-06-01T22:05:39.488860", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187621, - 51.599403 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.3, - "qmprice": 43.24, - "rooms": 2, - "total_price": 3040.0, - "url": "https://www.rightmove.co.uk/properties/160208639", - "info": { - "identifier": 160208639, - "sqm_ocr": 70.3, - "price": 3040.0, - "price_per_sqm": 43.24324324324324, - "url": "https://www.rightmove.co.uk/properties/160208639", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210875/160208639/210875_GW201-SHORTLET-030425_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.799749", - "last_seen": "2025-06-01T22:05:45.163689", - "price": 3040.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3426, - 51.54804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 122.0, - "qmprice": 30.74, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160208792", - "info": { - "identifier": 160208792, - "sqm_ocr": 122.0, - "price": 3750.0, - "price_per_sqm": 30.737704918032787, - "url": "https://www.rightmove.co.uk/properties/160208792", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80829/160208792/80829_TDL250029_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.521661", - "last_seen": "2025-06-01T22:06:04.651316", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35861, - 51.43998 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160209875", - "info": { - "identifier": 160209875, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160209875", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160209875/87187_57288_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.128717, - 51.48145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.44, - "qmprice": 39.3, - "rooms": 2, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/160212518", - "info": { - "identifier": 160212518, - "sqm_ocr": 86.44, - "price": 3397.0, - "price_per_sqm": 39.298935677926885, - "url": "https://www.rightmove.co.uk/properties/160212518", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40512/160212518/40512_33789987_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.164138", - "last_seen": "2025-06-01T22:06:06.356094", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084761, - 51.50237 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.1, - "qmprice": 38.25, - "rooms": 2, - "total_price": 2643.0, - "url": "https://www.rightmove.co.uk/properties/160212524", - "info": { - "identifier": 160212524, - "sqm_ocr": 69.1, - "price": 2643.0, - "price_per_sqm": 38.248914616497835, - "url": "https://www.rightmove.co.uk/properties/160212524", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50701/160212524/50701_33789988_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.344592", - "last_seen": "2025-06-01T22:05:58.056896", - "price": 2643 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180744, - 51.487976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 30.76, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/160212746", - "info": { - "identifier": 160212746, - "sqm_ocr": 91.0, - "price": 2799.0, - "price_per_sqm": 30.75824175824176, - "url": "https://www.rightmove.co.uk/properties/160212746", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/160212746/25485_33790012_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.838872", - "last_seen": "2025-06-01T22:05:42.454274", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203157, - 51.549667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.69, - "qmprice": 45.55, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160213265", - "info": { - "identifier": 160213265, - "sqm_ocr": 52.69, - "price": 2400.0, - "price_per_sqm": 45.549440121465175, - "url": "https://www.rightmove.co.uk/properties/160213265", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Parkes Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205670/160213265/205670_PEA240311_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.126367", - "last_seen": "2025-06-01T22:05:59.999442", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115067, - 51.45696 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160213805", - "info": { - "identifier": 160213805, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160213805", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Win Property", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288020/160213805/288020_33790085_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.147543", - "last_seen": "2025-06-01T22:06:01.865972", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.010355, - 51.5121 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/160214189", - "info": { - "identifier": 160214189, - "sqm_ocr": null, - "price": 2847.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160214189", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 59, - "status": null, - "last_seen": 0, - "agency": "parkinsonfarr", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29643/160214189/29643_721_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.003793", - "last_seen": "2025-06-01T22:05:40.931091", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22502, - 51.54893 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.47, - "qmprice": 42.49, - "rooms": 2, - "total_price": 3164.0, - "url": "https://www.rightmove.co.uk/properties/160214723", - "info": { - "identifier": 160214723, - "sqm_ocr": 74.47, - "price": 3164.0, - "price_per_sqm": 42.48690747952195, - "url": "https://www.rightmove.co.uk/properties/160214723", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/160214723/48101_1321339_IMG_01_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.148668", - "last_seen": "2025-06-01T22:06:10.440922", - "price": 3164.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024724, - 51.501957 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.8, - "qmprice": 35.53, - "rooms": 3, - "total_price": 3510.0, - "url": "https://www.rightmove.co.uk/properties/160215293", - "info": { - "identifier": 160215293, - "sqm_ocr": 98.8, - "price": 3510.0, - "price_per_sqm": 35.526315789473685, - "url": "https://www.rightmove.co.uk/properties/160215293", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/160215293/15948_1321325_IMG_01_0010_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.158002", - "last_seen": "2025-06-01T22:05:48.445895", - "price": 3510.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193159, - 51.475456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.9, - "qmprice": 33.15, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160215881", - "info": { - "identifier": 160215881, - "sqm_ocr": 70.9, - "price": 2350.0, - "price_per_sqm": 33.14527503526093, - "url": "https://www.rightmove.co.uk/properties/160215881", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "S J Smith Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72819/160215881/72819_103010007188_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.173199", - "last_seen": "2025-06-01T22:05:52.231942", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.40547, - 51.43705 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.59, - "qmprice": 44.0, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/160217429", - "info": { - "identifier": 160217429, - "sqm_ocr": 46.59, - "price": 2050.0, - "price_per_sqm": 44.00085855333762, - "url": "https://www.rightmove.co.uk/properties/160217429", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238829/160217429/238829_33790325_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.365176", - "last_seen": "2025-06-01T22:06:01.291970", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177027, - 51.423355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/160218218", - "info": { - "identifier": 160218218, - "sqm_ocr": null, - "price": 3995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160218218", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 59, - "status": null, - "last_seen": 0, - "agency": "Century 21 Heritage", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105398/160218218/105398_SHM-39430837_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.650997", - "last_seen": "2025-06-01T22:06:03.392642", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.052746, - 51.521187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.7, - "qmprice": 37.97, - "rooms": 3, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/160218926", - "info": { - "identifier": 160218926, - "sqm_ocr": 98.7, - "price": 3748.0, - "price_per_sqm": 37.97365754812563, - "url": "https://www.rightmove.co.uk/properties/160218926", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96151/160218926/96151_BIS140133_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.551763", - "last_seen": "2025-06-01T22:05:48.223439", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218467, - 51.477425 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 28.12, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160219961", - "info": { - "identifier": 160219961, - "sqm_ocr": 80.0, - "price": 2250.0, - "price_per_sqm": 28.125, - "url": "https://www.rightmove.co.uk/properties/160219961", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Century 21 Royale", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/180k/179552/160219961/179552_R208937_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.847284", - "last_seen": "2025-06-01T22:06:13.825556", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222414, - 51.444164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.97, - "qmprice": 41.27, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160220315", - "info": { - "identifier": 160220315, - "sqm_ocr": 79.97, - "price": 3300.0, - "price_per_sqm": 41.26547455295736, - "url": "https://www.rightmove.co.uk/properties/160220315", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/160220315/55101_1321306_IMG_01_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.152669", - "last_seen": "2025-06-01T22:06:06.350248", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04978, - 51.49849 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.25, - "qmprice": 48.41, - "rooms": 2, - "total_price": 2384.0, - "url": "https://www.rightmove.co.uk/properties/160220384", - "info": { - "identifier": 160220384, - "sqm_ocr": 49.25, - "price": 2384.0, - "price_per_sqm": 48.40609137055838, - "url": "https://www.rightmove.co.uk/properties/160220384", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/160220384/108515_1321382_IMG_01_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.368412", - "last_seen": "2025-06-01T22:05:58.145858", - "price": 2384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190044, - 51.486126 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.79, - "qmprice": 55.12, - "rooms": 2, - "total_price": 2579.0, - "url": "https://www.rightmove.co.uk/properties/160220390", - "info": { - "identifier": 160220390, - "sqm_ocr": 46.79, - "price": 2579.0, - "price_per_sqm": 55.11861508869416, - "url": "https://www.rightmove.co.uk/properties/160220390", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/160220390/108515_1321371_IMG_01_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.375259", - "last_seen": "2025-06-01T22:05:58.156906", - "price": 2579.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195165, - 51.48847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.7, - "qmprice": 59.41, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/160220408", - "info": { - "identifier": 160220408, - "sqm_ocr": 50.7, - "price": 3012.0, - "price_per_sqm": 59.408284023668635, - "url": "https://www.rightmove.co.uk/properties/160220408", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/160220408/108515_1321365_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.026265", - "last_seen": "2025-06-01T22:05:57.607319", - "price": 3012.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19144, - 51.49014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160220567", - "info": { - "identifier": 160220567, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160220567", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Abacus Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26267/160220567/26267_ABAC_016042_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.826783", - "last_seen": "2025-06-01T22:05:42.437199", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196601, - 51.554657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160221101", - "info": { - "identifier": 160221101, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160221101", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Jeremy Leaf & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7167/160221101/7167_28906135_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.178793", - "last_seen": "2025-06-01T22:05:38.480623", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178698, - 51.611935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.1, - "qmprice": 40.92, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160222154", - "info": { - "identifier": 160222154, - "sqm_ocr": 61.1, - "price": 2500.0, - "price_per_sqm": 40.91653027823241, - "url": "https://www.rightmove.co.uk/properties/160222154", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hogarth Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95275/160222154/95275_385_HOGE_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.054314", - "last_seen": "2025-06-01T22:06:15.739389", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140428, - 51.49031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160222205", - "info": { - "identifier": 160222205, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160222205", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 59, - "status": null, - "last_seen": 0, - "agency": "relocate-me.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33012/160222205/33012_19607_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.519482", - "last_seen": "2025-06-01T22:05:53.092093", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08729, - 51.52464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.3, - "qmprice": 32.14, - "rooms": 2, - "total_price": 2099.0, - "url": "https://www.rightmove.co.uk/properties/160222739", - "info": { - "identifier": 160222739, - "sqm_ocr": 65.3, - "price": 2099.0, - "price_per_sqm": 32.143950995405824, - "url": "https://www.rightmove.co.uk/properties/160222739", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/193k/192209/160222739/192209_33790706_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.907019", - "last_seen": "2025-06-01T22:05:55.944370", - "price": 2099.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.286119, - 51.5216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/160222817", - "info": { - "identifier": 160222817, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160222817", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/160222817/84833_33790712_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.754381", - "last_seen": "2025-06-01T22:05:48.457363", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225533, - 51.50544 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.6, - "qmprice": 34.54, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/160222880", - "info": { - "identifier": 160222880, - "sqm_ocr": 63.6, - "price": 2197.0, - "price_per_sqm": 34.5440251572327, - "url": "https://www.rightmove.co.uk/properties/160222880", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50719/160222880/50719_33344959_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.763733", - "last_seen": "2025-06-01T22:05:48.607414", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218806, - 51.501778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160223915", - "info": { - "identifier": 160223915, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160223915", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160223915/96668_243989203042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.237924", - "last_seen": "2025-06-01T22:05:39.939923", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.151062, - 51.490505 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.7, - "qmprice": 31.37, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160224263", - "info": { - "identifier": 160224263, - "sqm_ocr": 79.7, - "price": 2500.0, - "price_per_sqm": 31.36762860727729, - "url": "https://www.rightmove.co.uk/properties/160224263", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50074/160224263/50074_P298427_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.527598", - "last_seen": "2025-06-01T22:05:58.409334", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21431, - 51.52413 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.61, - "qmprice": 36.37, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160224509", - "info": { - "identifier": 160224509, - "sqm_ocr": 75.61, - "price": 2750.0, - "price_per_sqm": 36.37085041661156, - "url": "https://www.rightmove.co.uk/properties/160224509", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/160224509/101522_1321394_IMG_01_0010_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.840131", - "last_seen": "2025-06-01T22:05:55.197598", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055591, - 51.546318 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.8, - "qmprice": 45.2, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160225190", - "info": { - "identifier": 160225190, - "sqm_ocr": 70.8, - "price": 3200.0, - "price_per_sqm": 45.19774011299435, - "url": "https://www.rightmove.co.uk/properties/160225190", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54922/160225190/54922_NEL060080_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.641518", - "last_seen": "2025-06-01T22:06:14.501310", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128926, - 51.495647 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160225784", - "info": { - "identifier": 160225784, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160225784", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160225784/96668_244019603042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.169643", - "last_seen": "2025-06-01T22:05:44.438149", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.322117, - 51.50919 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.73, - "qmprice": 35.81, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160225841", - "info": { - "identifier": 160225841, - "sqm_ocr": 97.73, - "price": 3500.0, - "price_per_sqm": 35.81295405709608, - "url": "https://www.rightmove.co.uk/properties/160225841", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263693/160225841/263693_TOL242809_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.571513", - "last_seen": "2025-06-01T22:06:07.024255", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05346, - 51.501846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.73, - "qmprice": 40.93, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160225844", - "info": { - "identifier": 160225844, - "sqm_ocr": 97.73, - "price": 4000.0, - "price_per_sqm": 40.929090350966945, - "url": "https://www.rightmove.co.uk/properties/160225844", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263693/160225844/263693_TOL242832_L_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.573331", - "last_seen": "2025-06-01T22:06:07.028179", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05346, - 51.501846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.3, - "qmprice": 32.44, - "rooms": 3, - "total_price": 2994.0, - "url": "https://www.rightmove.co.uk/properties/160226486", - "info": { - "identifier": 160226486, - "sqm_ocr": 92.3, - "price": 2994.0, - "price_per_sqm": 32.437703141928495, - "url": "https://www.rightmove.co.uk/properties/160226486", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93044/160226486/93044_33790875_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.284529", - "last_seen": "2025-06-01T22:05:52.428055", - "price": 2994 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.245097, - 51.49519 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3679.0, - "url": "https://www.rightmove.co.uk/properties/160226759", - "info": { - "identifier": 160226759, - "sqm_ocr": null, - "price": 3679.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160226759", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160226759/96668_244033603042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.280689", - "last_seen": "2025-06-01T22:05:59.073012", - "price": 3679 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117489, - 51.50178 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.25, - "qmprice": 27.15, - "rooms": 2, - "total_price": 2070.0, - "url": "https://www.rightmove.co.uk/properties/160227143", - "info": { - "identifier": 160227143, - "sqm_ocr": 76.25, - "price": 2070.0, - "price_per_sqm": 27.147540983606557, - "url": "https://www.rightmove.co.uk/properties/160227143", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/160227143/227810_1321264_IMG_02_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.769005", - "last_seen": "2025-06-01T22:05:47.002642", - "price": 2070.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07384, - 51.494534 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.7, - "qmprice": 54.57, - "rooms": 2, - "total_price": 3640.0, - "url": "https://www.rightmove.co.uk/properties/160228376", - "info": { - "identifier": 160228376, - "sqm_ocr": 66.7, - "price": 3640.0, - "price_per_sqm": 54.57271364317841, - "url": "https://www.rightmove.co.uk/properties/160228376", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/160228376/15942_1319372_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.293453", - "last_seen": "2025-06-01T22:05:58.002953", - "price": 3640.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185923, - 51.497047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.89, - "qmprice": 45.53, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/160229705", - "info": { - "identifier": 160229705, - "sqm_ocr": 80.89, - "price": 3683.0, - "price_per_sqm": 45.53096798120905, - "url": "https://www.rightmove.co.uk/properties/160229705", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25608/160229705/25608_KNL250006_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.139756", - "last_seen": "2025-06-01T22:05:57.750265", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164042, - 51.49988 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160229726", - "info": { - "identifier": 160229726, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160229726", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Guide Point Properties Limited", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246506/160229726/246506_RL0004_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.471425", - "last_seen": "2025-06-01T22:06:05.604147", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078847, - 51.4947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.7, - "qmprice": 41.29, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160239131", - "info": { - "identifier": 160239131, - "sqm_ocr": 55.7, - "price": 2300.0, - "price_per_sqm": 41.292639138240574, - "url": "https://www.rightmove.co.uk/properties/160239131", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/160239131/71401_1317671_IMG_02_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.575414", - "last_seen": "2025-06-01T22:05:40.425658", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247654, - 51.55592 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.3, - "qmprice": 33.25, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160239545", - "info": { - "identifier": 160239545, - "sqm_ocr": 120.3, - "price": 4000.0, - "price_per_sqm": 33.25020781379884, - "url": "https://www.rightmove.co.uk/properties/160239545", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/160239545/15969_1313136_IMG_01_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.534930", - "last_seen": "2025-06-01T22:05:44.834597", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284479, - 51.52406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160240259", - "info": { - "identifier": 160240259, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160240259", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66533/160240259/66533_GER252535_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.386947", - "last_seen": "2025-06-01T22:05:43.710795", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072466, - 51.414944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160241819", - "info": { - "identifier": 160241819, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160241819", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Joseph Scott", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17295/160241819/17295_12642422_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.180737", - "last_seen": "2025-06-01T22:05:39.796311", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252694, - 51.60964 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.55, - "qmprice": 37.37, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160241951", - "info": { - "identifier": 160241951, - "sqm_ocr": 61.55, - "price": 2300.0, - "price_per_sqm": 37.36799350121852, - "url": "https://www.rightmove.co.uk/properties/160241951", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51301/160241951/51301_HEA252961_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.247703", - "last_seen": "2025-06-01T22:05:57.932890", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211912, - 51.5008 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.9, - "qmprice": 50.42, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/160242359", - "info": { - "identifier": 160242359, - "sqm_ocr": 70.9, - "price": 3575.0, - "price_per_sqm": 50.4231311706629, - "url": "https://www.rightmove.co.uk/properties/160242359", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Imperial Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85765/160242359/85765_000020400_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.484716", - "last_seen": "2025-06-01T22:06:12.263792", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17985, - 51.46649 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 40.49, - "rooms": 3, - "total_price": 2470.0, - "url": "https://www.rightmove.co.uk/properties/160242413", - "info": { - "identifier": 160242413, - "sqm_ocr": 61.0, - "price": 2470.0, - "price_per_sqm": 40.49180327868852, - "url": "https://www.rightmove.co.uk/properties/160242413", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/160242413/80796_466_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.202851", - "last_seen": "2025-06-01T22:05:59.467463", - "price": 2470 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11354, - 51.46149 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.8, - "qmprice": 31.66, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160243265", - "info": { - "identifier": 160243265, - "sqm_ocr": 75.8, - "price": 2400.0, - "price_per_sqm": 31.6622691292876, - "url": "https://www.rightmove.co.uk/properties/160243265", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12694/160243265/12694_SML250013_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.654916", - "last_seen": "2025-06-01T22:06:01.850258", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159561, - 51.41519 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 33.77, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160243541", - "info": { - "identifier": 160243541, - "sqm_ocr": 77.0, - "price": 2600.0, - "price_per_sqm": 33.76623376623377, - "url": "https://www.rightmove.co.uk/properties/160243541", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113191/160243541/113191_33791342_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.079229", - "last_seen": "2025-06-01T22:05:47.509821", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073002, - 51.538376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.05, - "qmprice": 49.96, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160244915", - "info": { - "identifier": 160244915, - "sqm_ocr": 70.05, - "price": 3500.0, - "price_per_sqm": 49.96431120628123, - "url": "https://www.rightmove.co.uk/properties/160244915", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48997/160244915/48997_ELL250037_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.245689", - "last_seen": "2025-06-01T22:05:52.348895", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267022, - 51.493397 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.6, - "qmprice": 56.42, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160246025", - "info": { - "identifier": 160246025, - "sqm_ocr": 57.6, - "price": 3250.0, - "price_per_sqm": 56.42361111111111, - "url": "https://www.rightmove.co.uk/properties/160246025", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/160246025/264326_Y35632_3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.353230", - "last_seen": "2025-06-01T22:06:13.250040", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150826, - 51.47701 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160247966", - "info": { - "identifier": 160247966, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160247966", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Filey Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54554/160247966/54554_2603079_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.367929", - "last_seen": "2025-06-01T22:06:07.227247", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009327, - 51.53268 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 63.5, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/160248281", - "info": { - "identifier": 160248281, - "sqm_ocr": 58.0, - "price": 3683.0, - "price_per_sqm": 63.5, - "url": "https://www.rightmove.co.uk/properties/160248281", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62293/160248281/62293_33791654_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.540150", - "last_seen": "2025-06-01T22:06:15.095545", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15863, - 51.514565 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160248362", - "info": { - "identifier": 160248362, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160248362", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/160248362/84833_33791661_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.258114", - "last_seen": "2025-06-01T22:05:49.407667", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213906, - 51.499836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.4, - "qmprice": 28.51, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/160248674", - "info": { - "identifier": 160248674, - "sqm_ocr": 82.4, - "price": 2349.0, - "price_per_sqm": 28.507281553398055, - "url": "https://www.rightmove.co.uk/properties/160248674", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/160248674/198539_33791682_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.788985", - "last_seen": "2025-06-01T22:06:09.896907", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.007019, - 51.50538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160248776", - "info": { - "identifier": 160248776, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160248776", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Gascoigne-Pees Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5145/160248776/5145_000900733_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.839347", - "last_seen": "2025-06-01T22:05:58.908209", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28724, - 51.41355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.6, - "qmprice": 38.17, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160249094", - "info": { - "identifier": 160249094, - "sqm_ocr": 78.6, - "price": 3000.0, - "price_per_sqm": 38.16793893129771, - "url": "https://www.rightmove.co.uk/properties/160249094", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/160249094/96392_HEA254748_L_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.816961", - "last_seen": "2025-06-01T22:06:15.381147", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179035, - 51.530357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.8, - "qmprice": 40.82, - "rooms": 3, - "total_price": 3502.0, - "url": "https://www.rightmove.co.uk/properties/160249571", - "info": { - "identifier": 160249571, - "sqm_ocr": 85.8, - "price": 3502.0, - "price_per_sqm": 40.815850815850816, - "url": "https://www.rightmove.co.uk/properties/160249571", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/160249571/15969_1321449_IMG_04_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.446093", - "last_seen": "2025-06-01T22:05:44.716457", - "price": 3502.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28577, - 51.526127 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.9, - "qmprice": 56.6, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160249748", - "info": { - "identifier": 160249748, - "sqm_ocr": 68.9, - "price": 3900.0, - "price_per_sqm": 56.60377358490565, - "url": "https://www.rightmove.co.uk/properties/160249748", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/160249748/80281_1321073_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.744269", - "last_seen": "2025-06-01T22:06:07.220792", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009749, - 51.54816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 132.03, - "qmprice": 17.04, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160250270", - "info": { - "identifier": 160250270, - "sqm_ocr": 132.03, - "price": 2250.0, - "price_per_sqm": 17.041581458759374, - "url": "https://www.rightmove.co.uk/properties/160250270", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Wilson Hawkins", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286241/160250270/286241_de02911e-5588-4d98-bc4a-38029a5fa005_IMG_21_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.990267", - "last_seen": "2025-06-01T22:05:50.387555", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33902, - 51.5631 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160251305", - "info": { - "identifier": 160251305, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160251305", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "NEXIS Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272531/160251305/272531_MYR250024_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.096776", - "last_seen": "2025-06-01T22:06:07.433323", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005749, - 51.528904 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160251497", - "info": { - "identifier": 160251497, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160251497", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Alexander Charles & Browne", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206588/160251497/206588_28913048_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.091115", - "last_seen": "2025-06-01T22:06:00.911364", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.047263, - 51.441044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 29.73, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160251998", - "info": { - "identifier": 160251998, - "sqm_ocr": 74.0, - "price": 2200.0, - "price_per_sqm": 29.72972972972973, - "url": "https://www.rightmove.co.uk/properties/160251998", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107632/160251998/107632_33790042_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.356487", - "last_seen": "2025-06-01T22:05:52.656348", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324385, - 51.47806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2470.0, - "url": "https://www.rightmove.co.uk/properties/160252373", - "info": { - "identifier": 160252373, - "sqm_ocr": null, - "price": 2470.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160252373", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Keating Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106135/160252373/106135_33764057_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.010752", - "last_seen": "2025-06-01T22:05:59.189004", - "price": 2470 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093919, - 51.47133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.9, - "qmprice": 63.75, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160254230", - "info": { - "identifier": 160254230, - "sqm_ocr": 54.9, - "price": 3500.0, - "price_per_sqm": 63.752276867030965, - "url": "https://www.rightmove.co.uk/properties/160254230", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/160254230/15954_1321450_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.719687", - "last_seen": "2025-06-01T22:05:53.459104", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.086142, - 51.542976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.2, - "qmprice": 19.76, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160254329", - "info": { - "identifier": 160254329, - "sqm_ocr": 101.2, - "price": 2000.0, - "price_per_sqm": 19.76284584980237, - "url": "https://www.rightmove.co.uk/properties/160254329", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/160254329/250739_1321456_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.155320", - "last_seen": "2025-06-01T22:05:50.717638", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.316091, - 51.60991 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.52, - "qmprice": 34.43, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160254473", - "info": { - "identifier": 160254473, - "sqm_ocr": 75.52, - "price": 2600.0, - "price_per_sqm": 34.42796610169492, - "url": "https://www.rightmove.co.uk/properties/160254473", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/160254473/29861_33588120_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.236335", - "last_seen": "2025-06-01T22:06:02.842072", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.025552, - 51.49933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.2, - "qmprice": 55.84, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160255574", - "info": { - "identifier": 160255574, - "sqm_ocr": 58.2, - "price": 3250.0, - "price_per_sqm": 55.84192439862543, - "url": "https://www.rightmove.co.uk/properties/160255574", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43739/160255574/43739_P298394_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.846962", - "last_seen": "2025-06-01T22:06:15.436446", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15349, - 51.52232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.5, - "qmprice": 41.94, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/160255745", - "info": { - "identifier": 160255745, - "sqm_ocr": 65.5, - "price": 2747.0, - "price_per_sqm": 41.93893129770992, - "url": "https://www.rightmove.co.uk/properties/160255745", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71134/160255745/71134_33792130_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.758041", - "last_seen": "2025-06-01T22:06:08.229624", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066296, - 51.51625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.0, - "qmprice": 38.83, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160257215", - "info": { - "identifier": 160257215, - "sqm_ocr": 103.0, - "price": 4000.0, - "price_per_sqm": 38.83495145631068, - "url": "https://www.rightmove.co.uk/properties/160257215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Hotblack Desiato", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43709/160257215/43709_CAM250009_L_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.120243", - "last_seen": "2025-06-01T22:06:15.830543", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18098, - 51.53513 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.15, - "qmprice": 42.52, - "rooms": 2, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/160258631", - "info": { - "identifier": 160258631, - "sqm_ocr": 88.15, - "price": 3748.0, - "price_per_sqm": 42.518434486670444, - "url": "https://www.rightmove.co.uk/properties/160258631", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94643/160258631/94643_33792321_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.960844", - "last_seen": "2025-06-01T22:05:57.463956", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172768, - 51.48457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.7, - "qmprice": 37.36, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/160259564", - "info": { - "identifier": 160259564, - "sqm_ocr": 101.7, - "price": 3800.0, - "price_per_sqm": 37.36479842674533, - "url": "https://www.rightmove.co.uk/properties/160259564", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212396/160259564/212396_P159361_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.467051", - "last_seen": "2025-06-01T22:05:48.016999", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0898, - 51.57126 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160260008", - "info": { - "identifier": 160260008, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160260008", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Short Lets", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235637/160260008/235637_JDW-SL-0003384_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.440392", - "last_seen": "2025-06-01T22:05:59.800148", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0933, - 51.42923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160261322", - "info": { - "identifier": 160261322, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160261322", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 58, - "status": null, - "last_seen": 0, - "agency": "STORAGE SOLUTIONS LONDON", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277721/160261322/277721_Dagenham_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:43.977915", - "last_seen": "2025-06-01T22:05:38.155196", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.11734, - 51.54783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 150.4, - "qmprice": 23.27, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160263902", - "info": { - "identifier": 160263902, - "sqm_ocr": 150.4, - "price": 3500.0, - "price_per_sqm": 23.27127659574468, - "url": "https://www.rightmove.co.uk/properties/160263902", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Godfrey And Barr", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36729/160263902/36729_4207_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.361126", - "last_seen": "2025-06-01T22:05:38.755762", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222486, - 51.619488 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/160264070", - "info": { - "identifier": 160264070, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160264070", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hanover", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74440/160264070/74440_HNV250381_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.132459", - "last_seen": "2025-06-01T22:05:42.755228", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142803, - 51.526066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/160264268", - "info": { - "identifier": 160264268, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160264268", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/160264268/253853_1321300_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.687956", - "last_seen": "2025-06-01T22:06:06.019729", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099489, - 51.492916 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.05, - "qmprice": 39.98, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160265513", - "info": { - "identifier": 160265513, - "sqm_ocr": 100.05, - "price": 4000.0, - "price_per_sqm": 39.9800099950025, - "url": "https://www.rightmove.co.uk/properties/160265513", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Jonathan Arron Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69315/160265513/69315_JOW170060_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.232613", - "last_seen": "2025-06-01T22:06:15.997743", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181251, - 51.535065 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.6, - "qmprice": 41.82, - "rooms": 2, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/160265888", - "info": { - "identifier": 160265888, - "sqm_ocr": 74.6, - "price": 3120.0, - "price_per_sqm": 41.8230563002681, - "url": "https://www.rightmove.co.uk/properties/160265888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212384/160265888/212384_P159967_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.680487", - "last_seen": "2025-06-01T22:06:09.700677", - "price": 3120 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0557, - 51.51828 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160266434", - "info": { - "identifier": 160266434, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160266434", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "GCP", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/196k/195305/160266434/195305_1301_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.389375", - "last_seen": "2025-06-01T22:05:40.176343", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27554, - 51.55553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.19, - "qmprice": 44.48, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160266494", - "info": { - "identifier": 160266494, - "sqm_ocr": 74.19, - "price": 3300.0, - "price_per_sqm": 44.48038819247877, - "url": "https://www.rightmove.co.uk/properties/160266494", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280511/160266494/280511_FUL250022_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.531924", - "last_seen": "2025-06-01T22:05:56.545791", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203801, - 51.48479 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160267187", - "info": { - "identifier": 160267187, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160267187", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Brian Thomas Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6489/160267187/6489_sabd5_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.122811", - "last_seen": "2025-06-01T22:06:02.649625", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05299, - 51.52497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160267325", - "info": { - "identifier": 160267325, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160267325", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Kubie Gold Associates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82958/160267325/82958_28915550_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.282155", - "last_seen": "2025-06-01T22:06:16.073494", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158669, - 51.520607 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.49, - "qmprice": 27.06, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160267970", - "info": { - "identifier": 160267970, - "sqm_ocr": 103.49, - "price": 2800.0, - "price_per_sqm": 27.055754179147744, - "url": "https://www.rightmove.co.uk/properties/160267970", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Copperstones", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82091/160267970/82091_CR_553_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.909798", - "last_seen": "2025-06-01T22:06:02.409583", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01535, - 51.50835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.5, - "qmprice": 43.33, - "rooms": 2, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/160268189", - "info": { - "identifier": 160268189, - "sqm_ocr": 71.5, - "price": 3098.0, - "price_per_sqm": 43.32867132867133, - "url": "https://www.rightmove.co.uk/properties/160268189", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212384/160268189/212384_P159972_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.324136", - "last_seen": "2025-06-01T22:06:08.994004", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05678, - 51.51861 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.8, - "qmprice": 30.52, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160268201", - "info": { - "identifier": 160268201, - "sqm_ocr": 68.8, - "price": 2100.0, - "price_per_sqm": 30.52325581395349, - "url": "https://www.rightmove.co.uk/properties/160268201", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Aleco Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75997/160268201/75997_dghdgh_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.920075", - "last_seen": "2025-06-01T22:05:57.124331", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11016, - 51.60959 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.3, - "qmprice": 40.79, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/160268366", - "info": { - "identifier": 160268366, - "sqm_ocr": 90.3, - "price": 3683.0, - "price_per_sqm": 40.78626799557032, - "url": "https://www.rightmove.co.uk/properties/160268366", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Farrar & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128314/160268366/128314_4163_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.034521", - "last_seen": "2025-06-01T22:05:57.629362", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186284, - 51.482285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.7, - "qmprice": 31.91, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160268672", - "info": { - "identifier": 160268672, - "sqm_ocr": 109.7, - "price": 3500.0, - "price_per_sqm": 31.905195989061074, - "url": "https://www.rightmove.co.uk/properties/160268672", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94220/160268672/94220_P298471_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.024351", - "last_seen": "2025-06-01T22:05:44.095929", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29749, - 51.5125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160269098", - "info": { - "identifier": 160269098, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160269098", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99758/160269098/99758_2576906_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.079723", - "last_seen": "2025-06-01T22:05:45.034744", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285369, - 51.532272 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160270562", - "info": { - "identifier": 160270562, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160270562", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "I AM REAL ESTATE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246389/160270562/246389_10662990_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.416882", - "last_seen": "2025-06-01T22:06:11.133585", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027003, - 51.51384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.4, - "qmprice": 27.13, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160271189", - "info": { - "identifier": 160271189, - "sqm_ocr": 77.4, - "price": 2100.0, - "price_per_sqm": 27.131782945736433, - "url": "https://www.rightmove.co.uk/properties/160271189", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84848/160271189/84848_33732644_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.161506", - "last_seen": "2025-06-01T22:05:52.213625", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35723, - 51.46615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.7, - "qmprice": 27.38, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160271195", - "info": { - "identifier": 160271195, - "sqm_ocr": 76.7, - "price": 2100.0, - "price_per_sqm": 27.379400260756192, - "url": "https://www.rightmove.co.uk/properties/160271195", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84848/160271195/84848_33793191_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.166395", - "last_seen": "2025-06-01T22:05:52.226119", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35507, - 51.466328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.37, - "qmprice": 23.99, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160271567", - "info": { - "identifier": 160271567, - "sqm_ocr": 108.37, - "price": 2600.0, - "price_per_sqm": 23.991879671495802, - "url": "https://www.rightmove.co.uk/properties/160271567", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260939/160271567/260939_DAN250226_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.829000", - "last_seen": "2025-06-01T22:05:50.130218", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11526, - 51.57344 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160271591", - "info": { - "identifier": 160271591, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160271591", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Eden Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224738/160271591/224738_5d5174e0-cab2-49c7-a00e-5d7c5c657454_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.012451", - "last_seen": "2025-06-01T22:06:14.091782", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149011, - 51.439384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160272239", - "info": { - "identifier": 160272239, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160272239", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "PMP International", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240842/160272239/240842_33793251_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.076765", - "last_seen": "2025-06-01T22:06:14.171951", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147601, - 51.4489 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.6, - "qmprice": 33.29, - "rooms": 4, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160273526", - "info": { - "identifier": 160273526, - "sqm_ocr": 76.6, - "price": 2550.0, - "price_per_sqm": 33.28981723237598, - "url": "https://www.rightmove.co.uk/properties/160273526", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Streets Ahead", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/24k/23060/160273526/23060_RPT140190_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.265872", - "last_seen": "2025-06-01T22:05:43.375211", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072304, - 51.414783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160273808", - "info": { - "identifier": 160273808, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160273808", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160273808/96668_168242518042023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.227768", - "last_seen": "2025-06-01T22:05:45.323926", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285335, - 51.53228 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160274369", - "info": { - "identifier": 160274369, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160274369", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hausman & Holmes", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166823/160274369/166823_1284_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.448524", - "last_seen": "2025-06-01T22:05:38.831939", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20038, - 51.56294 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.6, - "qmprice": 51.59, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160274696", - "info": { - "identifier": 160274696, - "sqm_ocr": 75.6, - "price": 3900.0, - "price_per_sqm": 51.58730158730159, - "url": "https://www.rightmove.co.uk/properties/160274696", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/160274696/57272_1321520_IMG_01_0010_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.635472", - "last_seen": "2025-06-01T22:05:58.551596", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295821, - 51.404305 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/160278023", - "info": { - "identifier": 160278023, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160278023", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/160278023/176261_102708031202_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.843916", - "last_seen": "2025-06-01T22:05:50.169120", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14093, - 51.5702 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.11, - "qmprice": 32.83, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160278809", - "info": { - "identifier": 160278809, - "sqm_ocr": 73.11, - "price": 2400.0, - "price_per_sqm": 32.827246614690196, - "url": "https://www.rightmove.co.uk/properties/160278809", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238829/160278809/238829_33793728_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.347348", - "last_seen": "2025-06-01T22:06:01.248725", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164512, - 51.419815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/160279010", - "info": { - "identifier": 160279010, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160279010", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Quest London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/274k/273062/160279010/273062_HOLLINGDONROAD_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.978711", - "last_seen": "2025-06-01T22:06:02.480206", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05487, - 51.52502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.77, - "qmprice": 45.19, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/160279157", - "info": { - "identifier": 160279157, - "sqm_ocr": 49.77, - "price": 2249.0, - "price_per_sqm": 45.187864175205945, - "url": "https://www.rightmove.co.uk/properties/160279157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/123k/122989/160279157/122989_YLR210085_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.654963", - "last_seen": "2025-06-01T22:06:04.790914", - "price": 2249.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293247, - 51.47015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3510.0, - "url": "https://www.rightmove.co.uk/properties/160280240", - "info": { - "identifier": 160280240, - "sqm_ocr": null, - "price": 3510.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160280240", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160280240/96668_244078204042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.068530", - "last_seen": "2025-06-01T22:06:08.634450", - "price": 3510.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026291, - 51.49845 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/160280336", - "info": { - "identifier": 160280336, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160280336", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.843732", - "last_seen": "2025-06-01T22:05:42.435222", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14059, - 51.5362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.1, - "qmprice": 36.79, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160281020", - "info": { - "identifier": 160281020, - "sqm_ocr": 76.1, - "price": 2800.0, - "price_per_sqm": 36.793692509855454, - "url": "https://www.rightmove.co.uk/properties/160281020", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/160281020/253853_1320042_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.440333", - "last_seen": "2025-06-01T22:06:05.532801", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097539, - 51.48801 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.1, - "qmprice": 42.23, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/160283927", - "info": { - "identifier": 160283927, - "sqm_ocr": 59.1, - "price": 2496.0, - "price_per_sqm": 42.233502538071065, - "url": "https://www.rightmove.co.uk/properties/160283927", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48695/160283927/48695_33794087_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.934062", - "last_seen": "2025-06-01T22:06:15.555451", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185042, - 51.536816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.38, - "qmprice": 33.99, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160284257", - "info": { - "identifier": 160284257, - "sqm_ocr": 82.38, - "price": 2800.0, - "price_per_sqm": 33.98883224083516, - "url": "https://www.rightmove.co.uk/properties/160284257", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Harding Green", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181964/160284257/181964_RX569191_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.042511", - "last_seen": "2025-06-01T22:05:59.235874", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120236, - 51.455154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.9, - "qmprice": 52.93, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160285325", - "info": { - "identifier": 160285325, - "sqm_ocr": 52.9, - "price": 2800.0, - "price_per_sqm": 52.93005671077505, - "url": "https://www.rightmove.co.uk/properties/160285325", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/160285325/55101_1321400_IMG_01_0012_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.286320", - "last_seen": "2025-06-01T22:06:05.402298", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06969, - 51.48976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160285430", - "info": { - "identifier": 160285430, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160285430", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Woodhouse", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56314/160285430/56314_28908984_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.900793", - "last_seen": "2025-06-01T22:05:45.407264", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096805, - 51.678715 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160285580", - "info": { - "identifier": 160285580, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160285580", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/160285580/221711_3335_EAF_178885_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.162343", - "last_seen": "2025-06-01T22:06:06.753682", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089241, - 51.47211 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.2, - "qmprice": 33.42, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160287254", - "info": { - "identifier": 160287254, - "sqm_ocr": 112.2, - "price": 3750.0, - "price_per_sqm": 33.42245989304813, - "url": "https://www.rightmove.co.uk/properties/160287254", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/160287254/15963_1319207_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.421284", - "last_seen": "2025-06-01T22:06:13.185229", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224287, - 51.46919 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 158.0, - "qmprice": 18.99, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160287314", - "info": { - "identifier": 160287314, - "sqm_ocr": 158.0, - "price": 3000.0, - "price_per_sqm": 18.9873417721519, - "url": "https://www.rightmove.co.uk/properties/160287314", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Galloways", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151376/160287314/151376_33794281_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.287137", - "last_seen": "2025-06-01T22:05:41.707370", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061816, - 51.411537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160287596", - "info": { - "identifier": 160287596, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160287596", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160287596/96668_244147704042025_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "03/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.841758", - "last_seen": "2025-06-01T20:19:58.841758", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063478, - 51.5215 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.0, - "qmprice": 62.5, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160288697", - "info": { - "identifier": 160288697, - "sqm_ocr": 48.0, - "price": 3000.0, - "price_per_sqm": 62.5, - "url": "https://www.rightmove.co.uk/properties/160288697", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253307/160288697/253307_MAL250046_L_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.039122", - "last_seen": "2025-06-01T22:06:15.751212", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145217, - 51.4905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160288961", - "info": { - "identifier": 160288961, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160288961", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160288961/96668_244153104042025_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "06/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.147059", - "last_seen": "2025-06-01T22:06:15.862562", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172996, - 51.52414 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.9, - "qmprice": 52.15, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160289459", - "info": { - "identifier": 160289459, - "sqm_ocr": 48.9, - "price": 2550.0, - "price_per_sqm": 52.147239263803684, - "url": "https://www.rightmove.co.uk/properties/160289459", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210110/160289459/210110_P298500_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.040054", - "last_seen": "2025-06-01T22:06:14.383100", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19568, - 51.52852 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.2, - "qmprice": 38.26, - "rooms": 2, - "total_price": 3795.0, - "url": "https://www.rightmove.co.uk/properties/160289555", - "info": { - "identifier": 160289555, - "sqm_ocr": 99.2, - "price": 3795.0, - "price_per_sqm": 38.256048387096776, - "url": "https://www.rightmove.co.uk/properties/160289555", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/123k/122989/160289555/122989_YLR160056_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.260915", - "last_seen": "2025-06-01T22:06:04.419951", - "price": 3795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303404, - 51.455208 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.82, - "qmprice": 48.09, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/160290461", - "info": { - "identifier": 160290461, - "sqm_ocr": 60.82, - "price": 2925.0, - "price_per_sqm": 48.09273265373233, - "url": "https://www.rightmove.co.uk/properties/160290461", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90830/160290461/90830_SJD150449_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.680498", - "last_seen": "2025-06-01T22:06:15.172677", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171034, - 51.5333 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.61, - "qmprice": 46.91, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160294961", - "info": { - "identifier": 160294961, - "sqm_ocr": 74.61, - "price": 3500.0, - "price_per_sqm": 46.9106017960059, - "url": "https://www.rightmove.co.uk/properties/160294961", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Rentd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230333/160294961/230333_3KCUs0LnmYqMNqyF0iuD_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "31/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.045322", - "last_seen": "2025-06-01T22:05:38.267403", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.073563, - 51.534573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.27, - "qmprice": 24.92, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160295723", - "info": { - "identifier": 160295723, - "sqm_ocr": 80.27, - "price": 2000.0, - "price_per_sqm": 24.915908807773764, - "url": "https://www.rightmove.co.uk/properties/160295723", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/160295723/48101_1321576_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.150872", - "last_seen": "2025-06-01T22:06:10.544774", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013777, - 51.51691 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160297589", - "info": { - "identifier": 160297589, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160297589", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160297589/96668_237285502022025_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.955941", - "last_seen": "2025-06-01T22:05:50.656568", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277534, - 51.591454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160297613", - "info": { - "identifier": 160297613, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160297613", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160297613/96668_203197125032024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.874991", - "last_seen": "2025-06-01T22:06:02.376166", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.014552, - 51.510445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.3, - "qmprice": 48.6, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160298438", - "info": { - "identifier": 160298438, - "sqm_ocr": 82.3, - "price": 4000.0, - "price_per_sqm": 48.60267314702309, - "url": "https://www.rightmove.co.uk/properties/160298438", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "EGRE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82293/160298438/82293_411_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.696244", - "last_seen": "2025-06-01T22:05:53.381627", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100071, - 51.5233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/160298780", - "info": { - "identifier": 160298780, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160298780", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/160298780/17882_20793_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.586718", - "last_seen": "2025-06-01T22:05:53.153805", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12634, - 51.54964 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160299341", - "info": { - "identifier": 160299341, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160299341", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Phillip Shaw", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267362/160299341/267362_d49cbe8b-0253-41d8-b856-7ce12f60f0cf_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.112580", - "last_seen": "2025-06-01T22:05:50.667157", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.347088, - 51.595177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.3, - "qmprice": 34.18, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/160300052", - "info": { - "identifier": 160300052, - "sqm_ocr": 86.3, - "price": 2950.0, - "price_per_sqm": 34.183082271147164, - "url": "https://www.rightmove.co.uk/properties/160300052", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/160300052/15963_1321579_IMG_01_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.932700", - "last_seen": "2025-06-01T22:06:14.048219", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196418, - 51.456722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 34.0, - "rooms": 2, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/160300805", - "info": { - "identifier": 160300805, - "sqm_ocr": 82.2, - "price": 2795.0, - "price_per_sqm": 34.00243309002433, - "url": "https://www.rightmove.co.uk/properties/160300805", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/160300805/238841_P298506_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.867434", - "last_seen": "2025-06-01T22:06:09.756776", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00892, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160300910", - "info": { - "identifier": 160300910, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160300910", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "Kevin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278792/160300910/278792_Ig7_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.994409", - "last_seen": "2025-06-01T22:06:04.071350", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.11023, - 51.61226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 29.2, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160301012", - "info": { - "identifier": 160301012, - "sqm_ocr": 82.2, - "price": 2400.0, - "price_per_sqm": 29.197080291970803, - "url": "https://www.rightmove.co.uk/properties/160301012", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43829/160301012/43829_P298508_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.844788", - "last_seen": "2025-06-01T22:06:09.731265", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00892, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 34.0, - "rooms": 2, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/160301048", - "info": { - "identifier": 160301048, - "sqm_ocr": 82.2, - "price": 2795.0, - "price_per_sqm": 34.00243309002433, - "url": "https://www.rightmove.co.uk/properties/160301048", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/160301048/95098_P298510_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.765656", - "last_seen": "2025-06-01T22:06:09.634626", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00892, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.7, - "qmprice": 36.08, - "rooms": 3, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/160301066", - "info": { - "identifier": 160301066, - "sqm_ocr": 106.7, - "price": 3850.0, - "price_per_sqm": 36.08247422680412, - "url": "https://www.rightmove.co.uk/properties/160301066", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/160301066/238841_P298512_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.723445", - "last_seen": "2025-06-01T22:06:09.563718", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00892, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160305608", - "info": { - "identifier": 160305608, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160305608", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Cuffley Banks", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82023/160305608/82023_CUF250019_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.571003", - "last_seen": "2025-06-01T22:05:45.074146", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.340863, - 51.55358 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3146.0, - "url": "https://www.rightmove.co.uk/properties/160306379", - "info": { - "identifier": 160306379, - "sqm_ocr": null, - "price": 3146.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160306379", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/160306379/39507_530550_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.267763", - "last_seen": "2025-06-01T20:19:58.267763", - "price": 3146 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.012749, - 51.52231 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/160306418", - "info": { - "identifier": 160306418, - "sqm_ocr": null, - "price": 3120.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160306418", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/160306418/39507_514821_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.317039", - "last_seen": "2025-06-01T22:06:11.259744", - "price": 3120 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061105, - 51.512657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160306439", - "info": { - "identifier": 160306439, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160306439", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/160306439/39507_681513_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.357853", - "last_seen": "2025-06-01T22:06:11.352512", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.047437, - 51.525116 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160306511", - "info": { - "identifier": 160306511, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160306511", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/160306511/39507_283950_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.251339", - "last_seen": "2025-06-01T22:06:08.704179", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.031213, - 51.52375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/160306547", - "info": { - "identifier": 160306547, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160306547", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/160306547/39507_315625_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.178807", - "last_seen": "2025-06-01T22:06:08.556113", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023555, - 51.517624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/160306622", - "info": { - "identifier": 160306622, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160306622", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/160306622/39507_662258_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.806857", - "last_seen": "2025-06-01T22:06:09.704595", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019136, - 51.51691 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160307093", - "info": { - "identifier": 160307093, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160307093", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/160307093/39507_355611_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.087704", - "last_seen": "2025-06-01T22:06:10.637634", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.051703, - 51.523426 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160307591", - "info": { - "identifier": 160307591, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160307591", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Gascoigne-Pees Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5145/160307591/5145_000900774_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.755077", - "last_seen": "2025-06-01T22:05:58.789978", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28724, - 51.41355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/160308839", - "info": { - "identifier": 160308839, - "sqm_ocr": null, - "price": 3878.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160308839", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/160308839/97423_CEI241840_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.224856", - "last_seen": "2025-06-01T22:06:07.928619", - "price": 3878 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0723, - 51.51366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160309544", - "info": { - "identifier": 160309544, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160309544", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53537/160309544/53537_PIL110127_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.739201", - "last_seen": "2025-06-01T22:06:15.227042", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14335, - 51.49106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160319585", - "info": { - "identifier": 160319585, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160319585", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160319585/96668_227238425102024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.608469", - "last_seen": "2025-06-01T22:06:02.658490", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.027006, - 51.530437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160320401", - "info": { - "identifier": 160320401, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160320401", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Accommodation.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78006/160320401/78006_12773815639-2025-04-06_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.974945", - "last_seen": "2025-06-01T22:06:13.261491", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16056, - 51.461452 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/160320674", - "info": { - "identifier": 160320674, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160320674", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/160320674/105856_3442_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.640716", - "last_seen": "2025-06-01T22:06:06.112995", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077128, - 51.4959 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/160321907", - "info": { - "identifier": 160321907, - "sqm_ocr": null, - "price": 2695.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160321907", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160321907/96668_244267406042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.329013", - "last_seen": "2025-06-01T22:05:38.593890", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205781, - 51.6551 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/160322177", - "info": { - "identifier": 160322177, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160322177", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160322177/96668_244281806042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.650588", - "last_seen": "2025-06-01T22:06:11.586366", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008788, - 51.592594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160322180", - "info": { - "identifier": 160322180, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160322180", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160322180/96668_244284806042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.647327", - "last_seen": "2025-06-01T22:06:11.579978", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008868, - 51.592583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.29, - "qmprice": 35.46, - "rooms": 2, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/160326668", - "info": { - "identifier": 160326668, - "sqm_ocr": 80.29, - "price": 2847.0, - "price_per_sqm": 35.458961265412874, - "url": "https://www.rightmove.co.uk/properties/160326668", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157817/160326668/157817_2710389_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.024111", - "last_seen": "2025-06-01T22:06:08.219149", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010613, - 51.493904 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.7, - "qmprice": 30.26, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160326827", - "info": { - "identifier": 160326827, - "sqm_ocr": 72.7, - "price": 2200.0, - "price_per_sqm": 30.26134800550206, - "url": "https://www.rightmove.co.uk/properties/160326827", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14546/160326827/14546_DLL170148_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.136965", - "last_seen": "2025-06-01T20:19:58.136965", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022746, - 51.516357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.7, - "qmprice": 35.66, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160326914", - "info": { - "identifier": 160326914, - "sqm_ocr": 61.7, - "price": 2200.0, - "price_per_sqm": 35.65640194489465, - "url": "https://www.rightmove.co.uk/properties/160326914", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 51, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65794/160326914/65794_33795505_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.556991", - "last_seen": "2025-06-01T22:06:13.438408", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177741, - 51.43587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.6, - "qmprice": 36.12, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/160327727", - "info": { - "identifier": 160327727, - "sqm_ocr": 63.6, - "price": 2297.0, - "price_per_sqm": 36.11635220125786, - "url": "https://www.rightmove.co.uk/properties/160327727", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22029/160327727/22029_HPL230193_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.041807", - "last_seen": "2025-06-01T22:05:57.528224", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211921, - 51.500816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3553.0, - "url": "https://www.rightmove.co.uk/properties/160328888", - "info": { - "identifier": 160328888, - "sqm_ocr": null, - "price": 3553.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160328888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/160328888/275489_15082024-CN138_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.259421", - "last_seen": "2025-06-01T22:06:08.702206", - "price": 3553 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.051098, - 51.5172 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160329482", - "info": { - "identifier": 160329482, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160329482", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 55, - "status": null, - "last_seen": 0, - "agency": "AC RESIDENTIAL", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/151k/150674/160329482/150674_44_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.018643", - "last_seen": "2025-06-01T22:06:15.802361", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128727, - 51.494427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.4, - "qmprice": 48.46, - "rooms": 2, - "total_price": 3848.0, - "url": "https://www.rightmove.co.uk/properties/160329629", - "info": { - "identifier": 160329629, - "sqm_ocr": 79.4, - "price": 3848.0, - "price_per_sqm": 48.46347607052896, - "url": "https://www.rightmove.co.uk/properties/160329629", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/132k/131152/160329629/131152_33795718_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.861072", - "last_seen": "2025-06-01T22:05:48.526273", - "price": 3848 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185162, - 51.47541 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2585.0, - "url": "https://www.rightmove.co.uk/properties/160330457", - "info": { - "identifier": 160330457, - "sqm_ocr": null, - "price": 2585.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160330457", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Sinton Andrews", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13712/160330457/13712_SINT_004372_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.972647", - "last_seen": "2025-06-01T22:05:56.378642", - "price": 2585.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303162, - 51.516407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160330586", - "info": { - "identifier": 160330586, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160330586", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/160330586/176261_102708002968_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.636283", - "last_seen": "2025-06-01T22:05:40.283165", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20486, - 51.54448 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.3, - "qmprice": 51.2, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/160330736", - "info": { - "identifier": 160330736, - "sqm_ocr": 68.3, - "price": 3497.0, - "price_per_sqm": 51.20058565153734, - "url": "https://www.rightmove.co.uk/properties/160330736", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57095/160330736/57095_P298527_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.643689", - "last_seen": "2025-06-01T22:06:13.646940", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22137, - 51.46857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.7, - "qmprice": 40.03, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160331000", - "info": { - "identifier": 160331000, - "sqm_ocr": 68.7, - "price": 2750.0, - "price_per_sqm": 40.02911208151383, - "url": "https://www.rightmove.co.uk/properties/160331000", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99865/160331000/99865_33795803_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.131111", - "last_seen": "2025-06-01T22:05:59.297530", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126772, - 51.452003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/160331717", - "info": { - "identifier": 160331717, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160331717", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219908/160331717/219908_3718_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.254341", - "last_seen": "2025-06-01T22:06:03.227176", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.072576, - 51.507915 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.5, - "qmprice": 37.57, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/160332416", - "info": { - "identifier": 160332416, - "sqm_ocr": 90.5, - "price": 3400.0, - "price_per_sqm": 37.569060773480665, - "url": "https://www.rightmove.co.uk/properties/160332416", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Davis & Gibbs Ltd", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213929/160332416/213929_28920374_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.463147", - "last_seen": "2025-06-01T22:06:07.022216", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104856, - 51.479336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.06, - "qmprice": 41.28, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/160334807", - "info": { - "identifier": 160334807, - "sqm_ocr": 92.06, - "price": 3800.0, - "price_per_sqm": 41.27742776450141, - "url": "https://www.rightmove.co.uk/properties/160334807", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/160334807/26207_IUL210472_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.993007", - "last_seen": "2025-06-01T22:05:53.266529", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110897, - 51.535698 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.5, - "qmprice": 46.24, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160335203", - "info": { - "identifier": 160335203, - "sqm_ocr": 86.5, - "price": 4000.0, - "price_per_sqm": 46.24277456647399, - "url": "https://www.rightmove.co.uk/properties/160335203", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/160335203/15963_1317463_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.285760", - "last_seen": "2025-06-01T22:06:12.778262", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219663, - 51.456673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.5, - "qmprice": 42.41, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/160337498", - "info": { - "identifier": 160337498, - "sqm_ocr": 56.5, - "price": 2396.0, - "price_per_sqm": 42.4070796460177, - "url": "https://www.rightmove.co.uk/properties/160337498", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48695/160337498/48695_33796276_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.653369", - "last_seen": "2025-06-01T22:06:15.109695", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166923, - 51.53414 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2110.0, - "url": "https://www.rightmove.co.uk/properties/160338281", - "info": { - "identifier": 160338281, - "sqm_ocr": null, - "price": 2110.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160338281", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160338281/96668_244209405042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.728783", - "last_seen": "2025-06-01T22:06:00.256634", - "price": 2110.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124996, - 51.46601 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160338446", - "info": { - "identifier": 160338446, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160338446", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Paul Simon Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45303/160338446/45303_psl_766351916_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.950739", - "last_seen": "2025-06-01T22:05:45.475002", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042566, - 51.666492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/160338917", - "info": { - "identifier": 160338917, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160338917", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/160338917/181787_181787_1047_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.995903", - "last_seen": "2025-06-01T22:05:57.188531", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33775, - 51.50706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160339220", - "info": { - "identifier": 160339220, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160339220", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Citidwell Limited.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90728/160339220/90728_FGUD111_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.080626", - "last_seen": "2025-06-01T22:05:47.441683", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06648, - 51.55581 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.37, - "qmprice": 46.8, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160339472", - "info": { - "identifier": 160339472, - "sqm_ocr": 68.37, - "price": 3200.0, - "price_per_sqm": 46.80415386865584, - "url": "https://www.rightmove.co.uk/properties/160339472", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/160339472/247697_102708039520_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.879528", - "last_seen": "2025-06-01T22:05:53.872620", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11518, - 51.53337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160339904", - "info": { - "identifier": 160339904, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160339904", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Citidwell Limited.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90728/160339904/90728_SADQQA_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.574489", - "last_seen": "2025-06-01T22:05:46.790927", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02216, - 51.48058 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160340255", - "info": { - "identifier": 160340255, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160340255", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/160340255/194222_HRP160357_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.588898", - "last_seen": "2025-06-01T22:06:01.792853", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22987, - 51.41138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160340885", - "info": { - "identifier": 160340885, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160340885", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73310/160340885/73310_33796514_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.686246", - "last_seen": "2025-06-01T22:05:51.231739", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.421145, - 51.498005 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/160341125", - "info": { - "identifier": 160341125, - "sqm_ocr": null, - "price": 3098.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160341125", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/160341125/84791_33796525_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.992642", - "last_seen": "2025-06-01T22:05:57.076315", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305894, - 51.514095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160343807", - "info": { - "identifier": 160343807, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160343807", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100441/160343807/100441_YLI250015_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.933160", - "last_seen": "2025-06-01T22:05:51.760441", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.343007, - 51.480534 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160343993", - "info": { - "identifier": 160343993, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160343993", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160343993/96668_240952306032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.993323", - "last_seen": "2025-06-01T22:06:02.269884", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0555, - 51.51627 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/160344290", - "info": { - "identifier": 160344290, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160344290", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 55, - "status": null, - "last_seen": 0, - "agency": "Hawksgrove Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278102/160344290/278102_33796671_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.094188", - "last_seen": "2025-06-01T22:05:45.927124", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166018, - 51.66719 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.3, - "qmprice": 36.9, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160344785", - "info": { - "identifier": 160344785, - "sqm_ocr": 81.3, - "price": 3000.0, - "price_per_sqm": 36.90036900369004, - "url": "https://www.rightmove.co.uk/properties/160344785", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 169.0, - "service_charge": 2342.15, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Davis & Gibbs Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213929/160344785/213929_28260448_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.291903", - "last_seen": "2025-06-01T22:06:15.423654", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190666, - 51.52355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.74, - "qmprice": 36.71, - "rooms": 3, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160344929", - "info": { - "identifier": 160344929, - "sqm_ocr": 76.74, - "price": 2817.0, - "price_per_sqm": 36.70836591086787, - "url": "https://www.rightmove.co.uk/properties/160344929", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OIG Real Estate Limited", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285305/160344929/285305_OIL220868_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.153268", - "last_seen": "2025-06-01T22:06:08.404420", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01136, - 51.49688 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160344941", - "info": { - "identifier": 160344941, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160344941", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Davis & Gibbs Ltd", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213929/160344941/213929_28922170_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.019356", - "last_seen": "2025-06-01T22:05:59.123641", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106295, - 51.47936 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.6, - "qmprice": 39.61, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/160345772", - "info": { - "identifier": 160345772, - "sqm_ocr": 76.6, - "price": 3034.0, - "price_per_sqm": 39.608355091383814, - "url": "https://www.rightmove.co.uk/properties/160345772", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/160345772/107533_1316265_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.314835", - "last_seen": "2025-06-01T22:05:46.316470", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.012842, - 51.47945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160347134", - "info": { - "identifier": 160347134, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160347134", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Comber & Company", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14278/160347134/14278_20396122_7487136l_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.084502", - "last_seen": "2025-06-01T22:06:00.949105", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.006683, - 51.464474 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160347875", - "info": { - "identifier": 160347875, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160347875", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Comber & Company", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14278/160347875/14278_20487106_7510062l_IMG_12_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.212645", - "last_seen": "2025-06-01T22:05:57.351594", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017802, - 51.48252 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.6, - "qmprice": 36.68, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160350086", - "info": { - "identifier": 160350086, - "sqm_ocr": 88.6, - "price": 3250.0, - "price_per_sqm": 36.68171557562077, - "url": "https://www.rightmove.co.uk/properties/160350086", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/160350086/48994_CNL240006_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.033299", - "last_seen": "2025-06-01T22:06:08.175138", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.030397, - 51.507736 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/160350413", - "info": { - "identifier": 160350413, - "sqm_ocr": null, - "price": 3792.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160350413", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76478/160350413/76478_CEI242114_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.834968", - "last_seen": "2025-06-01T22:06:09.149999", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.007107, - 51.505005 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.7, - "qmprice": 48.36, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160350521", - "info": { - "identifier": 160350521, - "sqm_ocr": 51.7, - "price": 2500.0, - "price_per_sqm": 48.355899419729205, - "url": "https://www.rightmove.co.uk/properties/160350521", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/160350521/228512_33797111_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.517192", - "last_seen": "2025-06-01T22:05:55.794944", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116762, - 51.528774 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2290.0, - "url": "https://www.rightmove.co.uk/properties/160351736", - "info": { - "identifier": 160351736, - "sqm_ocr": null, - "price": 2290.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160351736", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160351736/96668_132386716022022_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.642505", - "last_seen": "2025-06-01T22:06:09.330772", - "price": 2290.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038669, - 51.51245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.0, - "qmprice": 29.91, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160351997", - "info": { - "identifier": 160351997, - "sqm_ocr": 107.0, - "price": 3200.0, - "price_per_sqm": 29.906542056074766, - "url": "https://www.rightmove.co.uk/properties/160351997", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/139k/138215/160351997/138215_100783008509_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.674875", - "last_seen": "2025-06-01T22:06:13.733233", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177951, - 51.4704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160352087", - "info": { - "identifier": 160352087, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160352087", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Spencer James Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283697/160352087/283697_12950_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.760051", - "last_seen": "2025-06-01T22:05:45.244849", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.373512, - 51.505157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160352594", - "info": { - "identifier": 160352594, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160352594", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44610/160352594/44610_P5762E3504_IMG_01_0000_max_656x437.png", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.848956", - "last_seen": "2025-06-01T22:05:58.708487", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27338, - 51.40667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/160354001", - "info": { - "identifier": 160354001, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160354001", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "London Homes Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162716/160354001/162716_1857_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.122028", - "last_seen": "2025-06-01T22:05:44.156280", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.311153, - 51.51817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.4, - "qmprice": 43.93, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/160354064", - "info": { - "identifier": 160354064, - "sqm_ocr": 77.4, - "price": 3400.0, - "price_per_sqm": 43.927648578811365, - "url": "https://www.rightmove.co.uk/properties/160354064", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 28, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/160354064/176261_102708022541_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.561760", - "last_seen": "2025-06-01T22:05:53.032559", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10988, - 51.56745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/160354145", - "info": { - "identifier": 160354145, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160354145", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50683/160354145/50683_P276453_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.691252", - "last_seen": "2025-06-01T22:06:05.807287", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08316, - 51.4993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.9, - "qmprice": 43.18, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160355228", - "info": { - "identifier": 160355228, - "sqm_ocr": 57.9, - "price": 2500.0, - "price_per_sqm": 43.17789291882556, - "url": "https://www.rightmove.co.uk/properties/160355228", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 36, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/160355228/84866_33797460_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.877023", - "last_seen": "2025-06-01T22:05:52.176718", - "price": 2500 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252679, - 51.493065 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.13, - "qmprice": 29.0, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160355492", - "info": { - "identifier": 160355492, - "sqm_ocr": 74.13, - "price": 2150.0, - "price_per_sqm": 29.003102657493596, - "url": "https://www.rightmove.co.uk/properties/160355492", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/160355492/77192_MANDARIZMAN_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.168731", - "last_seen": "2025-06-01T22:05:39.105827", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19548, - 51.65378 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.4, - "qmprice": 33.16, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160358147", - "info": { - "identifier": 160358147, - "sqm_ocr": 78.4, - "price": 2600.0, - "price_per_sqm": 33.16326530612245, - "url": "https://www.rightmove.co.uk/properties/160358147", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "gLocalAgents.co.uk", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176603/160358147/176603_6677_EAF_48113_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.731210", - "last_seen": "2025-06-01T22:06:01.365879", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20601, - 51.42706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 137.2, - "qmprice": 18.95, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160358849", - "info": { - "identifier": 160358849, - "sqm_ocr": 137.2, - "price": 2600.0, - "price_per_sqm": 18.950437317784257, - "url": "https://www.rightmove.co.uk/properties/160358849", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/160358849/82537_33797671_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.037988", - "last_seen": "2025-06-01T22:06:10.589388", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025688, - 51.501236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 137.2, - "qmprice": 18.95, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160359131", - "info": { - "identifier": 160359131, - "sqm_ocr": 137.2, - "price": 2600.0, - "price_per_sqm": 18.950437317784257, - "url": "https://www.rightmove.co.uk/properties/160359131", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 55, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/160359131/198539_33797685_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.963142", - "last_seen": "2025-06-01T22:06:09.061648", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025688, - 51.501236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.0, - "qmprice": 37.04, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160359179", - "info": { - "identifier": 160359179, - "sqm_ocr": 54.0, - "price": 2000.0, - "price_per_sqm": 37.03703703703704, - "url": "https://www.rightmove.co.uk/properties/160359179", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "C James & Co", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5256/160359179/5256_33797689_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.544111", - "last_seen": "2025-06-01T22:06:01.185992", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204955, - 51.41364 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160359215", - "info": { - "identifier": 160359215, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160359215", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 55, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "11/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.459734", - "last_seen": "2025-06-01T22:05:56.089516", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09897, - 51.52798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/160359845", - "info": { - "identifier": 160359845, - "sqm_ocr": null, - "price": 2695.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160359845", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/123k/122989/160359845/122989_YLR210209_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.332366", - "last_seen": "2025-06-01T22:06:04.692120", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293247, - 51.47015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.8, - "qmprice": 43.54, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160359893", - "info": { - "identifier": 160359893, - "sqm_ocr": 75.8, - "price": 3300.0, - "price_per_sqm": 43.53562005277045, - "url": "https://www.rightmove.co.uk/properties/160359893", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/160359893/253853_1321674_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.068652", - "last_seen": "2025-06-01T22:06:06.856664", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092065, - 51.492386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.6, - "qmprice": 55.12, - "rooms": 2, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/160360454", - "info": { - "identifier": 160360454, - "sqm_ocr": 56.6, - "price": 3120.0, - "price_per_sqm": 55.12367491166078, - "url": "https://www.rightmove.co.uk/properties/160360454", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/160360454/76585_1316859_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.159191", - "last_seen": "2025-06-01T22:05:42.887658", - "price": 3120.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138468, - 51.52436 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.9, - "qmprice": 44.1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/160360553", - "info": { - "identifier": 160360553, - "sqm_ocr": 66.9, - "price": 2950.0, - "price_per_sqm": 44.095665171898354, - "url": "https://www.rightmove.co.uk/properties/160360553", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/160360553/100423_1321678_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.196921", - "last_seen": "2025-06-01T22:06:04.314470", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324309, - 51.45479 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.5, - "qmprice": 30.53, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160360625", - "info": { - "identifier": 160360625, - "sqm_ocr": 65.5, - "price": 2000.0, - "price_per_sqm": 30.53435114503817, - "url": "https://www.rightmove.co.uk/properties/160360625", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/160360625/228512_33797794_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.555320", - "last_seen": "2025-06-01T22:05:38.902495", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151028, - 51.61003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.8, - "qmprice": 46.99, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160360652", - "info": { - "identifier": 160360652, - "sqm_ocr": 79.8, - "price": 3750.0, - "price_per_sqm": 46.99248120300752, - "url": "https://www.rightmove.co.uk/properties/160360652", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52518/160360652/52518_CWL240543_L_IMG_18_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.714678", - "last_seen": "2025-06-01T22:06:09.487762", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022155, - 51.501774 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160360931", - "info": { - "identifier": 160360931, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160360931", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81217/160360931/81217_0617_FJL061700922_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.297552", - "last_seen": "2025-06-01T22:05:47.382651", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073367, - 51.562244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.4, - "qmprice": 30.58, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160362185", - "info": { - "identifier": 160362185, - "sqm_ocr": 65.4, - "price": 2000.0, - "price_per_sqm": 30.58103975535168, - "url": "https://www.rightmove.co.uk/properties/160362185", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Livco", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271403/160362185/271403_LL23MC_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.956694", - "last_seen": "2025-06-01T22:06:10.488864", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01029, - 51.50852 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.9, - "qmprice": 36.67, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160362476", - "info": { - "identifier": 160362476, - "sqm_ocr": 70.9, - "price": 2600.0, - "price_per_sqm": 36.67136812411847, - "url": "https://www.rightmove.co.uk/properties/160362476", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/160362476/84875_33797958_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.211039", - "last_seen": "2025-06-01T22:05:59.386305", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136961, - 51.462433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.4, - "qmprice": 28.86, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/160362683", - "info": { - "identifier": 160362683, - "sqm_ocr": 107.4, - "price": 3100.0, - "price_per_sqm": 28.86405959031657, - "url": "https://www.rightmove.co.uk/properties/160362683", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84790/160362683/84790_P298600_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.661841", - "last_seen": "2025-06-01T22:06:13.701124", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17811, - 51.47033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160364021", - "info": { - "identifier": 160364021, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160364021", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Legacy Property Consultants Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/139k/138659/160364021/138659_103650000838_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.062850", - "last_seen": "2025-06-01T22:06:15.031830", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20148, - 51.53148 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 33.85, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160364237", - "info": { - "identifier": 160364237, - "sqm_ocr": 65.0, - "price": 2200.0, - "price_per_sqm": 33.84615384615385, - "url": "https://www.rightmove.co.uk/properties/160364237", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210116/160364237/210116_P298556_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.771781", - "last_seen": "2025-06-01T22:05:42.101256", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19375, - 51.55187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.2, - "qmprice": 49.25, - "rooms": 2, - "total_price": 3753.0, - "url": "https://www.rightmove.co.uk/properties/160365089", - "info": { - "identifier": 160365089, - "sqm_ocr": 76.2, - "price": 3753.0, - "price_per_sqm": 49.25196850393701, - "url": "https://www.rightmove.co.uk/properties/160365089", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32391/160365089/32391_33798126_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.949772", - "last_seen": "2025-06-01T22:05:42.669142", - "price": 3752 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118372, - 51.527565 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 29.81, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160365350", - "info": { - "identifier": 160365350, - "sqm_ocr": 82.2, - "price": 2450.0, - "price_per_sqm": 29.805352798053526, - "url": "https://www.rightmove.co.uk/properties/160365350", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/160365350/15975_1321691_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.366470", - "last_seen": "2025-06-01T22:06:01.237314", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195161, - 51.418125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/160365569", - "info": { - "identifier": 160365569, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160365569", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/160365569/105856_3445_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.232852", - "last_seen": "2025-06-01T22:06:02.999415", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.072489, - 51.5069 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.1, - "qmprice": 34.28, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160365599", - "info": { - "identifier": 160365599, - "sqm_ocr": 102.1, - "price": 3500.0, - "price_per_sqm": 34.28011753183154, - "url": "https://www.rightmove.co.uk/properties/160365599", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/160365599/98531_1317598_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.998049", - "last_seen": "2025-06-01T22:05:49.113755", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24282, - 51.5073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3640.0, - "url": "https://www.rightmove.co.uk/properties/160366118", - "info": { - "identifier": 160366118, - "sqm_ocr": null, - "price": 3640.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160366118", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 55, - "status": null, - "last_seen": 0, - "agency": "Abatoria", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33248/160366118/33248_2677_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:56.986457", - "last_seen": "2025-06-01T20:19:56.986457", - "price": 3640 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02145, - 51.50709 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.2, - "qmprice": 38.34, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160366385", - "info": { - "identifier": 160366385, - "sqm_ocr": 65.2, - "price": 2500.0, - "price_per_sqm": 38.34355828220859, - "url": "https://www.rightmove.co.uk/properties/160366385", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210116/160366385/210116_P298215_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.441832", - "last_seen": "2025-06-01T22:05:57.345955", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2188, - 51.54946 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.1, - "qmprice": 48.67, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/160366541", - "info": { - "identifier": 160366541, - "sqm_ocr": 60.1, - "price": 2925.0, - "price_per_sqm": 48.668885191347755, - "url": "https://www.rightmove.co.uk/properties/160366541", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43763/160366541/43763_P298604_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.224774", - "last_seen": "2025-06-01T22:05:47.879591", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09565, - 51.53161 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.3, - "qmprice": 37.69, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160367243", - "info": { - "identifier": 160367243, - "sqm_ocr": 74.3, - "price": 2800.0, - "price_per_sqm": 37.68506056527591, - "url": "https://www.rightmove.co.uk/properties/160367243", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43814/160367243/43814_P298605_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.470914", - "last_seen": "2025-06-01T22:06:07.048515", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04106, - 51.49321 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/160367891", - "info": { - "identifier": 160367891, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160367891", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Emoov", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/181k/180266/160367891/180266_1482_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.027790", - "last_seen": "2025-06-01T22:05:40.410047", - "price": 3210.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199117, - 51.5398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.5, - "qmprice": 40.6, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160368446", - "info": { - "identifier": 160368446, - "sqm_ocr": 66.5, - "price": 2700.0, - "price_per_sqm": 40.6015037593985, - "url": "https://www.rightmove.co.uk/properties/160368446", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Brand Portfolios", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/249k/248564/160368446/248564_33798380_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.945983", - "last_seen": "2025-06-01T22:06:06.330714", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101015, - 51.501976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.84, - "qmprice": 48.7, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160368476", - "info": { - "identifier": 160368476, - "sqm_ocr": 57.84, - "price": 2817.0, - "price_per_sqm": 48.703319502074685, - "url": "https://www.rightmove.co.uk/properties/160368476", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80905/160368476/80905_BSL161019_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.900202", - "last_seen": "2025-06-01T22:06:15.604620", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161523, - 51.524418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160368524", - "info": { - "identifier": 160368524, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160368524", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "HNF Property Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287990/160368524/287990_15TerrapinRoad_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.225756", - "last_seen": "2025-06-01T22:06:12.597083", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14823, - 51.43668 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/160368932", - "info": { - "identifier": 160368932, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160368932", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Domus Nova", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/29k/28746/160368932/28746_NOT210044_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/06/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.958050", - "last_seen": "2025-06-01T22:06:15.730265", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194085, - 51.5153 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.27, - "qmprice": 37.53, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160370165", - "info": { - "identifier": 160370165, - "sqm_ocr": 93.27, - "price": 3500.0, - "price_per_sqm": 37.52546370751582, - "url": "https://www.rightmove.co.uk/properties/160370165", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/160370165/43310_HEA748160_L_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.974447", - "last_seen": "2025-06-01T22:06:08.093008", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005616, - 51.494423 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160371440", - "info": { - "identifier": 160371440, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160371440", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Colin Dean Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118630/160371440/118630_33798567_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.879031", - "last_seen": "2025-06-01T22:05:41.249717", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.289338, - 51.56848 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.2, - "qmprice": 36.66, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160371575", - "info": { - "identifier": 160371575, - "sqm_ocr": 68.2, - "price": 2500.0, - "price_per_sqm": 36.65689149560117, - "url": "https://www.rightmove.co.uk/properties/160371575", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Conran Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17519/160371575/17519_GRE160248_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.061890", - "last_seen": "2025-06-01T22:06:10.690909", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018205, - 51.49779 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 136.0, - "qmprice": 25.74, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160371911", - "info": { - "identifier": 160371911, - "sqm_ocr": 136.0, - "price": 3500.0, - "price_per_sqm": 25.735294117647058, - "url": "https://www.rightmove.co.uk/properties/160371911", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/160371911/15975_1321739_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.565576", - "last_seen": "2025-06-01T22:06:01.761888", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192835, - 51.440273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.3, - "qmprice": 41.97, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160371968", - "info": { - "identifier": 160371968, - "sqm_ocr": 95.3, - "price": 4000.0, - "price_per_sqm": 41.972717733473246, - "url": "https://www.rightmove.co.uk/properties/160371968", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/160371968/16050_1321758_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.486966", - "last_seen": "2025-06-01T20:19:57.486966", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06366, - 51.52273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.3, - "qmprice": 35.56, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160372037", - "info": { - "identifier": 160372037, - "sqm_ocr": 70.3, - "price": 2500.0, - "price_per_sqm": 35.56187766714083, - "url": "https://www.rightmove.co.uk/properties/160372037", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 55, - "status": null, - "last_seen": 0, - "agency": "Property Inside London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270212/160372037/270212_BodREnt_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "28/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.651440", - "last_seen": "2025-06-01T22:05:40.360607", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28655, - 51.53123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2625.0, - "url": "https://www.rightmove.co.uk/properties/160372085", - "info": { - "identifier": 160372085, - "sqm_ocr": null, - "price": 2625.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160372085", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Homes With PJ", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267413/160372085/267413_L106286_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.243859", - "last_seen": "2025-06-01T22:06:13.007423", - "price": 2625.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154988, - 51.433872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2790.0, - "url": "https://www.rightmove.co.uk/properties/160372088", - "info": { - "identifier": 160372088, - "sqm_ocr": null, - "price": 2790.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160372088", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 55, - "status": null, - "last_seen": 0, - "agency": "Homes With PJ", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267413/160372088/267413_L106291_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.241445", - "last_seen": "2025-06-01T22:06:12.997309", - "price": 2790.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154988, - 51.433872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3395.0, - "url": "https://www.rightmove.co.uk/properties/160372160", - "info": { - "identifier": 160372160, - "sqm_ocr": null, - "price": 3395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160372160", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Morsin Living LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282863/160372160/282863_1457178_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.521131", - "last_seen": "2025-06-01T22:05:58.441095", - "price": 2990.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18095, - 51.48575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.5, - "qmprice": 49.53, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/160373171", - "info": { - "identifier": 160373171, - "sqm_ocr": 53.5, - "price": 2650.0, - "price_per_sqm": 49.532710280373834, - "url": "https://www.rightmove.co.uk/properties/160373171", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Anthony Pepe Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130528/160373171/130528_HAR170746_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.693588", - "last_seen": "2025-06-01T22:05:53.314028", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098835, - 51.56131 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.7, - "qmprice": 24.48, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160375103", - "info": { - "identifier": 160375103, - "sqm_ocr": 81.7, - "price": 2000.0, - "price_per_sqm": 24.479804161566708, - "url": "https://www.rightmove.co.uk/properties/160375103", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160375103/96668_243956003042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.436284", - "last_seen": "2025-06-01T22:05:44.816437", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.339442, - 51.51453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.59, - "qmprice": 37.21, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/160375538", - "info": { - "identifier": 160375538, - "sqm_ocr": 92.59, - "price": 3445.0, - "price_per_sqm": 37.20704179717032, - "url": "https://www.rightmove.co.uk/properties/160375538", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54732/160375538/54732_STL250021_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.445710", - "last_seen": "2025-06-01T22:05:42.613164", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144556, - 51.527332 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.3, - "qmprice": 47.03, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/160379072", - "info": { - "identifier": 160379072, - "sqm_ocr": 72.3, - "price": 3400.0, - "price_per_sqm": 47.02627939142462, - "url": "https://www.rightmove.co.uk/properties/160379072", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 28, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/160379072/60927_000016686b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.213229", - "last_seen": "2025-06-01T22:05:49.431031", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23007, - 51.49307 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.53, - "qmprice": 40.92, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160379186", - "info": { - "identifier": 160379186, - "sqm_ocr": 85.53, - "price": 3500.0, - "price_per_sqm": 40.9213141587747, - "url": "https://www.rightmove.co.uk/properties/160379186", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/160379186/101522_1318085_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.177699", - "last_seen": "2025-06-01T22:05:47.751534", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066793, - 51.54711 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/160381970", - "info": { - "identifier": 160381970, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160381970", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Huddletons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57234/160381970/57234_33798993_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.231935", - "last_seen": "2025-06-01T22:05:43.058414", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144614, - 51.541237 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/160382129", - "info": { - "identifier": 160382129, - "sqm_ocr": null, - "price": 2375.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160382129", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "L&Q", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102784/160382129/102784_12644924_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.636607", - "last_seen": "2025-06-01T22:06:03.207291", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02826, - 51.5004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/160382216", - "info": { - "identifier": 160382216, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160382216", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/160382216/67576_RL1196_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.461560", - "last_seen": "2025-06-01T22:05:42.653818", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13323, - 51.529877 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 43.08, - "rooms": 3, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/160382228", - "info": { - "identifier": 160382228, - "sqm_ocr": 87.0, - "price": 3748.0, - "price_per_sqm": 43.08045977011494, - "url": "https://www.rightmove.co.uk/properties/160382228", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113191/160382228/113191_33799012_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.475911", - "last_seen": "2025-06-01T22:05:47.662237", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058086, - 51.541805 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.1, - "qmprice": 53.71, - "rooms": 4, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/160383740", - "info": { - "identifier": 160383740, - "sqm_ocr": 66.1, - "price": 3550.0, - "price_per_sqm": 53.70650529500757, - "url": "https://www.rightmove.co.uk/properties/160383740", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52448/160383740/52448_33799115_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.177849", - "last_seen": "2025-06-01T22:05:49.396796", - "price": 3375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199174, - 51.478607 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 134.4, - "qmprice": 22.32, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160383860", - "info": { - "identifier": 160383860, - "sqm_ocr": 134.4, - "price": 3000.0, - "price_per_sqm": 22.32142857142857, - "url": "https://www.rightmove.co.uk/properties/160383860", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "John Payne", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34400/160383860/34400_P276467_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.520674", - "last_seen": "2025-06-01T22:05:46.657476", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02605, - 51.47004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.97, - "qmprice": 40.02, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160385132", - "info": { - "identifier": 160385132, - "sqm_ocr": 74.97, - "price": 3000.0, - "price_per_sqm": 40.016006402561025, - "url": "https://www.rightmove.co.uk/properties/160385132", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/146k/145463/160385132/145463_JWL240004_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.500225", - "last_seen": "2025-06-01T22:06:13.421516", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196412, - 51.46156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.27, - "qmprice": 45.05, - "rooms": 2, - "total_price": 3796.0, - "url": "https://www.rightmove.co.uk/properties/160385210", - "info": { - "identifier": 160385210, - "sqm_ocr": 84.27, - "price": 3796.0, - "price_per_sqm": 45.04568648392073, - "url": "https://www.rightmove.co.uk/properties/160385210", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36789/160385210/36789_CAL180196_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.552745", - "last_seen": "2025-06-01T22:06:09.202457", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066468, - 51.50768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160386242", - "info": { - "identifier": 160386242, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160386242", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "Brian Cox", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288164/160386242/288164_33785964_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.209412", - "last_seen": "2025-06-01T22:05:50.547916", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.377918, - 51.55688 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160386431", - "info": { - "identifier": 160386431, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160386431", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/160386431/84788_33799296_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.014464", - "last_seen": "2025-06-01T22:05:57.327175", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265623, - 51.50206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3922.0, - "url": "https://www.rightmove.co.uk/properties/160387796", - "info": { - "identifier": 160387796, - "sqm_ocr": null, - "price": 3922.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160387796", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/160387796/120463_33799398_IMG_00_0000_max_656x437.png", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.124832", - "last_seen": "2025-06-01T22:06:15.981502", - "price": 3921 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159099, - 51.523098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3163.0, - "url": "https://www.rightmove.co.uk/properties/160388795", - "info": { - "identifier": 160388795, - "sqm_ocr": null, - "price": 3163.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160388795", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Keating Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106135/160388795/106135_32622462_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.274548", - "last_seen": "2025-06-01T22:05:59.496296", - "price": 3163 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107185, - 51.471004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.61, - "qmprice": 42.05, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/160391444", - "info": { - "identifier": 160391444, - "sqm_ocr": 85.61, - "price": 3600.0, - "price_per_sqm": 42.051162247401, - "url": "https://www.rightmove.co.uk/properties/160391444", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/160391444/71419_1321775_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.232341", - "last_seen": "2025-06-01T22:05:59.426562", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127989, - 51.437153 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 49.74, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/160391546", - "info": { - "identifier": 160391546, - "sqm_ocr": 61.0, - "price": 3034.0, - "price_per_sqm": 49.73770491803279, - "url": "https://www.rightmove.co.uk/properties/160391546", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/160391546/15942_1321444_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.461088", - "last_seen": "2025-06-01T22:05:58.388642", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182443, - 51.497272 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 30.71, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160391612", - "info": { - "identifier": 160391612, - "sqm_ocr": 70.0, - "price": 2150.0, - "price_per_sqm": 30.714285714285715, - "url": "https://www.rightmove.co.uk/properties/160391612", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Rentmyhome.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242747/160391612/242747_33799653_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.989778", - "last_seen": "2025-06-01T22:06:00.747325", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043366, - 51.487373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.0, - "qmprice": 26.09, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160391927", - "info": { - "identifier": 160391927, - "sqm_ocr": 115.0, - "price": 3000.0, - "price_per_sqm": 26.08695652173913, - "url": "https://www.rightmove.co.uk/properties/160391927", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Akelius Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102505/160391927/102505_40016-115_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.972205", - "last_seen": "2025-06-01T22:06:07.423768", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00397, - 51.54776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3495.0, - "url": "https://www.rightmove.co.uk/properties/160392287", - "info": { - "identifier": 160392287, - "sqm_ocr": null, - "price": 3495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160392287", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Legacy Property Consultants Ltd", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/139k/138659/160392287/138659_103650001086_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.271372", - "last_seen": "2025-06-01T22:06:15.379132", - "price": 3495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1809, - 51.53422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160393676", - "info": { - "identifier": 160393676, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160393676", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Lawrence Rand", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46205/160393676/46205_348fd201-02e3-4188-a5a5-62d0825321eb_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.040639", - "last_seen": "2025-06-01T22:05:50.471344", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.379936, - 51.579243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.8, - "qmprice": 24.28, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160394294", - "info": { - "identifier": 160394294, - "sqm_ocr": 96.8, - "price": 2350.0, - "price_per_sqm": 24.276859504132233, - "url": "https://www.rightmove.co.uk/properties/160394294", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Wembley Park Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80783/160394294/80783_130797_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.411645", - "last_seen": "2025-06-01T22:05:40.104027", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28496, - 51.55827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160395317", - "info": { - "identifier": 160395317, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160395317", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/160395317/32793_39037_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.504724", - "last_seen": "2025-06-01T22:05:40.241424", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22797, - 51.54717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3259.0, - "url": "https://www.rightmove.co.uk/properties/160395377", - "info": { - "identifier": 160395377, - "sqm_ocr": null, - "price": 3259.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160395377", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Wembley Park Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80783/160395377/80783_2525178_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.459394", - "last_seen": "2025-06-01T22:05:40.182732", - "price": 3259.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276363, - 51.558353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.8, - "qmprice": 26.82, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/160395497", - "info": { - "identifier": 160395497, - "sqm_ocr": 98.8, - "price": 2650.0, - "price_per_sqm": 26.82186234817814, - "url": "https://www.rightmove.co.uk/properties/160395497", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/160395497/15981_1319142_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.362499", - "last_seen": "2025-06-01T22:06:12.993553", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16186, - 51.442753 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 29.89, - "rooms": 2, - "total_price": 2254.0, - "url": "https://www.rightmove.co.uk/properties/160395509", - "info": { - "identifier": 160395509, - "sqm_ocr": 75.4, - "price": 2254.0, - "price_per_sqm": 29.89389920424403, - "url": "https://www.rightmove.co.uk/properties/160395509", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/160395509/48101_1321788_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.947170", - "last_seen": "2025-06-01T22:06:03.196005", - "price": 2254.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.027363, - 51.5051 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.38, - "qmprice": 38.85, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160395692", - "info": { - "identifier": 160395692, - "sqm_ocr": 100.38, - "price": 3900.0, - "price_per_sqm": 38.85236102809325, - "url": "https://www.rightmove.co.uk/properties/160395692", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77695/160395692/77695_33799945_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.845504", - "last_seen": "2025-06-01T22:06:15.527643", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140586, - 51.489113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.0, - "qmprice": 66.0, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160395929", - "info": { - "identifier": 160395929, - "sqm_ocr": 50.0, - "price": 3300.0, - "price_per_sqm": 66.0, - "url": "https://www.rightmove.co.uk/properties/160395929", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/160395929/77197_VCT_VCT_LFSYCL_465_633151246_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.800389", - "last_seen": "2025-06-01T22:05:42.274913", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136781, - 51.53724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.5, - "qmprice": 36.72, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160396064", - "info": { - "identifier": 160396064, - "sqm_ocr": 88.5, - "price": 3250.0, - "price_per_sqm": 36.72316384180791, - "url": "https://www.rightmove.co.uk/properties/160396064", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/160396064/15963_1321783_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.790614", - "last_seen": "2025-06-01T22:06:12.104828", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192766, - 51.457756 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160396280", - "info": { - "identifier": 160396280, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160396280", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3723/160396280/3723_PHL230106_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.354790", - "last_seen": "2025-06-01T22:05:43.182430", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146339, - 51.537308 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.45, - "qmprice": 25.43, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/160396427", - "info": { - "identifier": 160396427, - "sqm_ocr": 82.45, - "price": 2097.0, - "price_per_sqm": 25.433596118859914, - "url": "https://www.rightmove.co.uk/properties/160396427", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233849/160396427/233849_2662523_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.131078", - "last_seen": "2025-06-01T22:05:44.153959", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.376137, - 51.504932 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3286.0, - "url": "https://www.rightmove.co.uk/properties/160396433", - "info": { - "identifier": 160396433, - "sqm_ocr": null, - "price": 3286.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160396433", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Wembley Park Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80783/160396433/80783_2525159_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.559576", - "last_seen": "2025-06-01T22:05:40.291377", - "price": 3286.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276363, - 51.558353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.4, - "qmprice": 39.94, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/160397036", - "info": { - "identifier": 160397036, - "sqm_ocr": 62.4, - "price": 2492.0, - "price_per_sqm": 39.93589743589744, - "url": "https://www.rightmove.co.uk/properties/160397036", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52942/160397036/52942_33635765_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.982556", - "last_seen": "2025-06-01T22:06:15.774072", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137932, - 51.499207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3232.0, - "url": "https://www.rightmove.co.uk/properties/160397846", - "info": { - "identifier": 160397846, - "sqm_ocr": null, - "price": 3232.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160397846", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Wembley Park Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80783/160397846/80783_2523541_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.168141", - "last_seen": "2025-06-01T22:05:41.435554", - "price": 3232.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276363, - 51.558353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160399313", - "info": { - "identifier": 160399313, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160399313", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Dimension Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87953/160399313/87953_3241_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.921999", - "last_seen": "2025-06-01T22:06:02.346706", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.031347, - 51.511837 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.9, - "qmprice": 20.71, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160399526", - "info": { - "identifier": 160399526, - "sqm_ocr": 115.9, - "price": 2400.0, - "price_per_sqm": 20.707506471095773, - "url": "https://www.rightmove.co.uk/properties/160399526", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/160399526/55101_1319816_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.995065", - "last_seen": "2025-06-01T22:06:06.138634", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038023, - 51.495342 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.1, - "qmprice": 58.23, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/160399766", - "info": { - "identifier": 160399766, - "sqm_ocr": 52.1, - "price": 3034.0, - "price_per_sqm": 58.2341650671785, - "url": "https://www.rightmove.co.uk/properties/160399766", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/160399766/250739_1314673_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.930798", - "last_seen": "2025-06-01T22:05:39.598681", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26979, - 51.605064 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.4, - "qmprice": 32.7, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160399922", - "info": { - "identifier": 160399922, - "sqm_ocr": 73.4, - "price": 2400.0, - "price_per_sqm": 32.6975476839237, - "url": "https://www.rightmove.co.uk/properties/160399922", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/160399922/66771_1321533_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.247139", - "last_seen": "2025-06-01T22:05:59.443563", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117305, - 51.479675 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.3, - "qmprice": 43.25, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160400450", - "info": { - "identifier": 160400450, - "sqm_ocr": 76.3, - "price": 3300.0, - "price_per_sqm": 43.25032765399738, - "url": "https://www.rightmove.co.uk/properties/160400450", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47640/160400450/47640_33800380_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.355226", - "last_seen": "2025-06-01T22:05:47.964959", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080869, - 51.53277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.8, - "qmprice": 35.16, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160400489", - "info": { - "identifier": 160400489, - "sqm_ocr": 76.8, - "price": 2700.0, - "price_per_sqm": 35.15625, - "url": "https://www.rightmove.co.uk/properties/160400489", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/160400489/65785_33800384_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.661934", - "last_seen": "2025-06-01T22:06:00.238233", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139801, - 51.442863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.5, - "qmprice": 30.19, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160400495", - "info": { - "identifier": 160400495, - "sqm_ocr": 79.5, - "price": 2400.0, - "price_per_sqm": 30.18867924528302, - "url": "https://www.rightmove.co.uk/properties/160400495", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 52, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/160400495/65785_33800385_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.673996", - "last_seen": "2025-06-01T22:06:14.195953", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141905, - 51.441925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2513.0, - "url": "https://www.rightmove.co.uk/properties/160400873", - "info": { - "identifier": 160400873, - "sqm_ocr": null, - "price": 2513.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160400873", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Colet Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75829/160400873/75829_10642952_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.579720", - "last_seen": "2025-06-01T22:05:49.339026", - "price": 2513.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225277, - 51.502968 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.01, - "qmprice": 64.99, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160403423", - "info": { - "identifier": 160403423, - "sqm_ocr": 60.01, - "price": 3900.0, - "price_per_sqm": 64.98916847192135, - "url": "https://www.rightmove.co.uk/properties/160403423", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "CHARMILL RESIDENTIAL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233558/160403423/233558_33800525_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.023791", - "last_seen": "2025-06-01T22:05:42.804549", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146353, - 51.537308 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.7, - "qmprice": 47.63, - "rooms": 4, - "total_price": 3796.0, - "url": "https://www.rightmove.co.uk/properties/160404071", - "info": { - "identifier": 160404071, - "sqm_ocr": 79.7, - "price": 3796.0, - "price_per_sqm": 47.62860727728984, - "url": "https://www.rightmove.co.uk/properties/160404071", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/160404071/191255_33762124_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.394191", - "last_seen": "2025-06-01T22:06:10.394191", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063049, - 51.50659 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.44, - "qmprice": 26.19, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160405358", - "info": { - "identifier": 160405358, - "sqm_ocr": 95.44, - "price": 2500.0, - "price_per_sqm": 26.19446772841576, - "url": "https://www.rightmove.co.uk/properties/160405358", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Century 21 Royale", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/180k/179552/160405358/179552_R210004_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.298286", - "last_seen": "2025-06-01T22:06:01.111078", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238133, - 51.399628 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.8, - "qmprice": 35.02, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160405694", - "info": { - "identifier": 160405694, - "sqm_ocr": 92.8, - "price": 3250.0, - "price_per_sqm": 35.02155172413793, - "url": "https://www.rightmove.co.uk/properties/160405694", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/160405694/108515_1321824_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.226408", - "last_seen": "2025-06-01T22:05:58.016893", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196974, - 51.492634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160405721", - "info": { - "identifier": 160405721, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160405721", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 28, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160405721/96668_244499408042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.313595, - 51.49792 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160405835", - "info": { - "identifier": 160405835, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160405835", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71339/160405835/71339_0483_HRT048301548_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.381768", - "last_seen": "2025-06-01T22:05:51.079016", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.420287, - 51.515785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/160406018", - "info": { - "identifier": 160406018, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160406018", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Vantage Properties & Management Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/3k/2521/160406018/2521_VANTA_000717_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.090097", - "last_seen": "2025-06-01T22:06:08.041796", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068522, - 51.51031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/160406771", - "info": { - "identifier": 160406771, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160406771", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50074/160406771/50074_P298648_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.300376", - "last_seen": "2025-06-01T22:05:48.860714", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22638, - 51.51028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.2, - "qmprice": 67.01, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160407116", - "info": { - "identifier": 160407116, - "sqm_ocr": 58.2, - "price": 3900.0, - "price_per_sqm": 67.01030927835052, - "url": "https://www.rightmove.co.uk/properties/160407116", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157394/160407116/157394_PHL170060_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.645666", - "last_seen": "2025-06-01T22:05:41.971963", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146353, - 51.537308 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.6, - "qmprice": 50.44, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160407386", - "info": { - "identifier": 160407386, - "sqm_ocr": 45.6, - "price": 2300.0, - "price_per_sqm": 50.43859649122807, - "url": "https://www.rightmove.co.uk/properties/160407386", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Nicholls Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87224/160407386/87224_PRA12828_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.801798", - "last_seen": "2025-06-01T22:05:58.920946", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30608, - 51.361473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.71, - "qmprice": 34.48, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160407701", - "info": { - "identifier": 160407701, - "sqm_ocr": 66.71, - "price": 2300.0, - "price_per_sqm": 34.477589566781596, - "url": "https://www.rightmove.co.uk/properties/160407701", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Parkes Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205670/160407701/205670_PEA250051_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.235857", - "last_seen": "2025-06-01T22:05:44.513535", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.275017, - 51.512177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.0, - "qmprice": 57.14, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160409585", - "info": { - "identifier": 160409585, - "sqm_ocr": 49.0, - "price": 2800.0, - "price_per_sqm": 57.142857142857146, - "url": "https://www.rightmove.co.uk/properties/160409585", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51301/160409585/51301_KEL240230_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.930269", - "last_seen": "2025-06-01T22:05:58.336234", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194577, - 51.50779 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160414436", - "info": { - "identifier": 160414436, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160414436", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 35, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160414436/96668_236532326012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.171088", - "last_seen": "2025-06-01T22:05:44.859497", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.266234, - 51.52022 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.01, - "qmprice": 64.99, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160415978", - "info": { - "identifier": 160415978, - "sqm_ocr": 60.01, - "price": 3900.0, - "price_per_sqm": 64.98916847192135, - "url": "https://www.rightmove.co.uk/properties/160415978", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Robert Irving Burns", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75301/160415978/75301_RIB230138_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.914964", - "last_seen": "2025-06-01T22:05:42.334962", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146339, - 51.53729 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.8, - "qmprice": 60.19, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160416653", - "info": { - "identifier": 160416653, - "sqm_ocr": 64.8, - "price": 3900.0, - "price_per_sqm": 60.18518518518519, - "url": "https://www.rightmove.co.uk/properties/160416653", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 54, - "status": null, - "last_seen": 0, - "agency": "Capital Heights Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55386/160416653/55386_12645476_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.071972", - "last_seen": "2025-06-01T22:06:07.239689", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009518, - 51.548386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.8, - "qmprice": 43.84, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/160417694", - "info": { - "identifier": 160417694, - "sqm_ocr": 58.8, - "price": 2578.0, - "price_per_sqm": 43.843537414965986, - "url": "https://www.rightmove.co.uk/properties/160417694", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "ADN Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283532/160417694/283532_33801504_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.584511", - "last_seen": "2025-06-01T22:05:55.842809", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196832, - 51.554676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.51, - "qmprice": 27.87, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160418156", - "info": { - "identifier": 160418156, - "sqm_ocr": 91.51, - "price": 2550.0, - "price_per_sqm": 27.865807015626707, - "url": "https://www.rightmove.co.uk/properties/160418156", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Pinnacle Housing Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212189/160418156/212189_2777_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.174018", - "last_seen": "2025-06-01T22:06:02.954248", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03958, - 51.50227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.7, - "qmprice": 24.78, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160418660", - "info": { - "identifier": 160418660, - "sqm_ocr": 80.7, - "price": 2000.0, - "price_per_sqm": 24.783147459727385, - "url": "https://www.rightmove.co.uk/properties/160418660", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209807/160418660/209807_GER252089_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.551300", - "last_seen": "2025-06-01T22:05:46.819548", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.068827, - 51.47263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.9, - "qmprice": 25.61, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160419824", - "info": { - "identifier": 160419824, - "sqm_ocr": 85.9, - "price": 2200.0, - "price_per_sqm": 25.61117578579744, - "url": "https://www.rightmove.co.uk/properties/160419824", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137369/160419824/137369_1321896_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.791418", - "last_seen": "2025-06-01T22:06:11.627384", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015873, - 51.596973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.6, - "qmprice": 60.75, - "rooms": 2, - "total_price": 3499.0, - "url": "https://www.rightmove.co.uk/properties/160419920", - "info": { - "identifier": 160419920, - "sqm_ocr": 57.6, - "price": 3499.0, - "price_per_sqm": 60.74652777777778, - "url": "https://www.rightmove.co.uk/properties/160419920", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lurot Brand", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84980/160419920/84980_HYL180003_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.390507", - "last_seen": "2025-06-01T22:06:15.286906", - "price": 3499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138159, - 51.488625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.1, - "qmprice": 36.61, - "rooms": 2, - "total_price": 2530.0, - "url": "https://www.rightmove.co.uk/properties/160420022", - "info": { - "identifier": 160420022, - "sqm_ocr": 69.1, - "price": 2530.0, - "price_per_sqm": 36.61360347322721, - "url": "https://www.rightmove.co.uk/properties/160420022", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/160420022/111056_1321381_IMG_00_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.149762", - "last_seen": "2025-06-01T20:19:58.149762", - "price": 2530.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043571, - 51.511772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 39.72, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/160420811", - "info": { - "identifier": 160420811, - "sqm_ocr": 60.0, - "price": 2383.0, - "price_per_sqm": 39.71666666666667, - "url": "https://www.rightmove.co.uk/properties/160420811", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Goldschmidt & Howland", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73968/160420811/73968_2624790_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.117642", - "last_seen": "2025-06-01T22:05:38.917855", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197128, - 51.580105 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.2, - "qmprice": 28.1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/160422740", - "info": { - "identifier": 160422740, - "sqm_ocr": 103.2, - "price": 2900.0, - "price_per_sqm": 28.100775193798448, - "url": "https://www.rightmove.co.uk/properties/160422740", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Rolfe East", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5252/160422740/5252_33801861_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.884566", - "last_seen": "2025-06-01T22:05:45.166135", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31191, - 51.5207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 32.17, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/160424249", - "info": { - "identifier": 160424249, - "sqm_ocr": 69.9, - "price": 2249.0, - "price_per_sqm": 32.174535050071526, - "url": "https://www.rightmove.co.uk/properties/160424249", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202016/160424249/202016_33787681_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.557950", - "last_seen": "2025-06-01T22:05:44.232175", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.336522, - 51.50619 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160424585", - "info": { - "identifier": 160424585, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160424585", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Cosway Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9970/160424585/9970_33801995_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.052937", - "last_seen": "2025-06-01T22:05:39.846327", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.256986, - 51.62441 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.5, - "qmprice": 28.39, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160424588", - "info": { - "identifier": 160424588, - "sqm_ocr": 77.5, - "price": 2200.0, - "price_per_sqm": 28.387096774193548, - "url": "https://www.rightmove.co.uk/properties/160424588", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72234/160424588/72234_RWL170104_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.561134", - "last_seen": "2025-06-01T22:06:07.727020", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.012916, - 51.53046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 151.8, - "qmprice": 16.47, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160424654", - "info": { - "identifier": 160424654, - "sqm_ocr": 151.8, - "price": 2500.0, - "price_per_sqm": 16.46903820816864, - "url": "https://www.rightmove.co.uk/properties/160424654", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "jdm", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/169k/168275/160424654/168275_LLO240227_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.330346", - "last_seen": "2025-06-01T22:05:41.674658", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.113674, - 51.362682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 43.14, - "qmprice": 49.72, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/160424915", - "info": { - "identifier": 160424915, - "sqm_ocr": 43.14, - "price": 2145.0, - "price_per_sqm": 49.72183588317107, - "url": "https://www.rightmove.co.uk/properties/160424915", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/160424915/16023_1321945_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.122020", - "last_seen": "2025-06-01T22:05:57.906602", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181504, - 51.480328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160425503", - "info": { - "identifier": 160425503, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160425503", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Una Living", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87553/160425503/87553_101435001889_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.772798", - "last_seen": "2025-06-01T22:05:40.552527", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28255, - 51.53018 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.9, - "qmprice": 45.51, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160425827", - "info": { - "identifier": 160425827, - "sqm_ocr": 87.9, - "price": 4000.0, - "price_per_sqm": 45.50625711035267, - "url": "https://www.rightmove.co.uk/properties/160425827", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Knightsbridge Land", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226406/160425827/226406_RL0035_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.528621", - "last_seen": "2025-06-01T22:05:59.299192", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128639, - 51.481144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.2, - "qmprice": 43.16, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/160425830", - "info": { - "identifier": 160425830, - "sqm_ocr": 89.2, - "price": 3850.0, - "price_per_sqm": 43.16143497757847, - "url": "https://www.rightmove.co.uk/properties/160425830", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Knightsbridge Land", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226406/160425830/226406_RL0117_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.529698", - "last_seen": "2025-06-01T22:05:59.292227", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12827, - 51.48142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.8, - "qmprice": 26.81, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160428056", - "info": { - "identifier": 160428056, - "sqm_ocr": 85.8, - "price": 2300.0, - "price_per_sqm": 26.806526806526808, - "url": "https://www.rightmove.co.uk/properties/160428056", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35975/160428056/35975_06761819_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.428409", - "last_seen": "2025-06-01T22:05:51.554786", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.410818, - 51.600254 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160428089", - "info": { - "identifier": 160428089, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160428089", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44870/160428089/44870_33802130_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.238191", - "last_seen": "2025-06-01T22:05:39.643075", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21972, - 51.584015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.8, - "qmprice": 35.39, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/160428341", - "info": { - "identifier": 160428341, - "sqm_ocr": 98.8, - "price": 3497.0, - "price_per_sqm": 35.39473684210527, - "url": "https://www.rightmove.co.uk/properties/160428341", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Chard", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141944/160428341/141944_33802174_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.141379", - "last_seen": "2025-06-01T22:06:12.265725", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145802, - 51.476044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.62, - "qmprice": 61.3, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160428680", - "info": { - "identifier": 160428680, - "sqm_ocr": 63.62, - "price": 3900.0, - "price_per_sqm": 61.30147752279158, - "url": "https://www.rightmove.co.uk/properties/160428680", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/160428680/15948_1321789_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.926531", - "last_seen": "2025-06-01T22:05:49.078398", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210035, - 51.47175 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.62, - "qmprice": 37.47, - "rooms": 2, - "total_price": 2384.0, - "url": "https://www.rightmove.co.uk/properties/160428683", - "info": { - "identifier": 160428683, - "sqm_ocr": 63.62, - "price": 2384.0, - "price_per_sqm": 37.472492926752594, - "url": "https://www.rightmove.co.uk/properties/160428683", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/160428683/15948_1321795_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.928996", - "last_seen": "2025-06-01T22:05:49.080453", - "price": 2384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210035, - 51.47175 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.5, - "qmprice": 39.22, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160428695", - "info": { - "identifier": 160428695, - "sqm_ocr": 76.5, - "price": 3000.0, - "price_per_sqm": 39.21568627450981, - "url": "https://www.rightmove.co.uk/properties/160428695", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Curtis And Parker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278867/160428695/278867_33802294_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.366488", - "last_seen": "2025-06-01T22:05:59.838520", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120202, - 51.493977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.2, - "qmprice": 39.37, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160428782", - "info": { - "identifier": 160428782, - "sqm_ocr": 76.2, - "price": 3000.0, - "price_per_sqm": 39.37007874015748, - "url": "https://www.rightmove.co.uk/properties/160428782", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/160428782/111050_1321993_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.528828", - "last_seen": "2025-06-01T22:06:01.156428", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186331, - 51.43088 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 34.71, - "rooms": 2, - "total_price": 2499.0, - "url": "https://www.rightmove.co.uk/properties/160429721", - "info": { - "identifier": 160429721, - "sqm_ocr": 72.0, - "price": 2499.0, - "price_per_sqm": 34.708333333333336, - "url": "https://www.rightmove.co.uk/properties/160429721", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160429721/96668_244434107042025_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.410954", - "last_seen": "2025-06-01T22:06:10.410954", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026027, - 51.51824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.0, - "qmprice": 27.78, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160430357", - "info": { - "identifier": 160430357, - "sqm_ocr": 90.0, - "price": 2500.0, - "price_per_sqm": 27.77777777777778, - "url": "https://www.rightmove.co.uk/properties/160430357", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12686/160430357/12686_NFL160828_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.480200", - "last_seen": "2025-06-01T22:05:56.949532", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277111, - 51.586887 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.8, - "qmprice": 26.29, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/160430603", - "info": { - "identifier": 160430603, - "sqm_ocr": 100.8, - "price": 2650.0, - "price_per_sqm": 26.28968253968254, - "url": "https://www.rightmove.co.uk/properties/160430603", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14614/160430603/14614_BLA220710_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.133370", - "last_seen": "2025-06-01T22:06:00.730426", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006737, - 51.466606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160431158", - "info": { - "identifier": 160431158, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160431158", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111863/160431158/111863_WSL150003_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.610867", - "last_seen": "2025-06-01T22:06:15.834228", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138159, - 51.488625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 30.0, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160433477", - "info": { - "identifier": 160433477, - "sqm_ocr": 75.0, - "price": 2250.0, - "price_per_sqm": 30.0, - "url": "https://www.rightmove.co.uk/properties/160433477", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/160433477/272819_33802460_IMG_24_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.862741", - "last_seen": "2025-06-01T22:05:39.780278", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238272, - 51.59573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3857.0, - "url": "https://www.rightmove.co.uk/properties/160435877", - "info": { - "identifier": 160435877, - "sqm_ocr": null, - "price": 3857.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160435877", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/160435877/272819_33802473_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.407966", - "last_seen": "2025-06-01T17:39:04.865418", - "price": 3857.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027755, - 51.507206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.1, - "qmprice": 36.27, - "rooms": 3, - "total_price": 3449.0, - "url": "https://www.rightmove.co.uk/properties/160437107", - "info": { - "identifier": 160437107, - "sqm_ocr": 95.1, - "price": 3449.0, - "price_per_sqm": 36.267087276551, - "url": "https://www.rightmove.co.uk/properties/160437107", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96151/160437107/96151_CSZ171488_L_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.959297", - "last_seen": "2025-06-01T22:05:49.134758", - "price": 3449.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20752, - 51.470825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.4, - "qmprice": 50.43, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160439075", - "info": { - "identifier": 160439075, - "sqm_ocr": 69.4, - "price": 3500.0, - "price_per_sqm": 50.43227665706051, - "url": "https://www.rightmove.co.uk/properties/160439075", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3723/160439075/3723_PHL240054_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.617488", - "last_seen": "2025-06-01T22:05:56.594437", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179582, - 51.548717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/160440626", - "info": { - "identifier": 160440626, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160440626", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/160440626/194222_HRP250291_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.577773", - "last_seen": "2025-06-01T22:06:01.395514", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229386, - 51.40789 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 29.86, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160443260", - "info": { - "identifier": 160443260, - "sqm_ocr": 72.0, - "price": 2150.0, - "price_per_sqm": 29.86111111111111, - "url": "https://www.rightmove.co.uk/properties/160443260", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84839/160443260/84839_33590821_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.011973", - "last_seen": "2025-06-01T22:05:51.846132", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.343008, - 51.480534 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160443512", - "info": { - "identifier": 160443512, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160443512", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Core London Property Advisors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266807/160443512/266807_RX570246_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.766427", - "last_seen": "2025-06-01T22:05:44.549535", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3877, - 51.5071 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.3, - "qmprice": 38.76, - "rooms": 2, - "total_price": 2531.0, - "url": "https://www.rightmove.co.uk/properties/160444115", - "info": { - "identifier": 160444115, - "sqm_ocr": 65.3, - "price": 2531.0, - "price_per_sqm": 38.75957120980092, - "url": "https://www.rightmove.co.uk/properties/160444115", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65911/160444115/65911_WAQ012584191_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.562152", - "last_seen": "2025-06-01T20:19:58.220058", - "price": 2426 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043088, - 51.511745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.4, - "qmprice": 34.31, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160445879", - "info": { - "identifier": 160445879, - "sqm_ocr": 71.4, - "price": 2450.0, - "price_per_sqm": 34.31372549019608, - "url": "https://www.rightmove.co.uk/properties/160445879", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/160445879/15975_1321581_IMG_01_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.455349", - "last_seen": "2025-06-01T22:06:01.614680", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202916, - 51.420612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.9, - "qmprice": 31.55, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160445888", - "info": { - "identifier": 160445888, - "sqm_ocr": 72.9, - "price": 2300.0, - "price_per_sqm": 31.55006858710562, - "url": "https://www.rightmove.co.uk/properties/160445888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/160445888/227810_1319901_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.518771", - "last_seen": "2025-06-01T22:05:46.778159", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.081329, - 51.495087 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.9, - "qmprice": 28.43, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160447043", - "info": { - "identifier": 160447043, - "sqm_ocr": 80.9, - "price": 2300.0, - "price_per_sqm": 28.430160692212606, - "url": "https://www.rightmove.co.uk/properties/160447043", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52713/160447043/52713_33803173_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.612503", - "last_seen": "2025-06-01T22:06:04.755678", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.371961, - 51.417 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.3, - "qmprice": 47.75, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160449656", - "info": { - "identifier": 160449656, - "sqm_ocr": 73.3, - "price": 3500.0, - "price_per_sqm": 47.748976807639835, - "url": "https://www.rightmove.co.uk/properties/160449656", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/160449656/101522_1322030_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.106789", - "last_seen": "2025-06-01T22:05:47.449624", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076456, - 51.538097 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.5, - "qmprice": 35.9, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160449716", - "info": { - "identifier": 160449716, - "sqm_ocr": 58.5, - "price": 2100.0, - "price_per_sqm": 35.8974358974359, - "url": "https://www.rightmove.co.uk/properties/160449716", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/160449716/15969_1322025_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.200586", - "last_seen": "2025-06-01T22:05:45.097847", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.286422, - 51.511078 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.6, - "qmprice": 34.3, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160449722", - "info": { - "identifier": 160449722, - "sqm_ocr": 65.6, - "price": 2250.0, - "price_per_sqm": 34.29878048780488, - "url": "https://www.rightmove.co.uk/properties/160449722", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/160449722/15969_1322035_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.109174", - "last_seen": "2025-06-01T22:05:45.130731", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.288738, - 51.503506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.9, - "qmprice": 43.63, - "rooms": 2, - "total_price": 3879.0, - "url": "https://www.rightmove.co.uk/properties/160449947", - "info": { - "identifier": 160449947, - "sqm_ocr": 88.9, - "price": 3879.0, - "price_per_sqm": 43.633295838020246, - "url": "https://www.rightmove.co.uk/properties/160449947", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/160449947/108515_1322051_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.382051", - "last_seen": "2025-06-01T22:05:57.627500", - "price": 3879.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186402, - 51.48235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.1, - "qmprice": 28.94, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160450112", - "info": { - "identifier": 160450112, - "sqm_ocr": 69.1, - "price": 2000.0, - "price_per_sqm": 28.943560057887122, - "url": "https://www.rightmove.co.uk/properties/160450112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Xavi & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88636/160450112/88636_1113_XAVI_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.019732", - "last_seen": "2025-06-01T22:05:52.421892", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302757, - 51.49011 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/160451228", - "info": { - "identifier": 160451228, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160451228", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "The Online Letting Agents Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82831/160451228/82831_8230_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.995187", - "last_seen": "2025-06-01T22:05:50.851338", - "price": 2249.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.379287, - 51.56647 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.4, - "qmprice": 25.49, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160452179", - "info": { - "identifier": 160452179, - "sqm_ocr": 82.4, - "price": 2100.0, - "price_per_sqm": 25.485436893203882, - "url": "https://www.rightmove.co.uk/properties/160452179", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Holland Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36516/160452179/36516_9990_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.665054", - "last_seen": "2025-06-01T22:05:46.206434", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022, - 51.47446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 30.3, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160453091", - "info": { - "identifier": 160453091, - "sqm_ocr": 66.0, - "price": 2000.0, - "price_per_sqm": 30.303030303030305, - "url": "https://www.rightmove.co.uk/properties/160453091", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/160453091/221711_1254_EAF_110067_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.983370", - "last_seen": "2025-06-01T20:19:58.189296", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03582, - 51.53342 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.64, - "qmprice": 45.96, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/160453325", - "info": { - "identifier": 160453325, - "sqm_ocr": 63.64, - "price": 2925.0, - "price_per_sqm": 45.96165933375236, - "url": "https://www.rightmove.co.uk/properties/160453325", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50637/160453325/50637_HPQ012483283_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.395934", - "last_seen": "2025-06-01T22:06:14.434084", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1702, - 51.5138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160453889", - "info": { - "identifier": 160453889, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160453889", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Roundtree Real Estate", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46965/160453889/46965_57623_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.126581", - "last_seen": "2025-06-01T22:05:38.928488", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21976, - 51.58401 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 43.2, - "rooms": 2, - "total_price": 2851.0, - "url": "https://www.rightmove.co.uk/properties/160454039", - "info": { - "identifier": 160454039, - "sqm_ocr": 66.0, - "price": 2851.0, - "price_per_sqm": 43.196969696969695, - "url": "https://www.rightmove.co.uk/properties/160454039", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Square Quarters", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76064/160454039/76064_189208_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.407257", - "last_seen": "2025-06-01T22:05:49.833636", - "price": 2851 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116981, - 51.588367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.8, - "qmprice": 38.84, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160454789", - "info": { - "identifier": 160454789, - "sqm_ocr": 70.8, - "price": 2750.0, - "price_per_sqm": 38.84180790960452, - "url": "https://www.rightmove.co.uk/properties/160454789", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/160454789/111050_1321805_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.547497", - "last_seen": "2025-06-01T22:06:13.672320", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177721, - 51.441174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160455800", - "info": { - "identifier": 160455800, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160455800", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hiltons Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.329478", - "last_seen": "2025-06-01T22:05:52.206560", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42438, - 51.45592 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/160456217", - "info": { - "identifier": 160456217, - "sqm_ocr": null, - "price": 3050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160456217", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Complete Prime Residential Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53946/160456217/53946_108517_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.238198", - "last_seen": "2025-06-01T22:05:56.714387", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.010008, - 51.50012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 151.7, - "qmprice": 17.14, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160456505", - "info": { - "identifier": 160456505, - "sqm_ocr": 151.7, - "price": 2600.0, - "price_per_sqm": 17.13909030982202, - "url": "https://www.rightmove.co.uk/properties/160456505", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Cameron Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17627/160456505/17627_33803809_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.493714", - "last_seen": "2025-06-01T22:05:51.472349", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.463172, - 51.50592 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.59, - "qmprice": 30.68, - "rooms": 3, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/160456715", - "info": { - "identifier": 160456715, - "sqm_ocr": 120.59, - "price": 3700.0, - "price_per_sqm": 30.682477817397793, - "url": "https://www.rightmove.co.uk/properties/160456715", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60770/160456715/60770_P0653E4309_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.958959", - "last_seen": "2025-06-01T22:05:59.563142", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12673, - 51.45355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 128.4, - "qmprice": 30.37, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160458119", - "info": { - "identifier": 160458119, - "sqm_ocr": 128.4, - "price": 3900.0, - "price_per_sqm": 30.373831775700932, - "url": "https://www.rightmove.co.uk/properties/160458119", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/160458119/15948_1320931_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.845956", - "last_seen": "2025-06-01T22:05:56.914414", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184393, - 51.468494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 140.4, - "qmprice": 22.44, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/160459157", - "info": { - "identifier": 160459157, - "sqm_ocr": 140.4, - "price": 3150.0, - "price_per_sqm": 22.435897435897434, - "url": "https://www.rightmove.co.uk/properties/160459157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Anthony Pepe Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30656/160459157/30656_PAG250132_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.254512", - "last_seen": "2025-06-01T22:05:38.380224", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240034, - 51.647686 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.07, - "qmprice": 26.17, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160460024", - "info": { - "identifier": 160460024, - "sqm_ocr": 84.07, - "price": 2200.0, - "price_per_sqm": 26.168668966337577, - "url": "https://www.rightmove.co.uk/properties/160460024", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/160460024/77192_MCD_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.229057", - "last_seen": "2025-06-01T22:05:55.145536", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15386, - 51.61428 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.8, - "qmprice": 33.77, - "rooms": 2, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/160460030", - "info": { - "identifier": 160460030, - "sqm_ocr": 79.8, - "price": 2695.0, - "price_per_sqm": 33.771929824561404, - "url": "https://www.rightmove.co.uk/properties/160460030", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/160460030/52887_33804032_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.249848", - "last_seen": "2025-06-01T22:06:01.040851", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216802, - 51.4194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160460126", - "info": { - "identifier": 160460126, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160460126", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230516/160460126/230516_CSG201904_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.227084", - "last_seen": "2025-06-01T22:05:58.988467", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12539, - 51.486336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/160460243", - "info": { - "identifier": 160460243, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160460243", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Marc and Partners", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201956/160460243/201956_MAY230541_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.053807", - "last_seen": "2025-06-01T22:05:54.389939", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096077, - 51.529167 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.17, - "qmprice": 41.16, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160460564", - "info": { - "identifier": 160460564, - "sqm_ocr": 80.17, - "price": 3300.0, - "price_per_sqm": 41.16252962454784, - "url": "https://www.rightmove.co.uk/properties/160460564", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/160460564/26207_HEA197323_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.086726, - 51.53017 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160461197", - "info": { - "identifier": 160461197, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160461197", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Cottage Fields", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65535/160461197/65535_00002393-e335-4975-9402-e0b4b45e812e_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.936462", - "last_seen": "2025-06-01T22:05:54.855877", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11971, - 51.611774 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160462184", - "info": { - "identifier": 160462184, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160462184", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Beaufort Park Colindale", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141893/160462184/141893_000020430_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.855218", - "last_seen": "2025-06-01T22:05:39.602913", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24111, - 51.59557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.4, - "qmprice": 42.03, - "rooms": 2, - "total_price": 3337.0, - "url": "https://www.rightmove.co.uk/properties/160462706", - "info": { - "identifier": 160462706, - "sqm_ocr": 79.4, - "price": 3337.0, - "price_per_sqm": 42.02770780856423, - "url": "https://www.rightmove.co.uk/properties/160462706", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80905/160462706/80905_BSL170535_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.586449", - "last_seen": "2025-06-01T22:05:55.616469", - "price": 3336 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128881, - 51.515835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.3, - "qmprice": 62.21, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160463465", - "info": { - "identifier": 160463465, - "sqm_ocr": 64.3, - "price": 4000.0, - "price_per_sqm": 62.20839813374806, - "url": "https://www.rightmove.co.uk/properties/160463465", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/160463465/55101_1322127_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.430242", - "last_seen": "2025-06-01T22:06:05.682317", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063759, - 51.4931 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.9, - "qmprice": 42.6, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160464383", - "info": { - "identifier": 160464383, - "sqm_ocr": 93.9, - "price": 4000.0, - "price_per_sqm": 42.59850905218317, - "url": "https://www.rightmove.co.uk/properties/160464383", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/160464383/84827_33804289_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.947664", - "last_seen": "2025-06-01T22:05:49.141304", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206273, - 51.49146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160465805", - "info": { - "identifier": 160465805, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160465805", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 36, - "status": null, - "last_seen": 0, - "agency": "Spencer James Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283697/160465805/283697_12990_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.670015", - "last_seen": "2025-06-01T22:05:45.259726", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.373512, - 51.505157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.2, - "qmprice": 33.24, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160467185", - "info": { - "identifier": 160467185, - "sqm_ocr": 75.2, - "price": 2500.0, - "price_per_sqm": 33.244680851063826, - "url": "https://www.rightmove.co.uk/properties/160467185", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "Churchill Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10141/160467185/10141_33804421_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.836003", - "last_seen": "2025-06-01T22:06:12.028007", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.015065, - 51.629143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160467311", - "info": { - "identifier": 160467311, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160467311", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "SAB - Saint Andrews Bureau Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105104/160467311/105104_103035004881_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.962735", - "last_seen": "2025-06-01T22:05:38.650110", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23836, - 51.59571 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160468379", - "info": { - "identifier": 160468379, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160468379", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19059/160468379/19059_5d5438bc-df6f-4ac8-adab-8959b2bbba94_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.046782", - "last_seen": "2025-06-01T22:05:50.635906", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.292505, - 51.599182 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.78, - "qmprice": 56.25, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160468550", - "info": { - "identifier": 160468550, - "sqm_ocr": 57.78, - "price": 3250.0, - "price_per_sqm": 56.2478366216684, - "url": "https://www.rightmove.co.uk/properties/160468550", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44510/160468550/44510_HYL210051_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.339330", - "last_seen": "2025-06-01T22:06:15.350629", - "price": 3195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162177, - 51.517612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.2, - "qmprice": 28.66, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160468790", - "info": { - "identifier": 160468790, - "sqm_ocr": 94.2, - "price": 2700.0, - "price_per_sqm": 28.662420382165603, - "url": "https://www.rightmove.co.uk/properties/160468790", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/160468790/108947_1322142_IMG_02_0010_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.174998", - "last_seen": "2025-06-01T22:05:50.531297", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.333286, - 51.579144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160469096", - "info": { - "identifier": 160469096, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160469096", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/160469096/136148_2493682_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.673236", - "last_seen": "2025-06-01T22:06:13.833151", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13041, - 51.4819 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 41.09, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/160469627", - "info": { - "identifier": 160469627, - "sqm_ocr": 58.0, - "price": 2383.0, - "price_per_sqm": 41.08620689655172, - "url": "https://www.rightmove.co.uk/properties/160469627", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Glentree Estates Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/191k/190037/160469627/190037_33804568_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.295065", - "last_seen": "2025-06-01T22:05:56.634781", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197953, - 51.579617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.18, - "qmprice": 29.36, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160470128", - "info": { - "identifier": 160470128, - "sqm_ocr": 102.18, - "price": 3000.0, - "price_per_sqm": 29.35995302407516, - "url": "https://www.rightmove.co.uk/properties/160470128", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/160470128/52415_32732725_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.229728", - "last_seen": "2025-06-01T22:06:13.030273", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140005, - 51.423267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.9, - "qmprice": 30.27, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160470359", - "info": { - "identifier": 160470359, - "sqm_ocr": 85.9, - "price": 2600.0, - "price_per_sqm": 30.26775320139697, - "url": "https://www.rightmove.co.uk/properties/160470359", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/160470359/25485_33804603_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.458778", - "last_seen": "2025-06-01T22:05:42.724718", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190939, - 51.55174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160471871", - "info": { - "identifier": 160471871, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160471871", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/160471871/67576_RL1336_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.804636", - "last_seen": "2025-06-01T22:06:12.015748", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024598, - 51.586155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160472129", - "info": { - "identifier": 160472129, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160472129", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/160472129/80105_5874_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.454324", - "last_seen": "2025-06-01T22:05:46.671375", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.046986, - 51.46847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/160473962", - "info": { - "identifier": 160473962, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160473962", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "CHAMPS PROPERTY", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287132/160473962/287132_champs_795550048_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.542857", - "last_seen": "2025-06-01T22:05:59.489759", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11467, - 51.48631 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.6, - "qmprice": 52.41, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/160473971", - "info": { - "identifier": 160473971, - "sqm_ocr": 70.6, - "price": 3700.0, - "price_per_sqm": 52.40793201133145, - "url": "https://www.rightmove.co.uk/properties/160473971", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64127/160473971/64127_1321709_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.387445", - "last_seen": "2025-06-01T22:05:53.397242", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135277, - 51.56506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 28.09, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160474733", - "info": { - "identifier": 160474733, - "sqm_ocr": 89.0, - "price": 2500.0, - "price_per_sqm": 28.089887640449437, - "url": "https://www.rightmove.co.uk/properties/160474733", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160474733/96668_244655509042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.523655", - "last_seen": "2025-06-01T22:05:47.032419", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.002608, - 51.48819 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.7, - "qmprice": 26.56, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160475024", - "info": { - "identifier": 160475024, - "sqm_ocr": 84.7, - "price": 2250.0, - "price_per_sqm": 26.564344746162927, - "url": "https://www.rightmove.co.uk/properties/160475024", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Christopher Nevill", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9211/160475024/9211_a4cd6d12-b1eb-4620-98ea-e1842067d69a_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.495194", - "last_seen": "2025-06-01T22:05:51.474394", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.484888, - 51.54525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/160475630", - "info": { - "identifier": 160475630, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160475630", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/160475630/146147_PR181207_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.283211", - "last_seen": "2025-06-01T22:06:08.300525", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02097, - 51.512928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 128.1, - "qmprice": 23.42, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160476359", - "info": { - "identifier": 160476359, - "sqm_ocr": 128.1, - "price": 3000.0, - "price_per_sqm": 23.4192037470726, - "url": "https://www.rightmove.co.uk/properties/160476359", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Patrick Henry", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106402/160476359/106402_12645491_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.989089", - "last_seen": "2025-06-01T22:05:59.611465", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142235, - 51.452816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.68, - "qmprice": 48.38, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160478057", - "info": { - "identifier": 160478057, - "sqm_ocr": 82.68, - "price": 4000.0, - "price_per_sqm": 48.37929366231253, - "url": "https://www.rightmove.co.uk/properties/160478057", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "LDG", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50021/160478057/50021_LDG240079_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2026", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.209173", - "last_seen": "2025-06-01T22:06:08.762884", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069928, - 51.514473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/160478429", - "info": { - "identifier": 160478429, - "sqm_ocr": null, - "price": 2648.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160478429", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/160478429/163859_2481025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.244743", - "last_seen": "2025-06-01T22:06:03.143401", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02984, - 51.49969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/160478483", - "info": { - "identifier": 160478483, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160478483", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "EGRE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82293/160478483/82293_413_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.367113", - "last_seen": "2025-06-01T17:39:04.815669", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015529, - 51.5005 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/160478534", - "info": { - "identifier": 160478534, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160478534", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/160478534/247697_102708034492_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.599395", - "last_seen": "2025-06-01T22:05:52.937249", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11291, - 51.56049 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 149.0, - "qmprice": 25.17, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160479065", - "info": { - "identifier": 160479065, - "sqm_ocr": 149.0, - "price": 3750.0, - "price_per_sqm": 25.16778523489933, - "url": "https://www.rightmove.co.uk/properties/160479065", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91855/160479065/91855_EHL250017_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.679810", - "last_seen": "2025-06-01T22:06:04.616354", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.343609, - 51.40558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.51, - "qmprice": 54.21, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/160479338", - "info": { - "identifier": 160479338, - "sqm_ocr": 64.51, - "price": 3497.0, - "price_per_sqm": 54.20864982173306, - "url": "https://www.rightmove.co.uk/properties/160479338", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22029/160479338/22029_HPL240131_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.163027", - "last_seen": "2025-06-01T22:05:57.893323", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207595, - 51.505806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160479368", - "info": { - "identifier": 160479368, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160479368", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 52, - "status": null, - "last_seen": 0, - "agency": "Century 21 Goodmayes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279887/160479368/279887_R207147_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.259758", - "last_seen": "2025-06-01T22:05:50.974670", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.193544, - 51.53489 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.5, - "qmprice": 51.09, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160479377", - "info": { - "identifier": 160479377, - "sqm_ocr": 68.5, - "price": 3500.0, - "price_per_sqm": 51.09489051094891, - "url": "https://www.rightmove.co.uk/properties/160479377", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Rolfe East", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5252/160479377/5252_33805113_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.208069", - "last_seen": "2025-06-01T22:05:44.982817", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312619, - 51.51558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3055.0, - "url": "https://www.rightmove.co.uk/properties/160479518", - "info": { - "identifier": 160479518, - "sqm_ocr": null, - "price": 3055.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160479518", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/160479518/120463_33805120_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.851503", - "last_seen": "2025-06-01T22:06:15.654186", - "price": 3055 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162489, - 51.51798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 45.44, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160479749", - "info": { - "identifier": 160479749, - "sqm_ocr": 62.0, - "price": 2817.0, - "price_per_sqm": 45.435483870967744, - "url": "https://www.rightmove.co.uk/properties/160479749", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90830/160479749/90830_SJD250093_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.822325", - "last_seen": "2025-06-01T22:06:15.230193", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176994, - 51.533104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.4, - "qmprice": 40.25, - "rooms": 2, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/160480055", - "info": { - "identifier": 160480055, - "sqm_ocr": 84.4, - "price": 3397.0, - "price_per_sqm": 40.24881516587678, - "url": "https://www.rightmove.co.uk/properties/160480055", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48695/160480055/48695_33805143_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.092684", - "last_seen": "2025-06-01T22:06:14.739564", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183391, - 51.53265 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.4, - "qmprice": 36.01, - "rooms": 2, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/160480550", - "info": { - "identifier": 160480550, - "sqm_ocr": 70.4, - "price": 2535.0, - "price_per_sqm": 36.00852272727273, - "url": "https://www.rightmove.co.uk/properties/160480550", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50966/160480550/50966_P5886K1406_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.689089", - "last_seen": "2025-06-01T22:05:48.227329", - "price": 2535 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20794, - 51.49552 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.4, - "qmprice": 38.53, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160480556", - "info": { - "identifier": 160480556, - "sqm_ocr": 58.4, - "price": 2250.0, - "price_per_sqm": 38.52739726027397, - "url": "https://www.rightmove.co.uk/properties/160480556", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72842/160480556/72842_P1035K4506_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.167848", - "last_seen": "2025-06-01T22:06:12.295056", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21028, - 51.44304 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.2, - "qmprice": 40.45, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/160480706", - "info": { - "identifier": 160480706, - "sqm_ocr": 69.2, - "price": 2799.0, - "price_per_sqm": 40.447976878612714, - "url": "https://www.rightmove.co.uk/properties/160480706", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40512/160480706/40512_33805167_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.013005", - "last_seen": "2025-06-01T22:06:06.822151", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092096, - 51.499577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2265.0, - "url": "https://www.rightmove.co.uk/properties/160481297", - "info": { - "identifier": 160481297, - "sqm_ocr": null, - "price": 2265.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160481297", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160481297/96668_244663409042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.212467", - "last_seen": "2025-06-01T22:05:39.956832", - "price": 2265.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.191534, - 51.45484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.8, - "qmprice": 36.13, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/160481543", - "info": { - "identifier": 160481543, - "sqm_ocr": 60.8, - "price": 2197.0, - "price_per_sqm": 36.13486842105263, - "url": "https://www.rightmove.co.uk/properties/160481543", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/160481543/84791_33805213_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.422009", - "last_seen": "2025-06-01T22:05:44.861625", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.310012, - 51.51711 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/160481585", - "info": { - "identifier": 160481585, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160481585", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 51, - "status": null, - "last_seen": 0, - "agency": "Jonathan Arron Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69315/160481585/69315_JOW250061_L_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.903192", - "last_seen": "2025-06-01T22:06:15.743870", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18334, - 51.531483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/160483832", - "info": { - "identifier": 160483832, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160483832", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "TQ Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274700/160483832/274700_204_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.982526", - "last_seen": "2025-06-01T22:05:40.377963", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23805, - 51.55137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 54.79, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160485383", - "info": { - "identifier": 160485383, - "sqm_ocr": 73.0, - "price": 4000.0, - "price_per_sqm": 54.794520547945204, - "url": "https://www.rightmove.co.uk/properties/160485383", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239366/160485383/239366_OER210137_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.176691", - "last_seen": "2025-06-01T22:05:57.494902", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.160156, - 51.50044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/160485866", - "info": { - "identifier": 160485866, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160485866", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160485866/96668_244692909042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.164377", - "last_seen": "2025-06-01T22:05:59.833627", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094414, - 51.44063 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/160486610", - "info": { - "identifier": 160486610, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160486610", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/160486610/275489_24112023-CN831_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.143455", - "last_seen": "2025-06-01T22:05:53.767440", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104212, - 51.52601 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.3, - "qmprice": 34.99, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160488572", - "info": { - "identifier": 160488572, - "sqm_ocr": 74.3, - "price": 2600.0, - "price_per_sqm": 34.99327052489906, - "url": "https://www.rightmove.co.uk/properties/160488572", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/160488572/15969_1322228_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.636030", - "last_seen": "2025-06-01T22:05:44.104215", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.308976, - 51.523445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/160488716", - "info": { - "identifier": 160488716, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160488716", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160488716/96668_240946606032025_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.804876", - "last_seen": "2025-06-01T22:05:48.790074", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198978, - 51.469215 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160488944", - "info": { - "identifier": 160488944, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160488944", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "AIROPERATE LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275732/160488944/275732_3BR-Hillreach-Woolwich_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.546375", - "last_seen": "2025-06-01T22:05:46.827656", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05519, - 51.48725 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160489127", - "info": { - "identifier": 160489127, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160489127", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Copperstones", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82091/160489127/82091_CR_358_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.904785", - "last_seen": "2025-06-01T22:06:15.747406", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16646, - 51.53463 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160489295", - "info": { - "identifier": 160489295, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160489295", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Property World Penge", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147248/160489295/147248_JAS36_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.264397", - "last_seen": "2025-06-01T22:05:56.675105", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06267, - 51.41174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 53.25, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/160489355", - "info": { - "identifier": 160489355, - "sqm_ocr": 59.0, - "price": 3142.0, - "price_per_sqm": 53.25423728813559, - "url": "https://www.rightmove.co.uk/properties/160489355", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52942/160489355/52942_33805472_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.771282", - "last_seen": "2025-06-01T22:06:15.144722", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141786, - 51.495495 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3796.0, - "url": "https://www.rightmove.co.uk/properties/160489610", - "info": { - "identifier": 160489610, - "sqm_ocr": null, - "price": 3796.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160489610", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157817/160489610/157817_2706229_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.450887", - "last_seen": "2025-06-01T22:06:09.088054", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02226, - 51.50171 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.94, - "qmprice": 44.87, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160490195", - "info": { - "identifier": 160490195, - "sqm_ocr": 57.94, - "price": 2600.0, - "price_per_sqm": 44.874007594062824, - "url": "https://www.rightmove.co.uk/properties/160490195", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Garrett Whitelock", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105305/160490195/105305_101341001511_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.002800", - "last_seen": "2025-06-01T22:06:04.884160", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09572, - 51.50282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.7, - "qmprice": 31.62, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160490888", - "info": { - "identifier": 160490888, - "sqm_ocr": 110.7, - "price": 3500.0, - "price_per_sqm": 31.61698283649503, - "url": "https://www.rightmove.co.uk/properties/160490888", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66897/160490888/66897_33805567_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.108323", - "last_seen": "2025-06-01T22:06:00.706326", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004566, - 51.458958 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 124.5, - "qmprice": 32.09, - "rooms": 3, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/160491440", - "info": { - "identifier": 160491440, - "sqm_ocr": 124.5, - "price": 3995.0, - "price_per_sqm": 32.088353413654616, - "url": "https://www.rightmove.co.uk/properties/160491440", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84809/160491440/84809_33802001_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.347644", - "last_seen": "2025-06-01T22:06:04.722310", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.322281, - 51.462402 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160493735", - "info": { - "identifier": 160493735, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160493735", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99271/160493735/99271_BLA250162_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.183023", - "last_seen": "2025-06-01T20:19:57.183023", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021143, - 51.488274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160494233", - "info": { - "identifier": 160494233, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160494233", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Ak247 Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261134/160494233/261134_503_Perseus_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.329170", - "last_seen": "2025-06-01T22:06:09.533527", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00839, - 51.50844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.1, - "qmprice": 40.73, - "rooms": 3, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/160496603", - "info": { - "identifier": 160496603, - "sqm_ocr": 93.1, - "price": 3792.0, - "price_per_sqm": 40.73039742212675, - "url": "https://www.rightmove.co.uk/properties/160496603", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52518/160496603/52518_BZV220212_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.568697", - "last_seen": "2025-06-01T20:19:57.568697", - "price": 3792.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006854, - 51.50504 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160498652", - "info": { - "identifier": 160498652, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160498652", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57498/160498652/57498_2678896_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.044356", - "last_seen": "2025-06-01T22:06:04.954340", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097412, - 51.49174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/160499336", - "info": { - "identifier": 160499336, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160499336", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Spencer James Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283697/160499336/283697_13487_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.768546", - "last_seen": "2025-06-01T22:06:02.652925", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.029726, - 51.49977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160499645", - "info": { - "identifier": 160499645, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160499645", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90368/160499645/90368_0607_HRT060702070_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.749858", - "last_seen": "2025-06-01T22:05:43.658806", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064513, - 51.383175 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.17, - "qmprice": 51.85, - "rooms": 3, - "total_price": 3690.0, - "url": "https://www.rightmove.co.uk/properties/160499963", - "info": { - "identifier": 160499963, - "sqm_ocr": 71.17, - "price": 3690.0, - "price_per_sqm": 51.84768863285092, - "url": "https://www.rightmove.co.uk/properties/160499963", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Quintessentially Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/208k/207578/160499963/207578_12641067_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.037749", - "last_seen": "2025-06-01T22:06:14.045110", - "price": 3690.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218431, - 51.45284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160500845", - "info": { - "identifier": 160500845, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160500845", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 52, - "status": null, - "last_seen": 0, - "agency": "BRITBRICKS", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282746/160500845/282746_brit_1704416252_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.160059", - "last_seen": "2025-06-01T22:05:50.536498", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.368308, - 51.595318 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160500872", - "info": { - "identifier": 160500872, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160500872", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hinton Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69686/160500872/69686_102800003792_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.165824", - "last_seen": "2025-06-01T22:05:50.549904", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34275, - 51.59948 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.56, - "qmprice": 41.57, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160501784", - "info": { - "identifier": 160501784, - "sqm_ocr": 68.56, - "price": 2850.0, - "price_per_sqm": 41.56942823803967, - "url": "https://www.rightmove.co.uk/properties/160501784", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Parkheath", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72716/160501784/72716_33806473_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.571489", - "last_seen": "2025-06-01T22:05:42.499903", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18132, - 51.54508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160501850", - "info": { - "identifier": 160501850, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160501850", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 36, - "status": null, - "last_seen": 0, - "agency": "Spencer James Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283697/160501850/283697_13488_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.283859", - "last_seen": "2025-06-01T22:05:44.295648", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375475, - 51.505787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.0, - "qmprice": 42.45, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160502021", - "info": { - "identifier": 160502021, - "sqm_ocr": 53.0, - "price": 2250.0, - "price_per_sqm": 42.45283018867924, - "url": "https://www.rightmove.co.uk/properties/160502021", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77496/160502021/77496_DLL250016_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.105735", - "last_seen": "2025-06-01T22:05:56.131451", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07324, - 51.5754 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160502303", - "info": { - "identifier": 160502303, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160502303", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89228/160502303/89228_WCL250060_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.006752", - "last_seen": "2025-06-01T22:05:40.280627", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293802, - 51.554176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 36.89, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160502813", - "info": { - "identifier": 160502813, - "sqm_ocr": 61.0, - "price": 2250.0, - "price_per_sqm": 36.885245901639344, - "url": "https://www.rightmove.co.uk/properties/160502813", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/160502813/15966_1322253_IMG_03_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.190765", - "last_seen": "2025-06-01T22:06:12.247133", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155822, - 51.473705 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.7, - "qmprice": 29.17, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160502846", - "info": { - "identifier": 160502846, - "sqm_ocr": 109.7, - "price": 3200.0, - "price_per_sqm": 29.17046490428441, - "url": "https://www.rightmove.co.uk/properties/160502846", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "RAF ESTATES LTD", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/255k/254204/160502846/254204_raf_421776616_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.299747", - "last_seen": "2025-06-01T22:06:01.065880", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216188, - 51.424763 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160502942", - "info": { - "identifier": 160502942, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160502942", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 52, - "status": null, - "last_seen": 0, - "agency": "Spencer James Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283697/160502942/283697_13489_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.333548", - "last_seen": "2025-06-01T22:05:44.280381", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375475, - 51.505787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 44.35, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160503080", - "info": { - "identifier": 160503080, - "sqm_ocr": 62.0, - "price": 2750.0, - "price_per_sqm": 44.354838709677416, - "url": "https://www.rightmove.co.uk/properties/160503080", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108938/160503080/108938_1321215_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.944949", - "last_seen": "2025-06-01T22:05:55.249471", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093441, - 51.567375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160503245", - "info": { - "identifier": 160503245, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160503245", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 52, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/160503245/15969_1321057_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.098429", - "last_seen": "2025-06-01T22:05:45.218488", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.287129, - 51.514133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.93, - "qmprice": 37.67, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/160504355", - "info": { - "identifier": 160504355, - "sqm_ocr": 72.93, - "price": 2747.0, - "price_per_sqm": 37.66625531331413, - "url": "https://www.rightmove.co.uk/properties/160504355", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/160504355/136139_2711020_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.192892", - "last_seen": "2025-06-01T20:19:58.233545", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00551, - 51.51572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 34.81, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160504481", - "info": { - "identifier": 160504481, - "sqm_ocr": 79.0, - "price": 2750.0, - "price_per_sqm": 34.81012658227848, - "url": "https://www.rightmove.co.uk/properties/160504481", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "LRS Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/274k/273656/160504481/273656_ARU-245413_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.161527", - "last_seen": "2025-06-01T22:05:39.361231", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.233362, - 51.581974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160504682", - "info": { - "identifier": 160504682, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160504682", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Connells Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95882/160504682/95882_P4016G4107_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.241062", - "last_seen": "2025-06-01T22:05:39.024420", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28743, - 51.62314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.8, - "qmprice": 30.32, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160507106", - "info": { - "identifier": 160507106, - "sqm_ocr": 80.8, - "price": 2450.0, - "price_per_sqm": 30.321782178217823, - "url": "https://www.rightmove.co.uk/properties/160507106", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 43, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/160507106/84875_33806831_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.407904", - "last_seen": "2025-06-01T22:05:59.481297", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113541, - 51.464302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.4, - "qmprice": 30.85, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/160507265", - "info": { - "identifier": 160507265, - "sqm_ocr": 112.4, - "price": 3467.0, - "price_per_sqm": 30.845195729537366, - "url": "https://www.rightmove.co.uk/properties/160507265", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64127/160507265/64127_1322258_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.544232", - "last_seen": "2025-06-01T22:05:43.094874", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139249, - 51.541286 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.2, - "qmprice": 50.51, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160507493", - "info": { - "identifier": 160507493, - "sqm_ocr": 79.2, - "price": 4000.0, - "price_per_sqm": 50.505050505050505, - "url": "https://www.rightmove.co.uk/properties/160507493", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/160507493/264326_Y61103_4_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.365112", - "last_seen": "2025-06-01T22:05:57.603274", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18854, - 51.4971 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.3, - "qmprice": 45.28, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160507517", - "info": { - "identifier": 160507517, - "sqm_ocr": 77.3, - "price": 3500.0, - "price_per_sqm": 45.278137128072444, - "url": "https://www.rightmove.co.uk/properties/160507517", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/160507517/84889_1322181_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.412514", - "last_seen": "2025-06-01T22:06:14.336123", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133659, - 51.489666 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.5, - "qmprice": 35.46, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160507520", - "info": { - "identifier": 160507520, - "sqm_ocr": 70.5, - "price": 2500.0, - "price_per_sqm": 35.46099290780142, - "url": "https://www.rightmove.co.uk/properties/160507520", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/160507520/149153_1322267_IMG_02_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.633210", - "last_seen": "2025-06-01T22:05:58.496766", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.273529, - 51.406467 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.48, - "qmprice": 45.47, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160512188", - "info": { - "identifier": 160512188, - "sqm_ocr": 60.48, - "price": 2750.0, - "price_per_sqm": 45.46957671957672, - "url": "https://www.rightmove.co.uk/properties/160512188", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 51, - "status": null, - "last_seen": 0, - "agency": "Smart Move", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267176/160512188/267176_SLR-56703207_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.488167", - "last_seen": "2025-06-01T22:05:58.407214", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2131, - 51.50149 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.48, - "qmprice": 45.47, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160512761", - "info": { - "identifier": 160512761, - "sqm_ocr": 60.48, - "price": 2750.0, - "price_per_sqm": 45.46957671957672, - "url": "https://www.rightmove.co.uk/properties/160512761", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Pomp Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117175/160512761/117175_33807139_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.925189", - "last_seen": "2025-06-01T22:05:58.160582", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212919, - 51.50156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.2, - "qmprice": 66.74, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/160512812", - "info": { - "identifier": 160512812, - "sqm_ocr": 55.2, - "price": 3684.0, - "price_per_sqm": 66.73913043478261, - "url": "https://www.rightmove.co.uk/properties/160512812", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/160512812/76585_1318217_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.040291", - "last_seen": "2025-06-01T22:06:14.704223", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171286, - 51.519184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 39.17, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160512839", - "info": { - "identifier": 160512839, - "sqm_ocr": 60.0, - "price": 2350.0, - "price_per_sqm": 39.166666666666664, - "url": "https://www.rightmove.co.uk/properties/160512839", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/160512839/227810_1321252_IMG_02_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.663173", - "last_seen": "2025-06-01T22:05:46.152522", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.071394, - 51.49155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160515107", - "info": { - "identifier": 160515107, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160515107", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160515107/96668_238944617022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.229661", - "last_seen": "2025-06-01T22:06:15.472507", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164916, - 51.51902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.9, - "qmprice": 25.27, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160515482", - "info": { - "identifier": 160515482, - "sqm_ocr": 100.9, - "price": 2550.0, - "price_per_sqm": 25.27254707631318, - "url": "https://www.rightmove.co.uk/properties/160515482", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "James Alexander", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287633/160515482/287633_33807309_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.376746", - "last_seen": "2025-06-01T22:06:01.738611", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149854, - 51.40237 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.6, - "qmprice": 32.28, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160515545", - "info": { - "identifier": 160515545, - "sqm_ocr": 66.6, - "price": 2150.0, - "price_per_sqm": 32.28228228228229, - "url": "https://www.rightmove.co.uk/properties/160515545", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Regal Hampton Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269318/160515545/269318_SS56Lindley_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.708759", - "last_seen": "2025-06-01T22:05:39.844350", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24849, - 51.58759 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 49.21, - "rooms": 3, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/160516202", - "info": { - "identifier": 160516202, - "sqm_ocr": 70.0, - "price": 3445.0, - "price_per_sqm": 49.214285714285715, - "url": "https://www.rightmove.co.uk/properties/160516202", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/160516202/77197_VCT_VCT_LFSYCL_465_633411636_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.060548", - "last_seen": "2025-06-01T22:05:53.673931", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119868, - 51.540157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 132.2, - "qmprice": 23.07, - "rooms": 4, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/160516493", - "info": { - "identifier": 160516493, - "sqm_ocr": 132.2, - "price": 3050.0, - "price_per_sqm": 23.071104387291985, - "url": "https://www.rightmove.co.uk/properties/160516493", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/160516493/149153_1321361_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.632005", - "last_seen": "2025-06-01T22:05:58.493105", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.263397, - 51.396103 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.5, - "qmprice": 38.21, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160516514", - "info": { - "identifier": 160516514, - "sqm_ocr": 61.5, - "price": 2350.0, - "price_per_sqm": 38.21138211382114, - "url": "https://www.rightmove.co.uk/properties/160516514", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/160516514/101522_1322261_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.846674", - "last_seen": "2025-06-01T22:05:47.432836", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069795, - 51.536133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.6, - "qmprice": 42.27, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160516991", - "info": { - "identifier": 160516991, - "sqm_ocr": 55.6, - "price": 2350.0, - "price_per_sqm": 42.26618705035971, - "url": "https://www.rightmove.co.uk/properties/160516991", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84806/160516991/84806_33714154_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.113494", - "last_seen": "2025-06-01T22:06:04.500055", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295539, - 51.46106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.6, - "qmprice": 63.1, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/160517093", - "info": { - "identifier": 160517093, - "sqm_ocr": 54.6, - "price": 3445.0, - "price_per_sqm": 63.095238095238095, - "url": "https://www.rightmove.co.uk/properties/160517093", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/160517093/84889_1321987_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.066518", - "last_seen": "2025-06-01T22:06:14.639738", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140906, - 51.4889 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.5, - "qmprice": 25.62, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160518983", - "info": { - "identifier": 160518983, - "sqm_ocr": 101.5, - "price": 2600.0, - "price_per_sqm": 25.61576354679803, - "url": "https://www.rightmove.co.uk/properties/160518983", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Andrews Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/191k/190292/160518983/190292_101809019832_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.804345", - "last_seen": "2025-06-01T22:05:44.714119", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37157, - 51.52426 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.01, - "qmprice": 44.26, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160519247", - "info": { - "identifier": 160519247, - "sqm_ocr": 61.01, - "price": 2700.0, - "price_per_sqm": 44.25504015735125, - "url": "https://www.rightmove.co.uk/properties/160519247", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65911/160519247/65911_WAQ012517860_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.271404", - "last_seen": "2025-06-01T22:06:09.172681", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0688, - 51.5053 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.7, - "qmprice": 53.84, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160520381", - "info": { - "identifier": 160520381, - "sqm_ocr": 55.7, - "price": 2999.0, - "price_per_sqm": 53.84201077199282, - "url": "https://www.rightmove.co.uk/properties/160520381", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36222/160520381/36222_MRB130092_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.700830", - "last_seen": "2025-06-01T22:06:15.865889", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158423, - 51.52051 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.0, - "qmprice": 71.43, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160521506", - "info": { - "identifier": 160521506, - "sqm_ocr": 56.0, - "price": 4000.0, - "price_per_sqm": 71.42857142857143, - "url": "https://www.rightmove.co.uk/properties/160521506", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/160521506/76585_1321611_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.651914", - "last_seen": "2025-06-01T22:05:43.089854", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136668, - 51.519016 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.7, - "qmprice": 42.1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160521587", - "info": { - "identifier": 160521587, - "sqm_ocr": 67.7, - "price": 2850.0, - "price_per_sqm": 42.09748892171344, - "url": "https://www.rightmove.co.uk/properties/160521587", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/160521587/253853_1322145_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.490094", - "last_seen": "2025-06-01T22:06:07.054766", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099489, - 51.492916 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.47, - "qmprice": 34.19, - "rooms": 2, - "total_price": 3640.0, - "url": "https://www.rightmove.co.uk/properties/160521671", - "info": { - "identifier": 160521671, - "sqm_ocr": 106.47, - "price": 3640.0, - "price_per_sqm": 34.18803418803419, - "url": "https://www.rightmove.co.uk/properties/160521671", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65872/160521671/65872_CWQ012545390_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:11.154490", - "last_seen": "2025-06-01T22:06:11.154490", - "price": 3640 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021428, - 51.507626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3510.0, - "url": "https://www.rightmove.co.uk/properties/160521908", - "info": { - "identifier": 160521908, - "sqm_ocr": null, - "price": 3510.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160521908", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Citian & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256973/160521908/256973_274902_IMG_09_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.862581", - "last_seen": "2025-06-01T22:05:57.303704", - "price": 3510 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22888, - 51.49422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 52.24, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160521929", - "info": { - "identifier": 160521929, - "sqm_ocr": 67.0, - "price": 3500.0, - "price_per_sqm": 52.23880597014925, - "url": "https://www.rightmove.co.uk/properties/160521929", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/160521929/149153_1322321_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.377900", - "last_seen": "2025-06-01T22:06:01.735748", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225934, - 51.39513 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.7, - "qmprice": 47.62, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/160522505", - "info": { - "identifier": 160522505, - "sqm_ocr": 77.7, - "price": 3700.0, - "price_per_sqm": 47.61904761904762, - "url": "https://www.rightmove.co.uk/properties/160522505", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/160522505/77197_VCT_VCT_LFSYCL_465_633127428_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.433966", - "last_seen": "2025-06-01T22:05:53.410076", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094147, - 51.528557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.4, - "qmprice": 36.14, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160522544", - "info": { - "identifier": 160522544, - "sqm_ocr": 66.4, - "price": 2400.0, - "price_per_sqm": 36.14457831325301, - "url": "https://www.rightmove.co.uk/properties/160522544", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/160522544/100423_1317795_IMG_01_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.028605", - "last_seen": "2025-06-01T22:06:04.457747", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307833, - 51.45316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160522877", - "info": { - "identifier": 160522877, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160522877", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 52, - "status": null, - "last_seen": 0, - "agency": "Edward Taub & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10724/160522877/10724_33807784_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.946783", - "last_seen": "2025-06-01T22:06:03.814802", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.068397, - 51.60231 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/160522934", - "info": { - "identifier": 160522934, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160522934", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/160522934/181787_181787_596_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.058175", - "last_seen": "2025-06-01T22:06:04.867594", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09343, - 51.49446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160523042", - "info": { - "identifier": 160523042, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160523042", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160523042/96668_244763110042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.345298", - "last_seen": "2025-06-01T22:05:41.582107", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.057296, - 51.364597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.0, - "qmprice": 43.6, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160523645", - "info": { - "identifier": 160523645, - "sqm_ocr": 86.0, - "price": 3750.0, - "price_per_sqm": 43.604651162790695, - "url": "https://www.rightmove.co.uk/properties/160523645", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/160523645/77197_VCT_VCT_LFSYCL_465_633232829_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.450094", - "last_seen": "2025-06-01T22:05:53.461021", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094016, - 51.52824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.1, - "qmprice": 33.07, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160523906", - "info": { - "identifier": 160523906, - "sqm_ocr": 77.1, - "price": 2550.0, - "price_per_sqm": 33.0739299610895, - "url": "https://www.rightmove.co.uk/properties/160523906", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Wayne & Silver", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91636/160523906/91636_33807868_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.652591", - "last_seen": "2025-06-01T22:05:50.070710", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.062692, - 51.588505 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160524533", - "info": { - "identifier": 160524533, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160524533", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Beresfords Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61219/160524533/61219_HAV160287_L_IMG_13_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.334929", - "last_seen": "2025-06-01T22:05:51.005584", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.258576, - 51.572826 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 39.47, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160525478", - "info": { - "identifier": 160525478, - "sqm_ocr": 76.0, - "price": 3000.0, - "price_per_sqm": 39.473684210526315, - "url": "https://www.rightmove.co.uk/properties/160525478", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/160525478/135416_BPL250054_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.584024", - "last_seen": "2025-06-01T22:06:12.949316", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168862, - 51.476925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160525514", - "info": { - "identifier": 160525514, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160525514", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "ADN Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283532/160525514/283532_33807998_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.760644", - "last_seen": "2025-06-01T22:05:43.033869", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147363, - 51.53955 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160525865", - "info": { - "identifier": 160525865, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160525865", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160525865/96668_240708204032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.832446", - "last_seen": "2025-06-01T22:06:02.678553", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.054815, - 51.534405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/160526021", - "info": { - "identifier": 160526021, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160526021", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Capital Estate Agents", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49739/160526021/49739_CPT_CPT_LFSYCL_393_548413818_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.035625", - "last_seen": "2025-06-01T22:05:57.406813", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17774, - 51.481804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.5, - "qmprice": 35.51, - "rooms": 2, - "total_price": 3640.0, - "url": "https://www.rightmove.co.uk/properties/160526354", - "info": { - "identifier": 160526354, - "sqm_ocr": 102.5, - "price": 3640.0, - "price_per_sqm": 35.51219512195122, - "url": "https://www.rightmove.co.uk/properties/160526354", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/160526354/95098_P298833_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.001764", - "last_seen": "2025-06-01T22:06:11.422218", - "price": 3640.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02116, - 51.50718 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.2, - "qmprice": 42.97, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160526519", - "info": { - "identifier": 160526519, - "sqm_ocr": 51.2, - "price": 2200.0, - "price_per_sqm": 42.96875, - "url": "https://www.rightmove.co.uk/properties/160526519", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/160526519/56751_1322334_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.980569", - "last_seen": "2025-06-01T22:05:59.532470", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110251, - 51.46013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.6, - "qmprice": 35.14, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160526606", - "info": { - "identifier": 160526606, - "sqm_ocr": 62.6, - "price": 2200.0, - "price_per_sqm": 35.14376996805112, - "url": "https://www.rightmove.co.uk/properties/160526606", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/160526606/149153_1321676_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.688436", - "last_seen": "2025-06-01T22:05:58.782441", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.251754, - 51.39874 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.62, - "qmprice": 48.41, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/160526681", - "info": { - "identifier": 160526681, - "sqm_ocr": 71.62, - "price": 3467.0, - "price_per_sqm": 48.40826584752862, - "url": "https://www.rightmove.co.uk/properties/160526681", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139751/160526681/139751_ECL170069_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.108725", - "last_seen": "2025-06-01T22:05:58.361469", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190149, - 51.490467 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160527020", - "info": { - "identifier": 160527020, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160527020", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Grey & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7000/160527020/7000_GRY_GRY_LFSYCL_254_402413883_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.882405", - "last_seen": "2025-06-01T22:05:41.165338", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.294477, - 51.551907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.5, - "qmprice": 33.07, - "rooms": 2, - "total_price": 2232.0, - "url": "https://www.rightmove.co.uk/properties/160528601", - "info": { - "identifier": 160528601, - "sqm_ocr": 67.5, - "price": 2232.0, - "price_per_sqm": 33.06666666666667, - "url": "https://www.rightmove.co.uk/properties/160528601", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71134/160528601/71134_33808208_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.204323", - "last_seen": "2025-06-01T22:05:47.385016", - "price": 2231 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.083213, - 51.537857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.67, - "qmprice": 38.01, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160529177", - "info": { - "identifier": 160529177, - "sqm_ocr": 73.67, - "price": 2800.0, - "price_per_sqm": 38.00732998506855, - "url": "https://www.rightmove.co.uk/properties/160529177", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/160529177/26207_IUL200433_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.016459", - "last_seen": "2025-06-01T22:05:54.434247", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121574, - 51.54095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.2, - "qmprice": 31.8, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160529696", - "info": { - "identifier": 160529696, - "sqm_ocr": 102.2, - "price": 3250.0, - "price_per_sqm": 31.800391389432484, - "url": "https://www.rightmove.co.uk/properties/160529696", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/160529696/191255_33808284_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.619215", - "last_seen": "2025-06-01T22:06:10.619215", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053218, - 51.50986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.06, - "qmprice": 30.1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160530539", - "info": { - "identifier": 160530539, - "sqm_ocr": 83.06, - "price": 2500.0, - "price_per_sqm": 30.09872381411028, - "url": "https://www.rightmove.co.uk/properties/160530539", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Alliance London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77148/160530539/77148_2002300_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.617466", - "last_seen": "2025-06-01T22:06:10.617466", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02614, - 51.49179 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/160530710", - "info": { - "identifier": 160530710, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160530710", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/160530710/82537_33808351_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.867686", - "last_seen": "2025-06-01T22:06:02.028430", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.071829, - 51.506523 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 47.46, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160531016", - "info": { - "identifier": 160531016, - "sqm_ocr": 59.0, - "price": 2800.0, - "price_per_sqm": 47.45762711864407, - "url": "https://www.rightmove.co.uk/properties/160531016", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/160531016/77511_CSC211340_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.116652", - "last_seen": "2025-06-01T22:05:47.304173", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076657, - 51.525784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.3, - "qmprice": 54.78, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/160531064", - "info": { - "identifier": 160531064, - "sqm_ocr": 61.3, - "price": 3358.0, - "price_per_sqm": 54.77977161500816, - "url": "https://www.rightmove.co.uk/properties/160531064", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238748/160531064/238748_CLP240070_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.253356", - "last_seen": "2025-06-01T22:05:59.424586", - "price": 3358.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12654, - 51.481804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 40.6, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160531145", - "info": { - "identifier": 160531145, - "sqm_ocr": 73.9, - "price": 3000.0, - "price_per_sqm": 40.59539918809201, - "url": "https://www.rightmove.co.uk/properties/160531145", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/160531145/15966_1322203_IMG_02_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.127235", - "last_seen": "2025-06-01T22:06:14.176082", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175757, - 51.471684 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.1, - "qmprice": 45.39, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160531250", - "info": { - "identifier": 160531250, - "sqm_ocr": 66.1, - "price": 3000.0, - "price_per_sqm": 45.38577912254161, - "url": "https://www.rightmove.co.uk/properties/160531250", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/160531250/253853_1322304_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.808142", - "last_seen": "2025-06-01T22:06:06.473461", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092065, - 51.492386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.3, - "qmprice": 35.06, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160531256", - "info": { - "identifier": 160531256, - "sqm_ocr": 71.3, - "price": 2500.0, - "price_per_sqm": 35.06311360448808, - "url": "https://www.rightmove.co.uk/properties/160531256", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/160531256/80281_1322347_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.167445", - "last_seen": "2025-06-01T22:06:07.617355", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.012336, - 51.53101 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/160531349", - "info": { - "identifier": 160531349, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160531349", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Litchfields", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93337/160531349/93337_8179971_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.965814", - "last_seen": "2025-06-01T22:05:38.563124", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178587, - 51.590225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.8, - "qmprice": 45.57, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160531385", - "info": { - "identifier": 160531385, - "sqm_ocr": 76.8, - "price": 3500.0, - "price_per_sqm": 45.57291666666667, - "url": "https://www.rightmove.co.uk/properties/160531385", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/160531385/16050_1313239_IMG_04_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.551793", - "last_seen": "2025-06-01T22:06:08.391563", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061791, - 51.527927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.8, - "qmprice": 29.95, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160531391", - "info": { - "identifier": 160531391, - "sqm_ocr": 76.8, - "price": 2300.0, - "price_per_sqm": 29.947916666666668, - "url": "https://www.rightmove.co.uk/properties/160531391", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/160531391/16050_1313238_IMG_04_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.582996", - "last_seen": "2025-06-01T22:06:08.359557", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061791, - 51.527927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 43.82, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160531442", - "info": { - "identifier": 160531442, - "sqm_ocr": 89.0, - "price": 3900.0, - "price_per_sqm": 43.82022471910113, - "url": "https://www.rightmove.co.uk/properties/160531442", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "The London Broker", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174521/160531442/174521_FES250026_L_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.312615", - "last_seen": "2025-06-01T22:06:15.238353", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163718, - 51.518883 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160531814", - "info": { - "identifier": 160531814, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160531814", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Sandra Davidson Estate Agents", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13342/160531814/13342_33808429_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.917308", - "last_seen": "2025-06-01T22:06:02.138464", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.020121, - 51.532696 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.28, - "qmprice": 53.96, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160532612", - "info": { - "identifier": 160532612, - "sqm_ocr": 72.28, - "price": 3900.0, - "price_per_sqm": 53.9568345323741, - "url": "https://www.rightmove.co.uk/properties/160532612", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/160532612/44537_CSL250116_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.627388", - "last_seen": "2025-06-01T22:06:05.606431", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08211, - 51.496902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160532762", - "info": { - "identifier": 160532762, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160532762", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "The London Broker", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174521/160532762/174521_FES230021_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.199763", - "last_seen": "2025-06-01T22:05:57.920815", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213392, - 51.501892 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.44, - "qmprice": 45.92, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160533143", - "info": { - "identifier": 160533143, - "sqm_ocr": 54.44, - "price": 2500.0, - "price_per_sqm": 45.92211609110948, - "url": "https://www.rightmove.co.uk/properties/160533143", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/160533143/15966_1322378_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.228215", - "last_seen": "2025-06-01T22:06:12.333497", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158378, - 51.468513 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.9, - "qmprice": 41.08, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160533173", - "info": { - "identifier": 160533173, - "sqm_ocr": 77.9, - "price": 3200.0, - "price_per_sqm": 41.0783055198973, - "url": "https://www.rightmove.co.uk/properties/160533173", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/160533173/149153_1322369_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.348132", - "last_seen": "2025-06-01T22:06:07.742420", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195522, - 51.361973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/160533326", - "info": { - "identifier": 160533326, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160533326", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/160533326/48101_1319824_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.971235", - "last_seen": "2025-06-01T22:06:03.249809", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01223, - 51.51664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.3, - "qmprice": 53.27, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160533812", - "info": { - "identifier": 160533812, - "sqm_ocr": 56.3, - "price": 2999.0, - "price_per_sqm": 53.26820603907638, - "url": "https://www.rightmove.co.uk/properties/160533812", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96154/160533812/96154_CSL140048_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.190233", - "last_seen": "2025-06-01T22:06:16.051892", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15841, - 51.52051 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/160533860", - "info": { - "identifier": 160533860, - "sqm_ocr": null, - "price": 2383.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160533860", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55362/160533860/55362_33808515_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.941261", - "last_seen": "2025-06-01T22:06:16.093977", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173791, - 51.52282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.59, - "qmprice": 34.11, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160533983", - "info": { - "identifier": 160533983, - "sqm_ocr": 82.59, - "price": 2817.0, - "price_per_sqm": 34.10824555030875, - "url": "https://www.rightmove.co.uk/properties/160533983", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/160533983/70038_5055_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.931646", - "last_seen": "2025-06-01T22:05:49.188379", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217642, - 51.4897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.69, - "qmprice": 49.69, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160534046", - "info": { - "identifier": 160534046, - "sqm_ocr": 56.69, - "price": 2817.0, - "price_per_sqm": 49.69130358087846, - "url": "https://www.rightmove.co.uk/properties/160534046", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64127/160534046/64127_1322392_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.471577", - "last_seen": "2025-06-01T22:05:43.178280", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133364, - 51.538494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.8, - "qmprice": 62.1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160534112", - "info": { - "identifier": 160534112, - "sqm_ocr": 62.8, - "price": 3900.0, - "price_per_sqm": 62.10191082802548, - "url": "https://www.rightmove.co.uk/properties/160534112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/160534112/15942_1322299_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.576819", - "last_seen": "2025-06-01T22:05:58.072402", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185728, - 51.496166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160534223", - "info": { - "identifier": 160534223, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160534223", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Brithomes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275363/160534223/275363_10000002534_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.410205", - "last_seen": "2025-06-01T22:06:02.282496", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02511, - 51.50081 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160535135", - "info": { - "identifier": 160535135, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160535135", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Urban Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69212/160535135/69212_0048574_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.349473", - "last_seen": "2025-06-01T22:05:41.318573", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23795, - 51.54651 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160536110", - "info": { - "identifier": 160536110, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160536110", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160536110/96668_228241104112024_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.372032", - "last_seen": "2025-06-01T22:05:40.584851", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205178, - 51.547985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160536545", - "info": { - "identifier": 160536545, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160536545", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "RE/MAX Select", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34448/160536545/34448_28938869_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.222497", - "last_seen": "2025-06-01T22:05:39.882149", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.131525, - 51.464203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/160538225", - "info": { - "identifier": 160538225, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160538225", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160538225/96668_244788110042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.267747", - "last_seen": "2025-06-01T22:05:39.916758", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.186126, - 51.4723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.7, - "qmprice": 58.2, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160538261", - "info": { - "identifier": 160538261, - "sqm_ocr": 56.7, - "price": 3300.0, - "price_per_sqm": 58.201058201058196, - "url": "https://www.rightmove.co.uk/properties/160538261", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/160538261/272819_33785235_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.519271", - "last_seen": "2025-06-01T22:06:08.774357", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018766, - 51.50082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160538264", - "info": { - "identifier": 160538264, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160538264", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/160538264/272819_33788933_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "28/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.515633", - "last_seen": "2025-06-01T22:05:59.226962", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128168, - 51.48145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.2, - "qmprice": 48.48, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160541396", - "info": { - "identifier": 160541396, - "sqm_ocr": 72.2, - "price": 3500.0, - "price_per_sqm": 48.476454293628805, - "url": "https://www.rightmove.co.uk/properties/160541396", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/160541396/15969_1318488_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.963305", - "last_seen": "2025-06-01T22:05:40.322346", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285212, - 51.529846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.7, - "qmprice": 30.64, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160544621", - "info": { - "identifier": 160544621, - "sqm_ocr": 107.7, - "price": 3300.0, - "price_per_sqm": 30.64066852367688, - "url": "https://www.rightmove.co.uk/properties/160544621", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Dartmouth Park", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266297/160544621/266297_000020433_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.455159", - "last_seen": "2025-06-01T22:05:42.818181", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13913, - 51.55785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 148.4, - "qmprice": 18.87, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160548800", - "info": { - "identifier": 160548800, - "sqm_ocr": 148.4, - "price": 2800.0, - "price_per_sqm": 18.867924528301884, - "url": "https://www.rightmove.co.uk/properties/160548800", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/160548800/52415_33808787_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.597101", - "last_seen": "2025-06-01T22:05:43.534772", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108569, - 51.420616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.0, - "qmprice": 39.74, - "rooms": 2, - "total_price": 2106.0, - "url": "https://www.rightmove.co.uk/properties/160548881", - "info": { - "identifier": 160548881, - "sqm_ocr": 53.0, - "price": 2106.0, - "price_per_sqm": 39.735849056603776, - "url": "https://www.rightmove.co.uk/properties/160548881", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Global House Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74713/160548881/74713_dTMxV0NORVFNUGo5MmJSaE9sZkk3dz09_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.053564", - "last_seen": "2025-06-01T22:06:13.157214", - "price": 2106 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171539, - 51.457886 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.4, - "qmprice": 22.29, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160552988", - "info": { - "identifier": 160552988, - "sqm_ocr": 123.4, - "price": 2750.0, - "price_per_sqm": 22.285251215559157, - "url": "https://www.rightmove.co.uk/properties/160552988", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Cow & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191477/160552988/191477_COW250112_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.915836", - "last_seen": "2025-06-01T22:05:40.408245", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.296975, - 51.57014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160554677", - "info": { - "identifier": 160554677, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160554677", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Canary Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85774/160554677/85774_0025698554555GPP_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.709979", - "last_seen": "2025-06-01T22:06:10.724634", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 40.28, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/160554821", - "info": { - "identifier": 160554821, - "sqm_ocr": 72.0, - "price": 2900.0, - "price_per_sqm": 40.27777777777778, - "url": "https://www.rightmove.co.uk/properties/160554821", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260939/160554821/260939_DAN210713_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.465039", - "last_seen": "2025-06-01T22:05:55.738535", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119551, - 51.58205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160556195", - "info": { - "identifier": 160556195, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160556195", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/32k/31968/160556195/31968_000901705_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.954394", - "last_seen": "2025-06-01T22:05:45.412628", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03559, - 51.6468 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/160556357", - "info": { - "identifier": 160556357, - "sqm_ocr": null, - "price": 3748.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160556357", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 51, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/160556357/120463_33809190_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.413629", - "last_seen": "2025-06-01T22:06:16.004863", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177782, - 51.53574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 30.47, - "rooms": 2, - "total_price": 2590.0, - "url": "https://www.rightmove.co.uk/properties/160557674", - "info": { - "identifier": 160557674, - "sqm_ocr": 85.0, - "price": 2590.0, - "price_per_sqm": 30.470588235294116, - "url": "https://www.rightmove.co.uk/properties/160557674", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107905/160557674/107905_GWL250073_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.581538", - "last_seen": "2025-06-01T22:05:46.229858", - "price": 2590.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.019088, - 51.493427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.3, - "qmprice": 54.78, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/160558052", - "info": { - "identifier": 160558052, - "sqm_ocr": 61.3, - "price": 3358.0, - "price_per_sqm": 54.77977161500816, - "url": "https://www.rightmove.co.uk/properties/160558052", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212321/160558052/212321_P160131_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.275769", - "last_seen": "2025-06-01T22:05:58.959038", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127, - 51.48158 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.8, - "qmprice": 31.77, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/160559843", - "info": { - "identifier": 160559843, - "sqm_ocr": 70.8, - "price": 2249.0, - "price_per_sqm": 31.765536723163844, - "url": "https://www.rightmove.co.uk/properties/160559843", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/160559843/84791_33809337_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.398057", - "last_seen": "2025-06-01T22:05:44.921972", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293146, - 51.51719 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160560938", - "info": { - "identifier": 160560938, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160560938", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/160560938/12070_28941117_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.111688", - "last_seen": "2025-06-01T22:05:46.320369", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013513, - 51.49431 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160561169", - "info": { - "identifier": 160561169, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160561169", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "STONEBANKS UK LTD", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272417/160561169/272417_33809418_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.894436", - "last_seen": "2025-06-01T22:05:44.289205", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.340831, - 51.50728 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.7, - "qmprice": 47.11, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160561205", - "info": { - "identifier": 160561205, - "sqm_ocr": 46.7, - "price": 2200.0, - "price_per_sqm": 47.109207708779444, - "url": "https://www.rightmove.co.uk/properties/160561205", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/160561205/98531_1321799_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.761661", - "last_seen": "2025-06-01T22:05:49.383500", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.231747, - 51.506344 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.93, - "qmprice": 39.64, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/160561898", - "info": { - "identifier": 160561898, - "sqm_ocr": 92.93, - "price": 3684.0, - "price_per_sqm": 39.642741848703324, - "url": "https://www.rightmove.co.uk/properties/160561898", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/160561898/15942_1322408_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.276496", - "last_seen": "2025-06-01T22:05:58.247822", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193357, - 51.49995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.8, - "qmprice": 47.01, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160566185", - "info": { - "identifier": 160566185, - "sqm_ocr": 63.8, - "price": 2999.0, - "price_per_sqm": 47.00626959247649, - "url": "https://www.rightmove.co.uk/properties/160566185", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71140/160566185/71140_33809542_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.230710", - "last_seen": "2025-06-01T22:05:42.017887", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123415, - 51.525967 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160566995", - "info": { - "identifier": 160566995, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160566995", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "View Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43275/160566995/43275_8290068_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.776219", - "last_seen": "2025-06-01T22:05:59.849753", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113983, - 51.4458 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.3, - "qmprice": 61.99, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/160567406", - "info": { - "identifier": 160567406, - "sqm_ocr": 61.3, - "price": 3800.0, - "price_per_sqm": 61.990212071778146, - "url": "https://www.rightmove.co.uk/properties/160567406", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160567406/87187_70962_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.758195", - "last_seen": "2025-06-01T22:05:53.494751", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095102, - 51.528923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.17, - "qmprice": 46.96, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160567889", - "info": { - "identifier": 160567889, - "sqm_ocr": 85.17, - "price": 4000.0, - "price_per_sqm": 46.96489374192791, - "url": "https://www.rightmove.co.uk/properties/160567889", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Parkes Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205670/160567889/205670_PEA250100_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.458989", - "last_seen": "2025-06-01T22:05:42.314225", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141556, - 51.531555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.6, - "qmprice": 51.33, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160569242", - "info": { - "identifier": 160569242, - "sqm_ocr": 52.6, - "price": 2700.0, - "price_per_sqm": 51.33079847908745, - "url": "https://www.rightmove.co.uk/properties/160569242", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41340/160569242/41340_06721442_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.636421", - "last_seen": "2025-06-01T22:06:15.828705", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180779, - 51.51164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160569554", - "info": { - "identifier": 160569554, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160569554", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Infinity Property Solutions", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111497/160569554/111497_28780647_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.352052", - "last_seen": "2025-06-01T22:05:38.423064", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26722, - 51.6036 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.74, - "qmprice": 44.4, - "rooms": 2, - "total_price": 2475.0, - "url": "https://www.rightmove.co.uk/properties/160571435", - "info": { - "identifier": 160571435, - "sqm_ocr": 55.74, - "price": 2475.0, - "price_per_sqm": 44.40258342303552, - "url": "https://www.rightmove.co.uk/properties/160571435", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons in association with James Pendleton", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279227/160571435/279227_WLS240467_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.629049", - "last_seen": "2025-06-01T22:06:13.863552", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186387, - 51.436264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160574267", - "info": { - "identifier": 160574267, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160574267", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Maxwells Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88079/160574267/88079_2623_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.377018", - "last_seen": "2025-06-01T22:05:53.735350", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076241, - 51.54624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.8, - "qmprice": 50.17, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160575005", - "info": { - "identifier": 160575005, - "sqm_ocr": 59.8, - "price": 3000.0, - "price_per_sqm": 50.16722408026756, - "url": "https://www.rightmove.co.uk/properties/160575005", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Sandra Davidson Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13342/160575005/13342_33809981_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.761001", - "last_seen": "2025-06-01T22:06:11.657334", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022457, - 51.624187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.2, - "qmprice": 45.14, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/160576361", - "info": { - "identifier": 160576361, - "sqm_ocr": 79.2, - "price": 3575.0, - "price_per_sqm": 45.138888888888886, - "url": "https://www.rightmove.co.uk/properties/160576361", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Jeremy James", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77425/160576361/77425_77425|8785_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.754145", - "last_seen": "2025-06-01T22:06:14.308736", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149062, - 51.521866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.38, - "qmprice": 26.06, - "rooms": 2, - "total_price": 2225.0, - "url": "https://www.rightmove.co.uk/properties/160576895", - "info": { - "identifier": 160576895, - "sqm_ocr": 85.38, - "price": 2225.0, - "price_per_sqm": 26.05996720543453, - "url": "https://www.rightmove.co.uk/properties/160576895", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "PropertyLoop", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222287/160576895/222287_mpccZaP3_IMG_05_0001_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.841228", - "last_seen": "2025-06-01T22:06:04.089290", - "price": 2225.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06268, - 51.56697 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160577108", - "info": { - "identifier": 160577108, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160577108", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Edmund Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20894/160577108/20894_33810098_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.378002", - "last_seen": "2025-06-01T22:05:41.639146", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.094149, - 51.38787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.1, - "qmprice": 43.38, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160577426", - "info": { - "identifier": 160577426, - "sqm_ocr": 46.1, - "price": 2000.0, - "price_per_sqm": 43.38394793926247, - "url": "https://www.rightmove.co.uk/properties/160577426", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Sandra Davidson Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13342/160577426/13342_33810142_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.229357", - "last_seen": "2025-06-01T22:05:50.926352", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.179105, - 51.58205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 137.7, - "qmprice": 23.6, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160578422", - "info": { - "identifier": 160578422, - "sqm_ocr": 137.7, - "price": 3250.0, - "price_per_sqm": 23.602033405954977, - "url": "https://www.rightmove.co.uk/properties/160578422", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Cow & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191477/160578422/191477_COW230203_L_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.032704", - "last_seen": "2025-06-01T22:05:40.222781", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.304691, - 51.585876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.1, - "qmprice": 41.6, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160579745", - "info": { - "identifier": 160579745, - "sqm_ocr": 60.1, - "price": 2500.0, - "price_per_sqm": 41.597337770382694, - "url": "https://www.rightmove.co.uk/properties/160579745", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dutch & Dutch", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7616/160579745/7616_WHM190144_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.808251", - "last_seen": "2025-06-01T22:05:42.945719", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189476, - 51.547306 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.2, - "qmprice": 52.04, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/160580009", - "info": { - "identifier": 160580009, - "sqm_ocr": 66.2, - "price": 3445.0, - "price_per_sqm": 52.0392749244713, - "url": "https://www.rightmove.co.uk/properties/160580009", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54732/160580009/54732_STL240091_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.415877", - "last_seen": "2025-06-01T22:06:14.313236", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175428, - 51.530434 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/160580639", - "info": { - "identifier": 160580639, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160580639", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160580639/87187_70989_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.678842", - "last_seen": "2025-06-01T22:05:58.861594", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302506, - 51.414616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160581158", - "info": { - "identifier": 160581158, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160581158", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 51, - "status": null, - "last_seen": 0, - "agency": "All in the postcode...SW19.com", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34619/160581158/34619_12637280_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.293072", - "last_seen": "2025-06-01T22:06:01.046445", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207389, - 51.41253 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.41, - "qmprice": 36.56, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160582088", - "info": { - "identifier": 160582088, - "sqm_ocr": 109.41, - "price": 4000.0, - "price_per_sqm": 36.55972945800201, - "url": "https://www.rightmove.co.uk/properties/160582088", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Moveli", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191324/160582088/191324_RX570037_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.331662", - "last_seen": "2025-06-01T22:05:42.664114", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18425, - 51.550545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160582520", - "info": { - "identifier": 160582520, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160582520", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Balgores", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10596/160582520/10596_LOH240089_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.095795", - "last_seen": "2025-06-01T22:05:38.275898", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.091058, - 51.528587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/160582535", - "info": { - "identifier": 160582535, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160582535", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209807/160582535/209807_CDL190118_L_IMG_02_0000_max_656x437.png", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.808850", - "last_seen": "2025-06-01T22:06:10.754112", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021077, - 51.507942 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160582604", - "info": { - "identifier": 160582604, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160582604", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160582604/96668_244837411042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.709735", - "last_seen": "2025-06-01T22:06:12.655680", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148057, - 51.44849 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.0, - "qmprice": 44.44, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160582883", - "info": { - "identifier": 160582883, - "sqm_ocr": 90.0, - "price": 4000.0, - "price_per_sqm": 44.44444444444444, - "url": "https://www.rightmove.co.uk/properties/160582883", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160582883/87187_62490_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.084823", - "last_seen": "2025-06-01T22:05:47.692476", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092196, - 51.52873 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160582925", - "info": { - "identifier": 160582925, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160582925", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "gLocalAgents.co.uk", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176603/160582925/176603_14802_EAF_179248_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.006586", - "last_seen": "2025-06-01T20:19:57.748613", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055147, - 51.506477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160585028", - "info": { - "identifier": 160585028, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160585028", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 51, - "status": null, - "last_seen": 0, - "agency": "iad", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262565/160585028/262565_RX571123_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.862309", - "last_seen": "2025-06-01T22:06:15.772133", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200198, - 51.52938 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.41, - "qmprice": 63.96, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/160585403", - "info": { - "identifier": 160585403, - "sqm_ocr": 59.41, - "price": 3800.0, - "price_per_sqm": 63.9622959097795, - "url": "https://www.rightmove.co.uk/properties/160585403", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160585403/87187_53797_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.100370", - "last_seen": "2025-06-01T22:05:53.784935", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095096, - 51.528923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/160586006", - "info": { - "identifier": 160586006, - "sqm_ocr": null, - "price": 3878.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160586006", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65872/160586006/65872_CWQ012511726_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.853652", - "last_seen": "2025-06-01T20:19:57.853652", - "price": 3878 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022601, - 51.507683 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160586516", - "info": { - "identifier": 160586516, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160586516", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "HASSLE FREE LETTINGS", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282827/160586516/282827_HFL240334_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.119229", - "last_seen": "2025-06-01T22:05:40.834069", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.286383, - 51.55199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160587041", - "info": { - "identifier": 160587041, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160587041", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35975/160587041/35975_06760550_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.484022", - "last_seen": "2025-06-01T22:05:51.186290", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.426, - 51.574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.04, - "qmprice": 35.14, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/160587455", - "info": { - "identifier": 160587455, - "sqm_ocr": 61.04, - "price": 2145.0, - "price_per_sqm": 35.14089121887287, - "url": "https://www.rightmove.co.uk/properties/160587455", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Goldschmidt & Howland", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73953/160587455/73953_2382743_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.206777", - "last_seen": "2025-06-01T22:05:38.957574", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1788, - 51.59021 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/160589270", - "info": { - "identifier": 160589270, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160589270", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77078/160589270/77078_0469_FJL046901113_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.867379", - "last_seen": "2025-06-01T22:05:47.466051", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052079, - 51.545326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160590020", - "info": { - "identifier": 160590020, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160590020", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93848/160590020/93848_0619_HRT061901166_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.797614", - "last_seen": "2025-06-01T22:06:11.575764", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01795, - 51.60075 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3270.0, - "url": "https://www.rightmove.co.uk/properties/160590473", - "info": { - "identifier": 160590473, - "sqm_ocr": null, - "price": 3270.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160590473", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Filton Hayes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272306/160590473/272306_FH_LC_W14_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.068937", - "last_seen": "2025-06-01T22:05:48.357860", - "price": 3270.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206, - 51.49342 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 41.8, - "qmprice": 52.63, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160590992", - "info": { - "identifier": 160590992, - "sqm_ocr": 41.8, - "price": 2200.0, - "price_per_sqm": 52.631578947368425, - "url": "https://www.rightmove.co.uk/properties/160590992", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/160590992/15945_1322511_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.524681", - "last_seen": "2025-06-01T22:06:14.491751", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191838, - 51.515034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.1, - "qmprice": 39.59, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160591124", - "info": { - "identifier": 160591124, - "sqm_ocr": 58.1, - "price": 2300.0, - "price_per_sqm": 39.586919104991395, - "url": "https://www.rightmove.co.uk/properties/160591124", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/160591124/15963_1322225_IMG_01_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.842868", - "last_seen": "2025-06-01T22:06:12.446037", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201693, - 51.44811 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160591730", - "info": { - "identifier": 160591730, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160591730", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81217/160591730/81217_0617_FJL061700924_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.838506", - "last_seen": "2025-06-01T22:05:47.411962", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078431, - 51.55879 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.1, - "qmprice": 32.85, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160591925", - "info": { - "identifier": 160591925, - "sqm_ocr": 76.1, - "price": 2500.0, - "price_per_sqm": 32.8515111695138, - "url": "https://www.rightmove.co.uk/properties/160591925", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/160591925/57272_1322521_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.840714", - "last_seen": "2025-06-01T22:05:58.770080", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302359, - 51.419144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.45, - "qmprice": 36.6, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160594046", - "info": { - "identifier": 160594046, - "sqm_ocr": 102.45, - "price": 3750.0, - "price_per_sqm": 36.603221083455345, - "url": "https://www.rightmove.co.uk/properties/160594046", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 44, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78395/160594046/78395_33811291_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.478033", - "last_seen": "2025-06-01T22:06:08.422437", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.051226, - 51.51173 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/160597142", - "info": { - "identifier": 160597142, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160597142", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Roberts Hunt & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46187/160597142/46187_28911593_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.048476", - "last_seen": "2025-06-01T22:05:52.511586", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.43257, - 51.449974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.2, - "qmprice": 44.17, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160597925", - "info": { - "identifier": 160597925, - "sqm_ocr": 53.2, - "price": 2350.0, - "price_per_sqm": 44.17293233082707, - "url": "https://www.rightmove.co.uk/properties/160597925", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/160597925/111056_1322533_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.073858", - "last_seen": "2025-06-01T22:06:09.790192", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.062761, - 51.506996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.3, - "qmprice": 27.64, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160598849", - "info": { - "identifier": 160598849, - "sqm_ocr": 101.3, - "price": 2800.0, - "price_per_sqm": 27.640671273445214, - "url": "https://www.rightmove.co.uk/properties/160598849", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Humphrey & CO Property Services", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79533/160598849/79533_33811654_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.837083", - "last_seen": "2025-06-01T22:05:49.979554", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108387, - 51.592854 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.1, - "qmprice": 25.58, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160600199", - "info": { - "identifier": 160600199, - "sqm_ocr": 82.1, - "price": 2100.0, - "price_per_sqm": 25.578562728380025, - "url": "https://www.rightmove.co.uk/properties/160600199", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Humphrey & CO Property Services", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79533/160600199/79533_33811705_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.823636", - "last_seen": "2025-06-01T22:06:11.631383", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.002179, - 51.591694 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160602836", - "info": { - "identifier": 160602836, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160602836", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65902/160602836/65902_SJQ012510941_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.724036", - "last_seen": "2025-06-01T22:06:15.115438", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174726, - 51.52783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.6, - "qmprice": 44.16, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160602890", - "info": { - "identifier": 160602890, - "sqm_ocr": 73.6, - "price": 3250.0, - "price_per_sqm": 44.15760869565218, - "url": "https://www.rightmove.co.uk/properties/160602890", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267758/160602890/267758_BKL250024_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.874202", - "last_seen": "2025-06-01T22:05:59.272212", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106169, - 51.455555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.6, - "qmprice": 42.33, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160603154", - "info": { - "identifier": 160603154, - "sqm_ocr": 75.6, - "price": 3200.0, - "price_per_sqm": 42.32804232804233, - "url": "https://www.rightmove.co.uk/properties/160603154", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/160603154/253853_1321615_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.436507", - "last_seen": "2025-06-01T22:06:06.974915", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099744, - 51.497074 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.7, - "qmprice": 30.26, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160603193", - "info": { - "identifier": 160603193, - "sqm_ocr": 72.7, - "price": 2200.0, - "price_per_sqm": 30.26134800550206, - "url": "https://www.rightmove.co.uk/properties/160603193", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/160603193/66771_1321909_IMG_02_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.137043", - "last_seen": "2025-06-01T22:06:00.188618", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112242, - 51.480602 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.41, - "qmprice": 43.98, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/160603898", - "info": { - "identifier": 160603898, - "sqm_ocr": 53.41, - "price": 2349.0, - "price_per_sqm": 43.98052799101292, - "url": "https://www.rightmove.co.uk/properties/160603898", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "ea2", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10387/160603898/10387_33811881_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.637563", - "last_seen": "2025-06-01T22:06:08.152447", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06269, - 51.507584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.99, - "qmprice": 48.76, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160604348", - "info": { - "identifier": 160604348, - "sqm_ocr": 79.99, - "price": 3900.0, - "price_per_sqm": 48.75609451181398, - "url": "https://www.rightmove.co.uk/properties/160604348", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44538/160604348/44538_WBL240240_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.635199", - "last_seen": "2025-06-01T22:05:59.747502", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147494, - 51.46265 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.5, - "qmprice": 42.47, - "rooms": 2, - "total_price": 2994.0, - "url": "https://www.rightmove.co.uk/properties/160604702", - "info": { - "identifier": 160604702, - "sqm_ocr": 70.5, - "price": 2994.0, - "price_per_sqm": 42.46808510638298, - "url": "https://www.rightmove.co.uk/properties/160604702", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50713/160604702/50713_33811912_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.555660", - "last_seen": "2025-06-01T22:06:16.008359", - "price": 2994 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192056, - 51.510307 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.8, - "qmprice": 43.47, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160605200", - "info": { - "identifier": 160605200, - "sqm_ocr": 64.8, - "price": 2817.0, - "price_per_sqm": 43.47222222222222, - "url": "https://www.rightmove.co.uk/properties/160605200", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/160605200/15960_1322550_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.414064", - "last_seen": "2025-06-01T22:06:15.299967", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176359, - 51.535267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160606760", - "info": { - "identifier": 160606760, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160606760", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53537/160606760/53537_PIL070148_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.041543", - "last_seen": "2025-06-01T22:06:14.524577", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13961, - 51.4926 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.59, - "qmprice": 42.95, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160607249", - "info": { - "identifier": 160607249, - "sqm_ocr": 65.59, - "price": 2817.0, - "price_per_sqm": 42.948620216496415, - "url": "https://www.rightmove.co.uk/properties/160607249", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/160607249/70038_5059_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.205461", - "last_seen": "2025-06-01T22:05:48.942724", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19296, - 51.479088 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/160612430", - "info": { - "identifier": 160612430, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160612430", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160612430/96668_244904911042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.963023", - "last_seen": "2025-06-01T22:06:05.343943", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105099, - 51.502655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160612889", - "info": { - "identifier": 160612889, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160612889", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "PropertyLoop", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222287/160612889/222287_gNvO9Ykq_IMG_01_0000_max_656x437.png", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.566542", - "last_seen": "2025-06-01T22:05:42.387572", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15887, - 51.55123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 158.9, - "qmprice": 22.91, - "rooms": 4, - "total_price": 3640.0, - "url": "https://www.rightmove.co.uk/properties/160620914", - "info": { - "identifier": 160620914, - "sqm_ocr": 158.9, - "price": 3640.0, - "price_per_sqm": 22.90748898678414, - "url": "https://www.rightmove.co.uk/properties/160620914", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/160620914/77192_17KEN_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.194261", - "last_seen": "2025-06-01T22:05:39.538707", - "price": 3640.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17303, - 51.60829 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/160621370", - "info": { - "identifier": 160621370, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160621370", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Nobledom", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242789/160621370/242789_scpl_2108467324_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.900831", - "last_seen": "2025-06-01T22:05:51.977384", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.333136, - 51.483643 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160621487", - "info": { - "identifier": 160621487, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160621487", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/160621487/77192_STG_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.972883", - "last_seen": "2025-06-01T22:05:45.916114", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11248, - 51.62639 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.42, - "qmprice": 31.05, - "rooms": 2, - "total_price": 2590.0, - "url": "https://www.rightmove.co.uk/properties/160622720", - "info": { - "identifier": 160622720, - "sqm_ocr": 83.42, - "price": 2590.0, - "price_per_sqm": 31.047710381203547, - "url": "https://www.rightmove.co.uk/properties/160622720", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143039/160622720/143039_CEI241671_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.505085", - "last_seen": "2025-06-01T22:05:46.245562", - "price": 2590.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.018222, - 51.49354 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.1, - "qmprice": 30.73, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160625825", - "info": { - "identifier": 160625825, - "sqm_ocr": 78.1, - "price": 2400.0, - "price_per_sqm": 30.72983354673496, - "url": "https://www.rightmove.co.uk/properties/160625825", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/160625825/107533_1322618_IMG_12_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.128585", - "last_seen": "2025-06-01T22:05:46.274277", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.004569, - 51.4905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/160626041", - "info": { - "identifier": 160626041, - "sqm_ocr": null, - "price": 2496.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160626041", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/160626041/191255_33812699_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.950228", - "last_seen": "2025-06-01T22:06:08.813241", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053419, - 51.50709 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 47.66, - "rooms": 2, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/160626716", - "info": { - "identifier": 160626716, - "sqm_ocr": 65.0, - "price": 3098.0, - "price_per_sqm": 47.66153846153846, - "url": "https://www.rightmove.co.uk/properties/160626716", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32391/160626716/32391_33812765_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.474109", - "last_seen": "2025-06-01T22:05:42.910034", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126419, - 51.52421 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.3, - "qmprice": 27.11, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160626725", - "info": { - "identifier": 160626725, - "sqm_ocr": 79.3, - "price": 2150.0, - "price_per_sqm": 27.112232030264817, - "url": "https://www.rightmove.co.uk/properties/160626725", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94220/160626725/94220_P293178_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.351483", - "last_seen": "2025-06-01T22:05:44.948284", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29959, - 51.52171 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.3, - "qmprice": 37.52, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/160626767", - "info": { - "identifier": 160626767, - "sqm_ocr": 77.3, - "price": 2900.0, - "price_per_sqm": 37.51617076326003, - "url": "https://www.rightmove.co.uk/properties/160626767", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82857/160626767/82857_1318612_IMG_09_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.049697", - "last_seen": "2025-06-01T17:39:04.543427", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024708, - 51.52809 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160627103", - "info": { - "identifier": 160627103, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160627103", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160627103/96668_244933012042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.986558", - "last_seen": "2025-06-01T22:05:59.463600", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126656, - 51.437614 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 46.85, - "rooms": 2, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/160627781", - "info": { - "identifier": 160627781, - "sqm_ocr": 80.0, - "price": 3748.0, - "price_per_sqm": 46.85, - "url": "https://www.rightmove.co.uk/properties/160627781", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/160627781/97423_CEI242024_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.625588", - "last_seen": "2025-06-01T22:06:10.156947", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071292, - 51.51427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.1, - "qmprice": 35.19, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/160629104", - "info": { - "identifier": 160629104, - "sqm_ocr": 88.1, - "price": 3100.0, - "price_per_sqm": 35.18728717366629, - "url": "https://www.rightmove.co.uk/properties/160629104", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Aspire", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45021/160629104/45021_CLM180024_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.703047", - "last_seen": "2025-06-01T22:05:59.819444", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125125, - 51.46714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160629407", - "info": { - "identifier": 160629407, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160629407", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 36, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160629407/96668_183771318092023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.324794", - "last_seen": "2025-06-01T22:05:45.278920", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26638, - 51.51029 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160629446", - "info": { - "identifier": 160629446, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160629446", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160629446/96668_244976712042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.385838", - "last_seen": "2025-06-01T22:05:46.831626", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.097268, - 51.48845 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.07, - "qmprice": 26.48, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160629563", - "info": { - "identifier": 160629563, - "sqm_ocr": 83.07, - "price": 2200.0, - "price_per_sqm": 26.483688455519445, - "url": "https://www.rightmove.co.uk/properties/160629563", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58897/160629563/58897_TOO220524_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.515004", - "last_seen": "2025-06-01T22:06:01.440367", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169134, - 51.4033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160633664", - "info": { - "identifier": 160633664, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160633664", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Domeview Properties", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53040/160633664/53040_612581_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.114744", - "last_seen": "2025-06-01T22:05:56.964365", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013554, - 51.496273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160635701", - "info": { - "identifier": 160635701, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160635701", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Guide Point Properties Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246506/160635701/246506_RL0205_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.064280", - "last_seen": "2025-06-01T22:05:48.315560", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.234362, - 51.50539 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.5, - "qmprice": 40.5, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160636022", - "info": { - "identifier": 160636022, - "sqm_ocr": 60.5, - "price": 2450.0, - "price_per_sqm": 40.49586776859504, - "url": "https://www.rightmove.co.uk/properties/160636022", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160636022/96668_244868811042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.638101", - "last_seen": "2025-06-01T22:05:48.571387", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207722, - 51.472492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160636421", - "info": { - "identifier": 160636421, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160636421", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160636421/96668_239924225022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.251642", - "last_seen": "2025-06-01T22:05:56.337561", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13274, - 51.53605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/160636481", - "info": { - "identifier": 160636481, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160636481", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 49, - "status": null, - "last_seen": 0, - "agency": "ENS Property Group Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247784/160636481/247784_247784-53254_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.881342", - "last_seen": "2025-06-01T22:06:00.278224", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042063, - 51.488113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160637243", - "info": { - "identifier": 160637243, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160637243", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160637243/96668_108244813042021_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.116718", - "last_seen": "2025-06-01T22:06:03.103218", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.072506, - 51.506855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160637249", - "info": { - "identifier": 160637249, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160637249", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160637249/96668_245028413042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.568910", - "last_seen": "2025-06-01T22:05:50.048027", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.111742, - 51.57648 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160637336", - "info": { - "identifier": 160637336, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160637336", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 44, - "status": null, - "last_seen": 0, - "agency": "HAUZOO", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/244k/243260/160637336/243260_L106709_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.341010", - "last_seen": "2025-06-01T22:05:48.775178", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216036, - 51.485844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160638653", - "info": { - "identifier": 160638653, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160638653", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160638653/96668_243206327032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.929476", - "last_seen": "2025-06-01T22:05:38.501470", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221034, - 51.571598 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 41.85, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/160639817", - "info": { - "identifier": 160639817, - "sqm_ocr": 69.9, - "price": 2925.0, - "price_per_sqm": 41.84549356223176, - "url": "https://www.rightmove.co.uk/properties/160639817", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/160639817/281129_Maple28_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.312347", - "last_seen": "2025-06-01T22:05:39.014262", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22111, - 51.57144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 40.77, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160639820", - "info": { - "identifier": 160639820, - "sqm_ocr": 69.9, - "price": 2850.0, - "price_per_sqm": 40.7725321888412, - "url": "https://www.rightmove.co.uk/properties/160639820", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/160639820/281129_Maple220510_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.306940", - "last_seen": "2025-06-01T22:05:38.997726", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22083, - 51.57143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/160640492", - "info": { - "identifier": 160640492, - "sqm_ocr": null, - "price": 2847.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160640492", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "Outlet Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34748/160640492/34748_33813054_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.013719", - "last_seen": "2025-06-01T22:06:13.338878", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184093, - 51.457775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.8, - "qmprice": 40.29, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160641449", - "info": { - "identifier": 160641449, - "sqm_ocr": 96.8, - "price": 3900.0, - "price_per_sqm": 40.28925619834711, - "url": "https://www.rightmove.co.uk/properties/160641449", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50692/160641449/50692_P276530_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.094099", - "last_seen": "2025-06-01T22:06:05.380030", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05503, - 51.47645 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.9, - "qmprice": 40.86, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160642382", - "info": { - "identifier": 160642382, - "sqm_ocr": 97.9, - "price": 4000.0, - "price_per_sqm": 40.85801838610827, - "url": "https://www.rightmove.co.uk/properties/160642382", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280514/160642382/280514_KRO250015_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.829178", - "last_seen": "2025-06-01T22:05:40.443107", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220561, - 51.53478 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 141.2, - "qmprice": 28.29, - "rooms": 4, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/160642853", - "info": { - "identifier": 160642853, - "sqm_ocr": 141.2, - "price": 3995.0, - "price_per_sqm": 28.29320113314448, - "url": "https://www.rightmove.co.uk/properties/160642853", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107632/160642853/107632_33813170_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.484525", - "last_seen": "2025-06-01T22:06:04.354082", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324461, - 51.46184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.5, - "qmprice": 35.81, - "rooms": 3, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/160644659", - "info": { - "identifier": 160644659, - "sqm_ocr": 79.5, - "price": 2847.0, - "price_per_sqm": 35.81132075471698, - "url": "https://www.rightmove.co.uk/properties/160644659", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/160644659/25485_33813298_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.946624", - "last_seen": "2025-06-01T22:05:40.270921", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203576, - 51.54505 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.1, - "qmprice": 55.09, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/160644935", - "info": { - "identifier": 160644935, - "sqm_ocr": 48.1, - "price": 2650.0, - "price_per_sqm": 55.09355509355509, - "url": "https://www.rightmove.co.uk/properties/160644935", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Hamways", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47472/160644935/47472_live/1688_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.384768", - "last_seen": "2025-06-01T22:05:42.590647", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117021, - 51.51948 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160645172", - "info": { - "identifier": 160645172, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160645172", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/160645172/209042_KMIN_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.970199", - "last_seen": "2025-06-01T22:05:53.714116", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100984, - 51.561676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.9, - "qmprice": 29.53, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/160645652", - "info": { - "identifier": 160645652, - "sqm_ocr": 99.9, - "price": 2950.0, - "price_per_sqm": 29.529529529529526, - "url": "https://www.rightmove.co.uk/properties/160645652", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Capital Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49739/160645652/49739_CPT_CPT_LFSYCL_393_548224138_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.400665", - "last_seen": "2025-06-01T22:05:41.670737", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.016072, - 51.41323 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.7, - "qmprice": 24.8, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160645766", - "info": { - "identifier": 160645766, - "sqm_ocr": 88.7, - "price": 2200.0, - "price_per_sqm": 24.80270574971815, - "url": "https://www.rightmove.co.uk/properties/160645766", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/160645766/52415_33813370_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.754229", - "last_seen": "2025-06-01T22:05:43.379004", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124888, - 51.41173 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 33.82, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160646051", - "info": { - "identifier": 160646051, - "sqm_ocr": 68.0, - "price": 2300.0, - "price_per_sqm": 33.8235294117647, - "url": "https://www.rightmove.co.uk/properties/160646051", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Knight Bishop", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74392/160646051/74392_6331_KBIS_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.288914", - "last_seen": "2025-06-01T22:06:09.971034", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.012586, - 51.519974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/160646885", - "info": { - "identifier": 160646885, - "sqm_ocr": null, - "price": 3198.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160646885", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Lessel", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191471/160646885/191471_33813453_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.735824", - "last_seen": "2025-06-01T22:05:58.569470", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302506, - 51.4146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2630.0, - "url": "https://www.rightmove.co.uk/properties/160647815", - "info": { - "identifier": 160647815, - "sqm_ocr": null, - "price": 2630.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160647815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262865/160647815/262865_a1G8d000002QBQwEAO_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.659833", - "last_seen": "2025-06-01T22:06:02.695990", - "price": 2630.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01024, - 51.5133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.2, - "qmprice": 25.37, - "rooms": 3, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/160649183", - "info": { - "identifier": 160649183, - "sqm_ocr": 112.2, - "price": 2847.0, - "price_per_sqm": 25.37433155080214, - "url": "https://www.rightmove.co.uk/properties/160649183", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202016/160649183/202016_33813612_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.687779", - "last_seen": "2025-06-01T22:05:44.556314", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.343076, - 51.524036 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.4, - "qmprice": 30.3, - "rooms": 2, - "total_price": 2709.0, - "url": "https://www.rightmove.co.uk/properties/160649669", - "info": { - "identifier": 160649669, - "sqm_ocr": 89.4, - "price": 2709.0, - "price_per_sqm": 30.30201342281879, - "url": "https://www.rightmove.co.uk/properties/160649669", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/160649669/48101_1322641_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.876533", - "last_seen": "2025-06-01T22:06:10.587447", - "price": 2709.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010585, - 51.504826 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.2, - "qmprice": 37.66, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160649756", - "info": { - "identifier": 160649756, - "sqm_ocr": 106.2, - "price": 4000.0, - "price_per_sqm": 37.664783427495294, - "url": "https://www.rightmove.co.uk/properties/160649756", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/160649756/253853_1322632_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.917021", - "last_seen": "2025-06-01T22:06:05.414071", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101881, - 51.49081 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160649900", - "info": { - "identifier": 160649900, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160649900", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/160649900/67576_RL0424_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.442640", - "last_seen": "2025-06-01T22:05:53.329037", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136209, - 51.55768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.0, - "qmprice": 25.77, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160650116", - "info": { - "identifier": 160650116, - "sqm_ocr": 97.0, - "price": 2500.0, - "price_per_sqm": 25.77319587628866, - "url": "https://www.rightmove.co.uk/properties/160650116", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/160650116/87815_1321749_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.174385", - "last_seen": "2025-06-01T22:05:39.522854", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207121, - 51.6148 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 51.89, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/160650476", - "info": { - "identifier": 160650476, - "sqm_ocr": 71.0, - "price": 3684.0, - "price_per_sqm": 51.88732394366197, - "url": "https://www.rightmove.co.uk/properties/160650476", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/160650476/15975_1322625_IMG_00_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.348796", - "last_seen": "2025-06-01T22:06:01.755682", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197585, - 51.43951 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160650518", - "info": { - "identifier": 160650518, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160650518", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Simple Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238226/160650518/238226_2285_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.758708", - "last_seen": "2025-06-01T22:05:51.411125", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.465859, - 51.527493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.96, - "qmprice": 22.24, - "rooms": 2, - "total_price": 2045.0, - "url": "https://www.rightmove.co.uk/properties/160651424", - "info": { - "identifier": 160651424, - "sqm_ocr": 91.96, - "price": 2045.0, - "price_per_sqm": 22.237929534580253, - "url": "https://www.rightmove.co.uk/properties/160651424", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Domovoi Management Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96610/160651424/96610_GARTHQ_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.842001", - "last_seen": "2025-06-01T22:06:00.637249", - "price": 2045.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05862, - 51.43946 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160653728", - "info": { - "identifier": 160653728, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160653728", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118693/160653728/118693_33813928_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.396499", - "last_seen": "2025-06-01T22:05:53.554636", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100082, - 51.542168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160653770", - "info": { - "identifier": 160653770, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160653770", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Your Move", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53480/160653770/53480_WLN250007_L_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.709260", - "last_seen": "2025-06-01T22:05:43.730969", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1052, - 51.3986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.5, - "qmprice": 44.09, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160653983", - "info": { - "identifier": 160653983, - "sqm_ocr": 63.5, - "price": 2800.0, - "price_per_sqm": 44.09448818897638, - "url": "https://www.rightmove.co.uk/properties/160653983", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/160653983/56751_1321377_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.780979", - "last_seen": "2025-06-01T22:05:59.932088", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118259, - 51.46562 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.9, - "qmprice": 27.43, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160654169", - "info": { - "identifier": 160654169, - "sqm_ocr": 72.9, - "price": 2000.0, - "price_per_sqm": 27.434842249657063, - "url": "https://www.rightmove.co.uk/properties/160654169", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Allen Davies & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6944/160654169/6944_3962_ALEN_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.870088", - "last_seen": "2025-06-01T22:06:11.917572", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013699, - 51.563652 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/160654961", - "info": { - "identifier": 160654961, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160654961", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Broadway & West", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95332/160654961/95332_153_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.756832", - "last_seen": "2025-06-01T22:05:49.468295", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.227243, - 51.494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160655912", - "info": { - "identifier": 160655912, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160655912", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Newhome Property Services Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/60k/59676/160655912/59676_GREEN303_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.795416", - "last_seen": "2025-06-01T22:06:02.518697", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0352, - 51.53643 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.68, - "qmprice": 38.42, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160656383", - "info": { - "identifier": 160656383, - "sqm_ocr": 67.68, - "price": 2600.0, - "price_per_sqm": 38.4160756501182, - "url": "https://www.rightmove.co.uk/properties/160656383", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49000/160656383/49000_CNL240271_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.782040", - "last_seen": "2025-06-01T22:06:10.973118", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.044117, - 51.510117 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/160656713", - "info": { - "identifier": 160656713, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160656713", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Rolfe East", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/5k/4083/160656713/4083_33814133_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.076786", - "last_seen": "2025-06-01T22:05:58.438544", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167412, - 51.49236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.77, - "qmprice": 24.16, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160656968", - "info": { - "identifier": 160656968, - "sqm_ocr": 82.77, - "price": 2000.0, - "price_per_sqm": 24.16334420683823, - "url": "https://www.rightmove.co.uk/properties/160656968", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Cromwells Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15626/160656968/15626_12642264_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.428839", - "last_seen": "2025-06-01T22:06:07.750930", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214722, - 51.355988 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.76, - "qmprice": 20.53, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160657286", - "info": { - "identifier": 160657286, - "sqm_ocr": 121.76, - "price": 2500.0, - "price_per_sqm": 20.532194480946124, - "url": "https://www.rightmove.co.uk/properties/160657286", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44703/160657286/44703_BEK250180_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.256675", - "last_seen": "2025-06-01T22:05:41.605245", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.060526, - 51.40249 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160657715", - "info": { - "identifier": 160657715, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160657715", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Brockenhurst Property Specialists", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58355/160657715/58355_RL0378_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.164658", - "last_seen": "2025-06-01T22:05:38.810964", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182487, - 51.5858 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160657883", - "info": { - "identifier": 160657883, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160657883", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160657883/87187_71033_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.305140", - "last_seen": "2025-06-01T22:05:39.825060", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238198, - 51.59475 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3699.0, - "url": "https://www.rightmove.co.uk/properties/160658459", - "info": { - "identifier": 160658459, - "sqm_ocr": null, - "price": 3699.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160658459", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/160658459/272819_33814272_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.768931", - "last_seen": "2025-06-01T22:06:11.506572", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013381, - 51.50007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 37.06, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/160658939", - "info": { - "identifier": 160658939, - "sqm_ocr": 85.0, - "price": 3150.0, - "price_per_sqm": 37.05882352941177, - "url": "https://www.rightmove.co.uk/properties/160658939", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160658939/87187_59250_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.074589", - "last_seen": "2025-06-01T22:05:47.913791", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094304, - 51.569233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.4, - "qmprice": 44.9, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/160661078", - "info": { - "identifier": 160661078, - "sqm_ocr": 82.4, - "price": 3700.0, - "price_per_sqm": 44.90291262135922, - "url": "https://www.rightmove.co.uk/properties/160661078", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/160661078/60927_000020439_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.564919", - "last_seen": "2025-06-01T22:05:48.472093", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22818, - 51.49424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160662014", - "info": { - "identifier": 160662014, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160662014", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Baker Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11302/160662014/11302_kbcclet_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.939164", - "last_seen": "2025-06-01T22:06:03.777753", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.09592, - 51.60577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.7, - "qmprice": 48.66, - "rooms": 2, - "total_price": 3294.0, - "url": "https://www.rightmove.co.uk/properties/160663061", - "info": { - "identifier": 160663061, - "sqm_ocr": 67.7, - "price": 3294.0, - "price_per_sqm": 48.65583456425406, - "url": "https://www.rightmove.co.uk/properties/160663061", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/160663061/253853_1322700_IMG_00_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.530058", - "last_seen": "2025-06-01T22:06:06.392099", - "price": 3294.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099489, - 51.492916 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160663328", - "info": { - "identifier": 160663328, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160663328", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89228/160663328/89228_WCL180277_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.768746", - "last_seen": "2025-06-01T22:05:41.398308", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299384, - 51.543194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160663958", - "info": { - "identifier": 160663958, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160663958", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160663958/87187_71045_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.757391", - "last_seen": "2025-06-01T22:06:10.757391", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066672, - 51.50791 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160664159", - "info": { - "identifier": 160664159, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160664159", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160664159/96668_243486630032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.745818", - "last_seen": "2025-06-01T22:05:46.636581", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017776, - 51.48232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160664438", - "info": { - "identifier": 160664438, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160664438", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Lawrence Rand", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46205/160664438/46205_f4fa904e-bf0c-4274-939c-69467a53cd67_IMG_10_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.876678", - "last_seen": "2025-06-01T22:05:50.483623", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.383882, - 51.57786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160665083", - "info": { - "identifier": 160665083, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160665083", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160665083/87187_71047_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.985691", - "last_seen": "2025-06-01T22:06:09.458494", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064912, - 51.508095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160665113", - "info": { - "identifier": 160665113, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160665113", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160665113/87187_69494_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.746181", - "last_seen": "2025-06-01T20:19:55.911754", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064946, - 51.508095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.7, - "qmprice": 53.5, - "rooms": 2, - "total_price": 2980.0, - "url": "https://www.rightmove.co.uk/properties/160666478", - "info": { - "identifier": 160666478, - "sqm_ocr": 55.7, - "price": 2980.0, - "price_per_sqm": 53.50089766606822, - "url": "https://www.rightmove.co.uk/properties/160666478", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64127/160666478/64127_1322179_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.994526", - "last_seen": "2025-06-01T22:05:42.941793", - "price": 2980.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130267, - 51.543686 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 25.0, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160667174", - "info": { - "identifier": 160667174, - "sqm_ocr": 80.0, - "price": 2000.0, - "price_per_sqm": 25.0, - "url": "https://www.rightmove.co.uk/properties/160667174", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Carter & Willow", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/60k/59646/160667174/59646_CW060139_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.291120", - "last_seen": "2025-06-01T22:05:50.905338", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.20797, - 51.55489 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160667282", - "info": { - "identifier": 160667282, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160667282", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Hamilton Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87784/160667282/87784_102974001067_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.955051", - "last_seen": "2025-06-01T22:05:50.507058", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31856, - 51.60165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.59, - "qmprice": 34.47, - "rooms": 2, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/160667723", - "info": { - "identifier": 160667723, - "sqm_ocr": 82.59, - "price": 2847.0, - "price_per_sqm": 34.47148565201598, - "url": "https://www.rightmove.co.uk/properties/160667723", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/160667723/136139_2710901_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.833922", - "last_seen": "2025-06-01T22:06:07.431149", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00498, - 51.52805 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160668743", - "info": { - "identifier": 160668743, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160668743", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lotus Carlton", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288473/160668743/288473_RL0011_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.737450", - "last_seen": "2025-06-01T22:05:38.604032", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180198, - 51.6118 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160669721", - "info": { - "identifier": 160669721, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160669721", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287963/160669721/287963_WHR110165_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.553250", - "last_seen": "2025-06-01T22:06:01.491830", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184452, - 51.419014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.65, - "qmprice": 39.44, - "rooms": 2, - "total_price": 2037.0, - "url": "https://www.rightmove.co.uk/properties/160670852", - "info": { - "identifier": 160670852, - "sqm_ocr": 51.65, - "price": 2037.0, - "price_per_sqm": 39.43852855759923, - "url": "https://www.rightmove.co.uk/properties/160670852", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/160670852/70038_5061_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.285868", - "last_seen": "2025-06-01T22:06:01.342382", - "price": 2036 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199113, - 51.43315 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 29.36, - "rooms": 3, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/160670879", - "info": { - "identifier": 160670879, - "sqm_ocr": 85.0, - "price": 2496.0, - "price_per_sqm": 29.36470588235294, - "url": "https://www.rightmove.co.uk/properties/160670879", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266774/160670879/266774_33815114_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.477109", - "last_seen": "2025-06-01T22:05:40.642014", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25067, - 51.53913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/160671110", - "info": { - "identifier": 160671110, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160671110", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 48, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/160671110/181787_181787_997_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.755746", - "last_seen": "2025-06-01T22:06:06.794317", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09411, - 51.4958 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.5, - "qmprice": 34.0, - "rooms": 4, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/160671689", - "info": { - "identifier": 160671689, - "sqm_ocr": 117.5, - "price": 3995.0, - "price_per_sqm": 34.0, - "url": "https://www.rightmove.co.uk/properties/160671689", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84818/160671689/84818_33815173_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.303772", - "last_seen": "2025-06-01T22:06:04.776196", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.358001, - 51.440132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160671752", - "info": { - "identifier": 160671752, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160671752", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Wynn Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224318/160671752/224318_74BearRoad_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.293490", - "last_seen": "2025-06-01T22:05:52.253647", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.39087, - 51.43082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160671809", - "info": { - "identifier": 160671809, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160671809", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Chase Apartments", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34047/160671809/34047_33815161_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.857681", - "last_seen": "2025-06-01T22:06:15.009424", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143047, - 51.4951 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.9, - "qmprice": 40.26, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/160672370", - "info": { - "identifier": 160672370, - "sqm_ocr": 61.9, - "price": 2492.0, - "price_per_sqm": 40.25848142164782, - "url": "https://www.rightmove.co.uk/properties/160672370", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/160672370/15945_1322731_IMG_10_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.182185", - "last_seen": "2025-06-01T22:05:58.478812", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206916, - 51.524113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 32.83, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/160672628", - "info": { - "identifier": 160672628, - "sqm_ocr": 69.3, - "price": 2275.0, - "price_per_sqm": 32.82828282828283, - "url": "https://www.rightmove.co.uk/properties/160672628", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Alter & Cope", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80460/160672628/80460_RL0129_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.837002", - "last_seen": "2025-06-01T22:06:02.602272", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013047, - 51.5123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160672910", - "info": { - "identifier": 160672910, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160672910", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/160672910/48994_CNL220204_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.976297", - "last_seen": "2025-06-01T17:39:04.489800", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005493, - 51.512802 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160673057", - "info": { - "identifier": 160673057, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160673057", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Birchills", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115933/160673057/115933_7706df4a-aaa7-47f0-9550-bca7cbef2204_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.513485", - "last_seen": "2025-06-01T22:06:02.781413", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.064513, - 51.547024 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.6, - "qmprice": 33.28, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160673090", - "info": { - "identifier": 160673090, - "sqm_ocr": 64.6, - "price": 2150.0, - "price_per_sqm": 33.28173374613004, - "url": "https://www.rightmove.co.uk/properties/160673090", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Pedder", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21476/160673090/21476_33815259_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.628282", - "last_seen": "2025-06-01T22:05:59.768818", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089997, - 51.43088 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/160674053", - "info": { - "identifier": 160674053, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160674053", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/160674053/174452_4519_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.410919", - "last_seen": "2025-06-01T22:05:46.650917", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00797, - 51.50093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/160674284", - "info": { - "identifier": 160674284, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160674284", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Tony Alan Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250175/160674284/250175_101757006388_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.005040", - "last_seen": "2025-06-01T17:39:04.509736", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0191, - 51.50139 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160674317", - "info": { - "identifier": 160674317, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160674317", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Castles Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/126k/125137/160674317/125137_2473977_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.728720", - "last_seen": "2025-06-01T22:05:49.619408", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10819, - 51.5908 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.96, - "qmprice": 24.27, - "rooms": 3, - "total_price": 2645.0, - "url": "https://www.rightmove.co.uk/properties/160674326", - "info": { - "identifier": 160674326, - "sqm_ocr": 108.96, - "price": 2645.0, - "price_per_sqm": 24.27496328928047, - "url": "https://www.rightmove.co.uk/properties/160674326", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Nicholas Ashley", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18765/160674326/18765_2434736_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.220349", - "last_seen": "2025-06-01T22:06:05.077829", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06802, - 51.46884 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160674620", - "info": { - "identifier": 160674620, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160674620", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Hammonds", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39003/160674620/39003_33815359_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.803960", - "last_seen": "2025-06-01T22:06:10.615333", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029201, - 51.5292 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.0, - "qmprice": 39.19, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/160677215", - "info": { - "identifier": 160677215, - "sqm_ocr": 94.0, - "price": 3684.0, - "price_per_sqm": 39.191489361702125, - "url": "https://www.rightmove.co.uk/properties/160677215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/160677215/15957_1314185_IMG_01_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.190196", - "last_seen": "2025-06-01T22:05:41.990297", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168068, - 51.54785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160677329", - "info": { - "identifier": 160677329, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160677329", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/160677329/222842_TCT230122_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.002974", - "last_seen": "2025-06-01T22:06:09.460541", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020144, - 51.499264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.3, - "qmprice": 47.39, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160677608", - "info": { - "identifier": 160677608, - "sqm_ocr": 63.3, - "price": 3000.0, - "price_per_sqm": 47.39336492890995, - "url": "https://www.rightmove.co.uk/properties/160677608", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/160677608/16050_1322778_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.155257", - "last_seen": "2025-06-01T22:05:47.378652", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079135, - 51.527218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.7, - "qmprice": 25.98, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160678232", - "info": { - "identifier": 160678232, - "sqm_ocr": 109.7, - "price": 2850.0, - "price_per_sqm": 25.979945305378305, - "url": "https://www.rightmove.co.uk/properties/160678232", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257069/160678232/257069_33815579_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.115433", - "last_seen": "2025-06-01T22:06:00.800049", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015099, - 51.47127 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.15, - "qmprice": 61.04, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160678355", - "info": { - "identifier": 160678355, - "sqm_ocr": 49.15, - "price": 3000.0, - "price_per_sqm": 61.037639877924725, - "url": "https://www.rightmove.co.uk/properties/160678355", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Westways", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44562/160678355/44562_101306004948_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.981459", - "last_seen": "2025-06-01T22:06:14.601935", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187405, - 51.512836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160678373", - "info": { - "identifier": 160678373, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160678373", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160678373/96668_245109814042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.207063", - "last_seen": "2025-06-01T22:06:05.143698", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079453, - 51.50031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2903.0, - "url": "https://www.rightmove.co.uk/properties/160679780", - "info": { - "identifier": 160679780, - "sqm_ocr": null, - "price": 2903.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160679780", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Olivers Town", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54833/160679780/54833_90388_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.878318", - "last_seen": "2025-06-01T22:05:53.701466", - "price": 2903 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137502, - 51.568325 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/160680194", - "info": { - "identifier": 160680194, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160680194", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/160680194/49784_39661_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.412403", - "last_seen": "2025-06-01T22:06:06.053338", - "price": 2795 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091, - 51.48423 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/160680548", - "info": { - "identifier": 160680548, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160680548", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156527/160680548/156527_P276544_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.623259", - "last_seen": "2025-06-01T22:06:06.786364", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09943, - 51.4823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.2, - "qmprice": 33.87, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160681112", - "info": { - "identifier": 160681112, - "sqm_ocr": 81.2, - "price": 2750.0, - "price_per_sqm": 33.86699507389162, - "url": "https://www.rightmove.co.uk/properties/160681112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/160681112/15981_1319114_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.964008", - "last_seen": "2025-06-01T22:05:59.418009", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136628, - 51.442265 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.7, - "qmprice": 52.67, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160681175", - "info": { - "identifier": 160681175, - "sqm_ocr": 61.7, - "price": 3250.0, - "price_per_sqm": 52.6742301458671, - "url": "https://www.rightmove.co.uk/properties/160681175", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/160681175/55101_1322782_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.137799", - "last_seen": "2025-06-01T22:05:59.218652", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112094, - 51.49986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.4, - "qmprice": 39.93, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160681190", - "info": { - "identifier": 160681190, - "sqm_ocr": 81.4, - "price": 3250.0, - "price_per_sqm": 39.926289926289925, - "url": "https://www.rightmove.co.uk/properties/160681190", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/160681190/253853_1320278_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.867359", - "last_seen": "2025-06-01T22:06:04.940390", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101788, - 51.49341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.3, - "qmprice": 44.6, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160681310", - "info": { - "identifier": 160681310, - "sqm_ocr": 58.3, - "price": 2600.0, - "price_per_sqm": 44.59691252144083, - "url": "https://www.rightmove.co.uk/properties/160681310", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/160681310/16050_1322799_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.381340", - "last_seen": "2025-06-01T22:05:47.717179", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076252, - 51.526855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.0, - "qmprice": 59.96, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/160681571", - "info": { - "identifier": 160681571, - "sqm_ocr": 56.0, - "price": 3358.0, - "price_per_sqm": 59.964285714285715, - "url": "https://www.rightmove.co.uk/properties/160681571", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Mountgrange Heritage", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32328/160681571/32328_61991_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.031121", - "last_seen": "2025-06-01T22:05:57.813321", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195051, - 51.495792 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.1, - "qmprice": 34.67, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160681670", - "info": { - "identifier": 160681670, - "sqm_ocr": 72.1, - "price": 2500.0, - "price_per_sqm": 34.674063800277395, - "url": "https://www.rightmove.co.uk/properties/160681670", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/160681670/107533_1322065_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.403039", - "last_seen": "2025-06-01T22:05:46.829786", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005103, - 51.49051 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.1, - "qmprice": 35.71, - "rooms": 2, - "total_price": 3146.0, - "url": "https://www.rightmove.co.uk/properties/160682066", - "info": { - "identifier": 160682066, - "sqm_ocr": 88.1, - "price": 3146.0, - "price_per_sqm": 35.709421112372304, - "url": "https://www.rightmove.co.uk/properties/160682066", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/160682066/82537_33815861_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.932904", - "last_seen": "2025-06-01T17:39:04.448334", - "price": 3146 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018093, - 51.501255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.1, - "qmprice": 35.71, - "rooms": 2, - "total_price": 3146.0, - "url": "https://www.rightmove.co.uk/properties/160682132", - "info": { - "identifier": 160682132, - "sqm_ocr": 88.1, - "price": 3146.0, - "price_per_sqm": 35.709421112372304, - "url": "https://www.rightmove.co.uk/properties/160682132", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/160682132/198539_33815865_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.528195", - "last_seen": "2025-06-01T22:06:08.308349", - "price": 3146 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018093, - 51.501255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/160682948", - "info": { - "identifier": 160682948, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160682948", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Lawsons & Daughters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42473/160682948/42473_12353979_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.413446", - "last_seen": "2025-06-01T22:05:43.645889", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052732, - 51.39275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160683017", - "info": { - "identifier": 160683017, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160683017", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/160683017/82537_33815894_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.430152", - "last_seen": "2025-06-01T20:19:58.142294", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024598, - 51.502117 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160683035", - "info": { - "identifier": 160683035, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160683035", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/160683035/198539_33815895_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.372044", - "last_seen": "2025-06-01T20:19:58.088841", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024598, - 51.502117 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160683047", - "info": { - "identifier": 160683047, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160683047", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160683047/96668_235659118012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.206037", - "last_seen": "2025-06-01T22:06:04.803692", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.296485, - 51.46526 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 154.5, - "qmprice": 24.27, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160683479", - "info": { - "identifier": 160683479, - "sqm_ocr": 154.5, - "price": 3750.0, - "price_per_sqm": 24.271844660194176, - "url": "https://www.rightmove.co.uk/properties/160683479", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/160683479/87815_1313941_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.523226", - "last_seen": "2025-06-01T22:05:39.681016", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188263, - 51.599285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.2, - "qmprice": 41.56, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160683569", - "info": { - "identifier": 160683569, - "sqm_ocr": 78.2, - "price": 3250.0, - "price_per_sqm": 41.56010230179028, - "url": "https://www.rightmove.co.uk/properties/160683569", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151658/160683569/151658_1318536_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.121354", - "last_seen": "2025-06-01T22:06:15.468290", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189241, - 51.53182 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.7, - "qmprice": 37.2, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/160683698", - "info": { - "identifier": 160683698, - "sqm_ocr": 61.7, - "price": 2295.0, - "price_per_sqm": 37.19611021069692, - "url": "https://www.rightmove.co.uk/properties/160683698", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160683698/96668_242086117032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.856931", - "last_seen": "2025-06-01T22:05:40.373747", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213968, - 51.53175 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.6, - "qmprice": 60.71, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/160683731", - "info": { - "identifier": 160683731, - "sqm_ocr": 57.6, - "price": 3497.0, - "price_per_sqm": 60.71180555555556, - "url": "https://www.rightmove.co.uk/properties/160683731", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77695/160683731/77695_33815922_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.087683", - "last_seen": "2025-06-01T22:06:14.448417", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138159, - 51.488625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/160684118", - "info": { - "identifier": 160684118, - "sqm_ocr": null, - "price": 3987.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160684118", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22209/160684118/22209_FLL250011_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.787744", - "last_seen": "2025-06-01T22:05:49.406329", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190661, - 51.469486 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160685459", - "info": { - "identifier": 160685459, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160685459", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Andrews Letting and Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33326/160685459/33326_BAL250007_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.650114", - "last_seen": "2025-06-01T22:06:12.600755", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21626, - 51.446865 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160685771", - "info": { - "identifier": 160685771, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160685771", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77583/160685771/77583_YLT190031_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.400050", - "last_seen": "2025-06-01T22:06:04.820023", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.341158, - 51.430984 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160686242", - "info": { - "identifier": 160686242, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160686242", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160686242/96668_245086914042025_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.787711", - "last_seen": "2025-06-01T17:39:00.404807", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.126204, - 51.575127 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160686347", - "info": { - "identifier": 160686347, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160686347", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14543/160686347/14543_CIT140139_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.739148", - "last_seen": "2025-06-01T22:05:54.112648", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10481, - 51.520786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/160687175", - "info": { - "identifier": 160687175, - "sqm_ocr": null, - "price": 2375.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160687175", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160687175/96668_242904424032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.603016", - "last_seen": "2025-06-01T22:06:01.579644", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202296, - 51.428543 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.1, - "qmprice": 35.1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160691555", - "info": { - "identifier": 160691555, - "sqm_ocr": 64.1, - "price": 2250.0, - "price_per_sqm": 35.10140405616225, - "url": "https://www.rightmove.co.uk/properties/160691555", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Newbrix", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274292/160691555/274292_33816201_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.527293", - "last_seen": "2025-06-01T22:06:01.074469", - "price": 2175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217837, - 51.416065 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 142.5, - "qmprice": 28.07, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160695335", - "info": { - "identifier": 160695335, - "sqm_ocr": 142.5, - "price": 4000.0, - "price_per_sqm": 28.07017543859649, - "url": "https://www.rightmove.co.uk/properties/160695335", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72056/160695335/72056_33816428_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.294553", - "last_seen": "2025-06-01T22:06:14.278705", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15034, - 51.42963 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/160696370", - "info": { - "identifier": 160696370, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160696370", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Kew", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260411/160696370/260411_000016935_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.866873", - "last_seen": "2025-06-01T22:05:52.111117", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29076, - 51.48813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.94, - "qmprice": 36.87, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160697450", - "info": { - "identifier": 160697450, - "sqm_ocr": 94.94, - "price": 3500.0, - "price_per_sqm": 36.86538866652623, - "url": "https://www.rightmove.co.uk/properties/160697450", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7110/160697450/7110_P1189C0306_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.591230", - "last_seen": "2025-06-01T22:06:12.806233", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21988, - 51.44768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.5, - "qmprice": 45.11, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160698428", - "info": { - "identifier": 160698428, - "sqm_ocr": 66.5, - "price": 3000.0, - "price_per_sqm": 45.11278195488722, - "url": "https://www.rightmove.co.uk/properties/160698428", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/160698428/54616_DAN190271_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.958856", - "last_seen": "2025-06-01T22:05:52.978340", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117926, - 51.56219 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.3, - "qmprice": 41.06, - "rooms": 2, - "total_price": 2353.0, - "url": "https://www.rightmove.co.uk/properties/160698662", - "info": { - "identifier": 160698662, - "sqm_ocr": 57.3, - "price": 2353.0, - "price_per_sqm": 41.06457242582897, - "url": "https://www.rightmove.co.uk/properties/160698662", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71134/160698662/71134_33816651_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.694734", - "last_seen": "2025-06-01T22:05:54.191120", - "price": 2353 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093846, - 51.52345 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160698914", - "info": { - "identifier": 160698914, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160698914", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160698914/96668_245136114042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.107811", - "last_seen": "2025-06-01T22:06:14.353279", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167526, - 51.52092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.92, - "qmprice": 39.11, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160699166", - "info": { - "identifier": 160699166, - "sqm_ocr": 63.92, - "price": 2500.0, - "price_per_sqm": 39.11138923654568, - "url": "https://www.rightmove.co.uk/properties/160699166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 44, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71785/160699166/71785_33816679_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.106076", - "last_seen": "2025-06-01T22:05:59.607496", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144989, - 51.45357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 138.98, - "qmprice": 23.38, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160699931", - "info": { - "identifier": 160699931, - "sqm_ocr": 138.98, - "price": 3250.0, - "price_per_sqm": 23.3846596632609, - "url": "https://www.rightmove.co.uk/properties/160699931", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/160699931/194222_HRP140159_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.436838", - "last_seen": "2025-06-01T22:06:01.679395", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23907, - 51.39312 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160700222", - "info": { - "identifier": 160700222, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160700222", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93929/160700222/93929_100533000693_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.301464", - "last_seen": "2025-06-01T22:05:50.999215", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.22158, - 51.54986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.5, - "qmprice": 36.64, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160700456", - "info": { - "identifier": 160700456, - "sqm_ocr": 65.5, - "price": 2400.0, - "price_per_sqm": 36.6412213740458, - "url": "https://www.rightmove.co.uk/properties/160700456", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Pedder", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21479/160700456/21479_33816769_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.308169", - "last_seen": "2025-06-01T22:06:06.030717", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066904, - 51.443176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.3, - "qmprice": 32.57, - "rooms": 2, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/160701035", - "info": { - "identifier": 160701035, - "sqm_ocr": 81.3, - "price": 2648.0, - "price_per_sqm": 32.570725707257075, - "url": "https://www.rightmove.co.uk/properties/160701035", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/160701035/84788_33816796_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.199776", - "last_seen": "2025-06-01T22:05:51.804914", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.271676, - 51.493046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.26, - "qmprice": 51.38, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160701770", - "info": { - "identifier": 160701770, - "sqm_ocr": 63.26, - "price": 3250.0, - "price_per_sqm": 51.375276636104964, - "url": "https://www.rightmove.co.uk/properties/160701770", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Goldschmidt & Howland", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73938/160701770/73938_2711454_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.778136", - "last_seen": "2025-06-01T22:05:43.151636", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1545, - 51.54154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.2, - "qmprice": 41.56, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160701773", - "info": { - "identifier": 160701773, - "sqm_ocr": 78.2, - "price": 3250.0, - "price_per_sqm": 41.56010230179028, - "url": "https://www.rightmove.co.uk/properties/160701773", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14546/160701773/14546_DLL250016_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.575023", - "last_seen": "2025-06-01T20:19:58.210753", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03037, - 51.507736 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160701809", - "info": { - "identifier": 160701809, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160701809", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/160701809/209042_OJD-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.692298", - "last_seen": "2025-06-01T22:05:44.789794", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300126, - 51.507404 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.3, - "qmprice": 46.04, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160702382", - "info": { - "identifier": 160702382, - "sqm_ocr": 54.3, - "price": 2500.0, - "price_per_sqm": 46.04051565377532, - "url": "https://www.rightmove.co.uk/properties/160702382", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11495/160702382/11495_0435_FJL043502241_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.897574", - "last_seen": "2025-06-01T20:19:55.992126", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065985, - 51.514767 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 40.53, - "rooms": 2, - "total_price": 2513.0, - "url": "https://www.rightmove.co.uk/properties/160702412", - "info": { - "identifier": 160702412, - "sqm_ocr": 62.0, - "price": 2513.0, - "price_per_sqm": 40.53225806451613, - "url": "https://www.rightmove.co.uk/properties/160702412", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Paramount", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62636/160702412/62636_PAR210181_L_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.727391", - "last_seen": "2025-06-01T22:05:43.224036", - "price": 2513.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18949, - 51.547737 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.1, - "qmprice": 34.5, - "rooms": 2, - "total_price": 2384.0, - "url": "https://www.rightmove.co.uk/properties/160702532", - "info": { - "identifier": 160702532, - "sqm_ocr": 69.1, - "price": 2384.0, - "price_per_sqm": 34.50072358900145, - "url": "https://www.rightmove.co.uk/properties/160702532", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/160702532/15957_1318197_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.397592", - "last_seen": "2025-06-01T22:05:42.907974", - "price": 2384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194776, - 51.54205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.14, - "qmprice": 28.31, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160703552", - "info": { - "identifier": 160703552, - "sqm_ocr": 97.14, - "price": 2750.0, - "price_per_sqm": 28.309656166357833, - "url": "https://www.rightmove.co.uk/properties/160703552", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Whitman & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67487/160703552/67487_33816960_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.024864", - "last_seen": "2025-06-01T22:05:52.684634", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.268838, - 51.492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160703594", - "info": { - "identifier": 160703594, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160703594", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Discover Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/185k/184304/160703594/184304_e6_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.876294", - "last_seen": "2025-06-01T22:06:02.708465", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.04095, - 51.52958 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160703813", - "info": { - "identifier": 160703813, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160703813", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Heimstaden UK Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266630/160703813/266630_ARU-707179_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.330465", - "last_seen": "2025-06-01T22:05:38.954952", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175348, - 51.649395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160705490", - "info": { - "identifier": 160705490, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160705490", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/160705490/272819_33817044_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.642102", - "last_seen": "2025-06-01T22:06:01.217291", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23574, - 51.40208 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160705541", - "info": { - "identifier": 160705541, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160705541", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/160705541/48994_CNL250104_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.612120", - "last_seen": "2025-06-01T22:05:46.114593", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.080584, - 51.49744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/160705676", - "info": { - "identifier": 160705676, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160705676", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/160705676/17888_39179_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.559960", - "last_seen": "2025-06-01T22:05:42.285690", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1465, - 51.5362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/160706006", - "info": { - "identifier": 160706006, - "sqm_ocr": null, - "price": 2448.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160706006", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/160706006/17888_33782_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.311976", - "last_seen": "2025-06-01T22:06:15.483980", - "price": 2361 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19384, - 51.52768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160706195", - "info": { - "identifier": 160706195, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160706195", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Hiltons Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.427284", - "last_seen": "2025-06-01T22:05:44.161358", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33263, - 51.53279 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 34.6, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/160706798", - "info": { - "identifier": 160706798, - "sqm_ocr": 65.0, - "price": 2249.0, - "price_per_sqm": 34.6, - "url": "https://www.rightmove.co.uk/properties/160706798", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50343/160706798/50343_33817137_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.457605", - "last_seen": "2025-06-01T22:05:40.541311", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2281, - 51.54675 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.7, - "qmprice": 56.21, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160707047", - "info": { - "identifier": 160707047, - "sqm_ocr": 50.7, - "price": 2850.0, - "price_per_sqm": 56.213017751479285, - "url": "https://www.rightmove.co.uk/properties/160707047", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/160707047/15981_1322875_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.291335", - "last_seen": "2025-06-01T22:06:00.060192", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13882, - 51.450283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 148.4, - "qmprice": 20.22, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160707428", - "info": { - "identifier": 160707428, - "sqm_ocr": 148.4, - "price": 3000.0, - "price_per_sqm": 20.21563342318059, - "url": "https://www.rightmove.co.uk/properties/160707428", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100426/160707428/100426_1312559_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.584140", - "last_seen": "2025-06-01T22:05:43.418790", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.086116, - 51.401184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.31, - "qmprice": 43.39, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160707608", - "info": { - "identifier": 160707608, - "sqm_ocr": 55.31, - "price": 2400.0, - "price_per_sqm": 43.39179171939975, - "url": "https://www.rightmove.co.uk/properties/160707608", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/160707608/80340_a1G4J0000025yfzUAA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.370891", - "last_seen": "2025-06-01T22:06:06.322779", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09812, - 51.50341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.6, - "qmprice": 25.1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160707818", - "info": { - "identifier": 160707818, - "sqm_ocr": 99.6, - "price": 2500.0, - "price_per_sqm": 25.100401606425706, - "url": "https://www.rightmove.co.uk/properties/160707818", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160707818/96668_243387028032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.893433", - "last_seen": "2025-06-01T22:06:00.671432", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.019713, - 51.44294 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160707899", - "info": { - "identifier": 160707899, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160707899", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/160707899/49784_33723_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.260765", - "last_seen": "2025-06-01T22:06:09.648576", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05668, - 51.51559 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 43.1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160708046", - "info": { - "identifier": 160708046, - "sqm_ocr": 75.4, - "price": 3250.0, - "price_per_sqm": 43.103448275862064, - "url": "https://www.rightmove.co.uk/properties/160708046", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/160708046/55101_1322873_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.284700", - "last_seen": "2025-06-01T22:06:05.897051", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068984, - 51.49727 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.34, - "qmprice": 37.64, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160708109", - "info": { - "identifier": 160708109, - "sqm_ocr": 86.34, - "price": 3250.0, - "price_per_sqm": 37.64188093583507, - "url": "https://www.rightmove.co.uk/properties/160708109", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244724/160708109/244724_CLV191807_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "24/02/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.136537", - "last_seen": "2025-06-01T22:06:00.017471", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128589, - 51.481354 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.78, - "qmprice": 50.79, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160708166", - "info": { - "identifier": 160708166, - "sqm_ocr": 76.78, - "price": 3900.0, - "price_per_sqm": 50.794477728575146, - "url": "https://www.rightmove.co.uk/properties/160708166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/160708166/272819_33817233_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.482485", - "last_seen": "2025-06-01T22:05:49.260565", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.368365, - 51.474514 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160708256", - "info": { - "identifier": 160708256, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160708256", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89593/160708256/89593_000798987_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.563749", - "last_seen": "2025-06-01T22:05:43.556576", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12588, - 51.32527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160708928", - "info": { - "identifier": 160708928, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160708928", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/160708928/54616_DAN250147_L_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.004962", - "last_seen": "2025-06-01T22:05:55.042719", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12318, - 51.55996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3337.0, - "url": "https://www.rightmove.co.uk/properties/160709207", - "info": { - "identifier": 160709207, - "sqm_ocr": null, - "price": 3337.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160709207", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/160709207/120463_33817311_IMG_00_0000_max_656x437.png", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.310819", - "last_seen": "2025-06-01T22:06:14.711098", - "price": 3336 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166249, - 51.524033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/160709360", - "info": { - "identifier": 160709360, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160709360", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/160709360/120463_33817320_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.550663", - "last_seen": "2025-06-01T22:06:16.109570", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165068, - 51.52187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.78, - "qmprice": 50.79, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160709672", - "info": { - "identifier": 160709672, - "sqm_ocr": 76.78, - "price": 3900.0, - "price_per_sqm": 50.794477728575146, - "url": "https://www.rightmove.co.uk/properties/160709672", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/132k/131152/160709672/131152_33817341_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.669581", - "last_seen": "2025-06-01T22:05:48.522147", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23478, - 51.49196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.8, - "qmprice": 51.22, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/160710251", - "info": { - "identifier": 160710251, - "sqm_ocr": 69.8, - "price": 3575.0, - "price_per_sqm": 51.21776504297994, - "url": "https://www.rightmove.co.uk/properties/160710251", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43739/160710251/43739_P299009_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.340481", - "last_seen": "2025-06-01T22:06:15.410715", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15349, - 51.52232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160710839", - "info": { - "identifier": 160710839, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160710839", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Forest Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15011/160710839/15011_Fel0009FA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.149423", - "last_seen": "2025-06-01T22:05:51.879479", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.38889, - 51.443256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.47, - "qmprice": 42.97, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160711946", - "info": { - "identifier": 160711946, - "sqm_ocr": 74.47, - "price": 3200.0, - "price_per_sqm": 42.970323620249765, - "url": "https://www.rightmove.co.uk/properties/160711946", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160711946/87187_45180_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.352065", - "last_seen": "2025-06-01T22:05:48.431741", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20772, - 51.49454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.94, - "qmprice": 32.21, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160712480", - "info": { - "identifier": 160712480, - "sqm_ocr": 86.94, - "price": 2800.0, - "price_per_sqm": 32.2061191626409, - "url": "https://www.rightmove.co.uk/properties/160712480", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Winkworth Crystal Palace", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68930/160712480/68930_CRY250138_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.642196", - "last_seen": "2025-06-01T22:06:00.199594", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087238, - 51.423546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.4, - "qmprice": 41.49, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160713452", - "info": { - "identifier": 160713452, - "sqm_ocr": 96.4, - "price": 4000.0, - "price_per_sqm": 41.49377593360995, - "url": "https://www.rightmove.co.uk/properties/160713452", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160713452/87187_71090_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.535659", - "last_seen": "2025-06-01T22:05:53.353974", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095091, - 51.528942 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/160713464", - "info": { - "identifier": 160713464, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160713464", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Abacus Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26267/160713464/26267_ABAC_012363_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.444390", - "last_seen": "2025-06-01T22:05:40.509182", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229298, - 51.546333 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160713755", - "info": { - "identifier": 160713755, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160713755", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Stoneshaw Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42177/160713755/42177_89e27b9d-faa0-40b3-b2c6-08959b0872b2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.040624", - "last_seen": "2025-06-01T22:05:38.217233", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.157459, - 51.55375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160714655", - "info": { - "identifier": 160714655, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160714655", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Curtis And Parker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278867/160714655/278867_33817671_IMG_10_0002_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.682859", - "last_seen": "2025-06-01T22:06:06.811667", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102883, - 51.50271 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.3, - "qmprice": 42.97, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/160715645", - "info": { - "identifier": 160715645, - "sqm_ocr": 73.3, - "price": 3150.0, - "price_per_sqm": 42.97407912687586, - "url": "https://www.rightmove.co.uk/properties/160715645", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84806/160715645/84806_33817808_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.249103", - "last_seen": "2025-06-01T22:06:04.518350", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299671, - 51.45549 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 37.39, - "qmprice": 69.54, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160716146", - "info": { - "identifier": 160716146, - "sqm_ocr": 37.39, - "price": 2600.0, - "price_per_sqm": 69.537309441027, - "url": "https://www.rightmove.co.uk/properties/160716146", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/160716146/108515_1321399_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.544765", - "last_seen": "2025-06-01T22:05:58.224651", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187875, - 51.485615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3423.0, - "url": "https://www.rightmove.co.uk/properties/160716944", - "info": { - "identifier": 160716944, - "sqm_ocr": null, - "price": 3423.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160716944", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "RR Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/105k/104080/160716944/104080_190ANAY_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "18/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.119924", - "last_seen": "2025-06-01T22:05:58.454460", - "price": 3423 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19341, - 51.49494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/160719047", - "info": { - "identifier": 160719047, - "sqm_ocr": null, - "price": 3445.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160719047", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/160719047/120463_33817993_IMG_00_0000_max_656x437.png", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.267895", - "last_seen": "2025-06-01T22:06:15.766100", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164957, - 51.52362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.1, - "qmprice": 40.35, - "rooms": 2, - "total_price": 3272.0, - "url": "https://www.rightmove.co.uk/properties/160719599", - "info": { - "identifier": 160719599, - "sqm_ocr": 81.1, - "price": 3272.0, - "price_per_sqm": 40.34525277435265, - "url": "https://www.rightmove.co.uk/properties/160719599", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40512/160719599/40512_33818045_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.947685", - "last_seen": "2025-06-01T22:06:05.271241", - "price": 3271 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104441, - 51.499405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/160720316", - "info": { - "identifier": 160720316, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160720316", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/160720316/54616_FIN230078_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.037812", - "last_seen": "2025-06-01T22:05:53.826247", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094147, - 51.528557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.6, - "qmprice": 33.51, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160720382", - "info": { - "identifier": 160720382, - "sqm_ocr": 74.6, - "price": 2500.0, - "price_per_sqm": 33.512064343163544, - "url": "https://www.rightmove.co.uk/properties/160720382", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71785/160720382/71785_33818102_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.672390", - "last_seen": "2025-06-01T22:05:59.868513", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142902, - 51.45311 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.9, - "qmprice": 63.39, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/160720511", - "info": { - "identifier": 160720511, - "sqm_ocr": 62.9, - "price": 3987.0, - "price_per_sqm": 63.38632750397456, - "url": "https://www.rightmove.co.uk/properties/160720511", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Tedworth Property Limited", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/183k/182369/160720511/182369_LND250088_L_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.444386", - "last_seen": "2025-06-01T22:05:57.874074", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.157531, - 51.497963 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160720538", - "info": { - "identifier": 160720538, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160720538", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/160720538/54616_DAN190606_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.624761", - "last_seen": "2025-06-01T22:05:53.530950", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094207, - 51.528564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.5, - "qmprice": 29.07, - "rooms": 2, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/160720754", - "info": { - "identifier": 160720754, - "sqm_ocr": 75.5, - "price": 2195.0, - "price_per_sqm": 29.072847682119207, - "url": "https://www.rightmove.co.uk/properties/160720754", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Farrell Lewis Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267680/160720754/267680_400_FLEW_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.041879", - "last_seen": "2025-06-01T22:05:44.568503", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25011, - 51.50813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.3, - "qmprice": 54.57, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/160720874", - "info": { - "identifier": 160720874, - "sqm_ocr": 62.3, - "price": 3400.0, - "price_per_sqm": 54.57463884430177, - "url": "https://www.rightmove.co.uk/properties/160720874", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/160720874/84875_33818143_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.753754", - "last_seen": "2025-06-01T22:05:59.975736", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134132, - 51.46545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160722614", - "info": { - "identifier": 160722614, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160722614", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191426/160722614/191426_2584244_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.426897", - "last_seen": "2025-06-01T22:05:42.932648", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172038, - 51.54261 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160723001", - "info": { - "identifier": 160723001, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160723001", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160723001/87187_62332_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.019662", - "last_seen": "2025-06-01T22:05:44.340669", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.263295, - 51.51659 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160723259", - "info": { - "identifier": 160723259, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160723259", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/160723259/96392_LTA230159_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.172477", - "last_seen": "2025-06-01T22:06:15.620868", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171322, - 51.5336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2915.0, - "url": "https://www.rightmove.co.uk/properties/160723751", - "info": { - "identifier": 160723751, - "sqm_ocr": null, - "price": 2915.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160723751", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/160723751/222842_TCH230187_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.294540", - "last_seen": "2025-06-01T22:05:49.263900", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197523, - 51.47915 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/160725215", - "info": { - "identifier": 160725215, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160725215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3355/160725215/3355_33818437_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.478835", - "last_seen": "2025-06-01T22:05:49.817214", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101216, - 51.5794 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.07, - "qmprice": 37.21, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/160725848", - "info": { - "identifier": 160725848, - "sqm_ocr": 67.07, - "price": 2496.0, - "price_per_sqm": 37.214850156552856, - "url": "https://www.rightmove.co.uk/properties/160725848", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Goldschmidt & Howland", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73965/160725848/73965_2691158_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.658694", - "last_seen": "2025-06-01T22:06:16.010087", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198152, - 51.523914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/160726319", - "info": { - "identifier": 160726319, - "sqm_ocr": null, - "price": 3358.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160726319", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/160726319/136148_2711634_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.587024", - "last_seen": "2025-06-01T22:05:59.570374", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126971, - 51.48158 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.07, - "qmprice": 37.21, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/160728776", - "info": { - "identifier": 160728776, - "sqm_ocr": 67.07, - "price": 2496.0, - "price_per_sqm": 37.214850156552856, - "url": "https://www.rightmove.co.uk/properties/160728776", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "ADN Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283532/160728776/283532_33818638_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.620198", - "last_seen": "2025-06-01T22:06:16.057148", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197971, - 51.524998 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.4, - "qmprice": 50.38, - "rooms": 2, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/160729256", - "info": { - "identifier": 160729256, - "sqm_ocr": 74.4, - "price": 3748.0, - "price_per_sqm": 50.376344086021504, - "url": "https://www.rightmove.co.uk/properties/160729256", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "LDG", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50021/160729256/50021_LDG240085_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.697891", - "last_seen": "2025-06-01T22:05:42.477421", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120344, - 51.52076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160729397", - "info": { - "identifier": 160729397, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160729397", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Real Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36827/160729397/36827_33818682_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.594452", - "last_seen": "2025-06-01T22:05:39.628810", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177064, - 51.61419 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/160729991", - "info": { - "identifier": 160729991, - "sqm_ocr": null, - "price": 3650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160729991", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Lotus Carlton", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288473/160729991/288473_RL0045_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.034514", - "last_seen": "2025-06-01T22:05:39.367052", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.236513, - 51.6233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 50.83, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160730522", - "info": { - "identifier": 160730522, - "sqm_ocr": 59.0, - "price": 2999.0, - "price_per_sqm": 50.83050847457627, - "url": "https://www.rightmove.co.uk/properties/160730522", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/160730522/136148_2711641_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.987374", - "last_seen": "2025-06-01T22:06:14.468679", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140336, - 51.489983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.9, - "qmprice": 37.38, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160731131", - "info": { - "identifier": 160731131, - "sqm_ocr": 74.9, - "price": 2800.0, - "price_per_sqm": 37.38317757009346, - "url": "https://www.rightmove.co.uk/properties/160731131", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/160731131/15966_1322851_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.610227", - "last_seen": "2025-06-01T22:06:12.563643", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175968, - 51.471466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.3, - "qmprice": 42.6, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160731143", - "info": { - "identifier": 160731143, - "sqm_ocr": 76.3, - "price": 3250.0, - "price_per_sqm": 42.595019659239846, - "url": "https://www.rightmove.co.uk/properties/160731143", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/160731143/15966_1322738_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.625229", - "last_seen": "2025-06-01T22:06:12.549909", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181348, - 51.466854 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.2, - "qmprice": 23.96, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160731239", - "info": { - "identifier": 160731239, - "sqm_ocr": 125.2, - "price": 3000.0, - "price_per_sqm": 23.961661341853034, - "url": "https://www.rightmove.co.uk/properties/160731239", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/160731239/130309_1322553_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.628977", - "last_seen": "2025-06-01T22:05:43.512474", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084763, - 51.33757 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.4, - "qmprice": 32.31, - "rooms": 3, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/160731410", - "info": { - "identifier": 160731410, - "sqm_ocr": 94.4, - "price": 3050.0, - "price_per_sqm": 32.309322033898304, - "url": "https://www.rightmove.co.uk/properties/160731410", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/160731410/56751_1318666_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.154017", - "last_seen": "2025-06-01T22:06:00.248993", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099812, - 51.466797 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/160731434", - "info": { - "identifier": 160731434, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160731434", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lotus Carlton", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288473/160731434/288473_RL0046_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.499069", - "last_seen": "2025-06-01T22:05:50.202784", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120133, - 51.582 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.6, - "qmprice": 51.92, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160731902", - "info": { - "identifier": 160731902, - "sqm_ocr": 62.6, - "price": 3250.0, - "price_per_sqm": 51.91693290734824, - "url": "https://www.rightmove.co.uk/properties/160731902", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/160731902/149153_1322987_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.802821", - "last_seen": "2025-06-01T22:05:58.720022", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.251754, - 51.39874 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.38, - "qmprice": 31.95, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160732148", - "info": { - "identifier": 160732148, - "sqm_ocr": 81.38, - "price": 2600.0, - "price_per_sqm": 31.94888178913738, - "url": "https://www.rightmove.co.uk/properties/160732148", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/160732148/111050_1322984_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.488179", - "last_seen": "2025-06-01T22:06:01.500757", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170541, - 51.41743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160732175", - "info": { - "identifier": 160732175, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160732175", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Wynn Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224318/160732175/224318_WestEndRoad_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.663420", - "last_seen": "2025-06-01T22:05:44.768347", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.38472, - 51.51122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 124.31, - "qmprice": 22.93, - "rooms": 4, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160732193", - "info": { - "identifier": 160732193, - "sqm_ocr": 124.31, - "price": 2850.0, - "price_per_sqm": 22.926554581288713, - "url": "https://www.rightmove.co.uk/properties/160732193", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Crown House Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235946/160732193/235946_1047_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.031626", - "last_seen": "2025-06-01T22:05:39.356213", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159105, - 51.6109 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.4, - "qmprice": 54.62, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160732373", - "info": { - "identifier": 160732373, - "sqm_ocr": 71.4, - "price": 3900.0, - "price_per_sqm": 54.621848739495796, - "url": "https://www.rightmove.co.uk/properties/160732373", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/160732373/15975_1322973_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.536212", - "last_seen": "2025-06-01T22:06:01.378224", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202916, - 51.420612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/160733198", - "info": { - "identifier": 160733198, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160733198", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160733198/96668_243823202042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.735967", - "last_seen": "2025-06-01T22:06:15.889797", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143088, - 51.4912 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160733531", - "info": { - "identifier": 160733531, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160733531", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107903/160733531/107903_P298963_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.916347", - "last_seen": "2025-06-01T22:05:50.385845", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36384, - 51.57109 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/160734098", - "info": { - "identifier": 160734098, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160734098", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Empire Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237251/160734098/237251_102658003762_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.901194", - "last_seen": "2025-06-01T22:05:40.257821", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22851, - 51.54817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160734305", - "info": { - "identifier": 160734305, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160734305", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 43, - "status": null, - "last_seen": 0, - "agency": "Empire Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237251/160734305/237251_102658005475_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.625104", - "last_seen": "2025-06-01T22:05:41.425226", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2271, - 51.54752 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160734512", - "info": { - "identifier": 160734512, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160734512", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 42, - "status": null, - "last_seen": 0, - "agency": "Empire Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237251/160734512/237251_102658003088_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.931957", - "last_seen": "2025-06-01T22:05:40.211560", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21992, - 51.55388 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.3, - "qmprice": 35.06, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160735991", - "info": { - "identifier": 160735991, - "sqm_ocr": 81.3, - "price": 2850.0, - "price_per_sqm": 35.055350553505534, - "url": "https://www.rightmove.co.uk/properties/160735991", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/160735991/48994_CNL250051_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.011705", - "last_seen": "2025-06-01T22:06:10.601249", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004406, - 51.50629 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.07, - "qmprice": 37.27, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160736843", - "info": { - "identifier": 160736843, - "sqm_ocr": 67.07, - "price": 2500.0, - "price_per_sqm": 37.27448933949605, - "url": "https://www.rightmove.co.uk/properties/160736843", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Mile", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53010/160736843/53010_101541007951_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.515370", - "last_seen": "2025-06-01T22:06:15.307192", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197611, - 51.52533 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.7, - "qmprice": 42.59, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160737047", - "info": { - "identifier": 160737047, - "sqm_ocr": 58.7, - "price": 2500.0, - "price_per_sqm": 42.58943781942078, - "url": "https://www.rightmove.co.uk/properties/160737047", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Wren & co Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81351/160737047/81351_wren_2052453769_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.512566", - "last_seen": "2025-06-01T22:06:15.304784", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197843, - 51.524326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160737407", - "info": { - "identifier": 160737407, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160737407", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 47, - "status": null, - "last_seen": 0, - "agency": "Philip Alexander", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73781/160737407/73781_33817442_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.680725", - "last_seen": "2025-06-01T22:05:49.629963", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115291, - 51.589706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160737776", - "info": { - "identifier": 160737776, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160737776", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160737776/96668_94738205112020_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.058650", - "last_seen": "2025-06-01T22:06:10.778761", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017631, - 51.496284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160737788", - "info": { - "identifier": 160737788, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160737788", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160737788/96668_240850205032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.128965", - "last_seen": "2025-06-01T22:06:15.553345", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203454, - 51.53206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160737935", - "info": { - "identifier": 160737935, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160737935", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160737935/96668_144455320072022_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.604123", - "last_seen": "2025-06-01T22:05:55.236015", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.287467, - 51.514027 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.0, - "qmprice": 58.82, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160738106", - "info": { - "identifier": 160738106, - "sqm_ocr": 51.0, - "price": 3000.0, - "price_per_sqm": 58.8235294117647, - "url": "https://www.rightmove.co.uk/properties/160738106", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/160738106/16050_1323013_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.277690", - "last_seen": "2025-06-01T22:05:55.889660", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.086366, - 51.534878 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.1, - "qmprice": 33.02, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/160738883", - "info": { - "identifier": 160738883, - "sqm_ocr": 68.1, - "price": 2249.0, - "price_per_sqm": 33.02496328928047, - "url": "https://www.rightmove.co.uk/properties/160738883", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72541/160738883/72541_33819397_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.201317", - "last_seen": "2025-06-01T22:05:40.918356", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212353, - 51.548477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.0, - "qmprice": 41.18, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160739888", - "info": { - "identifier": 160739888, - "sqm_ocr": 51.0, - "price": 2100.0, - "price_per_sqm": 41.1764705882353, - "url": "https://www.rightmove.co.uk/properties/160739888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/160739888/77511_NFL230046_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.338695", - "last_seen": "2025-06-01T20:19:56.041707", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028649, - 51.521782 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160741976", - "info": { - "identifier": 160741976, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160741976", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Highcastle Estates", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198884/160741976/198884_RL1479_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.019282", - "last_seen": "2025-06-01T22:06:10.193024", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065631, - 51.5273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160743782", - "info": { - "identifier": 160743782, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160743782", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "AIROPERATE LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275732/160743782/275732_4BDR-Flat-Near-Finsbury-Park_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.399885", - "last_seen": "2025-06-01T22:05:47.687673", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07563, - 51.57202 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.9, - "qmprice": 27.81, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160745831", - "info": { - "identifier": 160745831, - "sqm_ocr": 80.9, - "price": 2250.0, - "price_per_sqm": 27.812113720642767, - "url": "https://www.rightmove.co.uk/properties/160745831", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/160745831/107533_1323037_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.822348", - "last_seen": "2025-06-01T22:06:00.411717", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037487, - 51.476288 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.05, - "qmprice": 43.39, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160745834", - "info": { - "identifier": 160745834, - "sqm_ocr": 76.05, - "price": 3300.0, - "price_per_sqm": 43.392504930966474, - "url": "https://www.rightmove.co.uk/properties/160745834", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/160745834/73120_1319017_IMG_00_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.458576", - "last_seen": "2025-06-01T22:05:52.918459", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105057, - 51.52477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 45.0, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/160747457", - "info": { - "identifier": 160747457, - "sqm_ocr": 70.0, - "price": 3150.0, - "price_per_sqm": 45.0, - "url": "https://www.rightmove.co.uk/properties/160747457", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "McMahon & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65019/160747457/65019_379_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.927730", - "last_seen": "2025-06-01T22:06:05.243347", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09852, - 51.49731 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.9, - "qmprice": 39.41, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160748117", - "info": { - "identifier": 160748117, - "sqm_ocr": 60.9, - "price": 2400.0, - "price_per_sqm": 39.40886699507389, - "url": "https://www.rightmove.co.uk/properties/160748117", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99865/160748117/99865_33819663_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.704913", - "last_seen": "2025-06-01T22:06:12.406782", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162549, - 51.460857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160748681", - "info": { - "identifier": 160748681, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160748681", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "EweMove", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264020/160748681/264020_10666500_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.808303", - "last_seen": "2025-06-01T22:05:43.522017", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098547, - 51.38851 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.0, - "qmprice": 29.36, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160749305", - "info": { - "identifier": 160749305, - "sqm_ocr": 109.0, - "price": 3200.0, - "price_per_sqm": 29.357798165137616, - "url": "https://www.rightmove.co.uk/properties/160749305", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/160749305/51286_CLL240066_L_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.999023", - "last_seen": "2025-06-01T22:05:52.144935", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25818, - 51.4928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160750412", - "info": { - "identifier": 160750412, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160750412", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Matthew James", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29132/160750412/29132_33819794_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.731587", - "last_seen": "2025-06-01T22:05:58.722190", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.301501, - 51.39578 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.75, - "qmprice": 34.83, - "rooms": 2, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/160750817", - "info": { - "identifier": 160750817, - "sqm_ocr": 81.75, - "price": 2847.0, - "price_per_sqm": 34.825688073394495, - "url": "https://www.rightmove.co.uk/properties/160750817", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96151/160750817/96151_BIS250084_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.812498", - "last_seen": "2025-06-01T22:05:49.456054", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223274, - 51.4817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/160751429", - "info": { - "identifier": 160751429, - "sqm_ocr": null, - "price": 3050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160751429", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/160751429/238769_ade144a8-b754-48a0-9254-9cd210f4bb67_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.484450", - "last_seen": "2025-06-01T20:19:56.065578", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00666, - 51.50852 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.3, - "qmprice": 54.57, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160751504", - "info": { - "identifier": 160751504, - "sqm_ocr": 73.3, - "price": 4000.0, - "price_per_sqm": 54.570259208731244, - "url": "https://www.rightmove.co.uk/properties/160751504", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51310/160751504/51310_KNL130153_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.073869", - "last_seen": "2025-06-01T22:05:57.915616", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.160199, - 51.500404 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.7, - "qmprice": 32.3, - "rooms": 4, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/160751591", - "info": { - "identifier": 160751591, - "sqm_ocr": 123.7, - "price": 3995.0, - "price_per_sqm": 32.29587712206952, - "url": "https://www.rightmove.co.uk/properties/160751591", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78395/160751591/78395_33819890_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:56.984394", - "last_seen": "2025-06-01T22:06:10.565903", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.045443, - 51.511745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.45, - "qmprice": 56.57, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160751867", - "info": { - "identifier": 160751867, - "sqm_ocr": 57.45, - "price": 3250.0, - "price_per_sqm": 56.570931244560484, - "url": "https://www.rightmove.co.uk/properties/160751867", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/160751867/51465_67fce7a79973a_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.244923", - "last_seen": "2025-06-01T22:06:01.223503", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217619, - 51.424606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.5, - "qmprice": 38.04, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/160752152", - "info": { - "identifier": 160752152, - "sqm_ocr": 81.5, - "price": 3100.0, - "price_per_sqm": 38.03680981595092, - "url": "https://www.rightmove.co.uk/properties/160752152", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/160752152/87812_1323051_IMG_12_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.512081", - "last_seen": "2025-06-01T22:05:39.788372", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177775, - 51.585358 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.2, - "qmprice": 46.4, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160752173", - "info": { - "identifier": 160752173, - "sqm_ocr": 86.2, - "price": 4000.0, - "price_per_sqm": 46.403712296983755, - "url": "https://www.rightmove.co.uk/properties/160752173", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43766/160752173/43766_P285930_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.818139", - "last_seen": "2025-06-01T22:05:49.454162", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22291, - 51.48082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3975.0, - "url": "https://www.rightmove.co.uk/properties/160752299", - "info": { - "identifier": 160752299, - "sqm_ocr": null, - "price": 3975.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160752299", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/160752299/238265_L107023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.657527", - "last_seen": "2025-06-01T22:05:59.864759", - "price": 3975.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132944, - 51.474255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.7, - "qmprice": 29.94, - "rooms": 3, - "total_price": 2775.0, - "url": "https://www.rightmove.co.uk/properties/160753658", - "info": { - "identifier": 160753658, - "sqm_ocr": 92.7, - "price": 2775.0, - "price_per_sqm": 29.93527508090615, - "url": "https://www.rightmove.co.uk/properties/160753658", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Woodfell", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256541/160753658/256541_ARU-778988_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.848062", - "last_seen": "2025-06-01T17:38:55.802583", - "price": 2775.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202773, - 51.546272 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/160753769", - "info": { - "identifier": 160753769, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160753769", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160753769/96668_245321516042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.006315, - 51.482376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.8, - "qmprice": 38.98, - "rooms": 2, - "total_price": 2643.0, - "url": "https://www.rightmove.co.uk/properties/160753955", - "info": { - "identifier": 160753955, - "sqm_ocr": 67.8, - "price": 2643.0, - "price_per_sqm": 38.982300884955755, - "url": "https://www.rightmove.co.uk/properties/160753955", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Garrett Whitelock", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105305/160753955/105305_101341001278_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.072788", - "last_seen": "2025-06-01T22:06:05.181729", - "price": 2643 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07869, - 51.4995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160754630", - "info": { - "identifier": 160754630, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160754630", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Robinson Jackson", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246929/160754630/246929_LEE240330_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.619939", - "last_seen": "2025-06-01T22:05:56.917786", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026921, - 51.452103 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.5, - "qmprice": 28.21, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160757018", - "info": { - "identifier": 160757018, - "sqm_ocr": 97.5, - "price": 2750.0, - "price_per_sqm": 28.205128205128204, - "url": "https://www.rightmove.co.uk/properties/160757018", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/160757018/16050_1323055_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.180873", - "last_seen": "2025-06-01T22:06:08.748220", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070691, - 51.52065 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.5, - "qmprice": 35.9, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160757027", - "info": { - "identifier": 160757027, - "sqm_ocr": 97.5, - "price": 3500.0, - "price_per_sqm": 35.8974358974359, - "url": "https://www.rightmove.co.uk/properties/160757027", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/160757027/16050_1322907_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.195080", - "last_seen": "2025-06-01T22:06:08.730977", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070691, - 51.52065 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.5, - "qmprice": 29.7, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/160757369", - "info": { - "identifier": 160757369, - "sqm_ocr": 92.5, - "price": 2747.0, - "price_per_sqm": 29.697297297297297, - "url": "https://www.rightmove.co.uk/properties/160757369", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/160757369/84833_33820253_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.747724", - "last_seen": "2025-06-01T22:05:48.884264", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232452, - 51.50393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160758104", - "info": { - "identifier": 160758104, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160758104", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Stones Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106225/160758104/106225_BEP210214_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.001958", - "last_seen": "2025-06-01T22:05:42.170662", - "price": 3430.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.152087, - 51.54605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/160758260", - "info": { - "identifier": 160758260, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160758260", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/160758260/17888_29132_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.707243", - "last_seen": "2025-06-01T22:05:42.488005", - "price": 2166 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14573, - 51.53736 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.8, - "qmprice": 20.03, - "rooms": 3, - "total_price": 2199.0, - "url": "https://www.rightmove.co.uk/properties/160758917", - "info": { - "identifier": 160758917, - "sqm_ocr": 109.8, - "price": 2199.0, - "price_per_sqm": 20.027322404371585, - "url": "https://www.rightmove.co.uk/properties/160758917", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58464/160758917/58464_32597333_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.721690", - "last_seen": "2025-06-01T22:05:58.725995", - "price": 2199.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.292524, - 51.384193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160759946", - "info": { - "identifier": 160759946, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160759946", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22320/160759946/22320_PMM240105_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.275977", - "last_seen": "2025-06-01T22:06:13.931962", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.152421, - 51.444454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 135.9, - "qmprice": 26.49, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/160760525", - "info": { - "identifier": 160760525, - "sqm_ocr": 135.9, - "price": 3600.0, - "price_per_sqm": 26.490066225165563, - "url": "https://www.rightmove.co.uk/properties/160760525", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/160760525/84878_33743815_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.583690", - "last_seen": "2025-06-01T22:06:01.632076", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215215, - 51.416218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/160761539", - "info": { - "identifier": 160761539, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160761539", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/125k/124951/160761539/124951_P0382L2810_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.061469", - "last_seen": "2025-06-01T22:05:52.626671", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27739, - 51.48757 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.08, - "qmprice": 36.02, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160761761", - "info": { - "identifier": 160761761, - "sqm_ocr": 61.08, - "price": 2200.0, - "price_per_sqm": 36.01833660772757, - "url": "https://www.rightmove.co.uk/properties/160761761", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50930/160761761/50930_P0180E3916_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.459749", - "last_seen": "2025-06-01T22:05:44.034453", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32857, - 51.52149 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.94, - "qmprice": 27.8, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160761956", - "info": { - "identifier": 160761956, - "sqm_ocr": 71.94, - "price": 2000.0, - "price_per_sqm": 27.800945232137895, - "url": "https://www.rightmove.co.uk/properties/160761956", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57275/160761956/57275_1323083_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.860049", - "last_seen": "2025-06-01T22:05:50.719842", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.346999, - 51.595684 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.4, - "qmprice": 49.56, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/160762016", - "info": { - "identifier": 160762016, - "sqm_ocr": 63.4, - "price": 3142.0, - "price_per_sqm": 49.5583596214511, - "url": "https://www.rightmove.co.uk/properties/160762016", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/160762016/16023_1323050_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.502407", - "last_seen": "2025-06-01T22:06:15.281413", - "price": 3142.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149511, - 51.4941 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160762040", - "info": { - "identifier": 160762040, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160762040", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "jdm", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/169k/168275/160762040/168275_LLO240155_L_IMG_20_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.269357", - "last_seen": "2025-06-01T22:05:41.625169", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.058093, - 51.41743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/160762232", - "info": { - "identifier": 160762232, - "sqm_ocr": null, - "price": 3142.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160762232", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13102/160762232/13102_MWL191234_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.410351", - "last_seen": "2025-06-01T22:05:49.885068", - "price": 3142.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141256, - 51.590446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160762259", - "info": { - "identifier": 160762259, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160762259", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/160762259/26207_IUL220347_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.730712", - "last_seen": "2025-06-01T22:05:53.727549", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107809, - 51.53843 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160763603", - "info": { - "identifier": 160763603, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160763603", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202016/160763603/202016_33722651_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.096918", - "last_seen": "2025-06-01T22:05:44.410880", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.325417, - 51.509842 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160764047", - "info": { - "identifier": 160764047, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160764047", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dorrington", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281918/160764047/281918_15475_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.603490", - "last_seen": "2025-06-01T22:06:06.246681", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09147, - 51.48667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160764635", - "info": { - "identifier": 160764635, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160764635", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Moveli", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191324/160764635/191324_RX571143_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.651866", - "last_seen": "2025-06-01T22:06:12.520238", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165705, - 51.4793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/160764674", - "info": { - "identifier": 160764674, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160764674", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/160764674/163859_2711687_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.266206", - "last_seen": "2025-06-01T22:06:02.234497", - "price": 2166 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.036483, - 51.50225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160764983", - "info": { - "identifier": 160764983, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160764983", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/38k/37065/160764983/37065_490600ce-f575-4467-91ac-be5bb790a39d_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.012128", - "last_seen": "2025-06-01T22:05:45.736393", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122979, - 51.6225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160765166", - "info": { - "identifier": 160765166, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160765166", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94220/160765166/94220_P299096_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.202301", - "last_seen": "2025-06-01T22:05:44.619251", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29364, - 51.50741 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160765997", - "info": { - "identifier": 160765997, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160765997", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/160765997/275489_16042025-ML29_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.506004", - "last_seen": "2025-06-01T20:19:56.062571", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017234, - 51.50096 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.4, - "qmprice": 42.84, - "rooms": 2, - "total_price": 3701.0, - "url": "https://www.rightmove.co.uk/properties/160766060", - "info": { - "identifier": 160766060, - "sqm_ocr": 86.4, - "price": 3701.0, - "price_per_sqm": 42.835648148148145, - "url": "https://www.rightmove.co.uk/properties/160766060", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/160766060/275489_16042025-CN238_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.387805", - "last_seen": "2025-06-01T22:06:09.810460", - "price": 3700 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017234, - 51.50096 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/160766354", - "info": { - "identifier": 160766354, - "sqm_ocr": null, - "price": 2496.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160766354", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/160766354/275489_16042025-NZ46_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.176176", - "last_seen": "2025-06-01T22:05:41.118428", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229668, - 51.56211 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 45.71, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160767086", - "info": { - "identifier": 160767086, - "sqm_ocr": 70.0, - "price": 3200.0, - "price_per_sqm": 45.714285714285715, - "url": "https://www.rightmove.co.uk/properties/160767086", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/160767086/96392_SVL170112_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.834291", - "last_seen": "2025-06-01T22:06:14.901079", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170175, - 51.52548 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.6, - "qmprice": 60.35, - "rooms": 2, - "total_price": 2752.0, - "url": "https://www.rightmove.co.uk/properties/160767104", - "info": { - "identifier": 160767104, - "sqm_ocr": 45.6, - "price": 2752.0, - "price_per_sqm": 60.35087719298245, - "url": "https://www.rightmove.co.uk/properties/160767104", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63083/160767104/63083_MRQ012585863_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.002460", - "last_seen": "2025-06-01T22:06:14.410021", - "price": 2751 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170453, - 51.52095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160767134", - "info": { - "identifier": 160767134, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160767134", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68234/160767134/68234_CLE180003_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.978825", - "last_seen": "2025-06-01T22:05:55.590598", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10333, - 51.52054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.7, - "qmprice": 28.12, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160767866", - "info": { - "identifier": 160767866, - "sqm_ocr": 106.7, - "price": 3000.0, - "price_per_sqm": 28.116213683223993, - "url": "https://www.rightmove.co.uk/properties/160767866", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Paramount", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62636/160767866/62636_PAR990203_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.784778", - "last_seen": "2025-06-01T22:05:42.657889", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205421, - 51.550156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.9, - "qmprice": 20.85, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160768226", - "info": { - "identifier": 160768226, - "sqm_ocr": 107.9, - "price": 2250.0, - "price_per_sqm": 20.852641334569043, - "url": "https://www.rightmove.co.uk/properties/160768226", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Cubitt & West Residential Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85054/160768226/85054_P80491_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.773955", - "last_seen": "2025-06-01T22:05:43.335957", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11117, - 51.34151 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160768442", - "info": { - "identifier": 160768442, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160768442", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "All in the postcode...SW19.com", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34619/160768442/34619_12630637_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.357097", - "last_seen": "2025-06-01T22:06:14.079169", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223349, - 51.45555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.2, - "qmprice": 36.52, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160769846", - "info": { - "identifier": 160769846, - "sqm_ocr": 71.2, - "price": 2600.0, - "price_per_sqm": 36.51685393258427, - "url": "https://www.rightmove.co.uk/properties/160769846", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78410/160769846/78410_33821035_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.838302", - "last_seen": "2025-06-01T22:06:12.102311", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177573, - 51.465385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.2, - "qmprice": 41.61, - "rooms": 2, - "total_price": 3337.0, - "url": "https://www.rightmove.co.uk/properties/160770251", - "info": { - "identifier": 160770251, - "sqm_ocr": 80.2, - "price": 3337.0, - "price_per_sqm": 41.608478802992515, - "url": "https://www.rightmove.co.uk/properties/160770251", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/160770251/212327_P160258_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.488026", - "last_seen": "2025-06-01T22:06:08.108605", - "price": 3336 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01354, - 51.50003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 37.92, - "rooms": 3, - "total_price": 3375.0, - "url": "https://www.rightmove.co.uk/properties/160770620", - "info": { - "identifier": 160770620, - "sqm_ocr": 89.0, - "price": 3375.0, - "price_per_sqm": 37.92134831460674, - "url": "https://www.rightmove.co.uk/properties/160770620", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Urban Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41919/160770620/41919_33821089_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.561629", - "last_seen": "2025-06-01T22:06:12.595100", - "price": 3375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181739, - 51.46573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.0, - "qmprice": 58.31, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/160771145", - "info": { - "identifier": 160771145, - "sqm_ocr": 48.0, - "price": 2799.0, - "price_per_sqm": 58.3125, - "url": "https://www.rightmove.co.uk/properties/160771145", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Lexstone Global", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271157/160771145/271157_F150Bell_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.561655", - "last_seen": "2025-06-01T22:06:16.124398", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16874, - 51.52091 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/160771760", - "info": { - "identifier": 160771760, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160771760", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84806/160771760/84806_33821158_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.413638", - "last_seen": "2025-06-01T22:06:04.384355", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.272546, - 51.464283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160772036", - "info": { - "identifier": 160772036, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160772036", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "SJW property management limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/233k/232853/160772036/232853_96cf1c7f-7989-40e5-ae20-c5ed30ddee0e_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.100891", - "last_seen": "2025-06-01T22:05:55.649123", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.234781, - 51.491962 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160773221", - "info": { - "identifier": 160773221, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160773221", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48474/160773221/48474_33770839_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.945446", - "last_seen": "2025-06-01T22:05:52.063014", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31381, - 51.490753 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.02, - "qmprice": 48.71, - "rooms": 2, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/160773746", - "info": { - "identifier": 160773746, - "sqm_ocr": 82.02, - "price": 3995.0, - "price_per_sqm": 48.70763228480858, - "url": "https://www.rightmove.co.uk/properties/160773746", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Lessel", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191471/160773746/191471_33821307_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.482525", - "last_seen": "2025-06-01T22:05:43.299430", - "price": 3800 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074923, - 51.51261 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160773953", - "info": { - "identifier": 160773953, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160773953", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/160773953/194222_HRP230456_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.599844", - "last_seen": "2025-06-01T22:06:01.653448", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.235974, - 51.396145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160774904", - "info": { - "identifier": 160774904, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160774904", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "TrendyBlocks", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/277k/276857/160774904/276857_SUTTONFLAT_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.360879", - "last_seen": "2025-06-01T22:06:07.880332", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19489, - 51.36979 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 132.3, - "qmprice": 21.54, - "rooms": 4, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160775075", - "info": { - "identifier": 160775075, - "sqm_ocr": 132.3, - "price": 2850.0, - "price_per_sqm": 21.541950113378682, - "url": "https://www.rightmove.co.uk/properties/160775075", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Keller Williams Advantage", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205682/160775075/205682_RX570791_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.208278", - "last_seen": "2025-06-01T22:05:39.945967", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.089704, - 51.449524 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 140.0, - "qmprice": 20.36, - "rooms": 4, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160775396", - "info": { - "identifier": 160775396, - "sqm_ocr": 140.0, - "price": 2850.0, - "price_per_sqm": 20.357142857142858, - "url": "https://www.rightmove.co.uk/properties/160775396", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Coultons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115756/160775396/115756_33821433_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.755235", - "last_seen": "2025-06-01T22:06:11.588544", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.001393, - 51.63305 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.0, - "qmprice": 53.57, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160775606", - "info": { - "identifier": 160775606, - "sqm_ocr": 56.0, - "price": 3000.0, - "price_per_sqm": 53.57142857142857, - "url": "https://www.rightmove.co.uk/properties/160775606", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "bigmove estate agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51218/160775606/51218_bigmove_1682944623_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.017057", - "last_seen": "2025-06-01T22:05:47.623574", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078923, - 51.527405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.7, - "qmprice": 42.64, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/160775933", - "info": { - "identifier": 160775933, - "sqm_ocr": 72.7, - "price": 3100.0, - "price_per_sqm": 42.64099037138927, - "url": "https://www.rightmove.co.uk/properties/160775933", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "bigmove estate agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51218/160775933/51218_bigmove_1362307210_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.919211", - "last_seen": "2025-06-01T22:05:47.451335", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078923, - 51.527405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160775954", - "info": { - "identifier": 160775954, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160775954", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Emoov", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/181k/180266/160775954/180266_1451_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.364741", - "last_seen": "2025-06-01T22:06:15.105483", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180465, - 51.515285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.8, - "qmprice": 44.18, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160776116", - "info": { - "identifier": 160776116, - "sqm_ocr": 49.8, - "price": 2200.0, - "price_per_sqm": 44.17670682730924, - "url": "https://www.rightmove.co.uk/properties/160776116", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/160776116/84875_33821475_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.033276", - "last_seen": "2025-06-01T22:05:59.439894", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133184, - 51.474033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.8, - "qmprice": 37.25, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160776119", - "info": { - "identifier": 160776119, - "sqm_ocr": 69.8, - "price": 2600.0, - "price_per_sqm": 37.249283667621775, - "url": "https://www.rightmove.co.uk/properties/160776119", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/160776119/84875_33821476_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.032113", - "last_seen": "2025-06-01T22:05:59.437839", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128954, - 51.455853 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.8, - "qmprice": 51.9, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160776341", - "info": { - "identifier": 160776341, - "sqm_ocr": 57.8, - "price": 3000.0, - "price_per_sqm": 51.90311418685121, - "url": "https://www.rightmove.co.uk/properties/160776341", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "bigmove estate agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51218/160776341/51218_bigmove_635336620_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.327748", - "last_seen": "2025-06-01T22:05:47.727708", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078923, - 51.527405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160776965", - "info": { - "identifier": 160776965, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160776965", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Stamfords", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18209/160776965/18209_33821527_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.210304", - "last_seen": "2025-06-01T22:05:51.771116", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.346794, - 51.45804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 44.3, - "qmprice": 50.79, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160777274", - "info": { - "identifier": 160777274, - "sqm_ocr": 44.3, - "price": 2250.0, - "price_per_sqm": 50.7900677200903, - "url": "https://www.rightmove.co.uk/properties/160777274", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Rampton Baseley", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/255k/254339/160777274/254339_BAL250074_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.129062", - "last_seen": "2025-06-01T22:06:12.999220", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197434, - 51.456676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/160777328", - "info": { - "identifier": 160777328, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160777328", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/160777328/82537_33821551_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.865621", - "last_seen": "2025-06-01T20:19:55.916602", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026487, - 51.498367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.9, - "qmprice": 19.07, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160777838", - "info": { - "identifier": 160777838, - "sqm_ocr": 104.9, - "price": 2000.0, - "price_per_sqm": 19.065776930409914, - "url": "https://www.rightmove.co.uk/properties/160777838", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "eddisonwhite", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20183/160777838/20183_33701118_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.363008", - "last_seen": "2025-06-01T22:06:01.771608", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180843, - 51.409477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.1, - "qmprice": 39.62, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160778033", - "info": { - "identifier": 160778033, - "sqm_ocr": 63.1, - "price": 2500.0, - "price_per_sqm": 39.61965134706814, - "url": "https://www.rightmove.co.uk/properties/160778033", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118693/160778033/118693_33821597_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.698968", - "last_seen": "2025-06-01T22:05:54.346061", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09248, - 51.543358 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160779407", - "info": { - "identifier": 160779407, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160779407", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/221k/220571/160779407/220571_P62992_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.987731", - "last_seen": "2025-06-01T22:06:03.648154", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06731, - 51.55722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.2, - "qmprice": 50.78, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160780658", - "info": { - "identifier": 160780658, - "sqm_ocr": 51.2, - "price": 2600.0, - "price_per_sqm": 50.78125, - "url": "https://www.rightmove.co.uk/properties/160780658", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/146k/145463/160780658/145463_WLS220234_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.070009", - "last_seen": "2025-06-01T22:06:13.903881", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183918, - 51.459435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160781009", - "info": { - "identifier": 160781009, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160781009", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160781009/96668_245328016042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.053186", - "last_seen": "2025-06-01T22:06:05.621584", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097194, - 51.487583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.82, - "qmprice": 42.63, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/160781741", - "info": { - "identifier": 160781741, - "sqm_ocr": 80.82, - "price": 3445.0, - "price_per_sqm": 42.62558772581045, - "url": "https://www.rightmove.co.uk/properties/160781741", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139751/160781741/139751_ECL190011_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.524613", - "last_seen": "2025-06-01T22:05:58.181204", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195684, - 51.488815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.7, - "qmprice": 34.99, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160781786", - "info": { - "identifier": 160781786, - "sqm_ocr": 85.7, - "price": 2999.0, - "price_per_sqm": 34.99416569428238, - "url": "https://www.rightmove.co.uk/properties/160781786", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/160781786/84788_33821846_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.333659", - "last_seen": "2025-06-01T22:05:52.378609", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.263292, - 51.49137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.4, - "qmprice": 32.06, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/160781789", - "info": { - "identifier": 160781789, - "sqm_ocr": 65.4, - "price": 2097.0, - "price_per_sqm": 32.064220183486235, - "url": "https://www.rightmove.co.uk/properties/160781789", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/160781789/84791_33821848_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.186921", - "last_seen": "2025-06-01T22:05:41.140454", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285897, - 51.530647 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160781834", - "info": { - "identifier": 160781834, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160781834", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247493/160781834/247493_P286161_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.434607", - "last_seen": "2025-06-01T22:05:59.153085", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13788, - 51.46152 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160782275", - "info": { - "identifier": 160782275, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160782275", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Reeds Rains Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88616/160782275/88616_ILF250043_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.862036", - "last_seen": "2025-06-01T22:06:04.095911", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.108121, - 51.568886 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 45.76, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160782494", - "info": { - "identifier": 160782494, - "sqm_ocr": 59.0, - "price": 2700.0, - "price_per_sqm": 45.76271186440678, - "url": "https://www.rightmove.co.uk/properties/160782494", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210116/160782494/210116_P299132_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.007121", - "last_seen": "2025-06-01T22:05:42.155686", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19667, - 51.55461 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160782800", - "info": { - "identifier": 160782800, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160782800", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hilton & Fox", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237869/160782800/237869_hilton_1857079963_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.685817", - "last_seen": "2025-06-01T22:05:44.814064", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.306086, - 51.538937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160782932", - "info": { - "identifier": 160782932, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160782932", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "relocate-me.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33012/160782932/33012_905_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.854977", - "last_seen": "2025-06-01T22:05:53.113081", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120709, - 51.54031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.4, - "qmprice": 36.63, - "rooms": 3, - "total_price": 2579.0, - "url": "https://www.rightmove.co.uk/properties/160784021", - "info": { - "identifier": 160784021, - "sqm_ocr": 70.4, - "price": 2579.0, - "price_per_sqm": 36.63352272727273, - "url": "https://www.rightmove.co.uk/properties/160784021", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/160784021/55101_1323163_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.645890", - "last_seen": "2025-06-01T22:06:06.905470", - "price": 2579.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063361, - 51.490917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 48.36, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/160784843", - "info": { - "identifier": 160784843, - "sqm_ocr": 61.0, - "price": 2950.0, - "price_per_sqm": 48.36065573770492, - "url": "https://www.rightmove.co.uk/properties/160784843", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44510/160784843/44510_HYL250026_L_IMG_07_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.422189", - "last_seen": "2025-06-01T22:06:15.195259", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168033, - 51.51711 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160785134", - "info": { - "identifier": 160785134, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160785134", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49933/160785134/49933_BAR170059_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.398403", - "last_seen": "2025-06-01T22:06:04.708045", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.235764, - 51.464935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/160785158", - "info": { - "identifier": 160785158, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160785158", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "London Habitat", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96380/160785158/96380_RL5598_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.906633", - "last_seen": "2025-06-01T22:05:43.048259", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196602, - 51.554977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.0, - "qmprice": 26.55, - "rooms": 3, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/160785626", - "info": { - "identifier": 160785626, - "sqm_ocr": 94.0, - "price": 2496.0, - "price_per_sqm": 26.5531914893617, - "url": "https://www.rightmove.co.uk/properties/160785626", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266774/160785626/266774_33822089_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.249425", - "last_seen": "2025-06-01T22:05:45.224945", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.248175, - 51.53098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160785851", - "info": { - "identifier": 160785851, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160785851", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66897/160785851/66897_33822110_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.009446", - "last_seen": "2025-06-01T22:06:00.448215", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.003401, - 51.446453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160786517", - "info": { - "identifier": 160786517, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160786517", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "Move Inn Estates Iver", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113317/160786517/113317_33822160_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.213101", - "last_seen": "2025-06-01T22:05:51.767561", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.384679, - 51.47267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160786703", - "info": { - "identifier": 160786703, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160786703", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/160786703/84866_33612953_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.115230", - "last_seen": "2025-06-01T22:05:52.530914", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2551, - 51.49391 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 45.76, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160786775", - "info": { - "identifier": 160786775, - "sqm_ocr": 59.0, - "price": 2700.0, - "price_per_sqm": 45.76271186440678, - "url": "https://www.rightmove.co.uk/properties/160786775", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262160/160786775/262160_EAL220007_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.823785", - "last_seen": "2025-06-01T22:05:43.127165", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196014, - 51.556366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3430.0, - "url": "https://www.rightmove.co.uk/properties/160786952", - "info": { - "identifier": 160786952, - "sqm_ocr": null, - "price": 3430.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160786952", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Rentals And Sales", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50366/160786952/50366_RWI-48971340_IMG_12_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.865240", - "last_seen": "2025-06-01T22:06:05.294977", - "price": 3430.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093471, - 51.475925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.9, - "qmprice": 46.69, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160787939", - "info": { - "identifier": 160787939, - "sqm_ocr": 58.9, - "price": 2750.0, - "price_per_sqm": 46.6893039049236, - "url": "https://www.rightmove.co.uk/properties/160787939", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57058/160787939/57058_P214527_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.210399", - "last_seen": "2025-06-01T22:06:15.470284", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16678, - 51.53391 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160788116", - "info": { - "identifier": 160788116, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160788116", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Christopher St James", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245558/160788116/245558_33822243_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.327298", - "last_seen": "2025-06-01T22:06:13.407737", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215828, - 51.44195 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.4, - "qmprice": 41.07, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160788380", - "info": { - "identifier": 160788380, - "sqm_ocr": 97.4, - "price": 4000.0, - "price_per_sqm": 41.067761806981515, - "url": "https://www.rightmove.co.uk/properties/160788380", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/160788380/101522_1323179_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.300126", - "last_seen": "2025-06-01T22:05:47.604263", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074064, - 51.54448 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 31.32, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160788647", - "info": { - "identifier": 160788647, - "sqm_ocr": 91.0, - "price": 2850.0, - "price_per_sqm": 31.318681318681318, - "url": "https://www.rightmove.co.uk/properties/160788647", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/160788647/15975_1323181_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.557797", - "last_seen": "2025-06-01T22:06:01.584208", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188306, - 51.42203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160788950", - "info": { - "identifier": 160788950, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160788950", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/160788950/78429_LON-568_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.453229", - "last_seen": "2025-06-01T20:19:56.046399", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06538, - 51.51439 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.9, - "qmprice": 24.74, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160788968", - "info": { - "identifier": 160788968, - "sqm_ocr": 86.9, - "price": 2150.0, - "price_per_sqm": 24.741081703107017, - "url": "https://www.rightmove.co.uk/properties/160788968", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118048/160788968/118048_33822292_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.101193", - "last_seen": "2025-06-01T22:05:46.904666", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.023235, - 51.454807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160789157", - "info": { - "identifier": 160789157, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160789157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/160789157/252785_33822304_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.869228", - "last_seen": "2025-06-01T22:05:52.418088", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324519, - 51.485268 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160789448", - "info": { - "identifier": 160789448, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160789448", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160789448/96668_223319320092024_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.245389", - "last_seen": "2025-06-01T22:05:56.970017", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087757, - 51.532887 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.7, - "qmprice": 35.81, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160789949", - "info": { - "identifier": 160789949, - "sqm_ocr": 111.7, - "price": 4000.0, - "price_per_sqm": 35.810205908683976, - "url": "https://www.rightmove.co.uk/properties/160789949", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50719/160789949/50719_33822348_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.138973", - "last_seen": "2025-06-01T22:05:48.682990", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220613, - 51.505554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.93, - "qmprice": 63.81, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160790438", - "info": { - "identifier": 160790438, - "sqm_ocr": 50.93, - "price": 3250.0, - "price_per_sqm": 63.813076772040056, - "url": "https://www.rightmove.co.uk/properties/160790438", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/160790438/76585_1323185_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.346642", - "last_seen": "2025-06-01T22:06:15.027537", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.157728, - 51.522865 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 43.1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160790897", - "info": { - "identifier": 160790897, - "sqm_ocr": 75.4, - "price": 3250.0, - "price_per_sqm": 43.103448275862064, - "url": "https://www.rightmove.co.uk/properties/160790897", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/160790897/84875_33822392_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.071008", - "last_seen": "2025-06-01T22:05:59.492674", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126074, - 51.462284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.1, - "qmprice": 55.8, - "rooms": 2, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/160791035", - "info": { - "identifier": 160791035, - "sqm_ocr": 59.1, - "price": 3298.0, - "price_per_sqm": 55.803722504230116, - "url": "https://www.rightmove.co.uk/properties/160791035", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53537/160791035/53537_PIL160011_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.508785", - "last_seen": "2025-06-01T22:06:15.279158", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140661, - 51.489086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.2, - "qmprice": 47.18, - "rooms": 2, - "total_price": 3359.0, - "url": "https://www.rightmove.co.uk/properties/160791572", - "info": { - "identifier": 160791572, - "sqm_ocr": 71.2, - "price": 3359.0, - "price_per_sqm": 47.17696629213483, - "url": "https://www.rightmove.co.uk/properties/160791572", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94246/160791572/94246_1323039_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.572933", - "last_seen": "2025-06-01T22:05:42.281530", - "price": 3359.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112154, - 51.518272 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.3, - "qmprice": 57.73, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160791575", - "info": { - "identifier": 160791575, - "sqm_ocr": 56.3, - "price": 3250.0, - "price_per_sqm": 57.726465364120784, - "url": "https://www.rightmove.co.uk/properties/160791575", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/160791575/15942_1322134_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.999324", - "last_seen": "2025-06-01T22:05:57.698474", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18343, - 51.49697 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.7, - "qmprice": 27.95, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160793510", - "info": { - "identifier": 160793510, - "sqm_ocr": 78.7, - "price": 2200.0, - "price_per_sqm": 27.954256670902158, - "url": "https://www.rightmove.co.uk/properties/160793510", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Ashmore & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/249k/248612/160793510/248612_L_10429668_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.028649", - "last_seen": "2025-06-01T22:05:39.376533", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218707, - 51.596687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 122.7, - "qmprice": 24.82, - "rooms": 3, - "total_price": 3046.0, - "url": "https://www.rightmove.co.uk/properties/160801619", - "info": { - "identifier": 160801619, - "sqm_ocr": 122.7, - "price": 3046.0, - "price_per_sqm": 24.82477587612062, - "url": "https://www.rightmove.co.uk/properties/160801619", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6954/160801619/6954_33822777_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.336326", - "last_seen": "2025-06-01T22:05:45.150084", - "price": 3046 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.266377, - 51.510265 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2505.0, - "url": "https://www.rightmove.co.uk/properties/160801784", - "info": { - "identifier": 160801784, - "sqm_ocr": null, - "price": 2505.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160801784", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262865/160801784/262865_a1G8d000002QBKtEAO_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.360829", - "last_seen": "2025-06-01T22:06:03.015889", - "price": 2505.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00996, - 51.51357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/160802384", - "info": { - "identifier": 160802384, - "sqm_ocr": null, - "price": 2395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160802384", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237731/160802384/237731_a1G4J000004juvEUAQ_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.523321", - "last_seen": "2025-06-01T22:05:49.876594", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05559, - 51.58851 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.6, - "qmprice": 30.56, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/160803020", - "info": { - "identifier": 160803020, - "sqm_ocr": 73.6, - "price": 2249.0, - "price_per_sqm": 30.557065217391308, - "url": "https://www.rightmove.co.uk/properties/160803020", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84785/160803020/84785_33822879_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.101482", - "last_seen": "2025-06-01T22:05:44.682915", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.272665, - 51.507442 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.93, - "qmprice": 32.91, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160803215", - "info": { - "identifier": 160803215, - "sqm_ocr": 72.93, - "price": 2400.0, - "price_per_sqm": 32.90826820238585, - "url": "https://www.rightmove.co.uk/properties/160803215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22233/160803215/22233_LBA200170_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.467277", - "last_seen": "2025-06-01T22:05:59.014799", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15021, - 51.46684 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/160803563", - "info": { - "identifier": 160803563, - "sqm_ocr": null, - "price": 2395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160803563", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Apo", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/160k/159362/160803563/159362_FLAT214_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.740074", - "last_seen": "2025-06-01T22:05:51.498665", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42404, - 51.50366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160803812", - "info": { - "identifier": 160803812, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160803812", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84818/160803812/84818_33822936_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.773208", - "last_seen": "2025-06-01T22:06:04.597076", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.363719, - 51.449654 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 43.04, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/160804154", - "info": { - "identifier": 160804154, - "sqm_ocr": 73.0, - "price": 3142.0, - "price_per_sqm": 43.04109589041096, - "url": "https://www.rightmove.co.uk/properties/160804154", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/160804154/15942_1322962_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.105213", - "last_seen": "2025-06-01T22:05:57.956319", - "price": 3142.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184809, - 51.49537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.68, - "qmprice": 38.03, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/160804460", - "info": { - "identifier": 160804460, - "sqm_ocr": 69.68, - "price": 2650.0, - "price_per_sqm": 38.030998851894374, - "url": "https://www.rightmove.co.uk/properties/160804460", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Huttons & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257087/160804460/257087_HLO-29239079_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.177012", - "last_seen": "2025-06-01T22:06:09.267500", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006734, - 51.50667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3640.0, - "url": "https://www.rightmove.co.uk/properties/160805273", - "info": { - "identifier": 160805273, - "sqm_ocr": null, - "price": 3640.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160805273", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/160805273/43310_CWL090270_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.556111", - "last_seen": "2025-06-01T22:06:10.169195", - "price": 3640.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020967, - 51.50587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160805972", - "info": { - "identifier": 160805972, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160805972", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208640/160805972/208640_P276585_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.269625", - "last_seen": "2025-06-01T22:05:39.963592", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.17888, - 51.47135 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160806026", - "info": { - "identifier": 160806026, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160806026", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160806026/96668_235945621012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.828778", - "last_seen": "2025-06-01T22:05:58.581308", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299412, - 51.39906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/160807145", - "info": { - "identifier": 160807145, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160807145", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "The Online Letting Agents Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82831/160807145/82831_8718_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.056339, - 51.521248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.3, - "qmprice": 25.79, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160809464", - "info": { - "identifier": 160809464, - "sqm_ocr": 85.3, - "price": 2200.0, - "price_per_sqm": 25.79132473622509, - "url": "https://www.rightmove.co.uk/properties/160809464", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Bennett Holmes", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51389/160809464/51389_10462685_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.409961", - "last_seen": "2025-06-01T22:05:44.037001", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.351246, - 51.550274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.6, - "qmprice": 39.66, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160809617", - "info": { - "identifier": 160809617, - "sqm_ocr": 70.6, - "price": 2800.0, - "price_per_sqm": 39.6600566572238, - "url": "https://www.rightmove.co.uk/properties/160809617", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/160809617/15966_1323229_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.770346", - "last_seen": "2025-06-01T22:06:13.587569", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179781, - 51.467533 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/160809782", - "info": { - "identifier": 160809782, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160809782", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Seymours Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70149/160809782/70149_2711640_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.654561", - "last_seen": "2025-06-01T22:05:58.728368", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29734, - 51.40423 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.6, - "qmprice": 27.85, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160809812", - "info": { - "identifier": 160809812, - "sqm_ocr": 82.6, - "price": 2300.0, - "price_per_sqm": 27.845036319612593, - "url": "https://www.rightmove.co.uk/properties/160809812", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Sandra Davidson Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13342/160809812/13342_33823247_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.084970", - "last_seen": "2025-06-01T22:05:38.302320", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.139027, - 51.56955 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160810172", - "info": { - "identifier": 160810172, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160810172", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dorrington", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281918/160810172/281918_15484_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.490248", - "last_seen": "2025-06-01T22:06:06.081505", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0877, - 51.48715 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.9, - "qmprice": 32.98, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160810361", - "info": { - "identifier": 160810361, - "sqm_ocr": 84.9, - "price": 2800.0, - "price_per_sqm": 32.97997644287397, - "url": "https://www.rightmove.co.uk/properties/160810361", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/160810361/66771_1320826_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.418149", - "last_seen": "2025-06-01T22:05:59.097500", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113276, - 51.479267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.7, - "qmprice": 41.11, - "rooms": 2, - "total_price": 3359.0, - "url": "https://www.rightmove.co.uk/properties/160810586", - "info": { - "identifier": 160810586, - "sqm_ocr": 81.7, - "price": 3359.0, - "price_per_sqm": 41.11383108935129, - "url": "https://www.rightmove.co.uk/properties/160810586", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/160810586/111056_1323168_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.882385", - "last_seen": "2025-06-01T20:19:55.841907", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071849, - 51.513016 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160810649", - "info": { - "identifier": 160810649, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160810649", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Urban Keys", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129616/160810649/129616_33823298_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.902904", - "last_seen": "2025-06-01T22:05:50.589368", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.296972, - 51.59939 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160811102", - "info": { - "identifier": 160811102, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160811102", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Tony Paul", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233711/160811102/233711_17042025_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.066794", - "last_seen": "2025-06-01T22:05:44.293162", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35296, - 51.55664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 141.0, - "qmprice": 25.53, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/160811780", - "info": { - "identifier": 160811780, - "sqm_ocr": 141.0, - "price": 3600.0, - "price_per_sqm": 25.53191489361702, - "url": "https://www.rightmove.co.uk/properties/160811780", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66897/160811780/66897_33823377_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.900885", - "last_seen": "2025-06-01T22:06:00.717607", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021237, - 51.457584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.1, - "qmprice": 35.37, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160811792", - "info": { - "identifier": 160811792, - "sqm_ocr": 113.1, - "price": 4000.0, - "price_per_sqm": 35.36693191865606, - "url": "https://www.rightmove.co.uk/properties/160811792", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/242k/241370/160811792/241370_33711174_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.104528", - "last_seen": "2025-06-01T22:06:06.218807", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073549, - 51.46942 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.6, - "qmprice": 41.84, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160812095", - "info": { - "identifier": 160812095, - "sqm_ocr": 95.6, - "price": 4000.0, - "price_per_sqm": 41.84100418410042, - "url": "https://www.rightmove.co.uk/properties/160812095", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Andrew Reeves", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58599/160812095/58599_6329293_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.265028", - "last_seen": "2025-06-01T22:06:15.024947", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149239, - 51.490772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160812551", - "info": { - "identifier": 160812551, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160812551", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160812551/87187_47067_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.196637", - "last_seen": "2025-06-01T22:05:38.632246", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238483, - 51.5958 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.4, - "qmprice": 34.83, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/160812938", - "info": { - "identifier": 160812938, - "sqm_ocr": 100.4, - "price": 3497.0, - "price_per_sqm": 34.830677290836654, - "url": "https://www.rightmove.co.uk/properties/160812938", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/160812938/84833_33823450_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.206893", - "last_seen": "2025-06-01T22:05:49.177150", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242353, - 51.507454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.8, - "qmprice": 39.25, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160814063", - "info": { - "identifier": 160814063, - "sqm_ocr": 82.8, - "price": 3250.0, - "price_per_sqm": 39.251207729468604, - "url": "https://www.rightmove.co.uk/properties/160814063", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40512/160814063/40512_33823531_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.999529", - "last_seen": "2025-06-01T22:06:06.013554", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067372, - 51.49119 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.7, - "qmprice": 25.29, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160814078", - "info": { - "identifier": 160814078, - "sqm_ocr": 110.7, - "price": 2800.0, - "price_per_sqm": 25.293586269196023, - "url": "https://www.rightmove.co.uk/properties/160814078", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "David English", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281117/160814078/281117_P894_IMG_07_0001_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.621641", - "last_seen": "2025-06-01T22:05:48.562291", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23154, - 51.5073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 37.5, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160814609", - "info": { - "identifier": 160814609, - "sqm_ocr": 72.0, - "price": 2700.0, - "price_per_sqm": 37.5, - "url": "https://www.rightmove.co.uk/properties/160814609", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/160814609/15981_1323230_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.198855", - "last_seen": "2025-06-01T22:05:59.642474", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140531, - 51.45493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.4, - "qmprice": 47.94, - "rooms": 2, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/160814942", - "info": { - "identifier": 160814942, - "sqm_ocr": 82.4, - "price": 3950.0, - "price_per_sqm": 47.93689320388349, - "url": "https://www.rightmove.co.uk/properties/160814942", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43814/160814942/43814_P299154_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.241665", - "last_seen": "2025-06-01T22:06:09.326411", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06477, - 51.50826 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160815218", - "info": { - "identifier": 160815218, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160815218", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65264/160815218/65264_P1145G2421_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.373432", - "last_seen": "2025-06-01T22:06:07.869378", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20134, - 51.36665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160815677", - "info": { - "identifier": 160815677, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160815677", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Jorgensen Turner", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73024/160815677/73024_33823633_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.961588", - "last_seen": "2025-06-01T22:05:44.678871", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290589, - 51.513046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.4, - "qmprice": 41.45, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160816268", - "info": { - "identifier": 160816268, - "sqm_ocr": 78.4, - "price": 3250.0, - "price_per_sqm": 41.45408163265306, - "url": "https://www.rightmove.co.uk/properties/160816268", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43739/160816268/43739_P299167_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.462210", - "last_seen": "2025-06-01T22:06:15.163524", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16652, - 51.51529 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.4, - "qmprice": 47.45, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/160816532", - "info": { - "identifier": 160816532, - "sqm_ocr": 47.4, - "price": 2249.0, - "price_per_sqm": 47.447257383966246, - "url": "https://www.rightmove.co.uk/properties/160816532", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/160816532/84833_33823704_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.285949", - "last_seen": "2025-06-01T22:05:48.423062", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.230181, - 51.508972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.94, - "qmprice": 40.45, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/160817465", - "info": { - "identifier": 160817465, - "sqm_ocr": 93.94, - "price": 3800.0, - "price_per_sqm": 40.45135192676177, - "url": "https://www.rightmove.co.uk/properties/160817465", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160817465/87187_71154_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.175498", - "last_seen": "2025-06-01T20:19:56.067464", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064934, - 51.508026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160817519", - "info": { - "identifier": 160817519, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160817519", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "AIROPERATE LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275732/160817519/275732_3BR-MidLet-Glove-Road-Mile-End_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.560701", - "last_seen": "2025-06-01T22:06:10.159054", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04687, - 51.52263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.38, - "qmprice": 40.43, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160819877", - "info": { - "identifier": 160819877, - "sqm_ocr": 80.38, - "price": 3250.0, - "price_per_sqm": 40.432943518288134, - "url": "https://www.rightmove.co.uk/properties/160819877", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/160819877/108515_1321336_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.468160", - "last_seen": "2025-06-01T22:05:58.147350", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193439, - 51.490234 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.9, - "qmprice": 53.2, - "rooms": 2, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/160820627", - "info": { - "identifier": 160820627, - "sqm_ocr": 72.9, - "price": 3878.0, - "price_per_sqm": 53.19615912208504, - "url": "https://www.rightmove.co.uk/properties/160820627", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Farrar & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128314/160820627/128314_17842_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.158518", - "last_seen": "2025-06-01T22:05:58.467435", - "price": 3878 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16954, - 51.48657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.4, - "qmprice": 27.15, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160820687", - "info": { - "identifier": 160820687, - "sqm_ocr": 88.4, - "price": 2400.0, - "price_per_sqm": 27.149321266968325, - "url": "https://www.rightmove.co.uk/properties/160820687", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99865/160820687/99865_33823978_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.188320", - "last_seen": "2025-06-01T22:05:59.665113", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134882, - 51.45553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 39.41, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/160821914", - "info": { - "identifier": 160821914, - "sqm_ocr": 85.0, - "price": 3350.0, - "price_per_sqm": 39.411764705882355, - "url": "https://www.rightmove.co.uk/properties/160821914", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/160821914/96392_SVL120040_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.805764", - "last_seen": "2025-06-01T22:06:14.797041", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17778, - 51.53859 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 33.33, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160822667", - "info": { - "identifier": 160822667, - "sqm_ocr": 63.0, - "price": 2100.0, - "price_per_sqm": 33.333333333333336, - "url": "https://www.rightmove.co.uk/properties/160822667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Filtons Stratford Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49212/160822667/49212_22edge_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.285172", - "last_seen": "2025-06-01T22:06:07.222897", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0025, - 51.53833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160824035", - "info": { - "identifier": 160824035, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160824035", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Century 21 Heritage", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105398/160824035/105398_SHM-24139132_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.364167", - "last_seen": "2025-06-01T22:06:09.578666", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028321, - 51.52994 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.4, - "qmprice": 37.88, - "rooms": 2, - "total_price": 3879.0, - "url": "https://www.rightmove.co.uk/properties/160824248", - "info": { - "identifier": 160824248, - "sqm_ocr": 102.4, - "price": 3879.0, - "price_per_sqm": 37.880859375, - "url": "https://www.rightmove.co.uk/properties/160824248", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/160824248/15945_1323285_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.394087", - "last_seen": "2025-06-01T22:06:15.488363", - "price": 3879.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191339, - 51.51019 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.71, - "qmprice": 34.86, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160824464", - "info": { - "identifier": 160824464, - "sqm_ocr": 71.71, - "price": 2500.0, - "price_per_sqm": 34.86264119369684, - "url": "https://www.rightmove.co.uk/properties/160824464", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/160824464/135416_JWL240029_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.764126", - "last_seen": "2025-06-01T22:06:12.086808", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179655, - 51.468903 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.7, - "qmprice": 52.46, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160824866", - "info": { - "identifier": 160824866, - "sqm_ocr": 53.7, - "price": 2817.0, - "price_per_sqm": 52.45810055865922, - "url": "https://www.rightmove.co.uk/properties/160824866", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/160824866/108515_1323282_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.259227", - "last_seen": "2025-06-01T22:05:57.516702", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18735, - 51.48433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.2, - "qmprice": 63.86, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/160824872", - "info": { - "identifier": 160824872, - "sqm_ocr": 49.2, - "price": 3142.0, - "price_per_sqm": 63.86178861788618, - "url": "https://www.rightmove.co.uk/properties/160824872", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/160824872/108515_1323142_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.263303", - "last_seen": "2025-06-01T22:05:57.506091", - "price": 3142.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190133, - 51.4937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/160825025", - "info": { - "identifier": 160825025, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160825025", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Interlet Sales and Lettings", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76342/160825025/76342_ISL165522_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.232910", - "last_seen": "2025-06-01T22:05:57.555250", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20403, - 51.515114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160825055", - "info": { - "identifier": 160825055, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160825055", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107596/160825055/107596_P0712C2302_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.449347", - "last_seen": "2025-06-01T22:06:04.339508", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27942, - 51.46422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/160825847", - "info": { - "identifier": 160825847, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160825847", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Family Homes Sales & Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62261/160825847/62261_RM_LP_999_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.559079", - "last_seen": "2025-06-01T22:05:51.464966", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.437672, - 51.54579 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160826801", - "info": { - "identifier": 160826801, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160826801", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Kings Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162170/160826801/162170_33824386_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.281934", - "last_seen": "2025-06-01T20:19:56.076881", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006365, - 51.512398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160827338", - "info": { - "identifier": 160827338, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160827338", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Kilmers", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93535/160827338/93535_33824415_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.316115", - "last_seen": "2025-06-01T22:06:02.031819", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.021293, - 51.50808 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 31.82, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160827563", - "info": { - "identifier": 160827563, - "sqm_ocr": 88.0, - "price": 2800.0, - "price_per_sqm": 31.818181818181817, - "url": "https://www.rightmove.co.uk/properties/160827563", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Sargeants", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/189k/188345/160827563/188345_33824426_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.273578", - "last_seen": "2025-06-01T22:05:45.291245", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32003, - 51.504803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.8, - "qmprice": 30.8, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160828430", - "info": { - "identifier": 160828430, - "sqm_ocr": 69.8, - "price": 2150.0, - "price_per_sqm": 30.802292263610315, - "url": "https://www.rightmove.co.uk/properties/160828430", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Noble Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202112/160828430/202112_33824474_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.292613", - "last_seen": "2025-06-01T22:05:50.874011", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.192968, - 51.557346 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.2, - "qmprice": 25.46, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160828736", - "info": { - "identifier": 160828736, - "sqm_ocr": 98.2, - "price": 2500.0, - "price_per_sqm": 25.45824847250509, - "url": "https://www.rightmove.co.uk/properties/160828736", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 44, - "status": null, - "last_seen": 0, - "agency": "Gascoigne-Pees Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5145/160828736/5145_000596599_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.346605", - "last_seen": "2025-06-01T22:06:07.830594", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20148, - 51.37384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.7, - "qmprice": 58.9, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/160829828", - "info": { - "identifier": 160829828, - "sqm_ocr": 60.7, - "price": 3575.0, - "price_per_sqm": 58.89621087314662, - "url": "https://www.rightmove.co.uk/properties/160829828", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/160829828/108515_1323312_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.088826", - "last_seen": "2025-06-01T22:05:57.970843", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196495, - 51.49128 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.3, - "qmprice": 31.59, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160830005", - "info": { - "identifier": 160830005, - "sqm_ocr": 101.3, - "price": 3200.0, - "price_per_sqm": 31.5893385982231, - "url": "https://www.rightmove.co.uk/properties/160830005", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/160830005/15966_1323153_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.825347", - "last_seen": "2025-06-01T22:06:13.208010", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178137, - 51.470142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160830062", - "info": { - "identifier": 160830062, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160830062", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55362/160830062/55362_33824609_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.101665", - "last_seen": "2025-06-01T22:06:15.250152", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170041, - 51.516243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160830386", - "info": { - "identifier": 160830386, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160830386", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "COZEE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262232/160830386/262232_bd45fa7b-903c-451c-bef8-c1b61b3d7516_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.416483", - "last_seen": "2025-06-01T22:05:47.400097", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09407, - 51.56926 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3490.0, - "url": "https://www.rightmove.co.uk/properties/160830392", - "info": { - "identifier": 160830392, - "sqm_ocr": null, - "price": 3490.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160830392", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99758/160830392/99758_2586328_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.820224", - "last_seen": "2025-06-01T22:05:44.240777", - "price": 3490.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30103, - 51.528336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/160830878", - "info": { - "identifier": 160830878, - "sqm_ocr": null, - "price": 3050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160830878", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Aston Rowe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230534/160830878/230534_33824679_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.353182", - "last_seen": "2025-06-01T22:05:44.163781", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26638, - 51.510292 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160830962", - "info": { - "identifier": 160830962, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160830962", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Greenfield Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/60k/59831/160830962/59831_100031005023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.782052", - "last_seen": "2025-06-01T22:05:58.673082", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29652, - 51.39136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160831139", - "info": { - "identifier": 160831139, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160831139", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Austin Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67166/160831139/67166_33824625_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.608627", - "last_seen": "2025-06-01T22:05:51.338864", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.434554, - 51.571613 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/160831163", - "info": { - "identifier": 160831163, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160831163", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Legacy Property Consultants Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/139k/138659/160831163/138659_103650002238_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.283650", - "last_seen": "2025-06-01T22:05:47.584716", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07643, - 51.52905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 39.18, - "rooms": 3, - "total_price": 2860.0, - "url": "https://www.rightmove.co.uk/properties/160831472", - "info": { - "identifier": 160831472, - "sqm_ocr": 73.0, - "price": 2860.0, - "price_per_sqm": 39.178082191780824, - "url": "https://www.rightmove.co.uk/properties/160831472", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/160831472/80796_62_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.660406", - "last_seen": "2025-06-01T22:05:59.934096", - "price": 2860 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11337, - 51.46553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160831988", - "info": { - "identifier": 160831988, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160831988", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "COZEE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262232/160831988/262232_b1b67f8b-de67-453c-837f-9e872398539c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:08.942066", - "last_seen": "2025-06-01T22:06:08.942066", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02046, - 51.51328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160832330", - "info": { - "identifier": 160832330, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160832330", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50304/160832330/50304_33824797_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.055738", - "last_seen": "2025-06-01T22:05:44.266222", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290778, - 51.5127 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.0, - "qmprice": 36.6, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/160833371", - "info": { - "identifier": 160833371, - "sqm_ocr": 97.0, - "price": 3550.0, - "price_per_sqm": 36.597938144329895, - "url": "https://www.rightmove.co.uk/properties/160833371", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58704/160833371/58704_ALE180044_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.351880", - "last_seen": "2025-06-01T22:06:08.081739", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068802, - 51.514767 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/160833863", - "info": { - "identifier": 160833863, - "sqm_ocr": null, - "price": 3550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160833863", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Spencer James Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283697/160833863/283697_13496_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.574598", - "last_seen": "2025-06-01T22:06:09.877987", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068828, - 51.51458 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.5, - "qmprice": 34.75, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160835495", - "info": { - "identifier": 160835495, - "sqm_ocr": 70.5, - "price": 2450.0, - "price_per_sqm": 34.751773049645394, - "url": "https://www.rightmove.co.uk/properties/160835495", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/160835495/15951_1322548_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.707302", - "last_seen": "2025-06-01T22:05:44.885548", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265907, - 51.508312 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.77, - "qmprice": 30.5, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160835735", - "info": { - "identifier": 160835735, - "sqm_ocr": 73.77, - "price": 2250.0, - "price_per_sqm": 30.500203334688898, - "url": "https://www.rightmove.co.uk/properties/160835735", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84806/160835735/84806_33825037_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.804345", - "last_seen": "2025-06-01T22:06:04.642076", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303818, - 51.443066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160837010", - "info": { - "identifier": 160837010, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160837010", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Excel Property Services", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99425/160837010/99425_102708033771_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.581842", - "last_seen": "2025-06-01T22:05:42.516452", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17829, - 51.55621 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.96, - "qmprice": 48.1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160837280", - "info": { - "identifier": 160837280, - "sqm_ocr": 77.96, - "price": 3750.0, - "price_per_sqm": 48.10159055926116, - "url": "https://www.rightmove.co.uk/properties/160837280", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253307/160837280/253307_COF250065_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.669686", - "last_seen": "2025-06-01T22:05:59.945065", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128769, - 51.48031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.8, - "qmprice": 59.13, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/160837544", - "info": { - "identifier": 160837544, - "sqm_ocr": 45.8, - "price": 2708.0, - "price_per_sqm": 59.12663755458516, - "url": "https://www.rightmove.co.uk/properties/160837544", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50074/160837544/50074_P299193_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.777610", - "last_seen": "2025-06-01T22:05:58.354957", - "price": 2708.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20962, - 51.51866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.78, - "qmprice": 39.87, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160837850", - "info": { - "identifier": 160837850, - "sqm_ocr": 87.78, - "price": 3500.0, - "price_per_sqm": 39.87240829346092, - "url": "https://www.rightmove.co.uk/properties/160837850", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160837850/87187_71160_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.065559", - "last_seen": "2025-06-01T22:05:55.511500", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.233117, - 51.492596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160838153", - "info": { - "identifier": 160838153, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160838153", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/160838153/82537_33825197_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.112343", - "last_seen": "2025-06-01T22:06:08.537690", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017177, - 51.50051 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 147.5, - "qmprice": 19.32, - "rooms": 4, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160839383", - "info": { - "identifier": 160839383, - "sqm_ocr": 147.5, - "price": 2850.0, - "price_per_sqm": 19.322033898305083, - "url": "https://www.rightmove.co.uk/properties/160839383", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/160839383/52887_33825258_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.369204", - "last_seen": "2025-06-01T22:06:07.885730", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203957, - 51.347412 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 29.76, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160839584", - "info": { - "identifier": 160839584, - "sqm_ocr": 84.0, - "price": 2500.0, - "price_per_sqm": 29.761904761904763, - "url": "https://www.rightmove.co.uk/properties/160839584", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19059/160839584/19059_92645e87-f30c-4fed-a1dc-5683fc385a1d_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.048879", - "last_seen": "2025-06-01T22:05:50.303061", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.328458, - 51.600384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160840235", - "info": { - "identifier": 160840235, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160840235", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Andrew Lloyd Estates Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25238/160840235/25238_10654_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.567402", - "last_seen": "2025-06-01T22:05:50.159767", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05732, - 51.58853 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160840394", - "info": { - "identifier": 160840394, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160840394", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Hills Estate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/153k/152342/160840394/152342_1591_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.391705", - "last_seen": "2025-06-01T22:06:06.485230", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039367, - 51.4954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 35.65, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/160840631", - "info": { - "identifier": 160840631, - "sqm_ocr": 84.0, - "price": 2995.0, - "price_per_sqm": 35.654761904761905, - "url": "https://www.rightmove.co.uk/properties/160840631", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84848/160840631/84848_33047430_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.108954", - "last_seen": "2025-06-01T22:06:04.599115", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.336026, - 51.455032 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160840757", - "info": { - "identifier": 160840757, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160840757", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/160840757/228512_33825335_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.539497", - "last_seen": "2025-06-01T22:06:10.283575", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011889, - 51.524384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 127.72, - "qmprice": 27.38, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/160840928", - "info": { - "identifier": 160840928, - "sqm_ocr": 127.72, - "price": 3497.0, - "price_per_sqm": 27.380206702160976, - "url": "https://www.rightmove.co.uk/properties/160840928", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49922/160840928/49922_CED240299_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.249341", - "last_seen": "2025-06-01T22:06:08.242284", - "price": 3497.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004157, - 51.487267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.5, - "qmprice": 26.38, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160841876", - "info": { - "identifier": 160841876, - "sqm_ocr": 81.5, - "price": 2150.0, - "price_per_sqm": 26.380368098159508, - "url": "https://www.rightmove.co.uk/properties/160841876", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/160841876/264878_CAN250347_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.337610", - "last_seen": "2025-06-01T22:05:46.512926", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.079113, - 51.497066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.81, - "qmprice": 47.42, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160842125", - "info": { - "identifier": 160842125, - "sqm_ocr": 73.81, - "price": 3500.0, - "price_per_sqm": 47.41904890936188, - "url": "https://www.rightmove.co.uk/properties/160842125", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52617/160842125/52617_LVL250021_L_IMG_07_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.134088", - "last_seen": "2025-06-01T22:06:15.700916", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181304, - 51.533493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160842956", - "info": { - "identifier": 160842956, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160842956", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Ak247 Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261134/160842956/261134_11azure_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.096492", - "last_seen": "2025-06-01T22:05:47.956781", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08921, - 51.57243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.8, - "qmprice": 22.37, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160843556", - "info": { - "identifier": 160843556, - "sqm_ocr": 102.8, - "price": 2300.0, - "price_per_sqm": 22.37354085603113, - "url": "https://www.rightmove.co.uk/properties/160843556", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Anthony James Manser", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/38k/37403/160843556/37403_33825569_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.908886", - "last_seen": "2025-06-01T22:05:52.401679", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.360238, - 51.461933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160843991", - "info": { - "identifier": 160843991, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160843991", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/160843991/181787_181787_428_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.049813", - "last_seen": "2025-06-01T22:06:05.467935", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09223, - 51.49945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.6, - "qmprice": 19.63, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160845161", - "info": { - "identifier": 160845161, - "sqm_ocr": 114.6, - "price": 2250.0, - "price_per_sqm": 19.63350785340314, - "url": "https://www.rightmove.co.uk/properties/160845161", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Andrews Letting and Management", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34352/160845161/34352_ROM150030_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.286841", - "last_seen": "2025-06-01T22:05:50.885245", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.175893, - 51.57088 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160845284", - "info": { - "identifier": 160845284, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160845284", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Latymers Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74302/160845284/74302_LATYM_000155_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.711616", - "last_seen": "2025-06-01T22:05:48.497322", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215834, - 51.49364 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.2, - "qmprice": 30.59, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160845806", - "info": { - "identifier": 160845806, - "sqm_ocr": 75.2, - "price": 2300.0, - "price_per_sqm": 30.585106382978722, - "url": "https://www.rightmove.co.uk/properties/160845806", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/160845806/84878_33825722_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.457242", - "last_seen": "2025-06-01T22:06:14.083150", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222868, - 51.440105 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.8, - "qmprice": 29.76, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160845809", - "info": { - "identifier": 160845809, - "sqm_ocr": 100.8, - "price": 3000.0, - "price_per_sqm": 29.761904761904763, - "url": "https://www.rightmove.co.uk/properties/160845809", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/160845809/84878_33825723_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.406321", - "last_seen": "2025-06-01T22:06:01.753610", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217017, - 51.4184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.7, - "qmprice": 38.74, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160846073", - "info": { - "identifier": 160846073, - "sqm_ocr": 69.7, - "price": 2700.0, - "price_per_sqm": 38.73744619799139, - "url": "https://www.rightmove.co.uk/properties/160846073", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18927/160846073/18927_33825742_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.851707", - "last_seen": "2025-06-01T22:05:43.173601", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168038, - 51.54966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160846181", - "info": { - "identifier": 160846181, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160846181", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/160846181/120463_33825751_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.127381", - "last_seen": "2025-06-01T22:06:15.692266", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158464, - 51.518593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.8, - "qmprice": 42.37, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160846532", - "info": { - "identifier": 160846532, - "sqm_ocr": 70.8, - "price": 3000.0, - "price_per_sqm": 42.37288135593221, - "url": "https://www.rightmove.co.uk/properties/160846532", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/160846532/264404_RX572956_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.497728", - "last_seen": "2025-06-01T22:06:06.096067", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.048934, - 51.49996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160847330", - "info": { - "identifier": 160847330, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160847330", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 44, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78395/160847330/78395_33825829_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:08.935139", - "last_seen": "2025-06-01T22:06:08.935139", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070148, - 51.52093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 35.0, - "qmprice": 95.94, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/160848032", - "info": { - "identifier": 160848032, - "sqm_ocr": 35.0, - "price": 3358.0, - "price_per_sqm": 95.94285714285714, - "url": "https://www.rightmove.co.uk/properties/160848032", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Laurence Leigh Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80035/160848032/80035_LLR210059_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.863452", - "last_seen": "2025-06-01T22:06:14.609765", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159098, - 51.524227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.2, - "qmprice": 48.48, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160848269", - "info": { - "identifier": 160848269, - "sqm_ocr": 72.2, - "price": 3500.0, - "price_per_sqm": 48.476454293628805, - "url": "https://www.rightmove.co.uk/properties/160848269", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14543/160848269/14543_CIT250025_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.395444", - "last_seen": "2025-06-01T22:05:54.149634", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104615, - 51.524063 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160848902", - "info": { - "identifier": 160848902, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160848902", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/160848902/32793_39468_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.238777", - "last_seen": "2025-06-01T22:05:40.317946", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20624, - 51.54244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/160849697", - "info": { - "identifier": 160849697, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160849697", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Tatlers", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/156k/155624/160849697/155624_MUH250170_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.747080", - "last_seen": "2025-06-01T22:05:56.107362", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146893, - 51.61376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/160849748", - "info": { - "identifier": 160849748, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160849748", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Rosewood Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63096/160849748/63096_Disraeli_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.176389", - "last_seen": "2025-06-01T22:06:12.954928", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21446, - 51.46136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.5, - "qmprice": 33.52, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/160849895", - "info": { - "identifier": 160849895, - "sqm_ocr": 83.5, - "price": 2799.0, - "price_per_sqm": 33.52095808383233, - "url": "https://www.rightmove.co.uk/properties/160849895", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202016/160849895/202016_33792789_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.300498", - "last_seen": "2025-06-01T22:05:45.220651", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.326796, - 51.52795 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 42.25, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160851014", - "info": { - "identifier": 160851014, - "sqm_ocr": 71.0, - "price": 3000.0, - "price_per_sqm": 42.25352112676056, - "url": "https://www.rightmove.co.uk/properties/160851014", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/160851014/16050_1318065_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.372553", - "last_seen": "2025-06-01T22:05:47.731046", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079121, - 51.527187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.8, - "qmprice": 53.76, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160851038", - "info": { - "identifier": 160851038, - "sqm_ocr": 55.8, - "price": 3000.0, - "price_per_sqm": 53.763440860215056, - "url": "https://www.rightmove.co.uk/properties/160851038", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/160851038/16050_1318064_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.127854", - "last_seen": "2025-06-01T22:05:47.749494", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079121, - 51.527187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.19, - "qmprice": 54.01, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/160851101", - "info": { - "identifier": 160851101, - "sqm_ocr": 64.19, - "price": 3467.0, - "price_per_sqm": 54.01152827543231, - "url": "https://www.rightmove.co.uk/properties/160851101", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94246/160851101/94246_1322567_IMG_03_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.303833", - "last_seen": "2025-06-01T22:06:14.849036", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12701, - 51.50641 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.3, - "qmprice": 45.73, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160851275", - "info": { - "identifier": 160851275, - "sqm_ocr": 50.3, - "price": 2300.0, - "price_per_sqm": 45.72564612326044, - "url": "https://www.rightmove.co.uk/properties/160851275", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/160851275/111050_1323004_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.533797", - "last_seen": "2025-06-01T22:06:01.311464", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172926, - 51.42182 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.3, - "qmprice": 73.24, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/160851281", - "info": { - "identifier": 160851281, - "sqm_ocr": 50.3, - "price": 3684.0, - "price_per_sqm": 73.24055666003977, - "url": "https://www.rightmove.co.uk/properties/160851281", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/160851281/111050_1323005_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.538570", - "last_seen": "2025-06-01T22:06:01.305447", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172926, - 51.42182 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160851386", - "info": { - "identifier": 160851386, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160851386", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/160851386/120463_33826074_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.302104", - "last_seen": "2025-06-01T22:06:15.845097", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166147, - 51.528625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2425.0, - "url": "https://www.rightmove.co.uk/properties/160851905", - "info": { - "identifier": 160851905, - "sqm_ocr": null, - "price": 2425.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160851905", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/160851905/43310_CWL250170_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.845459", - "last_seen": "2025-06-01T22:06:00.727938", - "price": 2425.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038571, - 51.49061 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.63, - "qmprice": 48.79, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160851929", - "info": { - "identifier": 160851929, - "sqm_ocr": 67.63, - "price": 3300.0, - "price_per_sqm": 48.794913499926075, - "url": "https://www.rightmove.co.uk/properties/160851929", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44538/160851929/44538_WBL250055_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.671031", - "last_seen": "2025-06-01T22:06:13.540173", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14832, - 51.472473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.34, - "qmprice": 26.41, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/160852346", - "info": { - "identifier": 160852346, - "sqm_ocr": 100.34, - "price": 2650.0, - "price_per_sqm": 26.41020530197329, - "url": "https://www.rightmove.co.uk/properties/160852346", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247910/160852346/247910_67b5ba426d827_IMG_05_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.226730", - "last_seen": "2025-06-01T22:05:52.178613", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28419, - 51.49046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.8, - "qmprice": 39.03, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160852373", - "info": { - "identifier": 160852373, - "sqm_ocr": 53.8, - "price": 2100.0, - "price_per_sqm": 39.033457249070636, - "url": "https://www.rightmove.co.uk/properties/160852373", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Parkheath", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151640/160852373/151640_32317605_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.005259", - "last_seen": "2025-06-01T22:05:40.714606", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217569, - 51.531757 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.4, - "qmprice": 36.22, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160852724", - "info": { - "identifier": 160852724, - "sqm_ocr": 70.4, - "price": 2550.0, - "price_per_sqm": 36.22159090909091, - "url": "https://www.rightmove.co.uk/properties/160852724", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160852724/96668_245508217042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.403484", - "last_seen": "2025-06-01T20:19:22.167030", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312727, - 51.52301 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160852898", - "info": { - "identifier": 160852898, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160852898", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Haus Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246986/160852898/246986_28966904_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.263239", - "last_seen": "2025-06-01T22:05:46.400164", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.060779, - 51.47234 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.6, - "qmprice": 33.44, - "rooms": 2, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/160852943", - "info": { - "identifier": 160852943, - "sqm_ocr": 101.6, - "price": 3397.0, - "price_per_sqm": 33.43503937007874, - "url": "https://www.rightmove.co.uk/properties/160852943", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Chard", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141944/160852943/141944_33826144_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.524723", - "last_seen": "2025-06-01T22:05:49.353144", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181144, - 51.476254 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.6, - "qmprice": 40.64, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160853873", - "info": { - "identifier": 160853873, - "sqm_ocr": 56.6, - "price": 2300.0, - "price_per_sqm": 40.63604240282685, - "url": "https://www.rightmove.co.uk/properties/160853873", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/160853873/15951_1321726_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.155697", - "last_seen": "2025-06-01T22:05:51.827069", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267736, - 51.491993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.79, - "qmprice": 34.89, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160853876", - "info": { - "identifier": 160853876, - "sqm_ocr": 68.79, - "price": 2400.0, - "price_per_sqm": 34.888791975577846, - "url": "https://www.rightmove.co.uk/properties/160853876", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/160853876/15951_1323379_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.157499", - "last_seen": "2025-06-01T22:05:51.821890", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295036, - 51.48722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.7, - "qmprice": 51.99, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160853879", - "info": { - "identifier": 160853879, - "sqm_ocr": 57.7, - "price": 3000.0, - "price_per_sqm": 51.99306759098786, - "url": "https://www.rightmove.co.uk/properties/160853879", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/160853879/15951_1323397_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.158845", - "last_seen": "2025-06-01T22:05:51.819257", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252298, - 51.488914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.6, - "qmprice": 61.84, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160853882", - "info": { - "identifier": 160853882, - "sqm_ocr": 56.6, - "price": 3500.0, - "price_per_sqm": 61.83745583038869, - "url": "https://www.rightmove.co.uk/properties/160853882", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/160853882/15951_1321713_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.162606", - "last_seen": "2025-06-01T22:05:51.807520", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267736, - 51.491993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.9, - "qmprice": 41.72, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160853984", - "info": { - "identifier": 160853984, - "sqm_ocr": 77.9, - "price": 3250.0, - "price_per_sqm": 41.7201540436457, - "url": "https://www.rightmove.co.uk/properties/160853984", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "LAND", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278897/160853984/278897_RL0836_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:09.659518", - "last_seen": "2025-06-01T22:06:09.659518", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025374, - 51.502247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160853987", - "info": { - "identifier": 160853987, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160853987", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "LAND", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278897/160853987/278897_RL0837_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:09.655315", - "last_seen": "2025-06-01T22:06:09.655315", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019367, - 51.50121 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.5, - "qmprice": 32.75, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/160854029", - "info": { - "identifier": 160854029, - "sqm_ocr": 112.5, - "price": 3684.0, - "price_per_sqm": 32.74666666666667, - "url": "https://www.rightmove.co.uk/properties/160854029", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/160854029/84889_1322711_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.785520", - "last_seen": "2025-06-01T22:06:14.814477", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142432, - 51.491776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160854131", - "info": { - "identifier": 160854131, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160854131", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65794/160854131/65794_33826199_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.510986", - "last_seen": "2025-06-01T22:06:01.353492", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188299, - 51.41899 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.81, - "qmprice": 35.21, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160854299", - "info": { - "identifier": 160854299, - "sqm_ocr": 56.81, - "price": 2000.0, - "price_per_sqm": 35.205069530012324, - "url": "https://www.rightmove.co.uk/properties/160854299", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Citydeal Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96880/160854299/96880_RL0651_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.932388", - "last_seen": "2025-06-01T22:05:45.047799", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290152, - 51.51302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160854308", - "info": { - "identifier": 160854308, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160854308", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Citydeal Estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96880/160854308/96880_RL1533_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.238055", - "last_seen": "2025-06-01T22:05:45.384734", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305113, - 51.525383 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.9, - "qmprice": 28.12, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/160854344", - "info": { - "identifier": 160854344, - "sqm_ocr": 104.9, - "price": 2950.0, - "price_per_sqm": 28.122020972354623, - "url": "https://www.rightmove.co.uk/properties/160854344", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Citydeal Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96880/160854344/96880_RL2920_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.198109", - "last_seen": "2025-06-01T22:05:44.574835", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267026, - 51.5222 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/160854656", - "info": { - "identifier": 160854656, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160854656", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/160854656/97423_CEI241063_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/05/2202", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.322461", - "last_seen": "2025-06-01T22:05:38.822349", - "price": 2166 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.244945, - 51.595722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.58, - "qmprice": 49.83, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/160855310", - "info": { - "identifier": 160855310, - "sqm_ocr": 69.58, - "price": 3467.0, - "price_per_sqm": 49.8275366484622, - "url": "https://www.rightmove.co.uk/properties/160855310", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/160855310/16023_1322881_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.377536", - "last_seen": "2025-06-01T22:06:14.401331", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149969, - 51.49416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.9, - "qmprice": 40.98, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160855355", - "info": { - "identifier": 160855355, - "sqm_ocr": 54.9, - "price": 2250.0, - "price_per_sqm": 40.98360655737705, - "url": "https://www.rightmove.co.uk/properties/160855355", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/160855355/71401_1323412_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.420075", - "last_seen": "2025-06-01T22:05:41.316456", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.249684, - 51.556362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160856480", - "info": { - "identifier": 160856480, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160856480", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 45, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/160856480/17888_37774_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.589421", - "last_seen": "2025-06-01T22:05:42.542170", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1441, - 51.52789 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/160856627", - "info": { - "identifier": 160856627, - "sqm_ocr": null, - "price": 3878.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160856627", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.382742", - "last_seen": "2025-06-01T22:05:42.786384", - "price": 3878 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13838, - 51.52672 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.54, - "qmprice": 35.64, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160857524", - "info": { - "identifier": 160857524, - "sqm_ocr": 71.54, - "price": 2550.0, - "price_per_sqm": 35.64439474419905, - "url": "https://www.rightmove.co.uk/properties/160857524", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Hogarth Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95275/160857524/95275_1751_HOGE_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.478455", - "last_seen": "2025-06-01T22:06:15.159734", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141455, - 51.487255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.9, - "qmprice": 39.82, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160857527", - "info": { - "identifier": 160857527, - "sqm_ocr": 87.9, - "price": 3500.0, - "price_per_sqm": 39.817974971558584, - "url": "https://www.rightmove.co.uk/properties/160857527", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Hogarth Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95275/160857527/95275_10000307_HOGE_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.477297", - "last_seen": "2025-06-01T22:06:15.156000", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133525, - 51.490288 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.0, - "qmprice": 37.78, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/160858025", - "info": { - "identifier": 160858025, - "sqm_ocr": 90.0, - "price": 3400.0, - "price_per_sqm": 37.77777777777778, - "url": "https://www.rightmove.co.uk/properties/160858025", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "PG Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107294/160858025/107294_620_PGES_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.435269", - "last_seen": "2025-06-01T22:05:47.341310", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089671, - 51.52798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.9, - "qmprice": 29.46, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160861589", - "info": { - "identifier": 160861589, - "sqm_ocr": 67.9, - "price": 2000.0, - "price_per_sqm": 29.455081001472752, - "url": "https://www.rightmove.co.uk/properties/160861589", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Aspire", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45021/160861589/45021_CLM180014_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.595745", - "last_seen": "2025-06-01T22:05:59.876093", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125739, - 51.449005 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 29.02, - "rooms": 3, - "total_price": 2380.0, - "url": "https://www.rightmove.co.uk/properties/160866791", - "info": { - "identifier": 160866791, - "sqm_ocr": 82.0, - "price": 2380.0, - "price_per_sqm": 29.024390243902438, - "url": "https://www.rightmove.co.uk/properties/160866791", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160866791/96668_245541618042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.126071", - "last_seen": "2025-06-01T22:06:00.505968", - "price": 2380.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.040364, - 51.48036 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.7, - "qmprice": 64.97, - "rooms": 3, - "total_price": 3879.0, - "url": "https://www.rightmove.co.uk/properties/160871576", - "info": { - "identifier": 160871576, - "sqm_ocr": 59.7, - "price": 3879.0, - "price_per_sqm": 64.9748743718593, - "url": "https://www.rightmove.co.uk/properties/160871576", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 44, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151658/160871576/151658_1319486_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.467285", - "last_seen": "2025-06-01T22:06:15.496922", - "price": 3879.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192548, - 51.52389 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 146.8, - "qmprice": 23.84, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160872473", - "info": { - "identifier": 160872473, - "sqm_ocr": 146.8, - "price": 3500.0, - "price_per_sqm": 23.841961852861033, - "url": "https://www.rightmove.co.uk/properties/160872473", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "McS Mckenzie Sakowicz Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244001/160872473/244001_McS53tm_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.136656", - "last_seen": "2025-06-01T22:05:50.481310", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37376, - 51.58022 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/160872719", - "info": { - "identifier": 160872719, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160872719", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "London Property Broker", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61607/160872719/61607_455c97a0-24f6-48e9-8138-73503df9c8cc_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:11.536601", - "last_seen": "2025-06-01T22:06:11.536601", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056046, - 51.51832 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 42.15, - "rooms": 2, - "total_price": 3077.0, - "url": "https://www.rightmove.co.uk/properties/160873802", - "info": { - "identifier": 160873802, - "sqm_ocr": 73.0, - "price": 3077.0, - "price_per_sqm": 42.15068493150685, - "url": "https://www.rightmove.co.uk/properties/160873802", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/160873802/275489_14032025-CN715O_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.278610", - "last_seen": "2025-06-01T22:06:11.163797", - "price": 3076 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026766, - 51.509644 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.5, - "qmprice": 35.66, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/160874810", - "info": { - "identifier": 160874810, - "sqm_ocr": 78.5, - "price": 2799.0, - "price_per_sqm": 35.65605095541401, - "url": "https://www.rightmove.co.uk/properties/160874810", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/160874810/84788_33620039_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.126419", - "last_seen": "2025-06-01T22:05:52.582363", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269235, - 51.4787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/160875062", - "info": { - "identifier": 160875062, - "sqm_ocr": null, - "price": 2395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160875062", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160875062/96668_242551821032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.993590", - "last_seen": "2025-06-01T22:05:45.923358", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016824, - 51.6676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160875743", - "info": { - "identifier": 160875743, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160875743", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18930/160875743/18930_33826669_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.673510", - "last_seen": "2025-06-01T22:05:49.602508", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131541, - 51.573574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.0, - "qmprice": 43.48, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160876370", - "info": { - "identifier": 160876370, - "sqm_ocr": 46.0, - "price": 2000.0, - "price_per_sqm": 43.47826086956522, - "url": "https://www.rightmove.co.uk/properties/160876370", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68064/160876370/68064_BRL200023_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.773008", - "last_seen": "2025-06-01T22:05:59.277100", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107946, - 51.45823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/160876466", - "info": { - "identifier": 160876466, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160876466", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202016/160876466/202016_33767980_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.569499", - "last_seen": "2025-06-01T22:05:44.515423", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305963, - 51.495785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.1, - "qmprice": 44.81, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160877012", - "info": { - "identifier": 160877012, - "sqm_ocr": 78.1, - "price": 3500.0, - "price_per_sqm": 44.81434058898848, - "url": "https://www.rightmove.co.uk/properties/160877012", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44645/160877012/44645_FWL210072_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.922000", - "last_seen": "2025-06-01T22:05:48.324891", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210281, - 51.473682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160877990", - "info": { - "identifier": 160877990, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160877990", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160877990/96668_179540110082023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.904156", - "last_seen": "2025-06-01T22:06:03.766887", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.021737, - 51.57603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.85, - "qmprice": 33.7, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160878368", - "info": { - "identifier": 160878368, - "sqm_ocr": 103.85, - "price": 3500.0, - "price_per_sqm": 33.70245546461242, - "url": "https://www.rightmove.co.uk/properties/160878368", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 36, - "status": null, - "last_seen": 0, - "agency": "JBrown", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239306/160878368/239306_6633_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.823354", - "last_seen": "2025-06-01T22:06:11.548660", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071321, - 51.514946 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160878677", - "info": { - "identifier": 160878677, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160878677", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/160878677/198539_33826848_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.280210", - "last_seen": "2025-06-01T22:06:08.134845", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017177, - 51.50051 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.6, - "qmprice": 32.72, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/160878887", - "info": { - "identifier": 160878887, - "sqm_ocr": 114.6, - "price": 3750.0, - "price_per_sqm": 32.72251308900524, - "url": "https://www.rightmove.co.uk/properties/160878887", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84818/160878887/84818_33826860_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.390913", - "last_seen": "2025-06-01T22:06:04.778488", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.336161, - 51.442795 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.1, - "qmprice": 53.05, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/160881443", - "info": { - "identifier": 160881443, - "sqm_ocr": 53.1, - "price": 2817.0, - "price_per_sqm": 53.050847457627114, - "url": "https://www.rightmove.co.uk/properties/160881443", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/160881443/15942_1322748_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.001842", - "last_seen": "2025-06-01T22:05:57.798353", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180052, - 51.496536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160882166", - "info": { - "identifier": 160882166, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160882166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Century 21 London Central", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45920/160882166/45920_R209798_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.024791", - "last_seen": "2025-06-01T22:06:03.232305", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.020198, - 51.550995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160882388", - "info": { - "identifier": 160882388, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160882388", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 44, - "status": null, - "last_seen": 0, - "agency": "Barrain London Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249296/160882388/249296_33826965_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:09.007126", - "last_seen": "2025-06-01T22:06:09.007126", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022217, - 51.50158 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 29.11, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160883177", - "info": { - "identifier": 160883177, - "sqm_ocr": 79.0, - "price": 2300.0, - "price_per_sqm": 29.11392405063291, - "url": "https://www.rightmove.co.uk/properties/160883177", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160883177/96668_242054217032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.614325", - "last_seen": "2025-06-01T22:05:44.454745", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.275554, - 51.501167 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/160887740", - "info": { - "identifier": 160887740, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160887740", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 44, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/160887740/169658_577169_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.371627", - "last_seen": "2025-06-01T22:06:06.780134", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09805, - 51.492596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/160888256", - "info": { - "identifier": 160888256, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160888256", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160888256/96668_234595409012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.361560", - "last_seen": "2025-06-01T22:06:08.033326", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053958, - 51.5311 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3360.0, - "url": "https://www.rightmove.co.uk/properties/160890032", - "info": { - "identifier": 160890032, - "sqm_ocr": null, - "price": 3360.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160890032", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160890032/96668_245566918042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.120923", - "last_seen": "2025-06-01T22:05:57.953090", - "price": 3360.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194414, - 51.495865 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/160896497", - "info": { - "identifier": 160896497, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160896497", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160896497/96668_242706522032025_IMG_25_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.470816", - "last_seen": "2025-06-01T22:05:46.159802", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.048671, - 51.434315 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.5, - "qmprice": 28.51, - "rooms": 4, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/160901750", - "info": { - "identifier": 160901750, - "sqm_ocr": 110.5, - "price": 3150.0, - "price_per_sqm": 28.506787330316744, - "url": "https://www.rightmove.co.uk/properties/160901750", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/160901750/238265_L107168_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.651989", - "last_seen": "2025-06-01T22:06:04.361195", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.272574, - 51.464222 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160902539", - "info": { - "identifier": 160902539, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160902539", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Curchods Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13985/160902539/13985_CKT230074_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.783169", - "last_seen": "2025-06-01T22:05:58.615745", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297209, - 51.412415 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160903646", - "info": { - "identifier": 160903646, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160903646", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Stonebridge Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214412/160903646/214412_3263_STOB_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.951480", - "last_seen": "2025-06-01T22:06:03.935605", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.074374, - 51.564312 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 30.26, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160904471", - "info": { - "identifier": 160904471, - "sqm_ocr": 76.0, - "price": 2300.0, - "price_per_sqm": 30.263157894736842, - "url": "https://www.rightmove.co.uk/properties/160904471", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 43, - "status": null, - "last_seen": 0, - "agency": "Property Inside London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270212/160904471/270212_Baronet189_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.329854", - "last_seen": "2025-06-01T22:05:41.309714", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28144, - 51.52917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160906373", - "info": { - "identifier": 160906373, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160906373", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 43, - "status": null, - "last_seen": 0, - "agency": "HASSLE FREE LETTINGS", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282827/160906373/282827_HFL240175_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.214080", - "last_seen": "2025-06-01T22:05:39.979528", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.114236, - 51.436085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160907888", - "info": { - "identifier": 160907888, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160907888", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Day Morris", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/190k/189104/160907888/189104_33825187_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.561760", - "last_seen": "2025-06-01T22:05:49.864108", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161196, - 51.576424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.9, - "qmprice": 32.31, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160910243", - "info": { - "identifier": 160910243, - "sqm_ocr": 61.9, - "price": 2000.0, - "price_per_sqm": 32.31017770597738, - "url": "https://www.rightmove.co.uk/properties/160910243", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Grays Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250733/160910243/250733_33827872_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.794824", - "last_seen": "2025-06-01T22:05:59.174769", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129321, - 51.421703 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3490.0, - "url": "https://www.rightmove.co.uk/properties/160917776", - "info": { - "identifier": 160917776, - "sqm_ocr": null, - "price": 3490.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160917776", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/160917776/264878_CAN212887_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.375868", - "last_seen": "2025-06-01T22:06:09.324317", - "price": 3490.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028288, - 51.5132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/160921190", - "info": { - "identifier": 160921190, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160921190", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160921190/96668_245195015042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.634732", - "last_seen": "2025-06-01T22:06:06.876147", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09974, - 51.497074 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.21, - "qmprice": 37.55, - "rooms": 3, - "total_price": 2599.0, - "url": "https://www.rightmove.co.uk/properties/160921541", - "info": { - "identifier": 160921541, - "sqm_ocr": 69.21, - "price": 2599.0, - "price_per_sqm": 37.552376824158365, - "url": "https://www.rightmove.co.uk/properties/160921541", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160921541/96668_245666119042025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.975958", - "last_seen": "2025-06-01T17:38:48.977764", - "price": 2599.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0934, - 51.56673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2825.0, - "url": "https://www.rightmove.co.uk/properties/160921565", - "info": { - "identifier": 160921565, - "sqm_ocr": null, - "price": 2825.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160921565", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Vesper Homes", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112054/160921565/112054_LON220152_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.301737", - "last_seen": "2025-06-01T22:06:08.948782", - "price": 2825.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056915, - 51.51855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2475.0, - "url": "https://www.rightmove.co.uk/properties/160925333", - "info": { - "identifier": 160925333, - "sqm_ocr": null, - "price": 2475.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160925333", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160925333/96668_239403620022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.509549", - "last_seen": "2025-06-01T22:06:01.659186", - "price": 2475.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184432, - 51.39818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/160925354", - "info": { - "identifier": 160925354, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160925354", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160925354/96668_245736120042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.033656", - "last_seen": "2025-06-01T22:05:54.013132", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095681, - 51.5298 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/160926452", - "info": { - "identifier": 160926452, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160926452", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160926452/96668_237319002022025_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.805329", - "last_seen": "2025-06-01T22:05:44.881590", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.320379, - 51.51728 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.99, - "qmprice": 29.22, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160929521", - "info": { - "identifier": 160929521, - "sqm_ocr": 88.99, - "price": 2600.0, - "price_per_sqm": 29.216765928756043, - "url": "https://www.rightmove.co.uk/properties/160929521", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/160929521/264326_Y74326_2_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.517815", - "last_seen": "2025-06-01T22:05:59.518575", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130256, - 51.420856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 47.92, - "rooms": 3, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/160931009", - "info": { - "identifier": 160931009, - "sqm_ocr": 71.0, - "price": 3402.0, - "price_per_sqm": 47.91549295774648, - "url": "https://www.rightmove.co.uk/properties/160931009", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Primden Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261275/160931009/261275_14241_001057_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.180440", - "last_seen": "2025-06-01T22:05:55.785385", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088039, - 51.531998 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 45.45, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160931330", - "info": { - "identifier": 160931330, - "sqm_ocr": 66.0, - "price": 3000.0, - "price_per_sqm": 45.45454545454545, - "url": "https://www.rightmove.co.uk/properties/160931330", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "McMahon & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65019/160931330/65019_631_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.121195", - "last_seen": "2025-06-01T22:06:11.316755", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066169, - 51.5162 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/160932353", - "info": { - "identifier": 160932353, - "sqm_ocr": null, - "price": 2847.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160932353", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/160932353/181787_181787_896_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.501359", - "last_seen": "2025-06-01T22:06:06.998860", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08339, - 51.4905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2960.0, - "url": "https://www.rightmove.co.uk/properties/160933049", - "info": { - "identifier": 160933049, - "sqm_ocr": null, - "price": 2960.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160933049", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160933049/96668_245776421042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.250139", - "last_seen": "2025-06-01T22:06:06.071543", - "price": 2960.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098938, - 51.47206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.6, - "qmprice": 41.57, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/160933163", - "info": { - "identifier": 160933163, - "sqm_ocr": 88.6, - "price": 3683.0, - "price_per_sqm": 41.568848758465016, - "url": "https://www.rightmove.co.uk/properties/160933163", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "PMP International", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240842/160933163/240842_33828152_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.123681", - "last_seen": "2025-06-01T22:06:15.775983", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163246, - 51.519226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160933631", - "info": { - "identifier": 160933631, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160933631", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160933631/96668_245781821042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.095820", - "last_seen": "2025-06-01T22:05:38.715852", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242526, - 51.57711 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160936502", - "info": { - "identifier": 160936502, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160936502", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160936502/96668_179092206082023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.830874", - "last_seen": "2025-06-01T22:05:43.403309", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103059, - 51.403614 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/160936649", - "info": { - "identifier": 160936649, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160936649", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 41, - "status": null, - "last_seen": 0, - "agency": "London Homemoves", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170204/160936649/170204_9Homesteadroad_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.022594", - "last_seen": "2025-06-01T22:05:54.813704", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205092, - 51.4801 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/160936775", - "info": { - "identifier": 160936775, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160936775", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "AIROPERATE LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275732/160936775/275732_2BR-Mid-Let-Tower-Hill_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.189223", - "last_seen": "2025-06-01T20:19:56.842735", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06773, - 51.50984 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160936793", - "info": { - "identifier": 160936793, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160936793", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "AIROPERATE LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275732/160936793/275732_2-BR-Mid-Let-Argent-House_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.285156", - "last_seen": "2025-06-01T22:05:39.786476", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24024, - 51.59547 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160937006", - "info": { - "identifier": 160937006, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160937006", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 41, - "status": null, - "last_seen": 0, - "agency": "Such Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238883/160937006/238883_274981_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.346816", - "last_seen": "2025-06-01T22:06:00.182958", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09875, - 51.43976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160937132", - "info": { - "identifier": 160937132, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160937132", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160937132/96668_245373516042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.615691", - "last_seen": "2025-06-01T22:05:43.640559", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123745, - 51.40828 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160937150", - "info": { - "identifier": 160937150, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160937150", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160937150/96668_245765421042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.051358, - 51.550476 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/160937282", - "info": { - "identifier": 160937282, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160937282", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "MULTI SOLUTIONS INTERNATIONAL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283610/160937282/283610_4502LP_IMG_20_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.981153", - "last_seen": "2025-06-01T22:06:08.381107", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02553, - 51.50266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2075.0, - "url": "https://www.rightmove.co.uk/properties/160937708", - "info": { - "identifier": 160937708, - "sqm_ocr": null, - "price": 2075.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160937708", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160937708/96668_164695607032023_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.378509", - "last_seen": "2025-06-01T22:06:07.744169", - "price": 2075.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200538, - 51.360023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/160937951", - "info": { - "identifier": 160937951, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160937951", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Akelius Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102505/160937951/102505_40123-4_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.524816", - "last_seen": "2025-06-01T22:06:16.028022", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1701, - 51.5337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.6, - "qmprice": 35.64, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/160937990", - "info": { - "identifier": 160937990, - "sqm_ocr": 92.6, - "price": 3300.0, - "price_per_sqm": 35.63714902807776, - "url": "https://www.rightmove.co.uk/properties/160937990", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Akelius Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102505/160937990/102505_40013-40_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.309205", - "last_seen": "2025-06-01T22:06:00.201375", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10309, - 51.47733 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/160938005", - "info": { - "identifier": 160938005, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160938005", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160938005/96668_241522012032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.582142", - "last_seen": "2025-06-01T22:05:59.431363", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11777, - 51.48757 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160938077", - "info": { - "identifier": 160938077, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160938077", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Waltham Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108803/160938077/108803_3222_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.815576", - "last_seen": "2025-06-01T22:06:03.801086", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.036761, - 51.607906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/160938143", - "info": { - "identifier": 160938143, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160938143", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160938143/96668_245763921042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.657300", - "last_seen": "2025-06-01T22:06:00.163747", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119804, - 51.431 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160938164", - "info": { - "identifier": 160938164, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160938164", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160938164/96668_241843114032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.302918", - "last_seen": "2025-06-01T22:05:41.360366", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295976, - 51.5391 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.44, - "qmprice": 39.45, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160938197", - "info": { - "identifier": 160938197, - "sqm_ocr": 68.44, - "price": 2700.0, - "price_per_sqm": 39.45061367621274, - "url": "https://www.rightmove.co.uk/properties/160938197", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "W Realty Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282878/160938197/282878_33828268_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.332144", - "last_seen": "2025-06-01T22:05:45.285265", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.249534, - 51.51306 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160939325", - "info": { - "identifier": 160939325, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160939325", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160939325/96668_230329023112024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.354030", - "last_seen": "2025-06-01T22:06:01.479274", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2062, - 51.42033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.2, - "qmprice": 33.49, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160942364", - "info": { - "identifier": 160942364, - "sqm_ocr": 64.2, - "price": 2150.0, - "price_per_sqm": 33.48909657320872, - "url": "https://www.rightmove.co.uk/properties/160942364", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14546/160942364/14546_DLL160148_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.944783", - "last_seen": "2025-06-01T20:19:56.243339", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022746, - 51.516357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.8, - "qmprice": 33.96, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160942484", - "info": { - "identifier": 160942484, - "sqm_ocr": 117.8, - "price": 4000.0, - "price_per_sqm": 33.955857385398986, - "url": "https://www.rightmove.co.uk/properties/160942484", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72056/160942484/72056_33828380_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.281952", - "last_seen": "2025-06-01T22:06:13.461367", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162989, - 51.42777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160942748", - "info": { - "identifier": 160942748, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160942748", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148955/160942748/148955_RIL250035_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.658711", - "last_seen": "2025-06-01T22:05:58.592792", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30069, - 51.401707 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.87, - "qmprice": 28.53, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160943918", - "info": { - "identifier": 160943918, - "sqm_ocr": 78.87, - "price": 2250.0, - "price_per_sqm": 28.527957398250283, - "url": "https://www.rightmove.co.uk/properties/160943918", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279224/160943918/279224_JCC230005_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.969608", - "last_seen": "2025-06-01T22:06:00.076844", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123149, - 51.460213 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3661.0, - "url": "https://www.rightmove.co.uk/properties/160945475", - "info": { - "identifier": 160945475, - "sqm_ocr": null, - "price": 3661.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160945475", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6769/160945475/6769_GGL250031_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.074439", - "last_seen": "2025-06-01T22:05:38.759800", - "price": 3661.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201234, - 51.58166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.0, - "qmprice": 35.35, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160945727", - "info": { - "identifier": 160945727, - "sqm_ocr": 99.0, - "price": 3500.0, - "price_per_sqm": 35.35353535353536, - "url": "https://www.rightmove.co.uk/properties/160945727", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Qube Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284837/160945727/284837_FordwychRoad_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.472487", - "last_seen": "2025-06-01T22:05:43.099982", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20869, - 51.55336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160946474", - "info": { - "identifier": 160946474, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160946474", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Qube Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284837/160946474/284837_Whitehouseapartments_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.233524", - "last_seen": "2025-06-01T22:05:59.681101", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11588, - 51.50539 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.8, - "qmprice": 22.27, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160946561", - "info": { - "identifier": 160946561, - "sqm_ocr": 98.8, - "price": 2200.0, - "price_per_sqm": 22.267206477732795, - "url": "https://www.rightmove.co.uk/properties/160946561", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/160946561/250739_1322132_IMG_03_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.145907", - "last_seen": "2025-06-01T22:05:50.699729", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.306761, - 51.590527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.9, - "qmprice": 35.76, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160946591", - "info": { - "identifier": 160946591, - "sqm_ocr": 76.9, - "price": 2750.0, - "price_per_sqm": 35.76072821846554, - "url": "https://www.rightmove.co.uk/properties/160946591", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/126k/125836/160946591/125836_ELL220036_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.705442", - "last_seen": "2025-06-01T22:05:44.990695", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.309299, - 51.520966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.41, - "qmprice": 46.68, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/160946801", - "info": { - "identifier": 160946801, - "sqm_ocr": 66.41, - "price": 3100.0, - "price_per_sqm": 46.6797169101039, - "url": "https://www.rightmove.co.uk/properties/160946801", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/160946801/80340_a1G4J0000025yleUAA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.975770", - "last_seen": "2025-06-01T22:06:00.070368", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10906, - 51.50368 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.1, - "qmprice": 49.93, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/160946939", - "info": { - "identifier": 160946939, - "sqm_ocr": 72.1, - "price": 3600.0, - "price_per_sqm": 49.93065187239945, - "url": "https://www.rightmove.co.uk/properties/160946939", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Infinite Property Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65180/160946939/65180_e65cc15d-9428-4e3d-9a76-a41ccf3568e2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.185329", - "last_seen": "2025-06-01T22:05:59.754807", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125181, - 51.482 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160947098", - "info": { - "identifier": 160947098, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160947098", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3305/160947098/3305_000900757_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.559492", - "last_seen": "2025-06-01T22:05:43.742331", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08927, - 51.37378 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160947143", - "info": { - "identifier": 160947143, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160947143", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Mile", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53010/160947143/53010_101541007957_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.765453", - "last_seen": "2025-06-01T22:05:42.690468", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12931, - 51.54744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160947164", - "info": { - "identifier": 160947164, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160947164", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Oak Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267236/160947164/267236_RL0710_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.977410", - "last_seen": "2025-06-01T22:05:49.974024", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.060311, - 51.611813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160948070", - "info": { - "identifier": 160948070, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160948070", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160948070/96668_242570321032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.048620", - "last_seen": "2025-06-01T22:05:45.665262", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035825, - 51.647827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160948289", - "info": { - "identifier": 160948289, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160948289", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160948289/96668_202348917032024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.053079", - "last_seen": "2025-06-01T22:05:52.237685", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.326981, - 51.466198 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.91, - "qmprice": 29.44, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160948685", - "info": { - "identifier": 160948685, - "sqm_ocr": 84.91, - "price": 2500.0, - "price_per_sqm": 29.442939583087977, - "url": "https://www.rightmove.co.uk/properties/160948685", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Whitman & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67487/160948685/67487_33828729_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.851770", - "last_seen": "2025-06-01T22:05:52.624789", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.255297, - 51.49192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.17, - "qmprice": 27.1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160948718", - "info": { - "identifier": 160948718, - "sqm_ocr": 105.17, - "price": 2850.0, - "price_per_sqm": 27.098982599600646, - "url": "https://www.rightmove.co.uk/properties/160948718", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "LYH Property Consultants Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235565/160948718/235565_33828732_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.956301", - "last_seen": "2025-06-01T22:06:02.919939", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.024719, - 51.50881 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/160948862", - "info": { - "identifier": 160948862, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160948862", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Qube Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284837/160948862/284837_76ALoveridgeroad_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.410302", - "last_seen": "2025-06-01T22:05:42.067280", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20028, - 51.5472 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.6, - "qmprice": 33.94, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160949765", - "info": { - "identifier": 160949765, - "sqm_ocr": 76.6, - "price": 2600.0, - "price_per_sqm": 33.942558746736296, - "url": "https://www.rightmove.co.uk/properties/160949765", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Kew", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260411/160949765/260411_000017715_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.898783", - "last_seen": "2025-06-01T22:05:52.559134", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36258, - 51.47037 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.9, - "qmprice": 29.36, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/160950374", - "info": { - "identifier": 160950374, - "sqm_ocr": 80.9, - "price": 2375.0, - "price_per_sqm": 29.357231149567365, - "url": "https://www.rightmove.co.uk/properties/160950374", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/160950374/82537_33828836_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.574761", - "last_seen": "2025-06-01T22:06:02.429973", - "price": 2374 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012373, - 51.511406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/160951067", - "info": { - "identifier": 160951067, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160951067", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/160951067/176261_102708002418_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.842793", - "last_seen": "2025-06-01T22:05:49.648130", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11885, - 51.58081 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.4, - "qmprice": 46.02, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/160951226", - "info": { - "identifier": 160951226, - "sqm_ocr": 82.4, - "price": 3792.0, - "price_per_sqm": 46.019417475728154, - "url": "https://www.rightmove.co.uk/properties/160951226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Laurence Leigh Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80035/160951226/80035_LLR150340_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.405609", - "last_seen": "2025-06-01T22:06:15.595431", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177019, - 51.5331 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.21, - "qmprice": 45.93, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160951493", - "info": { - "identifier": 160951493, - "sqm_ocr": 76.21, - "price": 3500.0, - "price_per_sqm": 45.925731531295106, - "url": "https://www.rightmove.co.uk/properties/160951493", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/160951493/16023_1323455_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.466894", - "last_seen": "2025-06-01T22:05:58.272160", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175601, - 51.48282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.5, - "qmprice": 23.13, - "rooms": 3, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/160951556", - "info": { - "identifier": 160951556, - "sqm_ocr": 116.5, - "price": 2695.0, - "price_per_sqm": 23.13304721030043, - "url": "https://www.rightmove.co.uk/properties/160951556", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Curchods Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13985/160951556/13985_CKT150218_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.443118", - "last_seen": "2025-06-01T22:06:04.303244", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.338991, - 51.424904 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.11, - "qmprice": 44.18, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160952186", - "info": { - "identifier": 160952186, - "sqm_ocr": 61.11, - "price": 2700.0, - "price_per_sqm": 44.18262150220913, - "url": "https://www.rightmove.co.uk/properties/160952186", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55362/160952186/55362_32937995_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.246685", - "last_seen": "2025-06-01T22:06:14.865106", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16998, - 51.516174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160952201", - "info": { - "identifier": 160952201, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160952201", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/127k/126934/160952201/126934_67cec14e1c5ef_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.647164", - "last_seen": "2025-06-01T22:06:12.155948", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171213, - 51.466133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160952411", - "info": { - "identifier": 160952411, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160952411", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Willtons Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82281/160952411/82281_MK368G_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.490124", - "last_seen": "2025-06-01T22:05:49.457966", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22799, - 51.5023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.0, - "qmprice": 22.83, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160953077", - "info": { - "identifier": 160953077, - "sqm_ocr": 92.0, - "price": 2100.0, - "price_per_sqm": 22.82608695652174, - "url": "https://www.rightmove.co.uk/properties/160953077", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86173/160953077/86173_P299072_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.923240", - "last_seen": "2025-06-01T22:05:52.504406", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34644, - 51.45799 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 142.0, - "qmprice": 28.17, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/160953284", - "info": { - "identifier": 160953284, - "sqm_ocr": 142.0, - "price": 4000.0, - "price_per_sqm": 28.169014084507044, - "url": "https://www.rightmove.co.uk/properties/160953284", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77508/160953284/77508_LBL250036_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.446181", - "last_seen": "2025-06-01T22:06:05.415533", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096598, - 51.504723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.9, - "qmprice": 46.1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/160953845", - "info": { - "identifier": 160953845, - "sqm_ocr": 79.9, - "price": 3683.0, - "price_per_sqm": 46.09511889862328, - "url": "https://www.rightmove.co.uk/properties/160953845", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212321/160953845/212321_P160314_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.733300", - "last_seen": "2025-06-01T22:06:13.210263", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1376, - 51.4822 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160954115", - "info": { - "identifier": 160954115, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160954115", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/160954115/194222_HRP210320_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.284834", - "last_seen": "2025-06-01T22:06:01.137727", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.231493, - 51.409897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160954268", - "info": { - "identifier": 160954268, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160954268", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/160954268/12070_28973787_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.947248", - "last_seen": "2025-06-01T22:06:00.701955", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.007926, - 51.45677 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.4, - "qmprice": 37.78, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160954529", - "info": { - "identifier": 160954529, - "sqm_ocr": 79.4, - "price": 3000.0, - "price_per_sqm": 37.78337531486146, - "url": "https://www.rightmove.co.uk/properties/160954529", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129652/160954529/129652_P153803284_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.761335", - "last_seen": "2025-06-01T22:05:49.792564", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13361, - 51.57979 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.07, - "qmprice": 22.9, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160955069", - "info": { - "identifier": 160955069, - "sqm_ocr": 120.07, - "price": 2750.0, - "price_per_sqm": 22.90330640459732, - "url": "https://www.rightmove.co.uk/properties/160955069", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Crown House Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235946/160955069/235946_1041_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.182366", - "last_seen": "2025-06-01T22:05:50.333689", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32408, - 51.6007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160955204", - "info": { - "identifier": 160955204, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160955204", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30485/160955204/30485_000760928_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.667569", - "last_seen": "2025-06-01T22:06:11.692411", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00482, - 51.60735 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.8, - "qmprice": 28.11, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/160955300", - "info": { - "identifier": 160955300, - "sqm_ocr": 88.8, - "price": 2496.0, - "price_per_sqm": 28.10810810810811, - "url": "https://www.rightmove.co.uk/properties/160955300", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218729/160955300/218729_33829133_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.393855", - "last_seen": "2025-06-01T22:05:54.289461", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124459, - 51.552387 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/160955651", - "info": { - "identifier": 160955651, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160955651", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/160955651/96542_ROCH_000346_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.206252", - "last_seen": "2025-06-01T22:05:42.413285", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135469, - 51.545746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.9, - "qmprice": 50.08, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160955786", - "info": { - "identifier": 160955786, - "sqm_ocr": 64.9, - "price": 3250.0, - "price_per_sqm": 50.07704160246533, - "url": "https://www.rightmove.co.uk/properties/160955786", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/160955786/253853_1323470_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.908643", - "last_seen": "2025-06-01T22:06:06.852735", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092065, - 51.492386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.2, - "qmprice": 28.27, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160956128", - "info": { - "identifier": 160956128, - "sqm_ocr": 113.2, - "price": 3200.0, - "price_per_sqm": 28.268551236749115, - "url": "https://www.rightmove.co.uk/properties/160956128", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/160956128/15963_1322977_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.915230", - "last_seen": "2025-06-01T22:06:13.884220", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223725, - 51.466606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160956383", - "info": { - "identifier": 160956383, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160956383", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Maple Estate & Letting Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69002/160956383/69002_1366_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.974326", - "last_seen": "2025-06-01T22:05:50.313810", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34148, - 51.58687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 45.52, - "rooms": 2, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/160956425", - "info": { - "identifier": 160956425, - "sqm_ocr": 67.0, - "price": 3050.0, - "price_per_sqm": 45.52238805970149, - "url": "https://www.rightmove.co.uk/properties/160956425", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160956425/87187_26994_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.604804", - "last_seen": "2025-06-01T22:05:58.910468", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302683, - 51.414013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 29.55, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160956428", - "info": { - "identifier": 160956428, - "sqm_ocr": 88.0, - "price": 2600.0, - "price_per_sqm": 29.545454545454547, - "url": "https://www.rightmove.co.uk/properties/160956428", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/160956428/87187_10811_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.933939", - "last_seen": "2025-06-01T22:05:45.171965", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.287396, - 51.509373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.12, - "qmprice": 39.58, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160956911", - "info": { - "identifier": 160956911, - "sqm_ocr": 82.12, - "price": 3250.0, - "price_per_sqm": 39.57622990745251, - "url": "https://www.rightmove.co.uk/properties/160956911", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/160956911/44537_TOL240723_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.679406", - "last_seen": "2025-06-01T22:06:07.154593", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072909, - 51.50196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/160957403", - "info": { - "identifier": 160957403, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160957403", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Lloyds Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15950/160957403/15950_LLY_BTH_LFSYCL_415_569106676_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.557553", - "last_seen": "2025-06-01T22:06:09.608070", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018193, - 51.497784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.35, - "qmprice": 42.27, - "rooms": 2, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/160957784", - "info": { - "identifier": 160957784, - "sqm_ocr": 67.35, - "price": 2847.0, - "price_per_sqm": 42.271714922049, - "url": "https://www.rightmove.co.uk/properties/160957784", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113191/160957784/113191_33829362_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.411836", - "last_seen": "2025-06-01T22:05:47.301895", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074219, - 51.545002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.8, - "qmprice": 29.66, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/160957790", - "info": { - "identifier": 160957790, - "sqm_ocr": 70.8, - "price": 2100.0, - "price_per_sqm": 29.661016949152543, - "url": "https://www.rightmove.co.uk/properties/160957790", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100624/160957790/100624_33829364_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.030653", - "last_seen": "2025-06-01T22:06:12.572014", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139718, - 51.420525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.7, - "qmprice": 31.76, - "rooms": 3, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/160957802", - "info": { - "identifier": 160957802, - "sqm_ocr": 81.7, - "price": 2595.0, - "price_per_sqm": 31.7625458996328, - "url": "https://www.rightmove.co.uk/properties/160957802", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160957802/96668_245693320042025_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.471347", - "last_seen": "2025-06-01T22:06:04.250073", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.347735, - 51.432384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/160957823", - "info": { - "identifier": 160957823, - "sqm_ocr": null, - "price": 2395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160957823", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160957823/96668_245723020042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.562140", - "last_seen": "2025-06-01T22:05:51.071750", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.428284, - 51.534004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2490.0, - "url": "https://www.rightmove.co.uk/properties/160957925", - "info": { - "identifier": 160957925, - "sqm_ocr": null, - "price": 2490.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160957925", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160957925/96668_245842622042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.679605", - "last_seen": "2025-06-01T22:05:42.069535", - "price": 2490.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189083, - 51.53755 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160958048", - "info": { - "identifier": 160958048, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160958048", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160958048/96668_245854722042025_IMG_21_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.276819", - "last_seen": "2025-06-01T22:06:07.947306", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068046, - 51.52479 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.05, - "qmprice": 33.12, - "rooms": 4, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160958708", - "info": { - "identifier": 160958708, - "sqm_ocr": 86.05, - "price": 2850.0, - "price_per_sqm": 33.120278907611855, - "url": "https://www.rightmove.co.uk/properties/160958708", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129652/160958708/129652_P1966L2607_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.560499", - "last_seen": "2025-06-01T22:05:49.871941", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15573, - 51.60019 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160958858", - "info": { - "identifier": 160958858, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160958858", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129652/160958858/129652_P10234104A_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.801857", - "last_seen": "2025-06-01T22:05:49.719520", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1342, - 51.57962 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.3, - "qmprice": 48.15, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160959065", - "info": { - "identifier": 160959065, - "sqm_ocr": 62.3, - "price": 3000.0, - "price_per_sqm": 48.154093097913325, - "url": "https://www.rightmove.co.uk/properties/160959065", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Mi Homes", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/154k/153011/160959065/153011_102099002751_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.175475", - "last_seen": "2025-06-01T22:06:15.038721", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17733, - 51.52598 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.07, - "qmprice": 31.85, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160959125", - "info": { - "identifier": 160959125, - "sqm_ocr": 80.07, - "price": 2550.0, - "price_per_sqm": 31.847133757961785, - "url": "https://www.rightmove.co.uk/properties/160959125", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/221k/220400/160959125/220400_WAL220112_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.451058", - "last_seen": "2025-06-01T22:06:01.092648", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185704, - 51.43162 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.4, - "qmprice": 31.41, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160959464", - "info": { - "identifier": 160959464, - "sqm_ocr": 76.4, - "price": 2400.0, - "price_per_sqm": 31.413612565445025, - "url": "https://www.rightmove.co.uk/properties/160959464", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Drury Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77602/160959464/77602_9519067_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.086278", - "last_seen": "2025-06-01T22:06:11.051453", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014808, - 51.51587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160959764", - "info": { - "identifier": 160959764, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160959764", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/160959764/96542_ROCH_000495_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.541209", - "last_seen": "2025-06-01T22:05:53.763961", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119171, - 51.55278 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160959899", - "info": { - "identifier": 160959899, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160959899", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Oaktree West London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237683/160959899/237683_OWL150010_L_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.263819", - "last_seen": "2025-06-01T22:05:44.598268", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27694, - 51.51976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160959974", - "info": { - "identifier": 160959974, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160959974", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Century 21 London Central", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45920/160959974/45920_R179796_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.603793", - "last_seen": "2025-06-01T22:05:59.961502", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113728, - 51.476753 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.4, - "qmprice": 43.05, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160960100", - "info": { - "identifier": 160960100, - "sqm_ocr": 60.4, - "price": 2600.0, - "price_per_sqm": 43.04635761589404, - "url": "https://www.rightmove.co.uk/properties/160960100", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146498/160960100/146498_33829541_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.113280", - "last_seen": "2025-06-01T22:05:59.389275", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116972, - 51.494663 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.7, - "qmprice": 35.06, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160960232", - "info": { - "identifier": 160960232, - "sqm_ocr": 92.7, - "price": 3250.0, - "price_per_sqm": 35.05933117583603, - "url": "https://www.rightmove.co.uk/properties/160960232", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/160960232/15948_1321434_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.479458", - "last_seen": "2025-06-01T22:05:49.472056", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195675, - 51.46608 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.6, - "qmprice": 24.06, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160960565", - "info": { - "identifier": 160960565, - "sqm_ocr": 95.6, - "price": 2300.0, - "price_per_sqm": 24.058577405857744, - "url": "https://www.rightmove.co.uk/properties/160960565", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/160960565/15975_1323473_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.505807", - "last_seen": "2025-06-01T22:06:01.297446", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198404, - 51.415012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/160960676", - "info": { - "identifier": 160960676, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160960676", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Roundtree Real Estate", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46965/160960676/46965_20348_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.198254", - "last_seen": "2025-06-01T22:05:39.655085", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208545, - 51.58325 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160961075", - "info": { - "identifier": 160961075, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160961075", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cottage Fields", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65535/160961075/65535_ac5fc32f-aaa1-460d-8aee-96fc7cb32c28_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.846383", - "last_seen": "2025-06-01T22:06:11.679716", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005174, - 51.62794 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160961285", - "info": { - "identifier": 160961285, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160961285", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Jeremy Leaf & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16280/160961285/16280_27848583_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.343516", - "last_seen": "2025-06-01T22:05:38.688080", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175951, - 51.59342 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/160961564", - "info": { - "identifier": 160961564, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160961564", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/160961564/96542_ROCH_000254_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.399543", - "last_seen": "2025-06-01T22:05:42.071640", - "price": 2166 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132466, - 51.54332 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2165.0, - "url": "https://www.rightmove.co.uk/properties/160961684", - "info": { - "identifier": 160961684, - "sqm_ocr": null, - "price": 2165.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160961684", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/160961684/67576_RL1564_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.173684", - "last_seen": "2025-06-01T22:05:42.463109", - "price": 2165.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132534, - 51.543365 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160961822", - "info": { - "identifier": 160961822, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160961822", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160961822/96668_245070814042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.751711", - "last_seen": "2025-06-01T22:05:41.442789", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.255444, - 51.538727 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 65.38, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/160961885", - "info": { - "identifier": 160961885, - "sqm_ocr": 58.0, - "price": 3792.0, - "price_per_sqm": 65.37931034482759, - "url": "https://www.rightmove.co.uk/properties/160961885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160961885/96668_245807321042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.697947", - "last_seen": "2025-06-01T22:06:15.420239", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165131, - 51.51723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/160961891", - "info": { - "identifier": 160961891, - "sqm_ocr": null, - "price": 3987.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160961891", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160961891/96668_245869922042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.09826, - 51.5185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.1, - "qmprice": 31.99, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160962527", - "info": { - "identifier": 160962527, - "sqm_ocr": 89.1, - "price": 2850.0, - "price_per_sqm": 31.98653198653199, - "url": "https://www.rightmove.co.uk/properties/160962527", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67439/160962527/67439_NDL250016_L_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.300530", - "last_seen": "2025-06-01T22:06:13.435924", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153794, - 51.428497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2687.0, - "url": "https://www.rightmove.co.uk/properties/160962920", - "info": { - "identifier": 160962920, - "sqm_ocr": null, - "price": 2687.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160962920", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57124/160962920/57124_P214535_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.396895", - "last_seen": "2025-06-01T20:19:55.791634", - "price": 2686 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06722, - 51.50489 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.2, - "qmprice": 38.53, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/160963337", - "info": { - "identifier": 160963337, - "sqm_ocr": 53.2, - "price": 2050.0, - "price_per_sqm": 38.53383458646616, - "url": "https://www.rightmove.co.uk/properties/160963337", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93044/160963337/93044_33829740_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.319552", - "last_seen": "2025-06-01T22:05:48.328363", - "price": 2049 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224165, - 51.489136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/160963400", - "info": { - "identifier": 160963400, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160963400", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "JS Estate Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264161/160963400/264161_703415_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.178989", - "last_seen": "2025-06-01T22:06:05.923475", - "price": 3349 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096787, - 51.492928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.93, - "qmprice": 33.51, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/160963478", - "info": { - "identifier": 160963478, - "sqm_ocr": 108.93, - "price": 3650.0, - "price_per_sqm": 33.50775727531442, - "url": "https://www.rightmove.co.uk/properties/160963478", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hadleigh Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67562/160963478/67562_HRE100241_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.214942", - "last_seen": "2025-06-01T22:05:42.389658", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163494, - 51.549236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2095.0, - "url": "https://www.rightmove.co.uk/properties/160963490", - "info": { - "identifier": 160963490, - "sqm_ocr": null, - "price": 2095.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160963490", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Blue Planet Investment Consultancy", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277628/160963490/277628_13Castleton_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.964292", - "last_seen": "2025-06-01T22:05:38.884926", - "price": 2095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24085, - 51.59476 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.22, - "qmprice": 30.05, - "rooms": 3, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/160963634", - "info": { - "identifier": 160963634, - "sqm_ocr": 68.22, - "price": 2050.0, - "price_per_sqm": 30.049838756962767, - "url": "https://www.rightmove.co.uk/properties/160963634", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77524/160963634/77524_0428_FJL042801259_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.362658", - "last_seen": "2025-06-01T22:05:46.563738", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.002457, - 51.484653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.8, - "qmprice": 38.75, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160964282", - "info": { - "identifier": 160964282, - "sqm_ocr": 65.8, - "price": 2550.0, - "price_per_sqm": 38.753799392097264, - "url": "https://www.rightmove.co.uk/properties/160964282", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71785/160964282/71785_33829796_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.421719", - "last_seen": "2025-06-01T22:06:14.130624", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.156174, - 51.4507 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.16, - "qmprice": 47.81, - "rooms": 3, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/160964996", - "info": { - "identifier": 160964996, - "sqm_ocr": 71.16, - "price": 3402.0, - "price_per_sqm": 47.807757166947724, - "url": "https://www.rightmove.co.uk/properties/160964996", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/160964996/96542_ROCH_000276_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.027008", - "last_seen": "2025-06-01T22:05:56.953788", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138721, - 51.555164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 47.2, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/160965203", - "info": { - "identifier": 160965203, - "sqm_ocr": 80.5, - "price": 3800.0, - "price_per_sqm": 47.20496894409938, - "url": "https://www.rightmove.co.uk/properties/160965203", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/160965203/15981_1319463_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.527504", - "last_seen": "2025-06-01T22:05:59.507641", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140734, - 51.447094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.1, - "qmprice": 44.25, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160965782", - "info": { - "identifier": 160965782, - "sqm_ocr": 79.1, - "price": 3500.0, - "price_per_sqm": 44.247787610619476, - "url": "https://www.rightmove.co.uk/properties/160965782", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157376/160965782/157376_33829915_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.227296", - "last_seen": "2025-06-01T22:06:07.971142", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.054027, - 51.531147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160967072", - "info": { - "identifier": 160967072, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160967072", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Addison Townsend", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38757/160967072/38757_addison_1402948174_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.963535", - "last_seen": "2025-06-01T22:05:45.548777", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15965, - 51.66988 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160967840", - "info": { - "identifier": 160967840, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160967840", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160967840/96668_242565321032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.806723", - "last_seen": "2025-06-01T22:05:40.194576", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284316, - 51.56792 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160968146", - "info": { - "identifier": 160968146, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160968146", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160968146/96668_238634613022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:09.530435", - "last_seen": "2025-06-01T22:06:09.530435", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021768, - 51.50045 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.0, - "qmprice": 30.69, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/160968251", - "info": { - "identifier": 160968251, - "sqm_ocr": 101.0, - "price": 3100.0, - "price_per_sqm": 30.693069306930692, - "url": "https://www.rightmove.co.uk/properties/160968251", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fraser & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266348/160968251/266348_PAL230056_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.167432", - "last_seen": "2025-06-01T22:05:39.706942", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238283, - 51.595387 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/160968320", - "info": { - "identifier": 160968320, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160968320", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160968320/96668_245490017042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.471296", - "last_seen": "2025-06-01T22:05:39.159019", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238886, - 51.578632 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.7, - "qmprice": 28.94, - "rooms": 3, - "total_price": 3146.0, - "url": "https://www.rightmove.co.uk/properties/160968551", - "info": { - "identifier": 160968551, - "sqm_ocr": 108.7, - "price": 3146.0, - "price_per_sqm": 28.942042318307266, - "url": "https://www.rightmove.co.uk/properties/160968551", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202016/160968551/202016_33778806_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.462419", - "last_seen": "2025-06-01T22:05:55.024137", - "price": 3146 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.317194, - 51.50584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160968749", - "info": { - "identifier": 160968749, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160968749", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/160968749/174452_13849_IMG_23_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.443724", - "last_seen": "2025-06-01T22:05:47.065591", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00841, - 51.50051 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.8, - "qmprice": 38.33, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160969022", - "info": { - "identifier": 160969022, - "sqm_ocr": 84.8, - "price": 3250.0, - "price_per_sqm": 38.32547169811321, - "url": "https://www.rightmove.co.uk/properties/160969022", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Letting Experts", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7354/160969022/7354_RX573178_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.479979", - "last_seen": "2025-06-01T22:05:42.810259", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187485, - 51.53955 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160970096", - "info": { - "identifier": 160970096, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160970096", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224513/160970096/224513_P193625_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.209226", - "last_seen": "2025-06-01T22:06:02.126413", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03959, - 51.50236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.09, - "qmprice": 45.56, - "rooms": 3, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/160970195", - "info": { - "identifier": 160970195, - "sqm_ocr": 76.09, - "price": 3467.0, - "price_per_sqm": 45.564463135760285, - "url": "https://www.rightmove.co.uk/properties/160970195", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/160970195/15975_1323106_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.541098", - "last_seen": "2025-06-01T22:06:01.239334", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192519, - 51.414013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.09, - "qmprice": 30.23, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160970207", - "info": { - "identifier": 160970207, - "sqm_ocr": 76.09, - "price": 2300.0, - "price_per_sqm": 30.227362334078062, - "url": "https://www.rightmove.co.uk/properties/160970207", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/160970207/15975_1323113_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.241059", - "last_seen": "2025-06-01T22:06:01.706170", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192519, - 51.414013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160970225", - "info": { - "identifier": 160970225, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160970225", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "London Move", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261842/160970225/261842_295_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.895256", - "last_seen": "2025-06-01T22:05:47.861917", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07943, - 51.53656 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.13, - "qmprice": 36.6, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160970300", - "info": { - "identifier": 160970300, - "sqm_ocr": 75.13, - "price": 2750.0, - "price_per_sqm": 36.603221083455345, - "url": "https://www.rightmove.co.uk/properties/160970300", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/160970300/15954_1323425_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.709022", - "last_seen": "2025-06-01T22:05:53.741049", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10547, - 51.55504 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.82, - "qmprice": 33.91, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160970867", - "info": { - "identifier": 160970867, - "sqm_ocr": 67.82, - "price": 2300.0, - "price_per_sqm": 33.91329991153052, - "url": "https://www.rightmove.co.uk/properties/160970867", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/160970867/44537_TOL250370_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.100096", - "last_seen": "2025-06-01T22:06:06.463406", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077838, - 51.49606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.24, - "qmprice": 28.39, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160971299", - "info": { - "identifier": 160971299, - "sqm_ocr": 79.24, - "price": 2250.0, - "price_per_sqm": 28.39475012619889, - "url": "https://www.rightmove.co.uk/properties/160971299", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Rash & Rash", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39554/160971299/39554_33830248_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.758332", - "last_seen": "2025-06-01T22:05:49.794377", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122285, - 51.6077 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.81, - "qmprice": 42.76, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160971866", - "info": { - "identifier": 160971866, - "sqm_ocr": 60.81, - "price": 2600.0, - "price_per_sqm": 42.75612563723072, - "url": "https://www.rightmove.co.uk/properties/160971866", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/160971866/136139_2711117_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.776170", - "last_seen": "2025-06-01T22:06:07.706522", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00498, - 51.52805 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.5, - "qmprice": 51.27, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/160973687", - "info": { - "identifier": 160973687, - "sqm_ocr": 65.5, - "price": 3358.0, - "price_per_sqm": 51.267175572519086, - "url": "https://www.rightmove.co.uk/properties/160973687", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/160973687/95098_P299241_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.810097", - "last_seen": "2025-06-01T20:19:58.396007", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00028, - 51.51321 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.1, - "qmprice": 32.01, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160975121", - "info": { - "identifier": 160975121, - "sqm_ocr": 78.1, - "price": 2500.0, - "price_per_sqm": 32.010243277848915, - "url": "https://www.rightmove.co.uk/properties/160975121", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/160975121/101522_1323462_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.403661", - "last_seen": "2025-06-01T22:05:47.309801", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056438, - 51.55004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.51, - "qmprice": 47.24, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160975403", - "info": { - "identifier": 160975403, - "sqm_ocr": 63.51, - "price": 3000.0, - "price_per_sqm": 47.23665564478035, - "url": "https://www.rightmove.co.uk/properties/160975403", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/160975403/57272_1323515_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.716788", - "last_seen": "2025-06-01T22:05:58.936355", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.306888, - 51.406704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.0, - "qmprice": 52.68, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/160975928", - "info": { - "identifier": 160975928, - "sqm_ocr": 56.0, - "price": 2950.0, - "price_per_sqm": 52.67857142857143, - "url": "https://www.rightmove.co.uk/properties/160975928", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Willtons Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82281/160975928/82281_MK3003NC_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.803271", - "last_seen": "2025-06-01T22:05:48.901712", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20689, - 51.49281 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.7, - "qmprice": 30.94, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/160978718", - "info": { - "identifier": 160978718, - "sqm_ocr": 72.7, - "price": 2249.0, - "price_per_sqm": 30.935350756533698, - "url": "https://www.rightmove.co.uk/properties/160978718", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/160978718/84791_33830645_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.985917", - "last_seen": "2025-06-01T22:05:45.054459", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312591, - 51.512413 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.99, - "qmprice": 50.94, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/160978724", - "info": { - "identifier": 160978724, - "sqm_ocr": 53.99, - "price": 2750.0, - "price_per_sqm": 50.935358399703645, - "url": "https://www.rightmove.co.uk/properties/160978724", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/160978724/51465_6604323f67fea_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.229775", - "last_seen": "2025-06-01T22:06:01.711836", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195327, - 51.4231 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.6, - "qmprice": 30.27, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160978847", - "info": { - "identifier": 160978847, - "sqm_ocr": 82.6, - "price": 2500.0, - "price_per_sqm": 30.26634382566586, - "url": "https://www.rightmove.co.uk/properties/160978847", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58464/160978847/58464_32901070_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.680163", - "last_seen": "2025-06-01T22:05:58.737090", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2637, - 51.402924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160979237", - "info": { - "identifier": 160979237, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160979237", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63329/160979237/63329_P4607C2714_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.740606", - "last_seen": "2025-06-01T22:05:58.501071", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30155, - 51.3953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.3, - "qmprice": 27.75, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160979246", - "info": { - "identifier": 160979246, - "sqm_ocr": 115.3, - "price": 3200.0, - "price_per_sqm": 27.753686036426714, - "url": "https://www.rightmove.co.uk/properties/160979246", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63329/160979246/63329_P0454D4324_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.746057", - "last_seen": "2025-06-01T22:05:58.498327", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30067, - 51.39583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160979525", - "info": { - "identifier": 160979525, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160979525", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hanley Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72329/160979525/72329_2890_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.460987", - "last_seen": "2025-06-01T22:05:53.874594", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1225, - 51.55866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/160979795", - "info": { - "identifier": 160979795, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160979795", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51295/160979795/51295_HAL250043_L_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.956887", - "last_seen": "2025-06-01T22:05:38.894737", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238231, - 51.59571 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.6, - "qmprice": 33.69, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/160981562", - "info": { - "identifier": 160981562, - "sqm_ocr": 84.6, - "price": 2850.0, - "price_per_sqm": 33.68794326241135, - "url": "https://www.rightmove.co.uk/properties/160981562", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/160981562/15966_1320781_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.268495", - "last_seen": "2025-06-01T22:06:13.761333", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179008, - 51.459484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/160981598", - "info": { - "identifier": 160981598, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160981598", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "LAND ROYALE PROPERTIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272384/160981598/272384_OGBERKHAMSTED_IMG_01_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.143819", - "last_seen": "2025-06-01T22:05:41.099798", - "price": 2249.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28513, - 51.55 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.5, - "qmprice": 26.18, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160982615", - "info": { - "identifier": 160982615, - "sqm_ocr": 95.5, - "price": 2500.0, - "price_per_sqm": 26.17801047120419, - "url": "https://www.rightmove.co.uk/properties/160982615", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/160982615/111050_1322587_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.342976", - "last_seen": "2025-06-01T22:06:01.523905", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188206, - 51.425304 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.31, - "qmprice": 47.11, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160982732", - "info": { - "identifier": 160982732, - "sqm_ocr": 57.31, - "price": 2700.0, - "price_per_sqm": 47.11219682428895, - "url": "https://www.rightmove.co.uk/properties/160982732", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/160982732/80340_a1G4J00000262tiUAA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.715374", - "last_seen": "2025-06-01T22:05:59.285049", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10854, - 51.50223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160984283", - "info": { - "identifier": 160984283, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160984283", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "No 8 Real Estate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285965/160984283/285965_2711977_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.862557", - "last_seen": "2025-06-01T22:06:02.495185", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02609, - 51.50026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.7, - "qmprice": 31.6, - "rooms": 4, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/160985246", - "info": { - "identifier": 160985246, - "sqm_ocr": 80.7, - "price": 2550.0, - "price_per_sqm": 31.598513011152416, - "url": "https://www.rightmove.co.uk/properties/160985246", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 40, - "status": null, - "last_seen": 0, - "agency": "Davidson Frost-Wellings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238889/160985246/238889_33830979_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.062069", - "last_seen": "2025-06-01T22:05:50.235721", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.331238, - 51.613483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/160985936", - "info": { - "identifier": 160985936, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160985936", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160985936/96668_245901022042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.312620", - "last_seen": "2025-06-01T22:05:45.337638", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.336772, - 51.53563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/160985999", - "info": { - "identifier": 160985999, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160985999", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160985999/96668_92398511102020_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.051831, - 51.64767 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/160986308", - "info": { - "identifier": 160986308, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160986308", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/125k/124141/160986308/124141_33831029_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.677719", - "last_seen": "2025-06-01T22:06:04.335401", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277802, - 51.47808 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.45, - "qmprice": 33.35, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160986362", - "info": { - "identifier": 160986362, - "sqm_ocr": 97.45, - "price": 3250.0, - "price_per_sqm": 33.35043612108774, - "url": "https://www.rightmove.co.uk/properties/160986362", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279224/160986362/279224_JSL150024_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.345748", - "last_seen": "2025-06-01T22:05:59.100793", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140216, - 51.451626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.7, - "qmprice": 52.81, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/160986686", - "info": { - "identifier": 160986686, - "sqm_ocr": 67.7, - "price": 3575.0, - "price_per_sqm": 52.80649926144756, - "url": "https://www.rightmove.co.uk/properties/160986686", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62293/160986686/62293_33831048_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.586305", - "last_seen": "2025-06-01T22:06:15.534017", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150148, - 51.520287 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2975.0, - "url": "https://www.rightmove.co.uk/properties/160986710", - "info": { - "identifier": 160986710, - "sqm_ocr": null, - "price": 2975.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160986710", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Tony Alan Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250175/160986710/250175_101757006379_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:09.170112", - "last_seen": "2025-06-01T22:06:09.170112", - "price": 2975.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0191, - 51.50139 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2830.0, - "url": "https://www.rightmove.co.uk/properties/160987034", - "info": { - "identifier": 160987034, - "sqm_ocr": null, - "price": 2830.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160987034", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/160987034/78429_LON-542_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.401560", - "last_seen": "2025-06-01T22:05:58.991794", - "price": 2830.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12406, - 51.48225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 127.0, - "qmprice": 28.35, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/160987106", - "info": { - "identifier": 160987106, - "sqm_ocr": 127.0, - "price": 3600.0, - "price_per_sqm": 28.346456692913385, - "url": "https://www.rightmove.co.uk/properties/160987106", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "All in the postcode...SW19.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34619/160987106/34619_11658950_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.320245", - "last_seen": "2025-06-01T22:06:01.228864", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18392, - 51.417194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.6, - "qmprice": 39.62, - "rooms": 2, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/160987784", - "info": { - "identifier": 160987784, - "sqm_ocr": 75.6, - "price": 2995.0, - "price_per_sqm": 39.61640211640212, - "url": "https://www.rightmove.co.uk/properties/160987784", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/160987784/227810_1323342_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.347002", - "last_seen": "2025-06-01T22:05:46.574804", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.065903, - 51.486248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.6, - "qmprice": 28.57, - "rooms": 2, - "total_price": 2160.0, - "url": "https://www.rightmove.co.uk/properties/160987787", - "info": { - "identifier": 160987787, - "sqm_ocr": 75.6, - "price": 2160.0, - "price_per_sqm": 28.571428571428573, - "url": "https://www.rightmove.co.uk/properties/160987787", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/160987787/227810_1323341_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.345723", - "last_seen": "2025-06-01T22:05:46.576785", - "price": 2160.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.065903, - 51.486248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160987826", - "info": { - "identifier": 160987826, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160987826", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Robinson Jackson", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/60k/59433/160987826/59433_BAN250091_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.273582", - "last_seen": "2025-06-01T22:05:39.997130", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.190139, - 51.450848 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/160987850", - "info": { - "identifier": 160987850, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160987850", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11443/160987850/11443_0407_HRT040705174_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.695484", - "last_seen": "2025-06-01T22:05:45.002361", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299631, - 51.521755 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 34.48, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160987904", - "info": { - "identifier": 160987904, - "sqm_ocr": 58.0, - "price": 2000.0, - "price_per_sqm": 34.48275862068966, - "url": "https://www.rightmove.co.uk/properties/160987904", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Tate Partnership", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55372/160987904/55372_101593001759_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.146501", - "last_seen": "2025-06-01T22:05:51.773013", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27696, - 51.49116 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/160988360", - "info": { - "identifier": 160988360, - "sqm_ocr": null, - "price": 3120.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160988360", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/160988360/39507_628476_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.957752", - "last_seen": "2025-06-01T20:19:55.873339", - "price": 3120 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061105, - 51.512657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.9, - "qmprice": 47.28, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/160988393", - "info": { - "identifier": 160988393, - "sqm_ocr": 77.9, - "price": 3683.0, - "price_per_sqm": 47.2785622593068, - "url": "https://www.rightmove.co.uk/properties/160988393", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Primden Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261275/160988393/261275_14241_000268_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.391521", - "last_seen": "2025-06-01T22:05:54.336714", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117484, - 51.538048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.06, - "qmprice": 57.7, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/160988705", - "info": { - "identifier": 160988705, - "sqm_ocr": 45.06, - "price": 2600.0, - "price_per_sqm": 57.70084332001775, - "url": "https://www.rightmove.co.uk/properties/160988705", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55326/160988705/55326_ISL180014_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.597091", - "last_seen": "2025-06-01T22:05:53.593937", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104193, - 51.53966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160988966", - "info": { - "identifier": 160988966, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160988966", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 36, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160988966/96668_245820321042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.250996", - "last_seen": "2025-06-01T22:06:03.152717", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.034344, - 51.52699 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 147.8, - "qmprice": 20.97, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/160989152", - "info": { - "identifier": 160989152, - "sqm_ocr": 147.8, - "price": 3100.0, - "price_per_sqm": 20.974289580514206, - "url": "https://www.rightmove.co.uk/properties/160989152", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137360/160989152/137360_1323466_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.320536", - "last_seen": "2025-06-01T22:05:41.695300", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029916, - 51.389946 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.0, - "qmprice": 28.39, - "rooms": 3, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/160989251", - "info": { - "identifier": 160989251, - "sqm_ocr": 118.0, - "price": 3350.0, - "price_per_sqm": 28.389830508474578, - "url": "https://www.rightmove.co.uk/properties/160989251", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/160989251/87815_1323561_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.624563", - "last_seen": "2025-06-01T22:05:38.491660", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187881, - 51.6056 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 128.7, - "qmprice": 24.86, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/160989254", - "info": { - "identifier": 160989254, - "sqm_ocr": 128.7, - "price": 3200.0, - "price_per_sqm": 24.864024864024866, - "url": "https://www.rightmove.co.uk/properties/160989254", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/160989254/130309_1322554_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.719854", - "last_seen": "2025-06-01T22:05:43.344190", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084849, - 51.33757 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 29.93, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/160989626", - "info": { - "identifier": 160989626, - "sqm_ocr": 76.0, - "price": 2275.0, - "price_per_sqm": 29.93421052631579, - "url": "https://www.rightmove.co.uk/properties/160989626", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cedar Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79883/160989626/79883_3121_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.309856", - "last_seen": "2025-06-01T22:05:42.219370", - "price": 2275 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18951, - 51.54236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/160989818", - "info": { - "identifier": 160989818, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160989818", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22209/160989818/22209_FLL250012_L_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.730777", - "last_seen": "2025-06-01T22:05:48.443621", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181785, - 51.472908 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/160989989", - "info": { - "identifier": 160989989, - "sqm_ocr": null, - "price": 2899.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160989989", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/160989989/96668_245931522042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.418481", - "last_seen": "2025-06-01T22:05:47.087423", - "price": 2899.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01416, - 51.49493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/160990703", - "info": { - "identifier": 160990703, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160990703", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253310/160990703/253310_MAL250056_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.054772", - "last_seen": "2025-06-01T22:05:57.399628", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196187, - 51.491615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/160991471", - "info": { - "identifier": 160991471, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160991471", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "VC ESTATES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267989/160991471/267989_RTN-15828327_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.779558", - "last_seen": "2025-06-01T22:06:00.095007", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112742, - 51.470165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160991474", - "info": { - "identifier": 160991474, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160991474", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Such Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238883/160991474/238883_274996_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.766373", - "last_seen": "2025-06-01T22:06:00.096313", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12692, - 51.41953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.38, - "qmprice": 31.23, - "rooms": 2, - "total_price": 2479.0, - "url": "https://www.rightmove.co.uk/properties/160991681", - "info": { - "identifier": 160991681, - "sqm_ocr": 79.38, - "price": 2479.0, - "price_per_sqm": 31.229528848576468, - "url": "https://www.rightmove.co.uk/properties/160991681", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/160991681/264326_Y80527_1_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.145368", - "last_seen": "2025-06-01T22:05:40.356022", - "price": 2479.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.244119, - 51.55401 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/160992515", - "info": { - "identifier": 160992515, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160992515", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "PropertyLoop", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222287/160992515/222287_f31gG3IJ_IMG_01_0000_max_656x437.png", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.934318", - "last_seen": "2025-06-01T22:05:47.640074", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0894, - 51.53403 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/160992518", - "info": { - "identifier": 160992518, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160992518", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "PropertyLoop", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222287/160992518/222287_K9QDAN5S_IMG_00_0000_max_656x437.png", - "let_date_available": "24/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.835722", - "last_seen": "2025-06-01T22:06:07.480192", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00284, - 51.55039 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 45.14, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160992527", - "info": { - "identifier": 160992527, - "sqm_ocr": 72.0, - "price": 3250.0, - "price_per_sqm": 45.138888888888886, - "url": "https://www.rightmove.co.uk/properties/160992527", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90830/160992527/90830_SJD020186_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.610481", - "last_seen": "2025-06-01T22:05:42.702692", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159368, - 51.5365 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 39.0, - "qmprice": 58.97, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/160992968", - "info": { - "identifier": 160992968, - "sqm_ocr": 39.0, - "price": 2300.0, - "price_per_sqm": 58.97435897435897, - "url": "https://www.rightmove.co.uk/properties/160992968", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Blackfinch Property Management Ltd", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282167/160992968/282167_659016_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.932059", - "last_seen": "2025-06-01T22:06:07.355066", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.007712, - 51.53389 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/160995026", - "info": { - "identifier": 160995026, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160995026", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/160995026/272819_33831444_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.504319", - "last_seen": "2025-06-01T22:05:49.452191", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222489, - 51.51159 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.8, - "qmprice": 38.08, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/160996640", - "info": { - "identifier": 160996640, - "sqm_ocr": 99.8, - "price": 3800.0, - "price_per_sqm": 38.07615230460922, - "url": "https://www.rightmove.co.uk/properties/160996640", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/160996640/71401_1320120_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.755334", - "last_seen": "2025-06-01T22:05:41.447335", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23762, - 51.554287 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.5, - "qmprice": 47.98, - "rooms": 4, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/160997744", - "info": { - "identifier": 160997744, - "sqm_ocr": 62.5, - "price": 2999.0, - "price_per_sqm": 47.984, - "url": "https://www.rightmove.co.uk/properties/160997744", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230516/160997744/230516_KEL250022_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.436414", - "last_seen": "2025-06-01T22:06:00.192897", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120158, - 51.47914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 44.83, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/160998623", - "info": { - "identifier": 160998623, - "sqm_ocr": 78.0, - "price": 3497.0, - "price_per_sqm": 44.833333333333336, - "url": "https://www.rightmove.co.uk/properties/160998623", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65902/160998623/65902_SJQ012589869_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.824036", - "last_seen": "2025-06-01T22:06:14.511514", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1809, - 51.5343 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3495.0, - "url": "https://www.rightmove.co.uk/properties/160998809", - "info": { - "identifier": 160998809, - "sqm_ocr": null, - "price": 3495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/160998809", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Aldermartin Baines & Cuthbert", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261956/160998809/261956_33656433_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.174560", - "last_seen": "2025-06-01T22:05:39.704222", - "price": 3495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215621, - 51.586285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.8, - "qmprice": 31.84, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/160999094", - "info": { - "identifier": 160999094, - "sqm_ocr": 84.8, - "price": 2700.0, - "price_per_sqm": 31.839622641509436, - "url": "https://www.rightmove.co.uk/properties/160999094", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7963/160999094/7963_33831627_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.903890", - "last_seen": "2025-06-01T22:05:45.237525", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293034, - 51.524456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.7, - "qmprice": 59.41, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/160999721", - "info": { - "identifier": 160999721, - "sqm_ocr": 54.7, - "price": 3250.0, - "price_per_sqm": 59.41499085923217, - "url": "https://www.rightmove.co.uk/properties/160999721", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22251/160999721/22251_SKN220077_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.572664", - "last_seen": "2025-06-01T22:05:57.500420", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165834, - 51.49436 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161000876", - "info": { - "identifier": 161000876, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161000876", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237557/161000876/237557_P65705_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.318145", - "last_seen": "2025-06-01T22:06:07.840239", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18892, - 51.36037 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.04, - "qmprice": 46.3, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161001092", - "info": { - "identifier": 161001092, - "sqm_ocr": 68.04, - "price": 3150.0, - "price_per_sqm": 46.29629629629629, - "url": "https://www.rightmove.co.uk/properties/161001092", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279227/161001092/279227_HEA732497_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.225082", - "last_seen": "2025-06-01T22:06:01.577193", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202719, - 51.420822 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.37, - "qmprice": 28.33, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161001197", - "info": { - "identifier": 161001197, - "sqm_ocr": 72.37, - "price": 2050.0, - "price_per_sqm": 28.326654691170372, - "url": "https://www.rightmove.co.uk/properties/161001197", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34082/161001197/34082_KBS180171_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.998498", - "last_seen": "2025-06-01T22:05:50.289462", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32008, - 51.615765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161001344", - "info": { - "identifier": 161001344, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161001344", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Birchills", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115933/161001344/115933_98b47ad8-3db5-4d68-960f-19288cb61955_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.730723", - "last_seen": "2025-06-01T22:06:11.975416", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010529, - 51.631977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161001515", - "info": { - "identifier": 161001515, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161001515", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7558/161001515/7558_FIL150154_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.154375", - "last_seen": "2025-06-01T22:05:39.478975", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189478, - 51.610405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.24, - "qmprice": 56.76, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/161001593", - "info": { - "identifier": 161001593, - "sqm_ocr": 70.24, - "price": 3987.0, - "price_per_sqm": 56.7625284738041, - "url": "https://www.rightmove.co.uk/properties/161001593", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5122/161001593/5122_CAL250604_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.392105", - "last_seen": "2025-06-01T22:05:58.255587", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.157531, - 51.497963 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/161002247", - "info": { - "identifier": 161002247, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161002247", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/161002247/105856_3259_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.661009", - "last_seen": "2025-06-01T22:06:05.392825", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103236, - 51.48375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161002301", - "info": { - "identifier": 161002301, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161002301", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78410/161002301/78410_33831868_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.120861", - "last_seen": "2025-06-01T22:06:12.184988", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148546, - 51.47193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161002355", - "info": { - "identifier": 161002355, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161002355", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/161002355/176261_102708042455_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.871525", - "last_seen": "2025-06-01T22:05:55.081485", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13723, - 51.56888 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161002832", - "info": { - "identifier": 161002832, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161002832", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Farrell Lewis Estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267680/161002832/267680_1013_FLEW_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.226162", - "last_seen": "2025-06-01T22:05:48.615468", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228428, - 51.497227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.2, - "qmprice": 47.38, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161003039", - "info": { - "identifier": 161003039, - "sqm_ocr": 80.2, - "price": 3800.0, - "price_per_sqm": 47.38154613466334, - "url": "https://www.rightmove.co.uk/properties/161003039", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - City", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260405/161003039/260405_885585_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.329058", - "last_seen": "2025-06-01T22:05:42.450230", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11407, - 51.52202 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.5, - "qmprice": 33.06, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161003546", - "info": { - "identifier": 161003546, - "sqm_ocr": 60.5, - "price": 2000.0, - "price_per_sqm": 33.05785123966942, - "url": "https://www.rightmove.co.uk/properties/161003546", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66897/161003546/66897_33831932_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.131725", - "last_seen": "2025-06-01T22:06:00.582926", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006688, - 51.448746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.9, - "qmprice": 30.71, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161004110", - "info": { - "identifier": 161004110, - "sqm_ocr": 74.9, - "price": 2300.0, - "price_per_sqm": 30.707610146862482, - "url": "https://www.rightmove.co.uk/properties/161004110", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "SeOUL Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73282/161004110/73282_9286_SR4U_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.789120", - "last_seen": "2025-06-01T22:05:58.695052", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307209, - 51.40952 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.8, - "qmprice": 35.69, - "rooms": 3, - "total_price": 2812.0, - "url": "https://www.rightmove.co.uk/properties/161004191", - "info": { - "identifier": 161004191, - "sqm_ocr": 78.8, - "price": 2812.0, - "price_per_sqm": 35.68527918781726, - "url": "https://www.rightmove.co.uk/properties/161004191", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Sworn & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48812/161004191/48812_SAC000B39_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.220324", - "last_seen": "2025-06-01T22:05:48.633583", - "price": 2812 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.239721, - 51.493675 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161004269", - "info": { - "identifier": 161004269, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161004269", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Birchills", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115933/161004269/115933_52276fc3-cf11-43c7-af8b-ba221610878c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.736266", - "last_seen": "2025-06-01T22:06:11.849141", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004373, - 51.566704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.7, - "qmprice": 52.85, - "rooms": 2, - "total_price": 3948.0, - "url": "https://www.rightmove.co.uk/properties/161004401", - "info": { - "identifier": 161004401, - "sqm_ocr": 74.7, - "price": 3948.0, - "price_per_sqm": 52.851405622489956, - "url": "https://www.rightmove.co.uk/properties/161004401", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chard", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141944/161004401/141944_33831990_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.557867", - "last_seen": "2025-06-01T22:05:49.152473", - "price": 3947 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185846, - 51.475094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161004752", - "info": { - "identifier": 161004752, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161004752", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Move Inn Estates Iver", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113317/161004752/113317_31977444_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.214299", - "last_seen": "2025-06-01T22:05:52.528886", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.362537, - 51.46442 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161005073", - "info": { - "identifier": 161005073, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161005073", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Roundtree Real Estate", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46965/161005073/46965_57679_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.272280", - "last_seen": "2025-06-01T22:05:39.327514", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21864, - 51.59038 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.8, - "qmprice": 36.37, - "rooms": 3, - "total_price": 3375.0, - "url": "https://www.rightmove.co.uk/properties/161005250", - "info": { - "identifier": 161005250, - "sqm_ocr": 92.8, - "price": 3375.0, - "price_per_sqm": 36.36853448275862, - "url": "https://www.rightmove.co.uk/properties/161005250", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/161005250/135416_BPL250065_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.636720", - "last_seen": "2025-06-01T22:06:12.088841", - "price": 3375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18144, - 51.465637 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161005790", - "info": { - "identifier": 161005790, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161005790", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65794/161005790/65794_33832073_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.590215", - "last_seen": "2025-06-01T22:06:13.065914", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186499, - 51.43284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.18, - "qmprice": 49.06, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/161005859", - "info": { - "identifier": 161005859, - "sqm_ocr": 65.18, - "price": 3198.0, - "price_per_sqm": 49.06413010125805, - "url": "https://www.rightmove.co.uk/properties/161005859", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Lessel", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191471/161005859/191471_33832080_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.017500", - "last_seen": "2025-06-01T22:06:00.872297", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.048802, - 51.474262 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.7, - "qmprice": 37.7, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161006423", - "info": { - "identifier": 161006423, - "sqm_ocr": 55.7, - "price": 2100.0, - "price_per_sqm": 37.70197486535009, - "url": "https://www.rightmove.co.uk/properties/161006423", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/161006423/15969_1323603_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.842155", - "last_seen": "2025-06-01T22:05:44.342602", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.289837, - 51.51344 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.9, - "qmprice": 34.24, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161006483", - "info": { - "identifier": 161006483, - "sqm_ocr": 113.9, - "price": 3900.0, - "price_per_sqm": 34.24056189640035, - "url": "https://www.rightmove.co.uk/properties/161006483", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/161006483/135416_BPL230086_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.788824", - "last_seen": "2025-06-01T22:05:59.355153", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126027, - 51.485638 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2201.0, - "url": "https://www.rightmove.co.uk/properties/161006507", - "info": { - "identifier": 161006507, - "sqm_ocr": null, - "price": 2201.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161006507", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146498/161006507/146498_33832129_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.168970", - "last_seen": "2025-06-01T22:06:06.891876", - "price": 2201 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099454, - 51.481495 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161006576", - "info": { - "identifier": 161006576, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161006576", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83027/161006576/83027_33832135_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.549554", - "last_seen": "2025-06-01T17:39:05.078148", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07104, - 51.515762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.79, - "qmprice": 55.77, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161006654", - "info": { - "identifier": 161006654, - "sqm_ocr": 53.79, - "price": 3000.0, - "price_per_sqm": 55.77244841048522, - "url": "https://www.rightmove.co.uk/properties/161006654", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/161006654/15945_1323527_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.993035", - "last_seen": "2025-06-01T22:05:58.039261", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194584, - 51.50792 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 44.87, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161006669", - "info": { - "identifier": 161006669, - "sqm_ocr": 78.0, - "price": 3500.0, - "price_per_sqm": 44.87179487179487, - "url": "https://www.rightmove.co.uk/properties/161006669", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Mortemore Mackay", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29709/161006669/29709_33832142_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.932508", - "last_seen": "2025-06-01T22:05:45.771653", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106222, - 51.644424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.1, - "qmprice": 30.16, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/161006675", - "info": { - "identifier": 161006675, - "sqm_ocr": 76.1, - "price": 2295.0, - "price_per_sqm": 30.15768725361367, - "url": "https://www.rightmove.co.uk/properties/161006675", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/161006675/15951_1323063_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.928275", - "last_seen": "2025-06-01T22:05:52.285335", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.310125, - 51.482674 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.6, - "qmprice": 39.72, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161007539", - "info": { - "identifier": 161007539, - "sqm_ocr": 85.6, - "price": 3400.0, - "price_per_sqm": 39.7196261682243, - "url": "https://www.rightmove.co.uk/properties/161007539", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55326/161007539/55326_ISL180073_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.409909", - "last_seen": "2025-06-01T22:05:47.499421", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077582, - 51.551765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.66, - "qmprice": 35.41, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161007716", - "info": { - "identifier": 161007716, - "sqm_ocr": 77.66, - "price": 2750.0, - "price_per_sqm": 35.41076487252125, - "url": "https://www.rightmove.co.uk/properties/161007716", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279224/161007716/279224_JCC230017_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.064011", - "last_seen": "2025-06-01T22:05:59.725239", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13065, - 51.463364 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.1, - "qmprice": 34.82, - "rooms": 2, - "total_price": 2615.0, - "url": "https://www.rightmove.co.uk/properties/161008154", - "info": { - "identifier": 161008154, - "sqm_ocr": 75.1, - "price": 2615.0, - "price_per_sqm": 34.8202396804261, - "url": "https://www.rightmove.co.uk/properties/161008154", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/161008154/80340_a1G4J0000025zmvUAA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.229359", - "last_seen": "2025-06-01T22:06:01.872432", - "price": 2615.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00901, - 51.51485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161008409", - "info": { - "identifier": 161008409, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161008409", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210101/161008409/210101_P297686_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.421527", - "last_seen": "2025-06-01T22:05:49.993746", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11885, - 51.58081 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161009858", - "info": { - "identifier": 161009858, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161009858", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Neon Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288260/161009858/288260_PRA10687_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.283341", - "last_seen": "2025-06-01T22:05:51.062506", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.179107, - 51.582 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161010527", - "info": { - "identifier": 161010527, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161010527", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Property Broker", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61607/161010527/61607_59431b34-5652-431c-9d94-dfbf3cf3cc5d_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.614498", - "last_seen": "2025-06-01T22:06:08.749824", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018051, - 51.50007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.4, - "qmprice": 46.02, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/161010590", - "info": { - "identifier": 161010590, - "sqm_ocr": 82.4, - "price": 3792.0, - "price_per_sqm": 46.019417475728154, - "url": "https://www.rightmove.co.uk/properties/161010590", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Fox Gregory", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75037/161010590/75037_33832400_IMG_00_0001_max_656x437.png", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.569706", - "last_seen": "2025-06-01T22:06:14.581952", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176993, - 51.5331 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/161010662", - "info": { - "identifier": 161010662, - "sqm_ocr": null, - "price": 2395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161010662", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262865/161010662/262865_a1G8d000002QBLTEA4_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.599724", - "last_seen": "2025-06-01T22:06:02.586508", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00996, - 51.51357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.5, - "qmprice": 29.41, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161010701", - "info": { - "identifier": 161010701, - "sqm_ocr": 76.5, - "price": 2250.0, - "price_per_sqm": 29.41176470588235, - "url": "https://www.rightmove.co.uk/properties/161010701", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12684/161010701/12684_BLO240017_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.963738", - "last_seen": "2025-06-01T22:05:49.531116", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.227925, - 51.502316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.49, - "qmprice": 27.75, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161010878", - "info": { - "identifier": 161010878, - "sqm_ocr": 86.49, - "price": 2400.0, - "price_per_sqm": 27.74887270204648, - "url": "https://www.rightmove.co.uk/properties/161010878", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Wild & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/128k/127876/161010878/127876_33832419_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.966797", - "last_seen": "2025-06-01T22:05:47.660077", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056868, - 51.557163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161010950", - "info": { - "identifier": 161010950, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161010950", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287963/161010950/287963_WHR160300_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.226571", - "last_seen": "2025-06-01T22:06:01.681234", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188107, - 51.42224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3943.0, - "url": "https://www.rightmove.co.uk/properties/161011244", - "info": { - "identifier": 161011244, - "sqm_ocr": null, - "price": 3943.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161011244", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "RiverHomes", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11121/161011244/11121_33593860_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.310758", - "last_seen": "2025-06-01T22:06:08.143217", - "price": 3943.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019224, - 51.491768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.8, - "qmprice": 33.69, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161011451", - "info": { - "identifier": 161011451, - "sqm_ocr": 112.8, - "price": 3800.0, - "price_per_sqm": 33.687943262411345, - "url": "https://www.rightmove.co.uk/properties/161011451", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72056/161011451/72056_33832452_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.780595", - "last_seen": "2025-06-01T22:06:14.084770", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.160556, - 51.43606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.7, - "qmprice": 27.95, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161011715", - "info": { - "identifier": 161011715, - "sqm_ocr": 78.7, - "price": 2200.0, - "price_per_sqm": 27.954256670902158, - "url": "https://www.rightmove.co.uk/properties/161011715", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Cosway Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9970/161011715/9970_33831128_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.919147", - "last_seen": "2025-06-01T22:05:39.054839", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218978, - 51.59675 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 44.74, - "rooms": 3, - "total_price": 2774.0, - "url": "https://www.rightmove.co.uk/properties/161011742", - "info": { - "identifier": 161011742, - "sqm_ocr": 62.0, - "price": 2774.0, - "price_per_sqm": 44.74193548387097, - "url": "https://www.rightmove.co.uk/properties/161011742", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/161011742/15948_1323631_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.167060", - "last_seen": "2025-06-01T22:05:48.681069", - "price": 2774.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194238, - 51.479115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.8, - "qmprice": 53.98, - "rooms": 3, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/161012030", - "info": { - "identifier": 161012030, - "sqm_ocr": 55.8, - "price": 3012.0, - "price_per_sqm": 53.97849462365592, - "url": "https://www.rightmove.co.uk/properties/161012030", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/161012030/108515_1323634_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.255817", - "last_seen": "2025-06-01T22:05:57.779337", - "price": 3012.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191504, - 51.49362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.7, - "qmprice": 44.47, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161012240", - "info": { - "identifier": 161012240, - "sqm_ocr": 78.7, - "price": 3500.0, - "price_per_sqm": 44.47268106734435, - "url": "https://www.rightmove.co.uk/properties/161012240", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161012240/16050_1323643_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.256190", - "last_seen": "2025-06-01T22:06:11.522414", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05681, - 51.5183 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2545.0, - "url": "https://www.rightmove.co.uk/properties/161012303", - "info": { - "identifier": 161012303, - "sqm_ocr": null, - "price": 2545.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161012303", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/161012303/80340_a1G4J0000025yWUUAY_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.527335", - "last_seen": "2025-06-01T22:05:49.637172", - "price": 2545.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07288, - 51.58241 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.2, - "qmprice": 54.8, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/161012354", - "info": { - "identifier": 161012354, - "sqm_ocr": 69.2, - "price": 3792.0, - "price_per_sqm": 54.797687861271676, - "url": "https://www.rightmove.co.uk/properties/161012354", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/161012354/15942_1323633_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.098425", - "last_seen": "2025-06-01T22:05:57.476494", - "price": 3792.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184906, - 51.49511 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161012879", - "info": { - "identifier": 161012879, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161012879", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Infinity Property Solutions", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111497/161012879/111497_28975957_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.977886", - "last_seen": "2025-06-01T22:05:40.750259", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24775, - 51.560364 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161013227", - "info": { - "identifier": 161013227, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161013227", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11495/161013227/11495_0435_FJL043502243_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.555935", - "last_seen": "2025-06-01T17:39:05.084007", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052291, - 51.519688 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.8, - "qmprice": 24.34, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161013533", - "info": { - "identifier": 161013533, - "sqm_ocr": 106.8, - "price": 2600.0, - "price_per_sqm": 24.344569288389515, - "url": "https://www.rightmove.co.uk/properties/161013533", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249770/161013533/249770_33832579_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.062300", - "last_seen": "2025-06-01T22:05:38.971295", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19142, - 51.60336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.4, - "qmprice": 73.03, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161013716", - "info": { - "identifier": 161013716, - "sqm_ocr": 53.4, - "price": 3900.0, - "price_per_sqm": 73.03370786516854, - "url": "https://www.rightmove.co.uk/properties/161013716", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Golden Eagle International", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49332/161013716/49332_574_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.497529", - "last_seen": "2025-06-01T22:06:15.394046", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159607, - 51.514 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161013755", - "info": { - "identifier": 161013755, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161013755", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/161013755/176261_102708026950_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.475005", - "last_seen": "2025-06-01T22:05:49.904506", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10942, - 51.58894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.16, - "qmprice": 44.75, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161014421", - "info": { - "identifier": 161014421, - "sqm_ocr": 49.16, - "price": 2200.0, - "price_per_sqm": 44.75183075671278, - "url": "https://www.rightmove.co.uk/properties/161014421", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72842/161014421/72842_P0278K0210_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.104403", - "last_seen": "2025-06-01T22:06:13.574365", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18667, - 51.43953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.48, - "qmprice": 45.5, - "rooms": 2, - "total_price": 2752.0, - "url": "https://www.rightmove.co.uk/properties/161014502", - "info": { - "identifier": 161014502, - "sqm_ocr": 60.48, - "price": 2752.0, - "price_per_sqm": 45.50264550264551, - "url": "https://www.rightmove.co.uk/properties/161014502", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50966/161014502/50966_P3697F4218_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.869273", - "last_seen": "2025-06-01T22:05:57.634844", - "price": 2751 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21345, - 51.50181 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.09, - "qmprice": 33.94, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161014532", - "info": { - "identifier": 161014532, - "sqm_ocr": 78.09, - "price": 2650.0, - "price_per_sqm": 33.93520297093097, - "url": "https://www.rightmove.co.uk/properties/161014532", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194036/161014532/194036_HWV220145_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.379012", - "last_seen": "2025-06-01T22:06:01.178148", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229434, - 51.422085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.2, - "qmprice": 28.9, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161014838", - "info": { - "identifier": 161014838, - "sqm_ocr": 69.2, - "price": 2000.0, - "price_per_sqm": 28.90173410404624, - "url": "https://www.rightmove.co.uk/properties/161014838", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99865/161014838/99865_33067612_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.580842", - "last_seen": "2025-06-01T22:06:00.253293", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124355, - 51.448895 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.9, - "qmprice": 19.28, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161014856", - "info": { - "identifier": 161014856, - "sqm_ocr": 108.9, - "price": 2100.0, - "price_per_sqm": 19.28374655647383, - "url": "https://www.rightmove.co.uk/properties/161014856", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Proctors", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/9k/8924/161014856/8924_27354947_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.275744", - "last_seen": "2025-06-01T22:05:41.795635", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020558, - 51.401573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161014964", - "info": { - "identifier": 161014964, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161014964", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "relocate-me.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33012/161014964/33012_48446_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.341313", - "last_seen": "2025-06-01T22:05:41.125600", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283946, - 51.52975 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/161015273", - "info": { - "identifier": 161015273, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161015273", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chase Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170759/161015273/170759_Cromwell1_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.993261", - "last_seen": "2025-06-01T22:05:51.765580", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37053, - 51.46058 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/161015819", - "info": { - "identifier": 161015819, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161015819", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83027/161015819/83027_33832723_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.717779", - "last_seen": "2025-06-01T22:06:02.445273", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.029441, - 51.50001 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.87, - "qmprice": 36.91, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161015861", - "info": { - "identifier": 161015861, - "sqm_ocr": 75.87, - "price": 2800.0, - "price_per_sqm": 36.90523263477, - "url": "https://www.rightmove.co.uk/properties/161015861", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247910/161015861/247910_6807d03200ac7_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.141780", - "last_seen": "2025-06-01T22:05:52.180327", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269668, - 51.478905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.9, - "qmprice": 59.42, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161015978", - "info": { - "identifier": 161015978, - "sqm_ocr": 58.9, - "price": 3500.0, - "price_per_sqm": 59.42275042444822, - "url": "https://www.rightmove.co.uk/properties/161015978", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161015978/26207_IUL220198_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.008750", - "last_seen": "2025-06-01T22:05:54.388230", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101909, - 51.53744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 36.67, - "qmprice": 89.99, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161016020", - "info": { - "identifier": 161016020, - "sqm_ocr": 36.67, - "price": 3300.0, - "price_per_sqm": 89.99181892555222, - "url": "https://www.rightmove.co.uk/properties/161016020", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/161016020/84889_1322871_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.304958", - "last_seen": "2025-06-01T22:06:15.061502", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144726, - 51.48564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.4, - "qmprice": 39.01, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161016023", - "info": { - "identifier": 161016023, - "sqm_ocr": 97.4, - "price": 3800.0, - "price_per_sqm": 39.01437371663244, - "url": "https://www.rightmove.co.uk/properties/161016023", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/161016023/84889_1323621_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.307729", - "last_seen": "2025-06-01T22:06:15.059625", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1433, - 51.498417 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 48.61, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161016083", - "info": { - "identifier": 161016083, - "sqm_ocr": 72.0, - "price": 3500.0, - "price_per_sqm": 48.611111111111114, - "url": "https://www.rightmove.co.uk/properties/161016083", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161016083/253853_1323676_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.840679", - "last_seen": "2025-06-01T22:06:05.536553", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099585, - 51.49249 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.91, - "qmprice": 17.87, - "rooms": 4, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161016122", - "info": { - "identifier": 161016122, - "sqm_ocr": 125.91, - "price": 2250.0, - "price_per_sqm": 17.8699070764832, - "url": "https://www.rightmove.co.uk/properties/161016122", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Oaks Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201446/161016122/201446_STR230191_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.787096", - "last_seen": "2025-06-01T22:05:43.762899", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11291, - 51.4049 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.2, - "qmprice": 43.26, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161017382", - "info": { - "identifier": 161017382, - "sqm_ocr": 68.2, - "price": 2950.0, - "price_per_sqm": 43.25513196480938, - "url": "https://www.rightmove.co.uk/properties/161017382", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/161017382/66771_1322138_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.987719", - "last_seen": "2025-06-01T22:05:59.836462", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125581, - 51.48612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.7, - "qmprice": 75.86, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161018411", - "info": { - "identifier": 161018411, - "sqm_ocr": 45.7, - "price": 3467.0, - "price_per_sqm": 75.86433260393872, - "url": "https://www.rightmove.co.uk/properties/161018411", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161018411/55101_1323524_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.067988", - "last_seen": "2025-06-01T22:05:59.713441", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114904, - 51.50508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.11, - "qmprice": 47.24, - "rooms": 2, - "total_price": 3359.0, - "url": "https://www.rightmove.co.uk/properties/161018450", - "info": { - "identifier": 161018450, - "sqm_ocr": 71.11, - "price": 3359.0, - "price_per_sqm": 47.23667557305583, - "url": "https://www.rightmove.co.uk/properties/161018450", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/161018450/15942_1323650_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.029114", - "last_seen": "2025-06-01T22:05:57.995897", - "price": 3359.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188093, - 51.495384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.9, - "qmprice": 48.47, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161018636", - "info": { - "identifier": 161018636, - "sqm_ocr": 61.9, - "price": 3000.0, - "price_per_sqm": 48.46526655896608, - "url": "https://www.rightmove.co.uk/properties/161018636", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/161018636/15981_1321954_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.683858", - "last_seen": "2025-06-01T22:05:58.990367", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133771, - 51.462612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.1, - "qmprice": 43.43, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161020919", - "info": { - "identifier": 161020919, - "sqm_ocr": 92.1, - "price": 4000.0, - "price_per_sqm": 43.43105320304018, - "url": "https://www.rightmove.co.uk/properties/161020919", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161020919/96668_230193021112024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.996243", - "last_seen": "2025-06-01T22:06:11.030751", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018493, - 51.50143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 35.09, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161021048", - "info": { - "identifier": 161021048, - "sqm_ocr": 57.0, - "price": 2000.0, - "price_per_sqm": 35.08771929824562, - "url": "https://www.rightmove.co.uk/properties/161021048", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Paramount", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62636/161021048/62636_PAR250056_L_IMG_20_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.018779", - "last_seen": "2025-06-01T22:05:41.373521", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.233671, - 51.545048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.16, - "qmprice": 52.78, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161021393", - "info": { - "identifier": 161021393, - "sqm_ocr": 51.16, - "price": 2700.0, - "price_per_sqm": 52.7756059421423, - "url": "https://www.rightmove.co.uk/properties/161021393", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/161021393/96392_SVL240268_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.228160", - "last_seen": "2025-06-01T22:06:15.206972", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177776, - 51.53193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2480.0, - "url": "https://www.rightmove.co.uk/properties/161021843", - "info": { - "identifier": 161021843, - "sqm_ocr": null, - "price": 2480.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161021843", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/161021843/80340_a1G4J0000025wmJUAQ_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.686979", - "last_seen": "2025-06-01T22:06:02.477951", - "price": 2480.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03293, - 51.50185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161021879", - "info": { - "identifier": 161021879, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161021879", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Peter Gamble & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75043/161021879/75043_28980255_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.882685", - "last_seen": "2025-06-01T22:05:44.284301", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.322164, - 51.534477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 31.17, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161022590", - "info": { - "identifier": 161022590, - "sqm_ocr": 75.4, - "price": 2350.0, - "price_per_sqm": 31.16710875331565, - "url": "https://www.rightmove.co.uk/properties/161022590", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/161022590/87815_1323672_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.683770", - "last_seen": "2025-06-01T22:05:45.833236", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148058, - 51.644234 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161022695", - "info": { - "identifier": 161022695, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161022695", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Smart Move 09", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270935/161022695/270935_RL0290_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.244730", - "last_seen": "2025-06-01T22:05:50.989939", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.20695, - 51.524185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161022731", - "info": { - "identifier": 161022731, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161022731", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Peach Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74746/161022731/74746_33833034_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.491905", - "last_seen": "2025-06-01T22:06:11.472452", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075722, - 51.5201 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.07, - "qmprice": 55.5, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161022809", - "info": { - "identifier": 161022809, - "sqm_ocr": 72.07, - "price": 4000.0, - "price_per_sqm": 55.501595670875545, - "url": "https://www.rightmove.co.uk/properties/161022809", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161022809/16050_1323667_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.495513", - "last_seen": "2025-06-01T22:05:43.237020", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079518, - 51.51776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.07, - "qmprice": 40.93, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161022818", - "info": { - "identifier": 161022818, - "sqm_ocr": 72.07, - "price": 2950.0, - "price_per_sqm": 40.932426807270716, - "url": "https://www.rightmove.co.uk/properties/161022818", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161022818/16050_1323670_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.493854", - "last_seen": "2025-06-01T22:05:43.235758", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079518, - 51.51776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161022845", - "info": { - "identifier": 161022845, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161022845", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/161022845/250739_1319257_IMG_03_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.989201", - "last_seen": "2025-06-01T22:05:50.267633", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32871, - 51.60839 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.0, - "qmprice": 28.43, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161023772", - "info": { - "identifier": 161023772, - "sqm_ocr": 102.0, - "price": 2900.0, - "price_per_sqm": 28.431372549019606, - "url": "https://www.rightmove.co.uk/properties/161023772", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Citian & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256973/161023772/256973_274998_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.037495", - "last_seen": "2025-06-01T22:05:41.404345", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28429, - 51.54094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161024288", - "info": { - "identifier": 161024288, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161024288", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "London Homes Property Limited", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287264/161024288/287264_ARU-583702_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.813064", - "last_seen": "2025-06-01T22:05:58.613504", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.268593, - 51.40023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161024363", - "info": { - "identifier": 161024363, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161024363", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/161024363/44537_TOL230071_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.058234", - "last_seen": "2025-06-01T22:06:06.771402", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077838, - 51.49606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.0, - "qmprice": 38.89, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/161024372", - "info": { - "identifier": 161024372, - "sqm_ocr": 99.0, - "price": 3850.0, - "price_per_sqm": 38.888888888888886, - "url": "https://www.rightmove.co.uk/properties/161024372", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/161024372/44537_CSL250123_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.079421", - "last_seen": "2025-06-01T22:06:06.777980", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077838, - 51.49606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/161024936", - "info": { - "identifier": 161024936, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161024936", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161024936/17888_34528_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.599591", - "last_seen": "2025-06-01T22:05:42.736213", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14182, - 51.56248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.1, - "qmprice": 41.23, - "rooms": 3, - "total_price": 2725.0, - "url": "https://www.rightmove.co.uk/properties/161025002", - "info": { - "identifier": 161025002, - "sqm_ocr": 66.1, - "price": 2725.0, - "price_per_sqm": 41.22541603630863, - "url": "https://www.rightmove.co.uk/properties/161025002", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260939/161025002/260939_FIN230042_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.719529", - "last_seen": "2025-06-01T22:06:14.015617", - "price": 2725.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155214, - 51.433846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.77, - "qmprice": 43.5, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161025122", - "info": { - "identifier": 161025122, - "sqm_ocr": 59.77, - "price": 2600.0, - "price_per_sqm": 43.50008365400703, - "url": "https://www.rightmove.co.uk/properties/161025122", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191579/161025122/191579_KCL250003_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.547737", - "last_seen": "2025-06-01T22:05:53.807312", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12095, - 51.53212 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161025224", - "info": { - "identifier": 161025224, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161025224", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/161025224/17418_100415008464_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.022724", - "last_seen": "2025-06-01T22:05:50.329183", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37896, - 51.60853 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.0, - "qmprice": 55.98, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/161026571", - "info": { - "identifier": 161026571, - "sqm_ocr": 50.0, - "price": 2799.0, - "price_per_sqm": 55.98, - "url": "https://www.rightmove.co.uk/properties/161026571", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65884/161026571/65884_HAQ012593180_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.992404", - "last_seen": "2025-06-01T22:05:42.489625", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177847, - 51.551834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.4, - "qmprice": 31.58, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161027141", - "info": { - "identifier": 161027141, - "sqm_ocr": 93.4, - "price": 2950.0, - "price_per_sqm": 31.58458244111349, - "url": "https://www.rightmove.co.uk/properties/161027141", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Real Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36827/161027141/36827_33700047_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.064112", - "last_seen": "2025-06-01T22:05:38.963601", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224874, - 51.63103 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2058.0, - "url": "https://www.rightmove.co.uk/properties/161027285", - "info": { - "identifier": 161027285, - "sqm_ocr": null, - "price": 2058.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161027285", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161027285/17888_30273_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.126769", - "last_seen": "2025-06-01T22:05:43.007200", - "price": 2058 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13767, - 51.54757 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161027495", - "info": { - "identifier": 161027495, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161027495", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161027495/87187_10526_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.297290", - "last_seen": "2025-06-01T22:05:59.353266", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11607, - 51.500664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 55.0, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161027501", - "info": { - "identifier": 161027501, - "sqm_ocr": 60.0, - "price": 3300.0, - "price_per_sqm": 55.0, - "url": "https://www.rightmove.co.uk/properties/161027501", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161027501/87187_16863_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.093809", - "last_seen": "2025-06-01T22:05:57.473176", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189146, - 51.487083 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.19, - "qmprice": 23.6, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161027666", - "info": { - "identifier": 161027666, - "sqm_ocr": 110.19, - "price": 2600.0, - "price_per_sqm": 23.595607586895362, - "url": "https://www.rightmove.co.uk/properties/161027666", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Wilson Hawkins", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286241/161027666/286241_122f2825-f466-47ce-a990-ac435fdb6e6f_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.210787", - "last_seen": "2025-06-01T22:05:50.383906", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34241, - 51.56521 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.2, - "qmprice": 21.72, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161028011", - "info": { - "identifier": 161028011, - "sqm_ocr": 108.2, - "price": 2350.0, - "price_per_sqm": 21.719038817005544, - "url": "https://www.rightmove.co.uk/properties/161028011", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Robsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50427/161028011/50427_2711733_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.387719", - "last_seen": "2025-06-01T22:05:51.416027", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.4387, - 51.61428 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 49.89, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/161028338", - "info": { - "identifier": 161028338, - "sqm_ocr": 76.0, - "price": 3792.0, - "price_per_sqm": 49.89473684210526, - "url": "https://www.rightmove.co.uk/properties/161028338", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212372/161028338/212372_P160319_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.930488", - "last_seen": "2025-06-01T22:05:55.337626", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21327, - 51.49902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.6, - "qmprice": 31.28, - "rooms": 2, - "total_price": 2240.0, - "url": "https://www.rightmove.co.uk/properties/161028725", - "info": { - "identifier": 161028725, - "sqm_ocr": 71.6, - "price": 2240.0, - "price_per_sqm": 31.28491620111732, - "url": "https://www.rightmove.co.uk/properties/161028725", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Fisks Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38558/161028725/38558_33833448_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.616111", - "last_seen": "2025-06-01T22:06:02.561210", - "price": 2240.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.038362, - 51.51219 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.72, - "qmprice": 37.68, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161029061", - "info": { - "identifier": 161029061, - "sqm_ocr": 59.72, - "price": 2250.0, - "price_per_sqm": 37.67582049564635, - "url": "https://www.rightmove.co.uk/properties/161029061", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50951/161029061/50951_P1055E5923_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.453919", - "last_seen": "2025-06-01T22:06:00.089448", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11259, - 51.49502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.0, - "qmprice": 40.22, - "rooms": 4, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161029100", - "info": { - "identifier": 161029100, - "sqm_ocr": 92.0, - "price": 3700.0, - "price_per_sqm": 40.21739130434783, - "url": "https://www.rightmove.co.uk/properties/161029100", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "gLocalAgents.co.uk", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176603/161029100/176603_14772_EAF_181757_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.083054", - "last_seen": "2025-06-01T22:05:59.704816", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140218, - 51.447655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.0, - "qmprice": 33.97, - "rooms": 3, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/161029388", - "info": { - "identifier": 161029388, - "sqm_ocr": 100.0, - "price": 3397.0, - "price_per_sqm": 33.97, - "url": "https://www.rightmove.co.uk/properties/161029388", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/193k/192209/161029388/192209_33833485_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.559496", - "last_seen": "2025-06-01T22:05:44.531113", - "price": 3397.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.315069, - 51.52738 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 32.42, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/161029475", - "info": { - "identifier": 161029475, - "sqm_ocr": 77.0, - "price": 2496.0, - "price_per_sqm": 32.41558441558441, - "url": "https://www.rightmove.co.uk/properties/161029475", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank Lettings (ILM)", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137825/161029475/137825_BIQ012146133_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.812876", - "last_seen": "2025-06-01T22:05:40.692505", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.278597, - 51.561035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161030744", - "info": { - "identifier": 161030744, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161030744", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81158/161030744/81158_33833578_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.183795", - "last_seen": "2025-06-01T22:05:50.449022", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.313824, - 51.589363 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.8, - "qmprice": 45.92, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161030978", - "info": { - "identifier": 161030978, - "sqm_ocr": 58.8, - "price": 2700.0, - "price_per_sqm": 45.91836734693878, - "url": "https://www.rightmove.co.uk/properties/161030978", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43829/161030978/43829_P298959_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.166773", - "last_seen": "2025-06-01T22:06:10.650630", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06844, - 51.52388 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 27.78, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161031074", - "info": { - "identifier": 161031074, - "sqm_ocr": 72.0, - "price": 2000.0, - "price_per_sqm": 27.77777777777778, - "url": "https://www.rightmove.co.uk/properties/161031074", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57287/161031074/57287_1323261_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.138537", - "last_seen": "2025-06-01T22:06:06.880419", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068984, - 51.433155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.0, - "qmprice": 24.55, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161031290", - "info": { - "identifier": 161031290, - "sqm_ocr": 112.0, - "price": 2750.0, - "price_per_sqm": 24.553571428571427, - "url": "https://www.rightmove.co.uk/properties/161031290", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/161031290/15951_1320776_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.095073", - "last_seen": "2025-06-01T22:05:51.868990", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.268926, - 51.47997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 45.47, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161031356", - "info": { - "identifier": 161031356, - "sqm_ocr": 81.0, - "price": 3683.0, - "price_per_sqm": 45.46913580246913, - "url": "https://www.rightmove.co.uk/properties/161031356", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Garrett Whitelock", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105305/161031356/105305_101341001615_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:37.259026", - "last_seen": "2025-06-01T22:06:07.976026", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07295, - 51.51595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.71, - "qmprice": 26.28, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161031425", - "info": { - "identifier": 161031425, - "sqm_ocr": 83.71, - "price": 2200.0, - "price_per_sqm": 26.28120893561104, - "url": "https://www.rightmove.co.uk/properties/161031425", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Acorn Properties Nwl", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/224k/223670/161031425/223670_ACR250130_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.218904", - "last_seen": "2025-06-01T22:05:50.375604", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.281836, - 51.611786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.47, - "qmprice": 48.65, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161031752", - "info": { - "identifier": 161031752, - "sqm_ocr": 54.47, - "price": 2650.0, - "price_per_sqm": 48.65063337617037, - "url": "https://www.rightmove.co.uk/properties/161031752", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/161031752/98531_1322801_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.800033", - "last_seen": "2025-06-01T22:05:48.326557", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219451, - 51.50132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.11, - "qmprice": 73.3, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161031761", - "info": { - "identifier": 161031761, - "sqm_ocr": 49.11, - "price": 3600.0, - "price_per_sqm": 73.30482590103848, - "url": "https://www.rightmove.co.uk/properties/161031761", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/161031761/98531_1323241_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.792372", - "last_seen": "2025-06-01T22:05:48.314001", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217474, - 51.50326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161032616", - "info": { - "identifier": 161032616, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161032616", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Filey Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54554/161032616/54554_1876258_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.230645", - "last_seen": "2025-06-01T22:05:47.907760", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068716, - 51.570507 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.3, - "qmprice": 33.85, - "rooms": 2, - "total_price": 2380.0, - "url": "https://www.rightmove.co.uk/properties/161033843", - "info": { - "identifier": 161033843, - "sqm_ocr": 70.3, - "price": 2380.0, - "price_per_sqm": 33.85490753911807, - "url": "https://www.rightmove.co.uk/properties/161033843", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/161033843/264326_Y80530_1_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.497385", - "last_seen": "2025-06-01T22:05:40.905332", - "price": 2380.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.243889, - 51.554165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.0, - "qmprice": 50.0, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161034323", - "info": { - "identifier": 161034323, - "sqm_ocr": 48.0, - "price": 2400.0, - "price_per_sqm": 50.0, - "url": "https://www.rightmove.co.uk/properties/161034323", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Lawson Rutter", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55611/161034323/55611_LRL3001D7E_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.335794", - "last_seen": "2025-06-01T22:05:48.441829", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21175, - 51.489788 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161034542", - "info": { - "identifier": 161034542, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161034542", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Anthony Martin Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96280/161034542/96280_LET250004_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.175857", - "last_seen": "2025-06-01T22:05:46.730193", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.072581, - 51.49349 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.91, - "qmprice": 40.68, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161034728", - "info": { - "identifier": 161034728, - "sqm_ocr": 63.91, - "price": 2600.0, - "price_per_sqm": 40.68220935690815, - "url": "https://www.rightmove.co.uk/properties/161034728", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80551/161034728/80551_KIL240053_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.595740", - "last_seen": "2025-06-01T22:06:04.510662", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.278, - 51.478138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161035226", - "info": { - "identifier": 161035226, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161035226", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161035226/96668_245088914042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.828457", - "last_seen": "2025-06-01T22:06:01.672454", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17139, - 51.4054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161035451", - "info": { - "identifier": 161035451, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161035451", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161035451/96668_238618613022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.147144", - "last_seen": "2025-06-01T22:05:53.340917", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096383, - 51.540085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3095.0, - "url": "https://www.rightmove.co.uk/properties/161035580", - "info": { - "identifier": 161035580, - "sqm_ocr": null, - "price": 3095.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161035580", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161035580/96668_246011423042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.740821", - "last_seen": "2025-06-01T22:05:50.153514", - "price": 3095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140887, - 51.58924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.9, - "qmprice": 54.63, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161035943", - "info": { - "identifier": 161035943, - "sqm_ocr": 54.9, - "price": 2999.0, - "price_per_sqm": 54.626593806921676, - "url": "https://www.rightmove.co.uk/properties/161035943", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22353/161035943/22353_NHL190070_L_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.839029", - "last_seen": "2025-06-01T22:06:16.138724", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192713, - 51.511154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 38.36, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161036714", - "info": { - "identifier": 161036714, - "sqm_ocr": 73.0, - "price": 2800.0, - "price_per_sqm": 38.35616438356164, - "url": "https://www.rightmove.co.uk/properties/161036714", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161036714/15975_1323567_IMG_06_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.304851", - "last_seen": "2025-06-01T22:06:01.451076", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182222, - 51.418793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 50.47, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/161036723", - "info": { - "identifier": 161036723, - "sqm_ocr": 73.0, - "price": 3684.0, - "price_per_sqm": 50.465753424657535, - "url": "https://www.rightmove.co.uk/properties/161036723", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161036723/15975_1323566_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.303197", - "last_seen": "2025-06-01T22:06:01.454482", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182222, - 51.418793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.6, - "qmprice": 30.3, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161036726", - "info": { - "identifier": 161036726, - "sqm_ocr": 72.6, - "price": 2200.0, - "price_per_sqm": 30.303030303030305, - "url": "https://www.rightmove.co.uk/properties/161036726", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161036726/15975_1322631_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.301986", - "last_seen": "2025-06-01T22:06:01.457366", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221158, - 51.413757 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.4, - "qmprice": 29.25, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161036849", - "info": { - "identifier": 161036849, - "sqm_ocr": 109.4, - "price": 3200.0, - "price_per_sqm": 29.25045703839122, - "url": "https://www.rightmove.co.uk/properties/161036849", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Mark Hart Real Estate", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/235k/234521/161036849/234521_L63660_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.968583", - "last_seen": "2025-06-01T22:06:00.525936", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035288, - 51.468395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.6, - "qmprice": 32.01, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161036927", - "info": { - "identifier": 161036927, - "sqm_ocr": 65.6, - "price": 2100.0, - "price_per_sqm": 32.01219512195122, - "url": "https://www.rightmove.co.uk/properties/161036927", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/161036927/87812_1323709_IMG_05_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.405743", - "last_seen": "2025-06-01T22:05:56.235143", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183841, - 51.58598 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161037239", - "info": { - "identifier": 161037239, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161037239", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Lomond Investment Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/212k/211535/161037239/211535_2108_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.839763", - "last_seen": "2025-06-01T22:05:51.236911", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.47025, - 51.54357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 133.55, - "qmprice": 18.72, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161037602", - "info": { - "identifier": 161037602, - "sqm_ocr": 133.55, - "price": 2500.0, - "price_per_sqm": 18.719580681392735, - "url": "https://www.rightmove.co.uk/properties/161037602", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Wilson Hawkins", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286241/161037602/286241_0d765ef1-5aef-4350-a524-ccc78aedbd29_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.153543", - "last_seen": "2025-06-01T22:05:50.508677", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34241, - 51.56521 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161038070", - "info": { - "identifier": 161038070, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161038070", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/201k/200876/161038070/200876_SNE080051_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.078006", - "last_seen": "2025-06-01T22:05:59.706806", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1254, - 51.4863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3796.0, - "url": "https://www.rightmove.co.uk/properties/161039423", - "info": { - "identifier": 161039423, - "sqm_ocr": null, - "price": 3796.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161039423", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/161039423/39507_535692_IMG_24_0000_max_656x437.jpeg", - "let_date_available": "15/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.601588", - "last_seen": "2025-06-01T22:06:07.406801", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005422, - 51.539097 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161039489", - "info": { - "identifier": 161039489, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161039489", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Quest Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102056/161039489/102056_33834206_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.797358", - "last_seen": "2025-06-01T22:05:51.275153", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.416262, - 51.611736 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.13, - "qmprice": 27.86, - "rooms": 2, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/161040344", - "info": { - "identifier": 161040344, - "sqm_ocr": 93.13, - "price": 2595.0, - "price_per_sqm": 27.864275743584237, - "url": "https://www.rightmove.co.uk/properties/161040344", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84797/161040344/84797_33834256_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.663497", - "last_seen": "2025-06-01T22:06:04.448896", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.356343, - 51.427048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3960.0, - "url": "https://www.rightmove.co.uk/properties/161040383", - "info": { - "identifier": 161040383, - "sqm_ocr": null, - "price": 3960.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161040383", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/161040383/78429_LON-632_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.560728", - "last_seen": "2025-06-01T22:05:57.696546", - "price": 3960.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17743, - 51.48372 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.4, - "qmprice": 32.5, - "rooms": 3, - "total_price": 2223.0, - "url": "https://www.rightmove.co.uk/properties/161040770", - "info": { - "identifier": 161040770, - "sqm_ocr": 68.4, - "price": 2223.0, - "price_per_sqm": 32.5, - "url": "https://www.rightmove.co.uk/properties/161040770", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Abacus Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26267/161040770/26267_ABAC_017557_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.082557", - "last_seen": "2025-06-01T22:05:40.705468", - "price": 2223 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.226485, - 51.5412 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.2, - "qmprice": 32.83, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161040953", - "info": { - "identifier": 161040953, - "sqm_ocr": 79.2, - "price": 2600.0, - "price_per_sqm": 32.82828282828283, - "url": "https://www.rightmove.co.uk/properties/161040953", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82857/161040953/82857_1323190_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.027563, - 51.536392 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.2, - "qmprice": 46.5, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161040956", - "info": { - "identifier": 161040956, - "sqm_ocr": 79.2, - "price": 3683.0, - "price_per_sqm": 46.50252525252525, - "url": "https://www.rightmove.co.uk/properties/161040956", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82857/161040956/82857_1323191_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.027563, - 51.536392 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.34, - "qmprice": 45.17, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161041196", - "info": { - "identifier": 161041196, - "sqm_ocr": 86.34, - "price": 3900.0, - "price_per_sqm": 45.17025712300208, - "url": "https://www.rightmove.co.uk/properties/161041196", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Battersea & Nine Elms Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143171/161041196/143171_33405647_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.211332", - "last_seen": "2025-06-01T22:06:13.342254", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145673, - 51.47622 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.13, - "qmprice": 50.82, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161041316", - "info": { - "identifier": 161041316, - "sqm_ocr": 53.13, - "price": 2700.0, - "price_per_sqm": 50.81874647092038, - "url": "https://www.rightmove.co.uk/properties/161041316", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161041316/16050_1323756_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.578006", - "last_seen": "2025-06-01T22:06:08.636421", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073706, - 51.517494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.4, - "qmprice": 29.83, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161041328", - "info": { - "identifier": 161041328, - "sqm_ocr": 70.4, - "price": 2100.0, - "price_per_sqm": 29.829545454545453, - "url": "https://www.rightmove.co.uk/properties/161041328", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84809/161041328/84809_33834311_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.044630", - "last_seen": "2025-06-01T22:05:51.799203", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.325106, - 51.4684 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.4, - "qmprice": 53.75, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161041448", - "info": { - "identifier": 161041448, - "sqm_ocr": 61.4, - "price": 3300.0, - "price_per_sqm": 53.74592833876222, - "url": "https://www.rightmove.co.uk/properties/161041448", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161041448/48101_1323763_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.967793", - "last_seen": "2025-06-01T22:06:09.576458", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029375, - 51.51382 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2895.0, - "url": "https://www.rightmove.co.uk/properties/161041901", - "info": { - "identifier": 161041901, - "sqm_ocr": null, - "price": 2895.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161041901", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84800/161041901/84800_33834360_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.837945", - "last_seen": "2025-06-01T22:05:58.596129", - "price": 2895.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290978, - 51.41449 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.3, - "qmprice": 45.95, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161042042", - "info": { - "identifier": 161042042, - "sqm_ocr": 61.3, - "price": 2817.0, - "price_per_sqm": 45.95432300163132, - "url": "https://www.rightmove.co.uk/properties/161042042", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53537/161042042/53537_PIM170174_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.835791", - "last_seen": "2025-06-01T22:06:14.365851", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13228, - 51.49236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.81, - "qmprice": 57.1, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/161042096", - "info": { - "identifier": 161042096, - "sqm_ocr": 58.81, - "price": 3358.0, - "price_per_sqm": 57.099132800544126, - "url": "https://www.rightmove.co.uk/properties/161042096", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Napier Watt Limited", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83443/161042096/83443_33834372_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.338963", - "last_seen": "2025-06-01T22:05:57.887483", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189602, - 51.495277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161042201", - "info": { - "identifier": 161042201, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161042201", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "AP Living London", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235805/161042201/235805_33834377_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.078782", - "last_seen": "2025-06-01T22:05:49.411686", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222369, - 51.5116 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.32, - "qmprice": 37.51, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161042270", - "info": { - "identifier": 161042270, - "sqm_ocr": 53.32, - "price": 2000.0, - "price_per_sqm": 37.50937734433608, - "url": "https://www.rightmove.co.uk/properties/161042270", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80551/161042270/80551_RIL180034_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.539976", - "last_seen": "2025-06-01T22:06:04.801499", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284729, - 51.481438 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161042540", - "info": { - "identifier": 161042540, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161042540", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Simple Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238226/161042540/238226_5801_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.287515", - "last_seen": "2025-06-01T22:05:52.135228", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.402789, - 51.45398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.82, - "qmprice": 36.5, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161042558", - "info": { - "identifier": 161042558, - "sqm_ocr": 80.82, - "price": 2950.0, - "price_per_sqm": 36.50086612224697, - "url": "https://www.rightmove.co.uk/properties/161042558", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/161042558/264404_RX574854_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.187425", - "last_seen": "2025-06-01T22:06:09.745498", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005445, - 51.506916 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.38, - "qmprice": 60.12, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161042651", - "info": { - "identifier": 161042651, - "sqm_ocr": 62.38, - "price": 3750.0, - "price_per_sqm": 60.11542160949022, - "url": "https://www.rightmove.co.uk/properties/161042651", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43428/161042651/43428_FCL230404_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.281971", - "last_seen": "2025-06-01T22:05:58.237133", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196266, - 51.49152 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.2, - "qmprice": 32.41, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/161043020", - "info": { - "identifier": 161043020, - "sqm_ocr": 70.2, - "price": 2275.0, - "price_per_sqm": 32.407407407407405, - "url": "https://www.rightmove.co.uk/properties/161043020", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84800/161043020/84800_33834412_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.599943", - "last_seen": "2025-06-01T22:05:58.812735", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284743, - 51.40539 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.2, - "qmprice": 41.41, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/161043056", - "info": { - "identifier": 161043056, - "sqm_ocr": 83.2, - "price": 3445.0, - "price_per_sqm": 41.40625, - "url": "https://www.rightmove.co.uk/properties/161043056", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161043056/55101_1323637_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.507016", - "last_seen": "2025-06-01T22:05:59.979596", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116919, - 51.50234 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161043125", - "info": { - "identifier": 161043125, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161043125", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166334/161043125/166334_1323770_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.497661", - "last_seen": "2025-06-01T22:05:49.604516", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104667, - 51.593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161043251", - "info": { - "identifier": 161043251, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161043251", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161043251/96668_239081618022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.202397", - "last_seen": "2025-06-01T22:05:50.389699", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.309089, - 51.617996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161043656", - "info": { - "identifier": 161043656, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161043656", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 39, - "status": null, - "last_seen": 0, - "agency": "Dreamview Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85138/161043656/85138_house_6_queens_road_london_nw4_2th_3L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.013372", - "last_seen": "2025-06-01T22:05:39.033581", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223448, - 51.583405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.96, - "qmprice": 44.39, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161043791", - "info": { - "identifier": 161043791, - "sqm_ocr": 82.96, - "price": 3683.0, - "price_per_sqm": 44.39488910318226, - "url": "https://www.rightmove.co.uk/properties/161043791", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/161043791/70038_5086_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.970327", - "last_seen": "2025-06-01T22:05:48.949263", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195766, - 51.482655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.5, - "qmprice": 53.76, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161043938", - "info": { - "identifier": 161043938, - "sqm_ocr": 46.5, - "price": 2500.0, - "price_per_sqm": 53.763440860215056, - "url": "https://www.rightmove.co.uk/properties/161043938", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/161043938/15948_1323640_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.554974", - "last_seen": "2025-06-01T22:05:49.163654", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223518, - 51.48268 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.2, - "qmprice": 28.05, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161043944", - "info": { - "identifier": 161043944, - "sqm_ocr": 80.2, - "price": 2250.0, - "price_per_sqm": 28.054862842892767, - "url": "https://www.rightmove.co.uk/properties/161043944", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166334/161043944/166334_1323161_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.401768", - "last_seen": "2025-06-01T22:05:50.037789", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.111444, - 51.590466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3138.0, - "url": "https://www.rightmove.co.uk/properties/161044118", - "info": { - "identifier": 161044118, - "sqm_ocr": null, - "price": 3138.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161044118", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Way of Life (The Gessner)", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267533/161044118/267533_EVER-2675332y106LsyOLuJhsuYrbBLLHooOIjlzlr72KTRMBgsxLmxzMimXtPql7By_IMG_21_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.412090", - "last_seen": "2025-06-01T22:05:50.031285", - "price": 3138.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.060291, - 51.590145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 55.88, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161045741", - "info": { - "identifier": 161045741, - "sqm_ocr": 68.0, - "price": 3800.0, - "price_per_sqm": 55.88235294117647, - "url": "https://www.rightmove.co.uk/properties/161045741", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Property Inside London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270212/161045741/270212_606_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.674518", - "last_seen": "2025-06-01T22:06:15.784930", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17127, - 51.51906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161046317", - "info": { - "identifier": 161046317, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161046317", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42912/161046317/42912_PUT250145_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.275465", - "last_seen": "2025-06-01T22:06:01.494397", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151826, - 51.411438 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161046533", - "info": { - "identifier": 161046533, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161046533", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161046533/96668_244544708042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.951653", - "last_seen": "2025-06-01T22:05:40.740303", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224954, - 51.54148 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161047379", - "info": { - "identifier": 161047379, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161047379", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161047379/96668_242818124032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.955901", - "last_seen": "2025-06-01T22:06:15.904476", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203406, - 51.528107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161049635", - "info": { - "identifier": 161049635, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161049635", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/161049635/272819_33834666_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.042730", - "last_seen": "2025-06-01T22:05:41.421436", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283549, - 51.540977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.9, - "qmprice": 47.68, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161050505", - "info": { - "identifier": 161050505, - "sqm_ocr": 83.9, - "price": 4000.0, - "price_per_sqm": 47.67580452920143, - "url": "https://www.rightmove.co.uk/properties/161050505", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/161050505/60927_000018243b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.142611", - "last_seen": "2025-06-01T22:05:49.529223", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22553, - 51.48719 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161050778", - "info": { - "identifier": 161050778, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161050778", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161050778/96668_245882322042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.295115", - "last_seen": "2025-06-01T22:05:56.648604", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28405, - 51.5327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.4, - "qmprice": 35.69, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/161051516", - "info": { - "identifier": 161051516, - "sqm_ocr": 84.4, - "price": 3012.0, - "price_per_sqm": 35.687203791469194, - "url": "https://www.rightmove.co.uk/properties/161051516", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151658/161051516/151658_1320365_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.799862", - "last_seen": "2025-06-01T22:05:55.869649", - "price": 3012.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203373, - 51.533665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.84, - "qmprice": 29.79, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161051522", - "info": { - "identifier": 161051522, - "sqm_ocr": 73.84, - "price": 2200.0, - "price_per_sqm": 29.79414951245937, - "url": "https://www.rightmove.co.uk/properties/161051522", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/161051522/100423_1320362_IMG_01_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.415473", - "last_seen": "2025-06-01T22:06:04.527555", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.323163, - 51.447968 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161051654", - "info": { - "identifier": 161051654, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161051654", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "CROWN LUXURY HOMES LIMITED", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267257/161051654/267257_33834680_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.311297", - "last_seen": "2025-06-01T22:05:48.015014", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088469, - 51.572746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161051705", - "info": { - "identifier": 161051705, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161051705", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/161051705/60927_000012762b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.590156", - "last_seen": "2025-06-01T22:05:49.130765", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23458, - 51.49575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.1, - "qmprice": 34.37, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161051966", - "info": { - "identifier": 161051966, - "sqm_ocr": 61.1, - "price": 2100.0, - "price_per_sqm": 34.36988543371522, - "url": "https://www.rightmove.co.uk/properties/161051966", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/161051966/17418_100415007228_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.187244", - "last_seen": "2025-06-01T22:05:50.437082", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.38458, - 51.59655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.3, - "qmprice": 37.59, - "rooms": 2, - "total_price": 3470.0, - "url": "https://www.rightmove.co.uk/properties/161052365", - "info": { - "identifier": 161052365, - "sqm_ocr": 92.3, - "price": 3470.0, - "price_per_sqm": 37.594799566630556, - "url": "https://www.rightmove.co.uk/properties/161052365", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/161052365/272819_33834714_IMG_00_0000_max_656x437.png", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.683484", - "last_seen": "2025-06-01T22:05:48.932211", - "price": 3470.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228164, - 51.49408 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.5, - "qmprice": 27.54, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161053175", - "info": { - "identifier": 161053175, - "sqm_ocr": 83.5, - "price": 2300.0, - "price_per_sqm": 27.54491017964072, - "url": "https://www.rightmove.co.uk/properties/161053175", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72056/161053175/72056_33834766_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.299176", - "last_seen": "2025-06-01T22:06:12.504469", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153333, - 51.428543 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.7, - "qmprice": 42.96, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161053181", - "info": { - "identifier": 161053181, - "sqm_ocr": 80.7, - "price": 3467.0, - "price_per_sqm": 42.96158612143742, - "url": "https://www.rightmove.co.uk/properties/161053181", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Battersea & Nine Elms Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143171/161053181/143171_33834767_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.287542", - "last_seen": "2025-06-01T22:06:12.487561", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135088, - 51.479675 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161053277", - "info": { - "identifier": 161053277, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161053277", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/161053277/272819_33834777_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/10/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.441828", - "last_seen": "2025-06-01T22:06:05.798811", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097405, - 51.49174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.44, - "qmprice": 36.74, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161054654", - "info": { - "identifier": 161054654, - "sqm_ocr": 54.44, - "price": 2000.0, - "price_per_sqm": 36.737692872887585, - "url": "https://www.rightmove.co.uk/properties/161054654", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Malixons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38340/161054654/38340_1e4d0973-6283-46c9-b6fa-5c977c82589c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.523172", - "last_seen": "2025-06-01T22:05:59.906126", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112908, - 51.483124 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161054744", - "info": { - "identifier": 161054744, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161054744", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161054744/96668_246102024042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.464375", - "last_seen": "2025-06-01T22:06:05.159691", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.062208, - 51.490837 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.5, - "qmprice": 39.25, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161056712", - "info": { - "identifier": 161056712, - "sqm_ocr": 53.5, - "price": 2100.0, - "price_per_sqm": 39.25233644859813, - "url": "https://www.rightmove.co.uk/properties/161056712", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82857/161056712/82857_1322779_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.356383", - "last_seen": "2025-06-01T17:39:04.803528", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.047422, - 51.519444 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/161056739", - "info": { - "identifier": 161056739, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161056739", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/161056739/146147_PR232630_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.314412", - "last_seen": "2025-06-01T22:06:07.692034", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.007379, - 51.534023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.4, - "qmprice": 39.51, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161057450", - "info": { - "identifier": 161057450, - "sqm_ocr": 73.4, - "price": 2900.0, - "price_per_sqm": 39.509536784741144, - "url": "https://www.rightmove.co.uk/properties/161057450", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161057450/48101_1323802_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.010576, - 51.50821 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.55, - "qmprice": 37.7, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/161057792", - "info": { - "identifier": 161057792, - "sqm_ocr": 63.55, - "price": 2396.0, - "price_per_sqm": 37.70259638080252, - "url": "https://www.rightmove.co.uk/properties/161057792", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/161057792/84788_33835051_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.332576", - "last_seen": "2025-06-01T22:05:52.074358", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279793, - 51.4878 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161057804", - "info": { - "identifier": 161057804, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161057804", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/161057804/84791_33835052_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.440805", - "last_seen": "2025-06-01T22:05:45.023205", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307442, - 51.51235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.42, - "qmprice": 56.38, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/161058467", - "info": { - "identifier": 161058467, - "sqm_ocr": 53.42, - "price": 3012.0, - "price_per_sqm": 56.38337701235492, - "url": "https://www.rightmove.co.uk/properties/161058467", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43062/161058467/43062_NHS230345_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.310913", - "last_seen": "2025-06-01T22:06:14.605036", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192541, - 51.515644 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.3, - "qmprice": 30.32, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/161058815", - "info": { - "identifier": 161058815, - "sqm_ocr": 89.3, - "price": 2708.0, - "price_per_sqm": 30.32474804031355, - "url": "https://www.rightmove.co.uk/properties/161058815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57124/161058815/57124_P214548_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.385093", - "last_seen": "2025-06-01T22:06:09.875683", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06351, - 51.50402 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161058932", - "info": { - "identifier": 161058932, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161058932", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71263/161058932/71263_0604_HRT060401805_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.671679", - "last_seen": "2025-06-01T22:05:39.141828", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.260073, - 51.622894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.41, - "qmprice": 25.74, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161059220", - "info": { - "identifier": 161059220, - "sqm_ocr": 87.41, - "price": 2250.0, - "price_per_sqm": 25.740761926553027, - "url": "https://www.rightmove.co.uk/properties/161059220", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50939/161059220/50939_P1477E2222_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.007112", - "last_seen": "2025-06-01T22:05:52.192208", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.41942, - 51.44137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 135.4, - "qmprice": 17.73, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161059418", - "info": { - "identifier": 161059418, - "sqm_ocr": 135.4, - "price": 2400.0, - "price_per_sqm": 17.725258493353028, - "url": "https://www.rightmove.co.uk/properties/161059418", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36477/161059418/36477_P3822E3230_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.24976, - 51.36262 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.72, - "qmprice": 43.94, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161059805", - "info": { - "identifier": 161059805, - "sqm_ocr": 63.72, - "price": 2800.0, - "price_per_sqm": 43.94224733207784, - "url": "https://www.rightmove.co.uk/properties/161059805", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107902/161059805/107902_SBA160054_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.280515", - "last_seen": "2025-06-01T22:05:59.325440", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117559, - 51.5016 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 34.09, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/161061143", - "info": { - "identifier": 161061143, - "sqm_ocr": 89.0, - "price": 3034.0, - "price_per_sqm": 34.08988764044944, - "url": "https://www.rightmove.co.uk/properties/161061143", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/161061143/73120_1323811_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.510858", - "last_seen": "2025-06-01T22:05:53.809626", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096014, - 51.52065 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3770.0, - "url": "https://www.rightmove.co.uk/properties/161061302", - "info": { - "identifier": 161061302, - "sqm_ocr": null, - "price": 3770.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161061302", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44510/161061302/44510_MCL110098_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.470465", - "last_seen": "2025-06-01T22:06:15.734859", - "price": 3770.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144233, - 51.521366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.4, - "qmprice": 45.11, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161061572", - "info": { - "identifier": 161061572, - "sqm_ocr": 65.4, - "price": 2950.0, - "price_per_sqm": 45.10703363914373, - "url": "https://www.rightmove.co.uk/properties/161061572", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161061572/253853_1323539_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.584977", - "last_seen": "2025-06-01T22:06:05.525072", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101788, - 51.49341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.3, - "qmprice": 40.47, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161061698", - "info": { - "identifier": 161061698, - "sqm_ocr": 59.3, - "price": 2400.0, - "price_per_sqm": 40.472175379426645, - "url": "https://www.rightmove.co.uk/properties/161061698", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/161061698/15957_1296168_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.188910", - "last_seen": "2025-06-01T22:05:43.129423", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161003, - 51.548183 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.75, - "qmprice": 48.24, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161061809", - "info": { - "identifier": 161061809, - "sqm_ocr": 49.75, - "price": 2400.0, - "price_per_sqm": 48.24120603015076, - "url": "https://www.rightmove.co.uk/properties/161061809", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/161061809/84889_1322957_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.760366", - "last_seen": "2025-06-01T22:06:15.005666", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130162, - 51.493465 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161061899", - "info": { - "identifier": 161061899, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161061899", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219908/161061899/219908_3484_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.456819", - "last_seen": "2025-06-01T22:05:51.184539", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.479721, - 51.528732 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161061950", - "info": { - "identifier": 161061950, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161061950", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/161061950/247697_102708023292_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.962583", - "last_seen": "2025-06-01T22:05:53.603366", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11513, - 51.54865 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.7, - "qmprice": 27.19, - "rooms": 3, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/161061986", - "info": { - "identifier": 161061986, - "sqm_ocr": 82.7, - "price": 2249.0, - "price_per_sqm": 27.194679564691654, - "url": "https://www.rightmove.co.uk/properties/161061986", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/161061986/84791_33835349_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.682551", - "last_seen": "2025-06-01T22:05:44.497900", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305911, - 51.52017 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.8, - "qmprice": 31.51, - "rooms": 4, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/161061989", - "info": { - "identifier": 161061989, - "sqm_ocr": 126.8, - "price": 3995.0, - "price_per_sqm": 31.506309148264986, - "url": "https://www.rightmove.co.uk/properties/161061989", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/161061989/84791_33799791_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.284657, - 51.508102 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 36.76, - "rooms": 3, - "total_price": 3345.0, - "url": "https://www.rightmove.co.uk/properties/161062394", - "info": { - "identifier": 161062394, - "sqm_ocr": 91.0, - "price": 3345.0, - "price_per_sqm": 36.75824175824176, - "url": "https://www.rightmove.co.uk/properties/161062394", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237731/161062394/237731_a1GNz0000054MIPMA2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.493826", - "last_seen": "2025-06-01T22:05:49.868000", - "price": 3345.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05496, - 51.58901 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2480.0, - "url": "https://www.rightmove.co.uk/properties/161062745", - "info": { - "identifier": 161062745, - "sqm_ocr": null, - "price": 2480.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161062745", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/161062745/80340_a1G4J0000025xPaUAI_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.259418", - "last_seen": "2025-06-01T22:06:03.211500", - "price": 2480.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03293, - 51.50185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.0, - "qmprice": 48.0, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161062763", - "info": { - "identifier": 161062763, - "sqm_ocr": 50.0, - "price": 2400.0, - "price_per_sqm": 48.0, - "url": "https://www.rightmove.co.uk/properties/161062763", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "The Estate Company", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246440/161062763/246440_33835421_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.129505", - "last_seen": "2025-06-01T22:05:43.040245", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200177, - 51.54407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2480.0, - "url": "https://www.rightmove.co.uk/properties/161062898", - "info": { - "identifier": 161062898, - "sqm_ocr": null, - "price": 2480.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161062898", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/161062898/80340_a1G4J0000025xQ7UAI_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.849999", - "last_seen": "2025-06-01T22:06:02.870109", - "price": 2480.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03293, - 51.50185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.11, - "qmprice": 34.2, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161064515", - "info": { - "identifier": 161064515, - "sqm_ocr": 73.11, - "price": 2500.0, - "price_per_sqm": 34.19504855696895, - "url": "https://www.rightmove.co.uk/properties/161064515", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Helliwell & Co", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/244k/243986/161064515/243986_33829214_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.490740", - "last_seen": "2025-06-01T22:05:45.093631", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.306399, - 51.50532 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.95, - "qmprice": 28.91, - "rooms": 2, - "total_price": 2225.0, - "url": "https://www.rightmove.co.uk/properties/161065235", - "info": { - "identifier": 161065235, - "sqm_ocr": 76.95, - "price": 2225.0, - "price_per_sqm": 28.914879792072774, - "url": "https://www.rightmove.co.uk/properties/161065235", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 36, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/161065235/77192_705KING_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.974753", - "last_seen": "2025-06-01T22:05:39.840114", - "price": 2225.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17675, - 51.61275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/161065313", - "info": { - "identifier": 161065313, - "sqm_ocr": null, - "price": 3650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161065313", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/161065313/264878_CAN240211_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.941760", - "last_seen": "2025-06-01T22:06:11.284307", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067193, - 51.508953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 137.4, - "qmprice": 29.11, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161065400", - "info": { - "identifier": 161065400, - "sqm_ocr": 137.4, - "price": 4000.0, - "price_per_sqm": 29.112081513828237, - "url": "https://www.rightmove.co.uk/properties/161065400", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68507/161065400/68507_VPR210067_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.846945", - "last_seen": "2025-06-01T22:06:03.785132", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026796, - 51.584316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.63, - "qmprice": 65.05, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/161065784", - "info": { - "identifier": 161065784, - "sqm_ocr": 56.63, - "price": 3684.0, - "price_per_sqm": 65.05385837895108, - "url": "https://www.rightmove.co.uk/properties/161065784", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/161065784/76585_1323827_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.410296", - "last_seen": "2025-06-01T22:06:15.509499", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144436, - 51.521145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/161065967", - "info": { - "identifier": 161065967, - "sqm_ocr": null, - "price": 3987.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161065967", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "CHAMPS PROPERTY", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287132/161065967/287132_champs_908167552_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.169892", - "last_seen": "2025-06-01T22:05:55.575440", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220873, - 51.51174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/161066033", - "info": { - "identifier": 161066033, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161066033", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Chris Anthony Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/123k/122383/161066033/122383_1396_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.203587", - "last_seen": "2025-06-01T22:06:15.053334", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167122, - 51.5365 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/161066156", - "info": { - "identifier": 161066156, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161066156", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/161066156/163859_2712020_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.996930", - "last_seen": "2025-06-01T22:06:02.034041", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03047, - 51.50085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/161066267", - "info": { - "identifier": 161066267, - "sqm_ocr": null, - "price": 3987.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161066267", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "CHAMPS PROPERTY", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287132/161066267/287132_champs_1783924602_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.360088", - "last_seen": "2025-06-01T22:05:48.331948", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220873, - 51.51174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.3, - "qmprice": 31.71, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161066378", - "info": { - "identifier": 161066378, - "sqm_ocr": 88.3, - "price": 2800.0, - "price_per_sqm": 31.71007927519819, - "url": "https://www.rightmove.co.uk/properties/161066378", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161066378/15975_1323718_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.821712", - "last_seen": "2025-06-01T22:06:14.162533", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216204, - 51.438698 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161066492", - "info": { - "identifier": 161066492, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161066492", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64951/161066492/64951_P276644_IMG_09_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.211161", - "last_seen": "2025-06-01T22:05:39.987583", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.12635, - 51.46575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.17, - "qmprice": 56.85, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161066498", - "info": { - "identifier": 161066498, - "sqm_ocr": 57.17, - "price": 3250.0, - "price_per_sqm": 56.84799720132937, - "url": "https://www.rightmove.co.uk/properties/161066498", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/161066498/108515_1323627_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.962472", - "last_seen": "2025-06-01T22:05:58.143568", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195011, - 51.494186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161067224", - "info": { - "identifier": 161067224, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161067224", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Roundtree Real Estate", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46965/161067224/46965_57692_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.415602", - "last_seen": "2025-06-01T22:05:38.473288", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21711, - 51.589043 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.2, - "qmprice": 29.76, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161067320", - "info": { - "identifier": 161067320, - "sqm_ocr": 67.2, - "price": 2000.0, - "price_per_sqm": 29.76190476190476, - "url": "https://www.rightmove.co.uk/properties/161067320", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49030/161067320/49030_WML240029_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.818049", - "last_seen": "2025-06-01T22:05:58.608404", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254459, - 51.39821 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161067536", - "info": { - "identifier": 161067536, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161067536", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Circa Residential Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30897/161067536/30897_1BELFORD_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.847086", - "last_seen": "2025-06-01T22:06:02.871877", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02774, - 51.54972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161067995", - "info": { - "identifier": 161067995, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161067995", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161067995/96668_246114424042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.011139", - "last_seen": "2025-06-01T22:05:38.251896", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.084243, - 51.54056 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.0, - "qmprice": 33.0, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161068025", - "info": { - "identifier": 161068025, - "sqm_ocr": 100.0, - "price": 3300.0, - "price_per_sqm": 33.0, - "url": "https://www.rightmove.co.uk/properties/161068025", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "SAB - Saint Andrews Bureau Ltd", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105104/161068025/105104_103035004889_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.801687", - "last_seen": "2025-06-01T22:05:40.048783", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30557, - 51.55093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161068355", - "info": { - "identifier": 161068355, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161068355", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Nobledom", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242789/161068355/242789_scpl_365593816_IMG_00_0000_max_656x437.png", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.041250", - "last_seen": "2025-06-01T22:05:51.791998", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.362153, - 51.478798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161068499", - "info": { - "identifier": 161068499, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161068499", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Circa Residential Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30897/161068499/30897_2BELFORD_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.642942", - "last_seen": "2025-06-01T22:06:02.509269", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02774, - 51.54972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161069150", - "info": { - "identifier": 161069150, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161069150", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Circa Residential Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30897/161069150/30897_3BELFORD_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.716280", - "last_seen": "2025-06-01T22:06:02.422192", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02774, - 51.54972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3688.0, - "url": "https://www.rightmove.co.uk/properties/161069366", - "info": { - "identifier": 161069366, - "sqm_ocr": null, - "price": 3688.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161069366", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108373/161069366/108373_33835883_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.985118", - "last_seen": "2025-06-01T22:05:59.855263", - "price": 3687 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121323, - 51.49214 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.8, - "qmprice": 35.8, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161069537", - "info": { - "identifier": 161069537, - "sqm_ocr": 83.8, - "price": 3000.0, - "price_per_sqm": 35.79952267303103, - "url": "https://www.rightmove.co.uk/properties/161069537", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/161069537/96392_SVL240588_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.141269", - "last_seen": "2025-06-01T22:06:15.295026", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174276, - 51.53402 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161069711", - "info": { - "identifier": 161069711, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161069711", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Circa Residential Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30897/161069711/30897_4BELFORD_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.469361", - "last_seen": "2025-06-01T22:06:03.628904", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02774, - 51.54972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161070143", - "info": { - "identifier": 161070143, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161070143", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84812/161070143/84812_33835935_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.790651", - "last_seen": "2025-06-01T22:05:58.938641", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307235, - 51.397938 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.12, - "qmprice": 42.62, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161070653", - "info": { - "identifier": 161070653, - "sqm_ocr": 82.12, - "price": 3500.0, - "price_per_sqm": 42.62055528494885, - "url": "https://www.rightmove.co.uk/properties/161070653", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161070653/26207_IUL110117_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.595692", - "last_seen": "2025-06-01T22:05:53.753067", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097587, - 51.534863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.1, - "qmprice": 28.04, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161071211", - "info": { - "identifier": 161071211, - "sqm_ocr": 73.1, - "price": 2050.0, - "price_per_sqm": 28.043775649794803, - "url": "https://www.rightmove.co.uk/properties/161071211", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "John Payne", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34397/161071211/34397_P276645_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.031906", - "last_seen": "2025-06-01T22:06:00.954206", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00537, - 51.4516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 37.5, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161071247", - "info": { - "identifier": 161071247, - "sqm_ocr": 68.0, - "price": 2550.0, - "price_per_sqm": 37.5, - "url": "https://www.rightmove.co.uk/properties/161071247", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/161071247/56751_1323514_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.512838", - "last_seen": "2025-06-01T22:06:00.167695", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108564, - 51.464985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 137.73, - "qmprice": 23.6, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161071301", - "info": { - "identifier": 161071301, - "sqm_ocr": 137.73, - "price": 3250.0, - "price_per_sqm": 23.596892470776158, - "url": "https://www.rightmove.co.uk/properties/161071301", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/161071301/87812_1323844_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.270799", - "last_seen": "2025-06-01T22:05:39.343030", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216827, - 51.583637 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3490.0, - "url": "https://www.rightmove.co.uk/properties/161071376", - "info": { - "identifier": 161071376, - "sqm_ocr": null, - "price": 3490.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161071376", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12814/161071376/12814_EAM250424_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.981291", - "last_seen": "2025-06-01T22:05:44.845315", - "price": 3490.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.301023, - 51.528393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 38.59, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161071379", - "info": { - "identifier": 161071379, - "sqm_ocr": 73.0, - "price": 2817.0, - "price_per_sqm": 38.58904109589041, - "url": "https://www.rightmove.co.uk/properties/161071379", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "White Estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55629/161071379/55629_33836027_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.974101", - "last_seen": "2025-06-01T22:05:58.122236", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183435, - 51.49114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.29, - "qmprice": 53.93, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161071682", - "info": { - "identifier": 161071682, - "sqm_ocr": 64.29, - "price": 3467.0, - "price_per_sqm": 53.92751594338155, - "url": "https://www.rightmove.co.uk/properties/161071682", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/161071682/44537_TOL240304_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.405845", - "last_seen": "2025-06-01T22:06:00.033900", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.111877, - 51.500076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/161071730", - "info": { - "identifier": 161071730, - "sqm_ocr": null, - "price": 3098.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161071730", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Absolute Living", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91853/161071730/91853_33836070_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.227032", - "last_seen": "2025-06-01T22:06:13.320127", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171767, - 51.47026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161071757", - "info": { - "identifier": 161071757, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161071757", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/221k/220571/161071757/220571_P64428_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.818955", - "last_seen": "2025-06-01T22:06:03.982753", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06731, - 51.55722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.2, - "qmprice": 24.46, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161073320", - "info": { - "identifier": 161073320, - "sqm_ocr": 102.2, - "price": 2500.0, - "price_per_sqm": 24.461839530332682, - "url": "https://www.rightmove.co.uk/properties/161073320", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Conran Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17516/161073320/17516_LET250062_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.742239", - "last_seen": "2025-06-01T22:05:46.461333", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.073224, - 51.438427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.6, - "qmprice": 64.1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161074049", - "info": { - "identifier": 161074049, - "sqm_ocr": 54.6, - "price": 3500.0, - "price_per_sqm": 64.1025641025641, - "url": "https://www.rightmove.co.uk/properties/161074049", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/161074049/238265_L75359_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.767295", - "last_seen": "2025-06-01T22:05:59.382791", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12013, - 51.49199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161074442", - "info": { - "identifier": 161074442, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161074442", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Kings Group", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57562/161074442/57562_33836178_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.063117", - "last_seen": "2025-06-01T22:05:45.675600", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069956, - 51.65985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161075444", - "info": { - "identifier": 161075444, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161075444", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "The Online Letting Agents Ltd", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82831/161075444/82831_1056_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.413991", - "last_seen": "2025-06-01T22:06:12.615351", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21831, - 51.44532 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 134.5, - "qmprice": 29.74, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161075504", - "info": { - "identifier": 161075504, - "sqm_ocr": 134.5, - "price": 4000.0, - "price_per_sqm": 29.739776951672862, - "url": "https://www.rightmove.co.uk/properties/161075504", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51851/161075504/51851_PIO230118_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.198239", - "last_seen": "2025-06-01T22:05:50.209788", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3971, - 51.6041 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3595.0, - "url": "https://www.rightmove.co.uk/properties/161075585", - "info": { - "identifier": 161075585, - "sqm_ocr": null, - "price": 3595.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161075585", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Surrey Quays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60474/161075585/60474_000019204_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.361883", - "last_seen": "2025-06-01T22:06:05.973436", - "price": 3595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07825, - 51.49477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.23, - "qmprice": 32.85, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161076038", - "info": { - "identifier": 161076038, - "sqm_ocr": 85.23, - "price": 2800.0, - "price_per_sqm": 32.8522820603074, - "url": "https://www.rightmove.co.uk/properties/161076038", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161076038/15975_1323848_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.222342", - "last_seen": "2025-06-01T22:06:01.625791", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210282, - 51.420902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161076734", - "info": { - "identifier": 161076734, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161076734", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161076734/96668_245022013042025_IMG_25_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.693443", - "last_seen": "2025-06-01T22:06:02.454746", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.036338, - 51.50085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.05, - "qmprice": 49.96, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161077586", - "info": { - "identifier": 161077586, - "sqm_ocr": 70.05, - "price": 3500.0, - "price_per_sqm": 49.96431120628123, - "url": "https://www.rightmove.co.uk/properties/161077586", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279224/161077586/279224_WBL240087_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.102912", - "last_seen": "2025-06-01T22:05:59.696154", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124889, - 51.448406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3340.0, - "url": "https://www.rightmove.co.uk/properties/161077799", - "info": { - "identifier": 161077799, - "sqm_ocr": null, - "price": 3340.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161077799", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/161077799/78429_LON-314_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.848299", - "last_seen": "2025-06-01T22:06:08.075204", - "price": 3340.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07146, - 51.52402 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.16, - "qmprice": 59.61, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161078885", - "info": { - "identifier": 161078885, - "sqm_ocr": 58.16, - "price": 3467.0, - "price_per_sqm": 59.61141678129299, - "url": "https://www.rightmove.co.uk/properties/161078885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157817/161078885/157817_2698718_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.491990", - "last_seen": "2025-06-01T22:06:08.339191", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01879, - 51.50082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.8, - "qmprice": 35.28, - "rooms": 4, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/161079119", - "info": { - "identifier": 161079119, - "sqm_ocr": 87.8, - "price": 3098.0, - "price_per_sqm": 35.28473804100228, - "url": "https://www.rightmove.co.uk/properties/161079119", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/161079119/84833_33836486_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.216864", - "last_seen": "2025-06-01T22:05:48.592573", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.233317, - 51.515427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.4, - "qmprice": 40.37, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161079344", - "info": { - "identifier": 161079344, - "sqm_ocr": 64.4, - "price": 2600.0, - "price_per_sqm": 40.37267080745341, - "url": "https://www.rightmove.co.uk/properties/161079344", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "ea2", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10387/161079344/10387_33827513_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.290629", - "last_seen": "2025-06-01T22:06:10.414841", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068743, - 51.505318 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.9, - "qmprice": 24.53, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161079749", - "info": { - "identifier": 161079749, - "sqm_ocr": 101.9, - "price": 2500.0, - "price_per_sqm": 24.53385672227674, - "url": "https://www.rightmove.co.uk/properties/161079749", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Arbon & Miller", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10099/161079749/10099_33836534_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.957682", - "last_seen": "2025-06-01T22:06:04.114627", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0771, - 51.600864 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161079770", - "info": { - "identifier": 161079770, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161079770", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161079770/96668_245467717042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.975740", - "last_seen": "2025-06-01T22:06:04.130124", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.117754, - 51.58515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.37, - "qmprice": 35.93, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161079947", - "info": { - "identifier": 161079947, - "sqm_ocr": 72.37, - "price": 2600.0, - "price_per_sqm": 35.92648887660633, - "url": "https://www.rightmove.co.uk/properties/161079947", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/161079947/44537_HEA213487_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.570808", - "last_seen": "2025-06-01T22:06:05.234921", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096111, - 51.495308 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.8, - "qmprice": 20.55, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161080211", - "info": { - "identifier": 161080211, - "sqm_ocr": 116.8, - "price": 2400.0, - "price_per_sqm": 20.547945205479454, - "url": "https://www.rightmove.co.uk/properties/161080211", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Spencer James Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283697/161080211/283697_11897_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.864367", - "last_seen": "2025-06-01T22:06:02.832568", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.074117, - 51.501293 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2420.0, - "url": "https://www.rightmove.co.uk/properties/161080226", - "info": { - "identifier": 161080226, - "sqm_ocr": null, - "price": 2420.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161080226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Urban Bubble", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263291/161080226/263291_LBA20003_IMG_21_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.851420", - "last_seen": "2025-06-01T22:06:00.735767", - "price": 2420.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01376, - 51.46672 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161080235", - "info": { - "identifier": 161080235, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161080235", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Sonia Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181958/161080235/181958_sonia_1833607137_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.940658", - "last_seen": "2025-06-01T22:05:50.603803", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.329846, - 51.581722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.32, - "qmprice": 43.91, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161080256", - "info": { - "identifier": 161080256, - "sqm_ocr": 68.32, - "price": 3000.0, - "price_per_sqm": 43.91100702576113, - "url": "https://www.rightmove.co.uk/properties/161080256", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/161080256/84875_33836568_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.037182", - "last_seen": "2025-06-01T22:05:59.787622", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131174, - 51.462624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161080313", - "info": { - "identifier": 161080313, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161080313", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stamfords", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18209/161080313/18209_33836578_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.119555", - "last_seen": "2025-06-01T22:05:51.947533", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.362457, - 51.47045 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161080340", - "info": { - "identifier": 161080340, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161080340", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93215/161080340/93215_MAL240029_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.741693", - "last_seen": "2025-06-01T22:06:14.931881", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144251, - 51.52133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.9, - "qmprice": 45.69, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161080463", - "info": { - "identifier": 161080463, - "sqm_ocr": 56.9, - "price": 2600.0, - "price_per_sqm": 45.69420035149385, - "url": "https://www.rightmove.co.uk/properties/161080463", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Homesforth Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280625/161080463/280625_HOMFR_000857_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.157943", - "last_seen": "2025-06-01T22:05:42.531670", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196549, - 51.555042 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.9, - "qmprice": 42.82, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161080514", - "info": { - "identifier": 161080514, - "sqm_ocr": 68.9, - "price": 2950.0, - "price_per_sqm": 42.815674891146585, - "url": "https://www.rightmove.co.uk/properties/161080514", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161080514/15975_1323859_IMG_08_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.649339", - "last_seen": "2025-06-01T22:06:01.128600", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213176, - 51.41381 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/161080703", - "info": { - "identifier": 161080703, - "sqm_ocr": null, - "price": 3120.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161080703", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Smarthost", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288713/161080703/288713_WomersleyRd_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.420147", - "last_seen": "2025-06-01T22:05:50.002463", - "price": 3120.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11784, - 51.57729 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161080862", - "info": { - "identifier": 161080862, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161080862", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Sure Sales & Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/9k/8313/161080862/8313_SRH_SRL_LFSYCL_534_704415809_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.054308", - "last_seen": "2025-06-01T22:05:47.229315", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088554, - 51.528763 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.69, - "qmprice": 46.72, - "rooms": 2, - "total_price": 2882.0, - "url": "https://www.rightmove.co.uk/properties/161081471", - "info": { - "identifier": 161081471, - "sqm_ocr": 61.69, - "price": 2882.0, - "price_per_sqm": 46.71745825903712, - "url": "https://www.rightmove.co.uk/properties/161081471", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices London", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36222/161081471/36222_MRL210081_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.918049", - "last_seen": "2025-06-01T22:05:42.205959", - "price": 2881 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143532, - 51.526836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.8, - "qmprice": 36.5, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161081702", - "info": { - "identifier": 161081702, - "sqm_ocr": 54.8, - "price": 2000.0, - "price_per_sqm": 36.496350364963504, - "url": "https://www.rightmove.co.uk/properties/161081702", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/242k/241370/161081702/241370_33836676_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.167238", - "last_seen": "2025-06-01T22:06:06.924068", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070658, - 51.478855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.21, - "qmprice": 39.9, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161082992", - "info": { - "identifier": 161082992, - "sqm_ocr": 85.21, - "price": 3400.0, - "price_per_sqm": 39.90142002112428, - "url": "https://www.rightmove.co.uk/properties/161082992", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117766/161082992/117766_BBL230067_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.088204", - "last_seen": "2025-06-01T22:06:13.656716", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161109, - 51.474564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.17, - "qmprice": 23.36, - "rooms": 3, - "total_price": 2574.0, - "url": "https://www.rightmove.co.uk/properties/161083064", - "info": { - "identifier": 161083064, - "sqm_ocr": 110.17, - "price": 2574.0, - "price_per_sqm": 23.36389216665154, - "url": "https://www.rightmove.co.uk/properties/161083064", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Avrasons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38414/161083064/38414_402052_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.474838", - "last_seen": "2025-06-01T22:06:00.119989", - "price": 2574 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12647, - 51.44452 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.8, - "qmprice": 36.22, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161083217", - "info": { - "identifier": 161083217, - "sqm_ocr": 82.8, - "price": 2999.0, - "price_per_sqm": 36.21980676328503, - "url": "https://www.rightmove.co.uk/properties/161083217", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53654/161083217/53654_33836784_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.458727", - "last_seen": "2025-06-01T22:06:12.686201", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17869, - 51.468925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.05, - "qmprice": 51.48, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161083292", - "info": { - "identifier": 161083292, - "sqm_ocr": 66.05, - "price": 3400.0, - "price_per_sqm": 51.47615442846329, - "url": "https://www.rightmove.co.uk/properties/161083292", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51301/161083292/51301_KEL230099_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.855888", - "last_seen": "2025-06-01T22:05:48.364544", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212305, - 51.49836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.71, - "qmprice": 25.08, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161083913", - "info": { - "identifier": 161083913, - "sqm_ocr": 91.71, - "price": 2300.0, - "price_per_sqm": 25.079053538327337, - "url": "https://www.rightmove.co.uk/properties/161083913", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Daniels", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/25k/24347/161083913/24347_33836836_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.870925", - "last_seen": "2025-06-01T22:05:41.173239", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.272587, - 51.55358 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2643.0, - "url": "https://www.rightmove.co.uk/properties/161083997", - "info": { - "identifier": 161083997, - "sqm_ocr": null, - "price": 2643.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161083997", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161083997/17888_29237_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.138646", - "last_seen": "2025-06-01T22:05:43.050289", - "price": 2643 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14271, - 51.52661 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161084972", - "info": { - "identifier": 161084972, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161084972", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247910/161084972/247910_680a19a84779f_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.486102", - "last_seen": "2025-06-01T22:05:57.811595", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18065, - 51.5005 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.0, - "qmprice": 32.48, - "rooms": 2, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/161086244", - "info": { - "identifier": 161086244, - "sqm_ocr": 123.0, - "price": 3995.0, - "price_per_sqm": 32.479674796747965, - "url": "https://www.rightmove.co.uk/properties/161086244", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/161086244/52887_33837063_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.428703", - "last_seen": "2025-06-01T22:06:01.038996", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224575, - 51.41788 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161086487", - "info": { - "identifier": 161086487, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161086487", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161086487/96668_244357107042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.462512", - "last_seen": "2025-06-01T22:06:03.635686", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02122, - 51.50885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161086763", - "info": { - "identifier": 161086763, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161086763", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161086763/96668_229366814112024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.997121", - "last_seen": "2025-06-01T22:06:09.583355", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029776, - 51.51816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.8, - "qmprice": 31.88, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161088452", - "info": { - "identifier": 161088452, - "sqm_ocr": 98.8, - "price": 3150.0, - "price_per_sqm": 31.88259109311741, - "url": "https://www.rightmove.co.uk/properties/161088452", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112915/161088452/112915_P299445_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.310482", - "last_seen": "2025-06-01T22:05:46.112655", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01327, - 51.497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.8, - "qmprice": 46.93, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161089340", - "info": { - "identifier": 161089340, - "sqm_ocr": 61.8, - "price": 2900.0, - "price_per_sqm": 46.92556634304207, - "url": "https://www.rightmove.co.uk/properties/161089340", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/161089340/76585_1323892_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.064880", - "last_seen": "2025-06-01T22:06:16.088107", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170245, - 51.515877 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.0, - "qmprice": 29.38, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161089379", - "info": { - "identifier": 161089379, - "sqm_ocr": 97.0, - "price": 2850.0, - "price_per_sqm": 29.38144329896907, - "url": "https://www.rightmove.co.uk/properties/161089379", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161089379/87187_23726_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.069262, - 51.492905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.32, - "qmprice": 28.87, - "rooms": 2, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/161089538", - "info": { - "identifier": 161089538, - "sqm_ocr": 107.32, - "price": 3098.0, - "price_per_sqm": 28.86693999254566, - "url": "https://www.rightmove.co.uk/properties/161089538", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "CHAMPS PROPERTY", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287132/161089538/287132_champs_441983202_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.069958", - "last_seen": "2025-06-01T22:05:47.254111", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084697, - 51.573395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.24, - "qmprice": 31.7, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161090099", - "info": { - "identifier": 161090099, - "sqm_ocr": 66.24, - "price": 2100.0, - "price_per_sqm": 31.70289855072464, - "url": "https://www.rightmove.co.uk/properties/161090099", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Pinnacle Housing Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212189/161090099/212189_2940_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.572068", - "last_seen": "2025-06-01T22:06:02.600891", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03943, - 51.502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 52.78, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161090195", - "info": { - "identifier": 161090195, - "sqm_ocr": 72.0, - "price": 3800.0, - "price_per_sqm": 52.77777777777778, - "url": "https://www.rightmove.co.uk/properties/161090195", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/201k/200876/161090195/200876_NBC171310_L_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.653749", - "last_seen": "2025-06-01T22:06:13.934607", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137989, - 51.48156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.5, - "qmprice": 43.7, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161090468", - "info": { - "identifier": 161090468, - "sqm_ocr": 59.5, - "price": 2600.0, - "price_per_sqm": 43.69747899159664, - "url": "https://www.rightmove.co.uk/properties/161090468", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Heathgate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51753/161090468/51753_82969_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.724071", - "last_seen": "2025-06-01T22:05:57.291252", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196039, - 51.556362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/161091644", - "info": { - "identifier": 161091644, - "sqm_ocr": null, - "price": 3995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161091644", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Robert Holmes & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72701/161091644/72701_WIL210013_L_IMG_07_0001_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.572726", - "last_seen": "2025-06-01T22:06:01.301984", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224386, - 51.417797 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161092361", - "info": { - "identifier": 161092361, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161092361", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Barnfields Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3843/161092361/3843_P3590E1724_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.092303", - "last_seen": "2025-06-01T22:05:45.531174", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07004, - 51.65978 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.3, - "qmprice": 37.82, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161093420", - "info": { - "identifier": 161093420, - "sqm_ocr": 83.3, - "price": 3150.0, - "price_per_sqm": 37.81512605042017, - "url": "https://www.rightmove.co.uk/properties/161093420", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "April", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75126/161093420/75126_APR250036_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.629828", - "last_seen": "2025-06-01T22:06:02.529636", - "price": 3150 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017132, - 51.515057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161094131", - "info": { - "identifier": 161094131, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161094131", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "City and Town Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80802/161094131/80802_2-Bed-House-N16_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.472087", - "last_seen": "2025-06-01T22:05:56.438585", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07435, - 51.5613 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161094290", - "info": { - "identifier": 161094290, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161094290", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7189/161094290/7189_33837551_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.068206", - "last_seen": "2025-06-01T22:06:01.033367", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042736, - 51.450905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.8, - "qmprice": 37.93, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/161094356", - "info": { - "identifier": 161094356, - "sqm_ocr": 73.8, - "price": 2799.0, - "price_per_sqm": 37.926829268292686, - "url": "https://www.rightmove.co.uk/properties/161094356", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85129/161094356/85129_KNL090247_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.963564", - "last_seen": "2025-06-01T22:05:58.151012", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18896, - 51.4937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.9, - "qmprice": 41.15, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161094506", - "info": { - "identifier": 161094506, - "sqm_ocr": 72.9, - "price": 3000.0, - "price_per_sqm": 41.15226337448559, - "url": "https://www.rightmove.co.uk/properties/161094506", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/161094506/73120_1322745_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.047028", - "last_seen": "2025-06-01T22:05:53.492403", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090177, - 51.526165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161094572", - "info": { - "identifier": 161094572, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161094572", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161094572/43310_CWL250175_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.982665", - "last_seen": "2025-06-01T22:06:09.561249", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021038, - 51.501293 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.56, - "qmprice": 45.58, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161094692", - "info": { - "identifier": 161094692, - "sqm_ocr": 85.56, - "price": 3900.0, - "price_per_sqm": 45.5820476858345, - "url": "https://www.rightmove.co.uk/properties/161094692", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161094692/87187_60754_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.706587", - "last_seen": "2025-06-01T22:06:14.005925", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147066, - 51.479218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.1, - "qmprice": 21.54, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161095118", - "info": { - "identifier": 161095118, - "sqm_ocr": 109.1, - "price": 2350.0, - "price_per_sqm": 21.53987167736022, - "url": "https://www.rightmove.co.uk/properties/161095118", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161095118/96668_246180724042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.171804", - "last_seen": "2025-06-01T22:06:05.015635", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057587, - 51.48531 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161095448", - "info": { - "identifier": 161095448, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161095448", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "ABACO Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/184k/183806/161095448/183806_33837623_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.579922", - "last_seen": "2025-06-01T22:05:42.782546", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14199, - 51.543083 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161095523", - "info": { - "identifier": 161095523, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161095523", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Lawrence Rand", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46205/161095523/46205_063b4693-7ccd-4d52-8d47-7d13ad04e11f_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.465141", - "last_seen": "2025-06-01T22:05:51.195709", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.40178, - 51.564034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.5, - "qmprice": 38.7, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/161095793", - "info": { - "identifier": 161095793, - "sqm_ocr": 64.5, - "price": 2496.0, - "price_per_sqm": 38.69767441860465, - "url": "https://www.rightmove.co.uk/properties/161095793", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/161095793/84788_33837651_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.178408", - "last_seen": "2025-06-01T22:05:52.423853", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283953, - 51.490166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/161095994", - "info": { - "identifier": 161095994, - "sqm_ocr": null, - "price": 2349.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161095994", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50719/161095994/50719_33837668_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.503917", - "last_seen": "2025-06-01T22:05:58.279221", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204025, - 51.515102 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 51.41, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/161096120", - "info": { - "identifier": 161096120, - "sqm_ocr": 71.0, - "price": 3650.0, - "price_per_sqm": 51.40845070422535, - "url": "https://www.rightmove.co.uk/properties/161096120", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Noble House Services", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274046/161096120/274046_33837677_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.431041", - "last_seen": "2025-06-01T22:05:53.947133", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098371, - 51.530552 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.62, - "qmprice": 37.67, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161096405", - "info": { - "identifier": 161096405, - "sqm_ocr": 79.62, - "price": 2999.0, - "price_per_sqm": 37.66641547349912, - "url": "https://www.rightmove.co.uk/properties/161096405", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "BrownRok", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/252k/251270/161096405/251270_103661000146_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.297263", - "last_seen": "2025-06-01T22:05:58.347240", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19474, - 51.49046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161096444", - "info": { - "identifier": 161096444, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161096444", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Peter Martin", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202550/161096444/202550_PMLL_004280_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.951042", - "last_seen": "2025-06-01T22:06:15.921961", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187726, - 51.52864 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.7, - "qmprice": 41.93, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161096453", - "info": { - "identifier": 161096453, - "sqm_ocr": 78.7, - "price": 3300.0, - "price_per_sqm": 41.93138500635324, - "url": "https://www.rightmove.co.uk/properties/161096453", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161096453/253853_1323875_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.129389", - "last_seen": "2025-06-01T22:06:06.896317", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09691, - 51.491966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.5, - "qmprice": 32.34, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161096510", - "info": { - "identifier": 161096510, - "sqm_ocr": 83.5, - "price": 2700.0, - "price_per_sqm": 32.33532934131737, - "url": "https://www.rightmove.co.uk/properties/161096510", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/161096510/108947_1323936_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.953277", - "last_seen": "2025-06-01T22:05:50.585178", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.341056, - 51.579884 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.9, - "qmprice": 28.43, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161096558", - "info": { - "identifier": 161096558, - "sqm_ocr": 80.9, - "price": 2300.0, - "price_per_sqm": 28.430160692212606, - "url": "https://www.rightmove.co.uk/properties/161096558", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161096558/96668_246126324042025_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.065288", - "last_seen": "2025-06-01T22:05:44.742272", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.381115, - 51.496857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161097548", - "info": { - "identifier": 161097548, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161097548", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161097548/96668_239962526022025_IMG_22_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.057869", - "last_seen": "2025-06-01T22:05:42.986184", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206885, - 51.55394 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/161097617", - "info": { - "identifier": 161097617, - "sqm_ocr": null, - "price": 3402.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161097617", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161097617/96668_133965908032022_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.992011", - "last_seen": "2025-06-01T22:05:47.641950", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088429, - 51.53187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161098514", - "info": { - "identifier": 161098514, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161098514", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77583/161098514/77583_YLT250026_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.523092", - "last_seen": "2025-06-01T22:06:04.531374", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.335903, - 51.430115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.5, - "qmprice": 40.75, - "rooms": 2, - "total_price": 3077.0, - "url": "https://www.rightmove.co.uk/properties/161098655", - "info": { - "identifier": 161098655, - "sqm_ocr": 75.5, - "price": 3077.0, - "price_per_sqm": 40.75496688741722, - "url": "https://www.rightmove.co.uk/properties/161098655", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/161098655/108515_1323636_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.264400", - "last_seen": "2025-06-01T22:05:57.981717", - "price": 3077.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191806, - 51.49401 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.8, - "qmprice": 41.75, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161098799", - "info": { - "identifier": 161098799, - "sqm_ocr": 95.8, - "price": 4000.0, - "price_per_sqm": 41.75365344467641, - "url": "https://www.rightmove.co.uk/properties/161098799", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "HERE TO SELL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258728/161098799/258728_HLV-77909904_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.480449", - "last_seen": "2025-06-01T22:05:49.909389", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095119, - 51.587425 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161099051", - "info": { - "identifier": 161099051, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161099051", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161099051/96668_245975823042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.245696, - 51.49561 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.8, - "qmprice": 48.0, - "rooms": 2, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/161099948", - "info": { - "identifier": 161099948, - "sqm_ocr": 80.8, - "price": 3878.0, - "price_per_sqm": 47.995049504950494, - "url": "https://www.rightmove.co.uk/properties/161099948", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54732/161099948/54732_STL250037_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.317324", - "last_seen": "2025-06-01T22:06:15.689210", - "price": 3878.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171698, - 51.5242 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161100038", - "info": { - "identifier": 161100038, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161100038", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161100038/96668_240244328022025_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.367763", - "last_seen": "2025-06-01T22:05:44.487805", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.361173, - 51.518593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161101292", - "info": { - "identifier": 161101292, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161101292", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161101292/96668_245531917042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.333810", - "last_seen": "2025-06-01T22:05:59.669900", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109333, - 51.440693 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.68, - "qmprice": 33.89, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161103668", - "info": { - "identifier": 161103668, - "sqm_ocr": 79.68, - "price": 2700.0, - "price_per_sqm": 33.8855421686747, - "url": "https://www.rightmove.co.uk/properties/161103668", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Niche Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/197k/196184/161103668/196184_600_IMG_16_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.459289", - "last_seen": "2025-06-01T22:05:49.983293", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12337, - 51.60777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.8, - "qmprice": 48.52, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161105201", - "info": { - "identifier": 161105201, - "sqm_ocr": 60.8, - "price": 2950.0, - "price_per_sqm": 48.51973684210527, - "url": "https://www.rightmove.co.uk/properties/161105201", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19269/161105201/19269_BET220001_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.756419", - "last_seen": "2025-06-01T22:06:09.332925", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056841, - 51.522324 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 39.55, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161105909", - "info": { - "identifier": 161105909, - "sqm_ocr": 67.0, - "price": 2650.0, - "price_per_sqm": 39.55223880597015, - "url": "https://www.rightmove.co.uk/properties/161105909", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/161105909/52887_33838075_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.235428", - "last_seen": "2025-06-01T22:06:01.641549", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219694, - 51.421394 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161106476", - "info": { - "identifier": 161106476, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161106476", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48456/161106476/48456_YLA250045_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.490399", - "last_seen": "2025-06-01T22:06:04.770710", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32018, - 51.455013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.0, - "qmprice": 18.6, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161106869", - "info": { - "identifier": 161106869, - "sqm_ocr": 121.0, - "price": 2250.0, - "price_per_sqm": 18.59504132231405, - "url": "https://www.rightmove.co.uk/properties/161106869", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Oakhill", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88216/161106869/88216_c45a1c6c-c2f6-45c8-8d88-9230d63b4eb9_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.366798", - "last_seen": "2025-06-01T22:05:52.411537", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.339524, - 51.479885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 36.07, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161107277", - "info": { - "identifier": 161107277, - "sqm_ocr": 61.0, - "price": 2200.0, - "price_per_sqm": 36.0655737704918, - "url": "https://www.rightmove.co.uk/properties/161107277", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13325/161107277/13325_CHL140045_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.925245", - "last_seen": "2025-06-01T22:05:52.345163", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26942, - 51.49206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2655.0, - "url": "https://www.rightmove.co.uk/properties/161107832", - "info": { - "identifier": 161107832, - "sqm_ocr": null, - "price": 2655.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161107832", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262865/161107832/262865_a1G8d000002QBP0EAO_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.948402", - "last_seen": "2025-06-01T22:06:02.079839", - "price": 2655.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00996, - 51.51357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.8, - "qmprice": 34.03, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161108123", - "info": { - "identifier": 161108123, - "sqm_ocr": 105.8, - "price": 3600.0, - "price_per_sqm": 34.02646502835539, - "url": "https://www.rightmove.co.uk/properties/161108123", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118693/161108123/118693_33838214_IMG_18_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.408317", - "last_seen": "2025-06-01T22:05:47.422725", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080821, - 51.53938 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161108510", - "info": { - "identifier": 161108510, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161108510", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CROWN HOME BUYING AND LETTING", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287774/161108510/287774_RL0905_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.545196", - "last_seen": "2025-06-01T22:06:02.656873", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.023839, - 51.513847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161108651", - "info": { - "identifier": 161108651, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161108651", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Eden Harper", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67498/161108651/67498_33838164_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.351882", - "last_seen": "2025-06-01T22:05:59.856845", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118073, - 51.48176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.2, - "qmprice": 35.51, - "rooms": 2, - "total_price": 2635.0, - "url": "https://www.rightmove.co.uk/properties/161109449", - "info": { - "identifier": 161109449, - "sqm_ocr": 74.2, - "price": 2635.0, - "price_per_sqm": 35.512129380053906, - "url": "https://www.rightmove.co.uk/properties/161109449", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/161109449/80340_a1G4J000002607SUAQ_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.880937", - "last_seen": "2025-06-01T22:06:02.895166", - "price": 2635.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00901, - 51.51485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.4, - "qmprice": 30.12, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161109779", - "info": { - "identifier": 161109779, - "sqm_ocr": 66.4, - "price": 2000.0, - "price_per_sqm": 30.12048192771084, - "url": "https://www.rightmove.co.uk/properties/161109779", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Spencer James Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283697/161109779/283697_13498_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:56.943873", - "last_seen": "2025-06-01T20:19:56.943873", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.001271, - 51.50964 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.5, - "qmprice": 37.67, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/161109944", - "info": { - "identifier": 161109944, - "sqm_ocr": 79.5, - "price": 2995.0, - "price_per_sqm": 37.672955974842765, - "url": "https://www.rightmove.co.uk/properties/161109944", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Butler & Stag", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/145k/144140/161109944/144140_33293616_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.029467", - "last_seen": "2025-06-01T22:06:11.430481", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05297, - 51.515404 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.3, - "qmprice": 33.21, - "rooms": 3, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/161110226", - "info": { - "identifier": 161110226, - "sqm_ocr": 108.3, - "price": 3597.0, - "price_per_sqm": 33.21329639889197, - "url": "https://www.rightmove.co.uk/properties/161110226", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/161110226/84788_33838365_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.203541", - "last_seen": "2025-06-01T22:05:52.589988", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.266462, - 51.479424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.05, - "qmprice": 40.48, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161110673", - "info": { - "identifier": 161110673, - "sqm_ocr": 58.05, - "price": 2350.0, - "price_per_sqm": 40.482342807924205, - "url": "https://www.rightmove.co.uk/properties/161110673", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Jo & Co Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283895/161110673/283895_8b5319c2-70f9-43fb-ab8e-2fdf627df5f9_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.570843", - "last_seen": "2025-06-01T22:06:13.918398", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147059, - 51.47409 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.28, - "qmprice": 35.17, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161111246", - "info": { - "identifier": 161111246, - "sqm_ocr": 85.28, - "price": 2999.0, - "price_per_sqm": 35.16651031894934, - "url": "https://www.rightmove.co.uk/properties/161111246", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hanover", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74440/161111246/74440_HNV140364_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.203849", - "last_seen": "2025-06-01T22:06:15.142804", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1744, - 51.53405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161111480", - "info": { - "identifier": 161111480, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161111480", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Andre Joseph Estates Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74973/161111480/74973_675762_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.082105", - "last_seen": "2025-06-01T22:06:06.339097", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097784, - 51.487465 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.2, - "qmprice": 31.0, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161111858", - "info": { - "identifier": 161111858, - "sqm_ocr": 74.2, - "price": 2300.0, - "price_per_sqm": 30.99730458221024, - "url": "https://www.rightmove.co.uk/properties/161111858", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/161111858/264326_Y80536_1_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.990196", - "last_seen": "2025-06-01T22:05:41.428377", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.245001, - 51.55343 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161111882", - "info": { - "identifier": 161111882, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161111882", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161111882/96668_245302615042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.568229", - "last_seen": "2025-06-01T17:39:05.102099", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027843, - 51.51045 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161112062", - "info": { - "identifier": 161112062, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161112062", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161112062/87187_71279_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.628366", - "last_seen": "2025-06-01T22:05:47.099695", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.069262, - 51.492905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.9, - "qmprice": 42.25, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161112641", - "info": { - "identifier": 161112641, - "sqm_ocr": 63.9, - "price": 2700.0, - "price_per_sqm": 42.25352112676057, - "url": "https://www.rightmove.co.uk/properties/161112641", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/161112641/15948_1323249_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.529077", - "last_seen": "2025-06-01T22:05:48.434068", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201232, - 51.481045 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161112920", - "info": { - "identifier": 161112920, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161112920", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Connor Prince", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/24k/23486/161112920/23486_Let1038a_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.413340", - "last_seen": "2025-06-01T22:06:07.876026", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22331, - 51.37786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.2, - "qmprice": 34.57, - "rooms": 2, - "total_price": 2565.0, - "url": "https://www.rightmove.co.uk/properties/161113106", - "info": { - "identifier": 161113106, - "sqm_ocr": 74.2, - "price": 2565.0, - "price_per_sqm": 34.56873315363881, - "url": "https://www.rightmove.co.uk/properties/161113106", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/161113106/80340_a1G4J0000025zuRUAQ_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.268005", - "last_seen": "2025-06-01T22:06:03.345389", - "price": 2565.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00901, - 51.51485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.9, - "qmprice": 32.24, - "rooms": 2, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/161113202", - "info": { - "identifier": 161113202, - "sqm_ocr": 123.9, - "price": 3995.0, - "price_per_sqm": 32.24374495560936, - "url": "https://www.rightmove.co.uk/properties/161113202", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49030/161113202/49030_WML210018_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.296426", - "last_seen": "2025-06-01T22:06:01.549755", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224461, - 51.417854 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.8, - "qmprice": 40.49, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161113352", - "info": { - "identifier": 161113352, - "sqm_ocr": 98.8, - "price": 4000.0, - "price_per_sqm": 40.48582995951417, - "url": "https://www.rightmove.co.uk/properties/161113352", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22011/161113352/22011_KNS170105_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.202436", - "last_seen": "2025-06-01T22:05:57.542556", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192296, - 51.499393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161113934", - "info": { - "identifier": 161113934, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161113934", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Emoov", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/181k/180266/161113934/180266_1484_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.193529", - "last_seen": "2025-06-01T22:06:15.161460", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143594, - 51.49084 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.86, - "qmprice": 33.59, - "rooms": 3, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/161114741", - "info": { - "identifier": 161114741, - "sqm_ocr": 63.86, - "price": 2145.0, - "price_per_sqm": 33.58910115878484, - "url": "https://www.rightmove.co.uk/properties/161114741", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51316/161114741/51316_HEA255475_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.981094", - "last_seen": "2025-06-01T22:05:41.413240", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228991, - 51.545616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161116322", - "info": { - "identifier": 161116322, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161116322", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Orient Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283391/161116322/283391_1398_ORES_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.068425", - "last_seen": "2025-06-01T22:05:39.020400", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232317, - 51.584778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.3, - "qmprice": 63.1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161116532", - "info": { - "identifier": 161116532, - "sqm_ocr": 52.3, - "price": 3300.0, - "price_per_sqm": 63.09751434034417, - "url": "https://www.rightmove.co.uk/properties/161116532", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Completion Sales & Lettings Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12604/161116532/12604_33838798_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.776221", - "last_seen": "2025-06-01T22:06:11.828301", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.030096, - 51.5896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.6, - "qmprice": 36.44, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161117042", - "info": { - "identifier": 161117042, - "sqm_ocr": 68.6, - "price": 2500.0, - "price_per_sqm": 36.44314868804665, - "url": "https://www.rightmove.co.uk/properties/161117042", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99865/161117042/99865_33838826_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.670994", - "last_seen": "2025-06-01T22:05:59.441781", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132748, - 51.450638 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2575.0, - "url": "https://www.rightmove.co.uk/properties/161117189", - "info": { - "identifier": 161117189, - "sqm_ocr": null, - "price": 2575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161117189", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "STONEBANKS UK LTD", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272417/161117189/272417_33838562_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.926077", - "last_seen": "2025-06-01T22:05:41.320393", - "price": 2575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.248665, - 51.535114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 31.85, - "rooms": 2, - "total_price": 2070.0, - "url": "https://www.rightmove.co.uk/properties/161117234", - "info": { - "identifier": 161117234, - "sqm_ocr": 65.0, - "price": 2070.0, - "price_per_sqm": 31.846153846153847, - "url": "https://www.rightmove.co.uk/properties/161117234", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Live London Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141884/161117234/141884_Oakhaven_2bed_Large1_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.342260", - "last_seen": "2025-06-01T22:05:39.317518", - "price": 2070.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17711, - 51.61668 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.75, - "qmprice": 37.82, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161117345", - "info": { - "identifier": 161117345, - "sqm_ocr": 68.75, - "price": 2600.0, - "price_per_sqm": 37.81818181818182, - "url": "https://www.rightmove.co.uk/properties/161117345", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/161117345/44537_HEA247159_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.247564", - "last_seen": "2025-06-01T22:06:05.345880", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068313, - 51.50121 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 46.43, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161118077", - "info": { - "identifier": 161118077, - "sqm_ocr": 70.0, - "price": 3250.0, - "price_per_sqm": 46.42857142857143, - "url": "https://www.rightmove.co.uk/properties/161118077", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/161118077/15945_1323970_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.641620", - "last_seen": "2025-06-01T22:06:14.538768", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18534, - 51.516804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 30.48, - "rooms": 3, - "total_price": 2225.0, - "url": "https://www.rightmove.co.uk/properties/161118350", - "info": { - "identifier": 161118350, - "sqm_ocr": 73.0, - "price": 2225.0, - "price_per_sqm": 30.47945205479452, - "url": "https://www.rightmove.co.uk/properties/161118350", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Live London Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141884/161118350/141884_Oakhaven_3bed_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.380810", - "last_seen": "2025-06-01T22:05:39.151508", - "price": 2225.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17711, - 51.61668 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.31, - "qmprice": 22.78, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161118785", - "info": { - "identifier": 161118785, - "sqm_ocr": 116.31, - "price": 2650.0, - "price_per_sqm": 22.78393947210042, - "url": "https://www.rightmove.co.uk/properties/161118785", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Pinnacle Housing Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212189/161118785/212189_2955_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.340409", - "last_seen": "2025-06-01T22:06:03.496701", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03958, - 51.50227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161119274", - "info": { - "identifier": 161119274, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161119274", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/161119274/275489_25042025-CN362-JC2306108_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.109022", - "last_seen": "2025-06-01T22:05:48.601120", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228506, - 51.494244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161119868", - "info": { - "identifier": 161119868, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161119868", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "GCP", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/196k/195305/161119868/195305_31Dalston_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.198859", - "last_seen": "2025-06-01T22:05:47.926038", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07578, - 51.54792 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.13, - "qmprice": 37.77, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161120774", - "info": { - "identifier": 161120774, - "sqm_ocr": 74.13, - "price": 2800.0, - "price_per_sqm": 37.77148253068933, - "url": "https://www.rightmove.co.uk/properties/161120774", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Elms Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71927/161120774/71927_33839023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.419474", - "last_seen": "2025-06-01T17:39:04.880000", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02102, - 51.529823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/161120930", - "info": { - "identifier": 161120930, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161120930", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knightsbridge Land", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226406/161120930/226406_RL0019_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.278773", - "last_seen": "2025-06-01T22:05:59.250878", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12801, - 51.481396 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.3, - "qmprice": 38.36, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/161120939", - "info": { - "identifier": 161120939, - "sqm_ocr": 59.3, - "price": 2275.0, - "price_per_sqm": 38.36424957841484, - "url": "https://www.rightmove.co.uk/properties/161120939", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210110/161120939/210110_P299427_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.752979", - "last_seen": "2025-06-01T22:06:14.829221", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2037, - 51.5263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161121233", - "info": { - "identifier": 161121233, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161121233", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161121233/96668_245353616042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.990158", - "last_seen": "2025-06-01T22:06:13.205780", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148672, - 51.44729 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 139.3, - "qmprice": 22.61, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161121602", - "info": { - "identifier": 161121602, - "sqm_ocr": 139.3, - "price": 3150.0, - "price_per_sqm": 22.613065326633166, - "url": "https://www.rightmove.co.uk/properties/161121602", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Mi Homes", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/154k/153011/161121602/153011_102099002753_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.503030", - "last_seen": "2025-06-01T22:05:38.520646", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2401, - 51.64762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/161121686", - "info": { - "identifier": 161121686, - "sqm_ocr": null, - "price": 2496.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161121686", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/161121686/105856_2823_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.441612", - "last_seen": "2025-06-01T22:06:04.981690", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0977, - 51.49621 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.26, - "qmprice": 32.74, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161121848", - "info": { - "identifier": 161121848, - "sqm_ocr": 99.26, - "price": 3250.0, - "price_per_sqm": 32.742292967962925, - "url": "https://www.rightmove.co.uk/properties/161121848", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43428/161121848/43428_FCL220269_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.289286", - "last_seen": "2025-06-01T22:05:58.373990", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196819, - 51.493244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.29, - "qmprice": 46.66, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161122112", - "info": { - "identifier": 161122112, - "sqm_ocr": 64.29, - "price": 3000.0, - "price_per_sqm": 46.66355576294913, - "url": "https://www.rightmove.co.uk/properties/161122112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Reeds Rains Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88613/161122112/88613_KEI230036_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.078245", - "last_seen": "2025-06-01T22:05:57.985701", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162559, - 51.485477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.1, - "qmprice": 26.89, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/161122166", - "info": { - "identifier": 161122166, - "sqm_ocr": 89.1, - "price": 2396.0, - "price_per_sqm": 26.891133557800227, - "url": "https://www.rightmove.co.uk/properties/161122166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/161122166/119137_SSDF62a_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.125036", - "last_seen": "2025-06-01T22:06:06.313641", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0823, - 51.48904 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.5, - "qmprice": 35.41, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161122343", - "info": { - "identifier": 161122343, - "sqm_ocr": 104.5, - "price": 3700.0, - "price_per_sqm": 35.4066985645933, - "url": "https://www.rightmove.co.uk/properties/161122343", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Property Inc", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191252/161122343/191252_PRI250081_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.103624", - "last_seen": "2025-06-01T22:05:54.655041", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.236513, - 51.623318 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3553.0, - "url": "https://www.rightmove.co.uk/properties/161122622", - "info": { - "identifier": 161122622, - "sqm_ocr": null, - "price": 3553.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161122622", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "RiverHomes", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11121/161122622/11121_33839178_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.100273", - "last_seen": "2025-06-01T22:06:11.286307", - "price": 3553.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020881, - 51.507053 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.9, - "qmprice": 31.99, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161122817", - "info": { - "identifier": 161122817, - "sqm_ocr": 71.9, - "price": 2300.0, - "price_per_sqm": 31.98887343532684, - "url": "https://www.rightmove.co.uk/properties/161122817", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161122817/48101_1323836_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.531036", - "last_seen": "2025-06-01T22:06:09.733795", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011812, - 51.508415 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.1, - "qmprice": 29.82, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161122844", - "info": { - "identifier": 161122844, - "sqm_ocr": 98.1, - "price": 2925.0, - "price_per_sqm": 29.816513761467892, - "url": "https://www.rightmove.co.uk/properties/161122844", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Daniel Cobb", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58945/161122844/58945_ff8f4673-0218-451c-b169-eb21220ff1e4_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.363644", - "last_seen": "2025-06-01T22:06:05.762474", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080194, - 51.498672 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3964.0, - "url": "https://www.rightmove.co.uk/properties/161123477", - "info": { - "identifier": 161123477, - "sqm_ocr": null, - "price": 3964.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161123477", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "RiverHomes", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11121/161123477/11121_33487305_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.300158", - "last_seen": "2025-06-01T22:06:07.985775", - "price": 3964.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02734, - 51.506054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.8, - "qmprice": 38.78, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161123612", - "info": { - "identifier": 161123612, - "sqm_ocr": 83.8, - "price": 3250.0, - "price_per_sqm": 38.782816229116946, - "url": "https://www.rightmove.co.uk/properties/161123612", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/161123612/98531_1320256_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.016613", - "last_seen": "2025-06-01T22:05:49.404660", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.241324, - 51.50123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161124077", - "info": { - "identifier": 161124077, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161124077", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Birchills", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115933/161124077/115933_e4cc25e6-fd75-4566-b516-8990a3061a56_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.108275", - "last_seen": "2025-06-01T22:06:07.281297", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.008061, - 51.539146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.62, - "qmprice": 23.75, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161124158", - "info": { - "identifier": 161124158, - "sqm_ocr": 92.62, - "price": 2200.0, - "price_per_sqm": 23.75296912114014, - "url": "https://www.rightmove.co.uk/properties/161124158", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Pinnacle Housing Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212189/161124158/212189_2957_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.206487", - "last_seen": "2025-06-01T22:06:02.620188", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03831, - 51.53179 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161124275", - "info": { - "identifier": 161124275, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161124275", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stamfords", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18209/161124275/18209_33839291_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.150796", - "last_seen": "2025-06-01T22:05:52.384876", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.346186, - 51.45801 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2340.0, - "url": "https://www.rightmove.co.uk/properties/161125772", - "info": { - "identifier": 161125772, - "sqm_ocr": null, - "price": 2340.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161125772", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Litchfields", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93337/161125772/93337_12158951_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.042471", - "last_seen": "2025-06-01T22:05:38.890150", - "price": 2340 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199372, - 51.59284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/161125826", - "info": { - "identifier": 161125826, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161125826", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/161125826/17882_20246_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.626520", - "last_seen": "2025-06-01T22:05:50.089045", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13651, - 51.57588 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.2, - "qmprice": 42.92, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161125922", - "info": { - "identifier": 161125922, - "sqm_ocr": 93.2, - "price": 4000.0, - "price_per_sqm": 42.918454935622314, - "url": "https://www.rightmove.co.uk/properties/161125922", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Capital Heights Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55386/161125922/55386_12657974_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.736190", - "last_seen": "2025-06-01T22:06:10.306492", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01739, - 51.50091 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161127164", - "info": { - "identifier": 161127164, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161127164", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Brookings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181742/161127164/181742_BRO230016_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.156893, - 51.53899 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.0, - "qmprice": 36.36, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161128562", - "info": { - "identifier": 161128562, - "sqm_ocr": 55.0, - "price": 2000.0, - "price_per_sqm": 36.36363636363637, - "url": "https://www.rightmove.co.uk/properties/161128562", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66768/161128562/66768_1323755_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.567048", - "last_seen": "2025-06-01T22:06:05.157305", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074554, - 51.463207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161128637", - "info": { - "identifier": 161128637, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161128637", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Hawksgrove Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278102/161128637/278102_33839484_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.018433", - "last_seen": "2025-06-01T22:05:38.926477", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144905, - 51.61441 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.4, - "qmprice": 40.24, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161128802", - "info": { - "identifier": 161128802, - "sqm_ocr": 99.4, - "price": 4000.0, - "price_per_sqm": 40.241448692152915, - "url": "https://www.rightmove.co.uk/properties/161128802", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161128802/48101_1324016_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.611260", - "last_seen": "2025-06-01T22:06:10.196495", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010585, - 51.504826 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 52.38, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161128805", - "info": { - "identifier": 161128805, - "sqm_ocr": 63.0, - "price": 3300.0, - "price_per_sqm": 52.38095238095238, - "url": "https://www.rightmove.co.uk/properties/161128805", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161128805/48101_1324017_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.620110", - "last_seen": "2025-06-01T22:06:10.201146", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029174, - 51.514038 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.2, - "qmprice": 30.47, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161128811", - "info": { - "identifier": 161128811, - "sqm_ocr": 72.2, - "price": 2200.0, - "price_per_sqm": 30.47091412742382, - "url": "https://www.rightmove.co.uk/properties/161128811", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/161128811/107533_1323797_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.677547", - "last_seen": "2025-06-01T22:05:46.561824", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018544, - 51.48081 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.7, - "qmprice": 37.68, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161128865", - "info": { - "identifier": 161128865, - "sqm_ocr": 63.7, - "price": 2400.0, - "price_per_sqm": 37.67660910518053, - "url": "https://www.rightmove.co.uk/properties/161128865", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/161128865/227810_1320287_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.300432", - "last_seen": "2025-06-01T22:05:46.589141", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.071688, - 51.491226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.7, - "qmprice": 44.22, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161128877", - "info": { - "identifier": 161128877, - "sqm_ocr": 63.7, - "price": 2817.0, - "price_per_sqm": 44.22291993720565, - "url": "https://www.rightmove.co.uk/properties/161128877", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/161128877/227810_1321010_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.290775", - "last_seen": "2025-06-01T22:05:46.600396", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.071688, - 51.491226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.55, - "qmprice": 35.74, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161128886", - "info": { - "identifier": 161128886, - "sqm_ocr": 75.55, - "price": 2700.0, - "price_per_sqm": 35.7379219060225, - "url": "https://www.rightmove.co.uk/properties/161128886", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Homefinders", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32903/161128886/32903_10036568_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.980864", - "last_seen": "2025-06-01T22:05:47.695839", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056441, - 51.565582 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 44.02, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161129255", - "info": { - "identifier": 161129255, - "sqm_ocr": 64.0, - "price": 2817.0, - "price_per_sqm": 44.015625, - "url": "https://www.rightmove.co.uk/properties/161129255", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "tlc Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18984/161129255/18984_ERL131097_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/10/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.099925", - "last_seen": "2025-06-01T22:05:57.420819", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200049, - 51.4907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.0, - "qmprice": 27.17, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161129504", - "info": { - "identifier": 161129504, - "sqm_ocr": 92.0, - "price": 2500.0, - "price_per_sqm": 27.17391304347826, - "url": "https://www.rightmove.co.uk/properties/161129504", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "The Online Letting Agents Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82831/161129504/82831_9326_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.095488", - "last_seen": "2025-06-01T22:05:44.764627", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.391395, - 51.5314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.35, - "qmprice": 25.42, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161130125", - "info": { - "identifier": 161130125, - "sqm_ocr": 98.35, - "price": 2500.0, - "price_per_sqm": 25.419420437214033, - "url": "https://www.rightmove.co.uk/properties/161130125", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161130125/87187_71289_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.308496", - "last_seen": "2025-06-01T22:05:55.394316", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.244026, - 51.58139 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/161130542", - "info": { - "identifier": 161130542, - "sqm_ocr": null, - "price": 2947.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161130542", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113191/161130542/113191_33839621_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.684296", - "last_seen": "2025-06-01T22:06:08.616540", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0262, - 51.52579 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161131124", - "info": { - "identifier": 161131124, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161131124", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Imperial Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85765/161131124/85765_000014850b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.611307", - "last_seen": "2025-06-01T22:06:13.895219", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19358, - 51.45771 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.3, - "qmprice": 37.52, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161132783", - "info": { - "identifier": 161132783, - "sqm_ocr": 73.3, - "price": 2750.0, - "price_per_sqm": 37.51705320600273, - "url": "https://www.rightmove.co.uk/properties/161132783", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49006/161132783/49006_LHL250778_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.579103", - "last_seen": "2025-06-01T22:05:38.651785", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220737, - 51.571213 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161134577", - "info": { - "identifier": 161134577, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161134577", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Hawksgrove Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278102/161134577/278102_33839828_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.548821", - "last_seen": "2025-06-01T22:05:38.581379", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240037, - 51.64768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2499.0, - "url": "https://www.rightmove.co.uk/properties/161134604", - "info": { - "identifier": 161134604, - "sqm_ocr": null, - "price": 2499.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161134604", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161134604/96668_246153524042025_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.499017", - "last_seen": "2025-06-01T22:05:39.044515", - "price": 2499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228745, - 51.58682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 136.8, - "qmprice": 19.01, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161134742", - "info": { - "identifier": 161134742, - "sqm_ocr": 136.8, - "price": 2600.0, - "price_per_sqm": 19.005847953216374, - "url": "https://www.rightmove.co.uk/properties/161134742", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57275/161134742/57275_1323580_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.223131", - "last_seen": "2025-06-01T22:05:50.855893", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.373744, - 51.578217 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 127.0, - "qmprice": 22.83, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161135432", - "info": { - "identifier": 161135432, - "sqm_ocr": 127.0, - "price": 2900.0, - "price_per_sqm": 22.834645669291337, - "url": "https://www.rightmove.co.uk/properties/161135432", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83027/161135432/83027_33839895_IMG_18_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.176770", - "last_seen": "2025-06-01T22:05:52.526646", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2695, - 51.480564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.11, - "qmprice": 30.78, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161135459", - "info": { - "identifier": 161135459, - "sqm_ocr": 73.11, - "price": 2250.0, - "price_per_sqm": 30.775543701272056, - "url": "https://www.rightmove.co.uk/properties/161135459", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Pinnacle Housing Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212189/161135459/212189_2959_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.191641", - "last_seen": "2025-06-01T22:05:52.536434", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36748, - 51.47348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/161136716", - "info": { - "identifier": 161136716, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161136716", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Emoov", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/181k/180266/161136716/180266_1510_IMG_05_0004_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.752987", - "last_seen": "2025-06-01T22:06:03.185548", - "price": 2249.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.038528, - 51.548664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.0, - "qmprice": 42.07, - "rooms": 2, - "total_price": 3618.0, - "url": "https://www.rightmove.co.uk/properties/161137499", - "info": { - "identifier": 161137499, - "sqm_ocr": 86.0, - "price": 3618.0, - "price_per_sqm": 42.06976744186046, - "url": "https://www.rightmove.co.uk/properties/161137499", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/161137499/29861_33840014_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.370670", - "last_seen": "2025-06-01T22:06:12.502770", - "price": 3618 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133919, - 51.480247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161138243", - "info": { - "identifier": 161138243, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161138243", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/161138243/84791_33840080_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.736078", - "last_seen": "2025-06-01T22:05:44.369998", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.308213, - 51.517525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.7, - "qmprice": 40.39, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161138576", - "info": { - "identifier": 161138576, - "sqm_ocr": 55.7, - "price": 2250.0, - "price_per_sqm": 40.394973070017954, - "url": "https://www.rightmove.co.uk/properties/161138576", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79825/161138576/79825_P299503_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.582515", - "last_seen": "2025-06-01T22:05:49.669355", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11919, - 51.60746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3320.0, - "url": "https://www.rightmove.co.uk/properties/161138729", - "info": { - "identifier": 161138729, - "sqm_ocr": null, - "price": 3320.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161138729", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/161138729/78429_LON-569_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.472251", - "last_seen": "2025-06-01T22:06:08.354016", - "price": 3320.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06538, - 51.51439 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161138783", - "info": { - "identifier": 161138783, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161138783", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43763/161138783/43763_P299494_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.460888", - "last_seen": "2025-06-01T22:05:47.850310", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08921, - 51.57243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.34, - "qmprice": 35.84, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161139077", - "info": { - "identifier": 161139077, - "sqm_ocr": 75.34, - "price": 2700.0, - "price_per_sqm": 35.837536501194585, - "url": "https://www.rightmove.co.uk/properties/161139077", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Storeys", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176102/161139077/176102_33840153_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.522366", - "last_seen": "2025-06-01T17:39:05.045417", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071278, - 51.512993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.63, - "qmprice": 76.24, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161139389", - "info": { - "identifier": 161139389, - "sqm_ocr": 42.63, - "price": 3250.0, - "price_per_sqm": 76.23739150832746, - "url": "https://www.rightmove.co.uk/properties/161139389", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/161139389/15966_1324022_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.946208", - "last_seen": "2025-06-01T22:06:13.047456", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17444, - 51.470425 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.4, - "qmprice": 33.67, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161139596", - "info": { - "identifier": 161139596, - "sqm_ocr": 59.4, - "price": 2000.0, - "price_per_sqm": 33.67003367003367, - "url": "https://www.rightmove.co.uk/properties/161139596", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/256k/255212/161139596/255212_33840193_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.289998", - "last_seen": "2025-06-01T22:06:06.250672", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075143, - 51.458813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161139818", - "info": { - "identifier": 161139818, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161139818", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Birchills", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115933/161139818/115933_e4164557-795d-4b5e-bae1-72192c91dee6_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.603196", - "last_seen": "2025-06-01T22:06:07.371097", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005343, - 51.539623 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161140169", - "info": { - "identifier": 161140169, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161140169", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19269/161140169/19269_BET250047_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.581235", - "last_seen": "2025-06-01T22:06:08.221154", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.048306, - 51.521015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.3, - "qmprice": 33.25, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161140580", - "info": { - "identifier": 161140580, - "sqm_ocr": 114.3, - "price": 3800.0, - "price_per_sqm": 33.24584426946632, - "url": "https://www.rightmove.co.uk/properties/161140580", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Global House Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74713/161140580/74713_NVV0VklES2YwR0s0SXRnZ0FEVHE1UT09_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.732788", - "last_seen": "2025-06-01T22:06:05.305844", - "price": 3800 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067447, - 51.491024 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/161140667", - "info": { - "identifier": 161140667, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161140667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hanover", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74440/161140667/74440_HNV170299_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.740452", - "last_seen": "2025-06-01T22:06:15.352346", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172276, - 51.52803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.8, - "qmprice": 39.55, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161141792", - "info": { - "identifier": 161141792, - "sqm_ocr": 70.8, - "price": 2800.0, - "price_per_sqm": 39.548022598870055, - "url": "https://www.rightmove.co.uk/properties/161141792", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/161141792/52887_33840365_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.161806", - "last_seen": "2025-06-01T22:06:12.107190", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220794, - 51.43892 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.0, - "qmprice": 33.65, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161142191", - "info": { - "identifier": 161142191, - "sqm_ocr": 104.0, - "price": 3500.0, - "price_per_sqm": 33.65384615384615, - "url": "https://www.rightmove.co.uk/properties/161142191", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Bryan & Keegan", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102278/161142191/102278_BLM250013_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.030590", - "last_seen": "2025-06-01T22:06:00.996375", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023557, - 51.46211 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.17, - "qmprice": 47.32, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161142911", - "info": { - "identifier": 161142911, - "sqm_ocr": 59.17, - "price": 2800.0, - "price_per_sqm": 47.32127767449721, - "url": "https://www.rightmove.co.uk/properties/161142911", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Parkheath", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72719/161142911/72719_33734814_IMG_16_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.281791", - "last_seen": "2025-06-01T22:05:42.369699", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165524, - 51.550243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.5, - "qmprice": 46.73, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161143046", - "info": { - "identifier": 161143046, - "sqm_ocr": 76.5, - "price": 3575.0, - "price_per_sqm": 46.73202614379085, - "url": "https://www.rightmove.co.uk/properties/161143046", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Mountgrange Heritage", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32235/161143046/32235_45951_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.149052", - "last_seen": "2025-06-01T22:05:57.469609", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210524, - 51.522198 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161143091", - "info": { - "identifier": 161143091, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161143091", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161143091/96668_245426816042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.459596", - "last_seen": "2025-06-01T22:06:04.987456", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066734, - 51.465385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.8, - "qmprice": 37.25, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161144228", - "info": { - "identifier": 161144228, - "sqm_ocr": 69.8, - "price": 2600.0, - "price_per_sqm": 37.249283667621775, - "url": "https://www.rightmove.co.uk/properties/161144228", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205358/161144228/205358_CUS012552315_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.528920", - "last_seen": "2025-06-01T22:05:44.452842", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.249528, - 51.513515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.2, - "qmprice": 33.68, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161144636", - "info": { - "identifier": 161144636, - "sqm_ocr": 77.2, - "price": 2600.0, - "price_per_sqm": 33.67875647668394, - "url": "https://www.rightmove.co.uk/properties/161144636", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205358/161144636/205358_CUS012538280_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.326384", - "last_seen": "2025-06-01T22:05:56.727937", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017233, - 51.49435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.35, - "qmprice": 31.07, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161145035", - "info": { - "identifier": 161145035, - "sqm_ocr": 93.35, - "price": 2900.0, - "price_per_sqm": 31.065881092662025, - "url": "https://www.rightmove.co.uk/properties/161145035", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161145035/48101_1323839_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.273428", - "last_seen": "2025-06-01T22:06:03.375234", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01798, - 51.50829 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.3, - "qmprice": 49.77, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161145107", - "info": { - "identifier": 161145107, - "sqm_ocr": 65.3, - "price": 3250.0, - "price_per_sqm": 49.77029096477795, - "url": "https://www.rightmove.co.uk/properties/161145107", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22353/161145107/22353_NHL140151_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.457635", - "last_seen": "2025-06-01T22:06:15.535877", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185155, - 51.51702 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3943.0, - "url": "https://www.rightmove.co.uk/properties/161145557", - "info": { - "identifier": 161145557, - "sqm_ocr": null, - "price": 3943.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161145557", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/161145557/120463_33840585_IMG_00_0000_max_656x437.png", - "let_date_available": "11/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.052302", - "last_seen": "2025-06-01T22:06:15.382810", - "price": 3943 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155599, - 51.522655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3315.0, - "url": "https://www.rightmove.co.uk/properties/161145584", - "info": { - "identifier": 161145584, - "sqm_ocr": null, - "price": 3315.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161145584", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/161145584/120463_33840588_IMG_00_0000_max_656x437.png", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.083973", - "last_seen": "2025-06-01T22:06:15.429286", - "price": 3315 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155425, - 51.517933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3770.0, - "url": "https://www.rightmove.co.uk/properties/161145626", - "info": { - "identifier": 161145626, - "sqm_ocr": null, - "price": 3770.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161145626", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/161145626/120463_33840593_IMG_00_0000_max_656x437.png", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.348390", - "last_seen": "2025-06-01T22:06:15.737209", - "price": 3770 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162357, - 51.518368 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.2, - "qmprice": 29.07, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161145716", - "info": { - "identifier": 161145716, - "sqm_ocr": 103.2, - "price": 3000.0, - "price_per_sqm": 29.069767441860463, - "url": "https://www.rightmove.co.uk/properties/161145716", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210101/161145716/210101_P299205_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.551965", - "last_seen": "2025-06-01T22:05:49.623395", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12038, - 51.57868 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.5, - "qmprice": 37.58, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161145869", - "info": { - "identifier": 161145869, - "sqm_ocr": 74.5, - "price": 2800.0, - "price_per_sqm": 37.58389261744966, - "url": "https://www.rightmove.co.uk/properties/161145869", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/161145869/111050_1324080_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.967443", - "last_seen": "2025-06-01T22:06:12.979362", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166329, - 51.42927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.53, - "qmprice": 35.29, - "rooms": 2, - "total_price": 3795.0, - "url": "https://www.rightmove.co.uk/properties/161145911", - "info": { - "identifier": 161145911, - "sqm_ocr": 107.53, - "price": 3795.0, - "price_per_sqm": 35.29247651818097, - "url": "https://www.rightmove.co.uk/properties/161145911", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84815/161145911/84815_33830643_IMG_08_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.463318", - "last_seen": "2025-06-01T22:06:04.709798", - "price": 3795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.309692, - 51.412132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.4, - "qmprice": 53.19, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161145920", - "info": { - "identifier": 161145920, - "sqm_ocr": 56.4, - "price": 3000.0, - "price_per_sqm": 53.19148936170213, - "url": "https://www.rightmove.co.uk/properties/161145920", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157376/161145920/157376_33838965_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.162330", - "last_seen": "2025-06-01T22:05:47.873489", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078923, - 51.527405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161146007", - "info": { - "identifier": 161146007, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161146007", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hinton Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69686/161146007/69686_102800004693_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.157078", - "last_seen": "2025-06-01T22:05:50.456092", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34113, - 51.60026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.1, - "qmprice": 48.39, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161146286", - "info": { - "identifier": 161146286, - "sqm_ocr": 65.1, - "price": 3150.0, - "price_per_sqm": 48.38709677419355, - "url": "https://www.rightmove.co.uk/properties/161146286", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43763/161146286/43763_P299493_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.968532", - "last_seen": "2025-06-01T22:05:47.720177", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08939, - 51.57081 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 35.54, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161146640", - "info": { - "identifier": 161146640, - "sqm_ocr": 83.0, - "price": 2950.0, - "price_per_sqm": 35.54216867469879, - "url": "https://www.rightmove.co.uk/properties/161146640", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/161146640/63031_LRL220040_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.164902", - "last_seen": "2025-06-01T22:05:43.175947", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131181, - 51.547653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161146679", - "info": { - "identifier": 161146679, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161146679", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "The Property Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270950/161146679/270950_SW6LondonINV_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.086656", - "last_seen": "2025-06-01T22:05:49.512254", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19106, - 51.47413 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161147204", - "info": { - "identifier": 161147204, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161147204", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44870/161147204/44870_33840719_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.622108", - "last_seen": "2025-06-01T22:05:39.339519", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.260766, - 51.622475 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161147273", - "info": { - "identifier": 161147273, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161147273", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Woodward Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14627/161147273/14627_33840728_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.063116", - "last_seen": "2025-06-01T22:05:50.736407", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.344471, - 51.56903 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161147732", - "info": { - "identifier": 161147732, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161147732", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191426/161147732/191426_2710930_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.720314", - "last_seen": "2025-06-01T22:05:39.769995", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193899, - 51.617012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 122.88, - "qmprice": 32.55, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161147789", - "info": { - "identifier": 161147789, - "sqm_ocr": 122.88, - "price": 4000.0, - "price_per_sqm": 32.552083333333336, - "url": "https://www.rightmove.co.uk/properties/161147789", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85699/161147789/85699_CHI250269_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.518625", - "last_seen": "2025-06-01T22:05:45.266298", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.292333, - 51.50754 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161148098", - "info": { - "identifier": 161148098, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161148098", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "EC Residential LTD", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244844/161148098/244844_1285_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.923821", - "last_seen": "2025-06-01T22:05:47.766039", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07643, - 51.52905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.28, - "qmprice": 34.87, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/161148557", - "info": { - "identifier": 161148557, - "sqm_ocr": 80.28, - "price": 2799.0, - "price_per_sqm": 34.865470852017935, - "url": "https://www.rightmove.co.uk/properties/161148557", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233849/161148557/233849_2662497_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.921429", - "last_seen": "2025-06-01T22:05:52.369877", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.309247, - 51.482407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161149037", - "info": { - "identifier": 161149037, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161149037", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161149037/96668_206084021042024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.070803", - "last_seen": "2025-06-01T22:05:50.768906", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.394547, - 51.601692 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161149226", - "info": { - "identifier": 161149226, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161149226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161149226/96668_164907410032023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.457021", - "last_seen": "2025-06-01T22:05:42.203918", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194808, - 51.54922 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 30.67, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161149415", - "info": { - "identifier": 161149415, - "sqm_ocr": 75.0, - "price": 2300.0, - "price_per_sqm": 30.666666666666668, - "url": "https://www.rightmove.co.uk/properties/161149415", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80551/161149415/80551_FHL150065_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.331472", - "last_seen": "2025-06-01T22:05:51.877537", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.286498, - 51.488678 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.84, - "qmprice": 56.78, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161149424", - "info": { - "identifier": 161149424, - "sqm_ocr": 52.84, - "price": 3000.0, - "price_per_sqm": 56.77517032551097, - "url": "https://www.rightmove.co.uk/properties/161149424", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/161149424/63031_HEA254667_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.388392", - "last_seen": "2025-06-01T22:05:42.045446", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140576, - 51.530094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/161150150", - "info": { - "identifier": 161150150, - "sqm_ocr": null, - "price": 2349.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161150150", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "relocate-me.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33012/161150150/33012_49994_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.319871", - "last_seen": "2025-06-01T22:05:44.165839", - "price": 2349.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.301747, - 51.514355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161150240", - "info": { - "identifier": 161150240, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161150240", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "London Key", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/162k/161585/161150240/161585_LKL1000230_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.013438", - "last_seen": "2025-06-01T22:06:00.666742", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.030706, - 51.464355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161150243", - "info": { - "identifier": 161150243, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161150243", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Hiltons Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.218668", - "last_seen": "2025-06-01T22:05:52.157772", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36828, - 51.47925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.1, - "qmprice": 40.74, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161151065", - "info": { - "identifier": 161151065, - "sqm_ocr": 76.1, - "price": 3100.0, - "price_per_sqm": 40.73587385019711, - "url": "https://www.rightmove.co.uk/properties/161151065", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/161151065/15951_1324104_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.187504", - "last_seen": "2025-06-01T22:05:52.534191", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.288214, - 51.488274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.3, - "qmprice": 44.26, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161151095", - "info": { - "identifier": 161151095, - "sqm_ocr": 72.3, - "price": 3200.0, - "price_per_sqm": 44.26002766251729, - "url": "https://www.rightmove.co.uk/properties/161151095", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161151095/253853_1324099_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.086356", - "last_seen": "2025-06-01T22:06:06.944266", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092574, - 51.491917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.37, - "qmprice": 41.8, - "rooms": 2, - "total_price": 2774.0, - "url": "https://www.rightmove.co.uk/properties/161151101", - "info": { - "identifier": 161151101, - "sqm_ocr": 66.37, - "price": 2774.0, - "price_per_sqm": 41.79599216513485, - "url": "https://www.rightmove.co.uk/properties/161151101", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161151101/55101_1323984_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.583968", - "last_seen": "2025-06-01T22:05:59.720609", - "price": 2774.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110889, - 51.498337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 143.7, - "qmprice": 27.14, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161151134", - "info": { - "identifier": 161151134, - "sqm_ocr": 143.7, - "price": 3900.0, - "price_per_sqm": 27.13987473903967, - "url": "https://www.rightmove.co.uk/properties/161151134", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/161151134/15963_1305985_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.208603", - "last_seen": "2025-06-01T22:06:13.472231", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225915, - 51.44762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.54, - "qmprice": 32.75, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161151143", - "info": { - "identifier": 161151143, - "sqm_ocr": 88.54, - "price": 2900.0, - "price_per_sqm": 32.75355771402756, - "url": "https://www.rightmove.co.uk/properties/161151143", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/161151143/15963_1324009_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.204565", - "last_seen": "2025-06-01T22:06:13.490981", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2093, - 51.45985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161151248", - "info": { - "identifier": 161151248, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161151248", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Wayne & Silver", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91636/161151248/91636_33840966_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.607323", - "last_seen": "2025-06-01T22:05:59.309134", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098649, - 51.46315 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.53, - "qmprice": 35.29, - "rooms": 2, - "total_price": 3795.0, - "url": "https://www.rightmove.co.uk/properties/161151314", - "info": { - "identifier": 161151314, - "sqm_ocr": 107.53, - "price": 3795.0, - "price_per_sqm": 35.29247651818097, - "url": "https://www.rightmove.co.uk/properties/161151314", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84869/161151314/84869_33840973_IMG_07_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.268297", - "last_seen": "2025-06-01T22:06:04.201648", - "price": 3795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.309692, - 51.412132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.75, - "qmprice": 32.0, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161151356", - "info": { - "identifier": 161151356, - "sqm_ocr": 93.75, - "price": 3000.0, - "price_per_sqm": 32.0, - "url": "https://www.rightmove.co.uk/properties/161151356", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161151356/43310_MRL170154_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.907645", - "last_seen": "2025-06-01T22:06:07.919483", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02, - 51.5 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161151548", - "info": { - "identifier": 161151548, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161151548", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Property Broker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61607/161151548/61607_4b9b99a7-7842-401d-af7b-6e3a9dedb230_IMG_22_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.608222", - "last_seen": "2025-06-01T22:05:47.067435", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02906, - 51.45782 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161151767", - "info": { - "identifier": 161151767, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161151767", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Wayne & Silver", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91636/161151767/91636_33841002_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.234953", - "last_seen": "2025-06-01T22:05:59.172672", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098608, - 51.463055 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161151986", - "info": { - "identifier": 161151986, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161151986", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Cubitt & West Residential Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82928/161151986/82928_P80524_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.383689", - "last_seen": "2025-06-01T22:06:07.864536", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18322, - 51.35603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161152013", - "info": { - "identifier": 161152013, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161152013", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/122k/121090/161152013/121090_0635_HRT063500677_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.037835", - "last_seen": "2025-06-01T22:05:38.243385", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.154872, - 51.54139 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161152265", - "info": { - "identifier": 161152265, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161152265", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161152265/96668_52577518032019_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "19/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.256049", - "last_seen": "2025-06-01T22:05:42.661878", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113574, - 51.52166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.81, - "qmprice": 39.96, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161152712", - "info": { - "identifier": 161152712, - "sqm_ocr": 58.81, - "price": 2350.0, - "price_per_sqm": 39.95919061384118, - "url": "https://www.rightmove.co.uk/properties/161152712", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/161152712/51286_HEA245367_L_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.702714", - "last_seen": "2025-06-01T22:05:49.018350", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23774, - 51.508816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161153486", - "info": { - "identifier": 161153486, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161153486", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Steps Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7492/161153486/7492_33841101_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:43.992200", - "last_seen": "2025-06-01T22:05:38.309413", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.128108, - 51.554863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.9, - "qmprice": 38.96, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161153528", - "info": { - "identifier": 161153528, - "sqm_ocr": 53.9, - "price": 2100.0, - "price_per_sqm": 38.96103896103896, - "url": "https://www.rightmove.co.uk/properties/161153528", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22281/161153528/22281_LBA140395_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.335414", - "last_seen": "2025-06-01T22:06:12.375772", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15177, - 51.466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.8, - "qmprice": 30.3, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161153684", - "info": { - "identifier": 161153684, - "sqm_ocr": 85.8, - "price": 2600.0, - "price_per_sqm": 30.303030303030305, - "url": "https://www.rightmove.co.uk/properties/161153684", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161153684/55101_1324095_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.459427", - "last_seen": "2025-06-01T22:06:05.551227", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102131, - 51.495544 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161155331", - "info": { - "identifier": 161155331, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161155331", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161155331/96668_245963423042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.179473", - "last_seen": "2025-06-01T22:05:59.069326", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128128, - 51.48146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.19, - "qmprice": 39.07, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161155463", - "info": { - "identifier": 161155463, - "sqm_ocr": 51.19, - "price": 2000.0, - "price_per_sqm": 39.070130884938465, - "url": "https://www.rightmove.co.uk/properties/161155463", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19716/161155463/19716_WPS100670_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.011492", - "last_seen": "2025-06-01T22:06:12.790577", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198041, - 51.443573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161155577", - "info": { - "identifier": 161155577, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161155577", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 36, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161155577/96668_246312825042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.956895", - "last_seen": "2025-06-01T22:06:16.044365", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199815, - 51.519035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161155946", - "info": { - "identifier": 161155946, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161155946", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263813/161155946/263813_WHP250060_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.179564", - "last_seen": "2025-06-01T22:05:39.800295", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197137, - 51.561398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.3, - "qmprice": 40.89, - "rooms": 2, - "total_price": 2384.0, - "url": "https://www.rightmove.co.uk/properties/161161157", - "info": { - "identifier": 161161157, - "sqm_ocr": 58.3, - "price": 2384.0, - "price_per_sqm": 40.891938250428815, - "url": "https://www.rightmove.co.uk/properties/161161157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/161161157/15960_1321761_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.029895", - "last_seen": "2025-06-01T22:06:15.372021", - "price": 2384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16917, - 51.53396 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/161163263", - "info": { - "identifier": 161163263, - "sqm_ocr": null, - "price": 3995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161163263", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43817/161163263/43817_P299438_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.587577", - "last_seen": "2025-06-01T22:06:01.225711", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22464, - 51.4179 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161163737", - "info": { - "identifier": 161163737, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161163737", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43260/161163737/43260_HRW170071_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.217770", - "last_seen": "2025-06-01T22:05:50.724568", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.351275, - 51.608105 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.93, - "qmprice": 32.91, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161164325", - "info": { - "identifier": 161164325, - "sqm_ocr": 72.93, - "price": 2400.0, - "price_per_sqm": 32.90826820238585, - "url": "https://www.rightmove.co.uk/properties/161164325", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Property Inside London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270212/161164325/270212_Binacle2bed_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.147474", - "last_seen": "2025-06-01T22:06:09.569925", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00551, - 51.51572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/161165972", - "info": { - "identifier": 161165972, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161165972", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161165972/96668_238902716022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.188323", - "last_seen": "2025-06-01T22:05:50.370024", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.338731, - 51.56756 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.83, - "qmprice": 21.77, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161167340", - "info": { - "identifier": 161167340, - "sqm_ocr": 114.83, - "price": 2500.0, - "price_per_sqm": 21.771314116520074, - "url": "https://www.rightmove.co.uk/properties/161167340", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238277/161167340/238277_L107597_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.911174", - "last_seen": "2025-06-01T22:06:04.091813", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.061043, - 51.588905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161167463", - "info": { - "identifier": 161167463, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161167463", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161167463/96668_226120815102024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.247419", - "last_seen": "2025-06-01T22:06:04.588501", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.313258, - 51.41637 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161168162", - "info": { - "identifier": 161168162, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161168162", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Equity Estate Agents", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35516/161168162/35516_EEL250018_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.939919", - "last_seen": "2025-06-01T22:05:45.839971", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075089, - 51.6431 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.82, - "qmprice": 41.41, - "rooms": 4, - "total_price": 3595.0, - "url": "https://www.rightmove.co.uk/properties/161168303", - "info": { - "identifier": 161168303, - "sqm_ocr": 86.82, - "price": 3595.0, - "price_per_sqm": 41.40750979037089, - "url": "https://www.rightmove.co.uk/properties/161168303", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/161168303/15951_1324123_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.311205", - "last_seen": "2025-06-01T22:05:52.151877", - "price": 3595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.282482, - 51.499367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161168414", - "info": { - "identifier": 161168414, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161168414", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/161168414/194222_HRP250306_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.424343", - "last_seen": "2025-06-01T22:06:01.544908", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221133, - 51.41561 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161170391", - "info": { - "identifier": 161170391, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161170391", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100906/161170391/100906_0630_HRT063001141_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.002822", - "last_seen": "2025-06-01T22:06:03.886047", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05969, - 51.562634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 26.97, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161170565", - "info": { - "identifier": 161170565, - "sqm_ocr": 89.0, - "price": 2400.0, - "price_per_sqm": 26.96629213483146, - "url": "https://www.rightmove.co.uk/properties/161170565", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Austin Homes London", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105559/161170565/105559_2596b858-be99-4dc5-93bb-d5a2eddc3446_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.810224", - "last_seen": "2025-06-01T22:06:10.350515", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026394, - 51.49837 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.1, - "qmprice": 30.83, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161170601", - "info": { - "identifier": 161170601, - "sqm_ocr": 81.1, - "price": 2500.0, - "price_per_sqm": 30.826140567200987, - "url": "https://www.rightmove.co.uk/properties/161170601", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/161170601/52887_33841810_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.231133", - "last_seen": "2025-06-01T22:06:01.664064", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224575, - 51.41788 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/161170616", - "info": { - "identifier": 161170616, - "sqm_ocr": null, - "price": 2375.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161170616", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161170616/96668_244953512042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.770982", - "last_seen": "2025-06-01T22:06:03.171782", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07533, - 51.50548 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.68, - "qmprice": 27.35, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161170802", - "info": { - "identifier": 161170802, - "sqm_ocr": 120.68, - "price": 3300.0, - "price_per_sqm": 27.345044746436855, - "url": "https://www.rightmove.co.uk/properties/161170802", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 36, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63509/161170802/63509_P5280E5315_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.558916", - "last_seen": "2025-06-01T22:06:01.263588", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1502, - 51.41279 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161171285", - "info": { - "identifier": 161171285, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161171285", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78395/161171285/78395_33841847_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.200366", - "last_seen": "2025-06-01T22:06:11.115461", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067729, - 51.51348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161171738", - "info": { - "identifier": 161171738, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161171738", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 36, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161171738/96668_179071706082023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.999148", - "last_seen": "2025-06-01T22:05:59.910266", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13631, - 51.46722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161176907", - "info": { - "identifier": 161176907, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161176907", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161176907/96668_246365426042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.438593", - "last_seen": "2025-06-01T22:05:42.175498", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137933, - 51.52677 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161179526", - "info": { - "identifier": 161179526, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161179526", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benjamin Stevens", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93881/161179526/93881_BNJ_HB_LFSYCL_518_710417077_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.125160", - "last_seen": "2025-06-01T22:05:40.522011", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30197, - 51.548805 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161179589", - "info": { - "identifier": 161179589, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161179589", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "100 Key Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221126/161179589/221126_RL0475_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.174135, - 51.5878 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161179592", - "info": { - "identifier": 161179592, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161179592", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "100 Key Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221126/161179592/221126_RL0476_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.174135, - 51.5878 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 33.77, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161183717", - "info": { - "identifier": 161183717, - "sqm_ocr": 77.0, - "price": 2600.0, - "price_per_sqm": 33.76623376623377, - "url": "https://www.rightmove.co.uk/properties/161183717", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Madison Brook", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49239/161183717/49239_33842092_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.581816", - "last_seen": "2025-06-01T22:06:02.634133", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017626, - 51.508408 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 33.11, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161184119", - "info": { - "identifier": 161184119, - "sqm_ocr": 74.0, - "price": 2450.0, - "price_per_sqm": 33.108108108108105, - "url": "https://www.rightmove.co.uk/properties/161184119", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14116/161184119/14116_LONDO_003747_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.105607", - "last_seen": "2025-06-01T22:05:48.755905", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211182, - 51.481903 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/161186732", - "info": { - "identifier": 161186732, - "sqm_ocr": null, - "price": 2349.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161186732", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/161186732/105856_3453_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.782647", - "last_seen": "2025-06-01T22:06:06.461333", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09723, - 51.4965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161187335", - "info": { - "identifier": 161187335, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161187335", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161187335/96668_245899722042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.089565", - "last_seen": "2025-06-01T22:06:00.590005", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043528, - 51.48661 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161188256", - "info": { - "identifier": 161188256, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161188256", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161188256/96668_246396026042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.043579, - 51.52417 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161188556", - "info": { - "identifier": 161188556, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161188556", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Akelius Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102505/161188556/102505_40054-6A_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.163645", - "last_seen": "2025-06-01T22:05:47.883539", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06892, - 51.55321 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161190059", - "info": { - "identifier": 161190059, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161190059", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161190059/96668_245653219042025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.330759", - "last_seen": "2025-06-01T22:05:49.381806", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210293, - 51.483013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 122.15, - "qmprice": 24.56, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161190122", - "info": { - "identifier": 161190122, - "sqm_ocr": 122.15, - "price": 3000.0, - "price_per_sqm": 24.559967253376993, - "url": "https://www.rightmove.co.uk/properties/161190122", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Phillip Shaw", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267362/161190122/267362_445a8310-2c5f-46b2-800f-87cf5e7dedc4_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.900506", - "last_seen": "2025-06-01T22:05:39.852718", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24234, - 51.580273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161190149", - "info": { - "identifier": 161190149, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161190149", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161190149/96668_244823611042025_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.779765", - "last_seen": "2025-06-01T22:05:43.796091", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116234, - 51.407093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161190167", - "info": { - "identifier": 161190167, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161190167", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161190167/96668_246404526042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.016450", - "last_seen": "2025-06-01T22:06:15.362363", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179421, - 51.53336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2675.0, - "url": "https://www.rightmove.co.uk/properties/161192279", - "info": { - "identifier": 161192279, - "sqm_ocr": null, - "price": 2675.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161192279", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161192279/96668_246431427042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.179985", - "last_seen": "2025-06-01T22:05:50.381167", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.294835, - 51.605976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.16, - "qmprice": 48.69, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161193713", - "info": { - "identifier": 161193713, - "sqm_ocr": 82.16, - "price": 4000.0, - "price_per_sqm": 48.685491723466406, - "url": "https://www.rightmove.co.uk/properties/161193713", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/161193713/60927_000016684_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.772194", - "last_seen": "2025-06-01T22:05:56.441020", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22553, - 51.48719 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.2, - "qmprice": 36.04, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161193809", - "info": { - "identifier": 161193809, - "sqm_ocr": 65.2, - "price": 2350.0, - "price_per_sqm": 36.04294478527607, - "url": "https://www.rightmove.co.uk/properties/161193809", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161193809/96668_246459427042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.844479", - "last_seen": "2025-06-01T22:05:43.423035", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08846, - 51.389164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.1, - "qmprice": 40.04, - "rooms": 2, - "total_price": 3207.0, - "url": "https://www.rightmove.co.uk/properties/161194424", - "info": { - "identifier": 161194424, - "sqm_ocr": 80.1, - "price": 3207.0, - "price_per_sqm": 40.037453183520604, - "url": "https://www.rightmove.co.uk/properties/161194424", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/161194424/65124_CEI241853_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.454475", - "last_seen": "2025-06-01T22:06:05.903064", - "price": 3206 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099903, - 51.492996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 30.8, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/161194769", - "info": { - "identifier": 161194769, - "sqm_ocr": 81.0, - "price": 2495.0, - "price_per_sqm": 30.80246913580247, - "url": "https://www.rightmove.co.uk/properties/161194769", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Leo Newman", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98603/161194769/98603_2712276_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.956795", - "last_seen": "2025-06-01T22:05:45.015146", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2707, - 51.50824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.21, - "qmprice": 33.06, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161194790", - "info": { - "identifier": 161194790, - "sqm_ocr": 86.21, - "price": 2850.0, - "price_per_sqm": 33.05880988284422, - "url": "https://www.rightmove.co.uk/properties/161194790", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57118/161194790/57118_P214551_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.294296", - "last_seen": "2025-06-01T22:06:05.425060", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09928, - 51.49624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.1, - "qmprice": 62.07, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/161195816", - "info": { - "identifier": 161195816, - "sqm_ocr": 54.1, - "price": 3358.0, - "price_per_sqm": 62.07024029574861, - "url": "https://www.rightmove.co.uk/properties/161195816", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greater London Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6474/161195816/6474_GRT_SH_LFSYCL_252_40097320_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.380567", - "last_seen": "2025-06-01T22:06:15.694081", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120739, - 51.51265 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161196080", - "info": { - "identifier": 161196080, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161196080", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7558/161196080/7558_FIL230016_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.200628", - "last_seen": "2025-06-01T22:05:39.546433", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174207, - 51.62638 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.4, - "qmprice": 42.15, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161196896", - "info": { - "identifier": 161196896, - "sqm_ocr": 69.4, - "price": 2925.0, - "price_per_sqm": 42.14697406340057, - "url": "https://www.rightmove.co.uk/properties/161196896", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Garrett Whitelock", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105305/161196896/105305_101341001532_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.199367", - "last_seen": "2025-06-01T22:06:07.149721", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09577, - 51.50095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.96, - "qmprice": 40.55, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161197289", - "info": { - "identifier": 161197289, - "sqm_ocr": 73.96, - "price": 2999.0, - "price_per_sqm": 40.54894537587886, - "url": "https://www.rightmove.co.uk/properties/161197289", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "ea2", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10387/161197289/10387_33713663_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.690005", - "last_seen": "2025-06-01T22:06:08.552547", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.059008, - 51.50446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.3, - "qmprice": 35.06, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161197400", - "info": { - "identifier": 161197400, - "sqm_ocr": 71.3, - "price": 2500.0, - "price_per_sqm": 35.06311360448808, - "url": "https://www.rightmove.co.uk/properties/161197400", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100624/161197400/100624_33842437_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.774098", - "last_seen": "2025-06-01T22:06:00.174553", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121271, - 51.42207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.6, - "qmprice": 43.93, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161199662", - "info": { - "identifier": 161199662, - "sqm_ocr": 62.6, - "price": 2750.0, - "price_per_sqm": 43.9297124600639, - "url": "https://www.rightmove.co.uk/properties/161199662", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66539/161199662/66539_33842587_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.126864", - "last_seen": "2025-06-01T22:05:56.460658", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.085883, - 51.54807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.0, - "qmprice": 47.17, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161200139", - "info": { - "identifier": 161200139, - "sqm_ocr": 53.0, - "price": 2500.0, - "price_per_sqm": 47.16981132075472, - "url": "https://www.rightmove.co.uk/properties/161200139", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56906/161200139/56906_SML240081_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.513627", - "last_seen": "2025-06-01T22:06:04.834494", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.309998, - 51.453228 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/161201531", - "info": { - "identifier": 161201531, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161201531", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161201531/96668_246279025042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.075083", - "last_seen": "2025-06-01T22:05:52.128457", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265466, - 51.482628 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 54.05, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161201567", - "info": { - "identifier": 161201567, - "sqm_ocr": 74.0, - "price": 4000.0, - "price_per_sqm": 54.054054054054056, - "url": "https://www.rightmove.co.uk/properties/161201567", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Austin Homes London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105559/161201567/105559_1059566d-7164-41de-ab4d-33aabb4940d6_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.365344", - "last_seen": "2025-06-01T22:05:47.515480", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089644, - 51.52798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.6, - "qmprice": 36.22, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161201825", - "info": { - "identifier": 161201825, - "sqm_ocr": 56.6, - "price": 2050.0, - "price_per_sqm": 36.21908127208481, - "url": "https://www.rightmove.co.uk/properties/161201825", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65794/161201825/65794_33842716_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.079945", - "last_seen": "2025-06-01T22:06:13.860532", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187433, - 51.450558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161202182", - "info": { - "identifier": 161202182, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161202182", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Keys Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34266/161202182/34266_33842749_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.296661", - "last_seen": "2025-06-01T22:06:12.134904", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222433, - 51.444176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.9, - "qmprice": 28.75, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161202290", - "info": { - "identifier": 161202290, - "sqm_ocr": 93.9, - "price": 2700.0, - "price_per_sqm": 28.75399361022364, - "url": "https://www.rightmove.co.uk/properties/161202290", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257069/161202290/257069_33842762_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.008395, - 51.473194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.3, - "qmprice": 27.09, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161203154", - "info": { - "identifier": 161203154, - "sqm_ocr": 92.3, - "price": 2500.0, - "price_per_sqm": 27.08559046587216, - "url": "https://www.rightmove.co.uk/properties/161203154", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Truepenny's", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93562/161203154/93562_4008_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.227408", - "last_seen": "2025-06-01T22:05:46.821278", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0039, - 51.49038 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.2, - "qmprice": 33.28, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161203691", - "info": { - "identifier": 161203691, - "sqm_ocr": 120.2, - "price": 4000.0, - "price_per_sqm": 33.277870216306155, - "url": "https://www.rightmove.co.uk/properties/161203691", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57118/161203691/57118_P214552_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.036780", - "last_seen": "2025-06-01T22:06:05.308087", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05557, - 51.5011 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 38.66, - "rooms": 2, - "total_price": 2513.0, - "url": "https://www.rightmove.co.uk/properties/161204261", - "info": { - "identifier": 161204261, - "sqm_ocr": 65.0, - "price": 2513.0, - "price_per_sqm": 38.66153846153846, - "url": "https://www.rightmove.co.uk/properties/161204261", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/161204261/80796_825_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.061659", - "last_seen": "2025-06-01T22:05:59.882930", - "price": 2426 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12085, - 51.45965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 127.8, - "qmprice": 19.52, - "rooms": 2, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/161204447", - "info": { - "identifier": 161204447, - "sqm_ocr": 127.8, - "price": 2495.0, - "price_per_sqm": 19.522691705790297, - "url": "https://www.rightmove.co.uk/properties/161204447", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/161204447/71419_1324158_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.142807", - "last_seen": "2025-06-01T22:05:59.514897", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126398, - 51.43066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2860.0, - "url": "https://www.rightmove.co.uk/properties/161204519", - "info": { - "identifier": 161204519, - "sqm_ocr": null, - "price": 2860.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161204519", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Habitat", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96380/161204519/96380_RL4564_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.279757", - "last_seen": "2025-06-01T22:06:15.576623", - "price": 2860 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183685, - 51.53295 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.47, - "qmprice": 33.17, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161204978", - "info": { - "identifier": 161204978, - "sqm_ocr": 96.47, - "price": 3200.0, - "price_per_sqm": 33.17093396910957, - "url": "https://www.rightmove.co.uk/properties/161204978", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Wild & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/128k/127876/161204978/127876_33842897_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.690557", - "last_seen": "2025-06-01T22:06:09.218902", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024938, - 51.539272 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.0, - "qmprice": 33.66, - "rooms": 3, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/161205008", - "info": { - "identifier": 161205008, - "sqm_ocr": 95.0, - "price": 3198.0, - "price_per_sqm": 33.66315789473684, - "url": "https://www.rightmove.co.uk/properties/161205008", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Goldschmidt & Howland", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73968/161205008/73968_2642575_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.541226", - "last_seen": "2025-06-01T22:05:38.458318", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16709, - 51.58706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.0, - "qmprice": 40.0, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161205557", - "info": { - "identifier": 161205557, - "sqm_ocr": 100.0, - "price": 4000.0, - "price_per_sqm": 40.0, - "url": "https://www.rightmove.co.uk/properties/161205557", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52713/161205557/52713_33058436_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.225981", - "last_seen": "2025-06-01T22:06:04.520760", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.351788, - 51.42843 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161205674", - "info": { - "identifier": 161205674, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161205674", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "The Property Shop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167138/161205674/167138_TPR1001228_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.205314", - "last_seen": "2025-06-01T22:05:40.976485", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26593, - 51.56923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161205815", - "info": { - "identifier": 161205815, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161205815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "GCP", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/196k/195305/161205815/195305_202Boston_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.487494", - "last_seen": "2025-06-01T22:05:41.094834", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27554, - 51.55553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161206055", - "info": { - "identifier": 161206055, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161206055", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Langford Chase", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16019/161206055/16019_LANG_001438_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.039985", - "last_seen": "2025-06-01T22:05:44.932931", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.268772, - 51.515324 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161206286", - "info": { - "identifier": 161206286, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161206286", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38346/161206286/38346_CRO250047_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.790015", - "last_seen": "2025-06-01T22:05:49.749822", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10653, - 51.57738 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.9, - "qmprice": 27.88, - "rooms": 3, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/161206925", - "info": { - "identifier": 161206925, - "sqm_ocr": 85.9, - "price": 2395.0, - "price_per_sqm": 27.88125727590221, - "url": "https://www.rightmove.co.uk/properties/161206925", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "April", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75126/161206925/75126_APR250027_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.896657", - "last_seen": "2025-06-01T22:06:03.019686", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.062859, - 51.550694 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 47.6, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161207012", - "info": { - "identifier": 161207012, - "sqm_ocr": 63.0, - "price": 2999.0, - "price_per_sqm": 47.6031746031746, - "url": "https://www.rightmove.co.uk/properties/161207012", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/161207012/84866_33843053_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.181769", - "last_seen": "2025-06-01T22:05:52.619965", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254075, - 51.485924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.9, - "qmprice": 45.84, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161207120", - "info": { - "identifier": 161207120, - "sqm_ocr": 58.9, - "price": 2700.0, - "price_per_sqm": 45.840407470288625, - "url": "https://www.rightmove.co.uk/properties/161207120", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41334/161207120/41334_06790581_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.681462", - "last_seen": "2025-06-01T22:05:42.808358", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195, - 51.554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/161208170", - "info": { - "identifier": 161208170, - "sqm_ocr": null, - "price": 2195.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161208170", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43260/161208170/43260_SML120010_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.077525", - "last_seen": "2025-06-01T22:05:50.821050", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.310153, - 51.61646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.2, - "qmprice": 55.91, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/161208320", - "info": { - "identifier": 161208320, - "sqm_ocr": 56.2, - "price": 3142.0, - "price_per_sqm": 55.90747330960854, - "url": "https://www.rightmove.co.uk/properties/161208320", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "SW Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60378/161208320/60378_4425_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.189660", - "last_seen": "2025-06-01T22:05:57.615090", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190119, - 51.486732 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161208398", - "info": { - "identifier": 161208398, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161208398", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/161208398/272819_33843159_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.929915", - "last_seen": "2025-06-01T22:06:08.714692", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013381, - 51.50007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.8, - "qmprice": 34.63, - "rooms": 4, - "total_price": 3699.0, - "url": "https://www.rightmove.co.uk/properties/161208425", - "info": { - "identifier": 161208425, - "sqm_ocr": 106.8, - "price": 3699.0, - "price_per_sqm": 34.63483146067416, - "url": "https://www.rightmove.co.uk/properties/161208425", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/161208425/249692_RL4611_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.951194", - "last_seen": "2025-06-01T22:06:07.453052", - "price": 3699.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013778, - 51.531086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2643.0, - "url": "https://www.rightmove.co.uk/properties/161208503", - "info": { - "identifier": 161208503, - "sqm_ocr": null, - "price": 2643.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161208503", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/161208503/136139_2307698_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.509830", - "last_seen": "2025-06-01T22:06:09.680983", - "price": 2643 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00511, - 51.51141 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 35.71, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161208563", - "info": { - "identifier": 161208563, - "sqm_ocr": 63.0, - "price": 2250.0, - "price_per_sqm": 35.714285714285715, - "url": "https://www.rightmove.co.uk/properties/161208563", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161208563/15975_1324187_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.617307", - "last_seen": "2025-06-01T22:06:01.419892", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196761, - 51.42791 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.7, - "qmprice": 32.98, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161208662", - "info": { - "identifier": 161208662, - "sqm_ocr": 66.7, - "price": 2200.0, - "price_per_sqm": 32.98350824587706, - "url": "https://www.rightmove.co.uk/properties/161208662", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/161208662/15966_1324179_IMG_03_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.750855", - "last_seen": "2025-06-01T22:06:13.328109", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170821, - 51.466232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161208737", - "info": { - "identifier": 161208737, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161208737", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/161208737/39507_606279_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.169638", - "last_seen": "2025-06-01T22:06:11.517733", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063125, - 51.52044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161209211", - "info": { - "identifier": 161209211, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161209211", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Henry Wiltshire", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256595/161209211/256595_19790_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.849860", - "last_seen": "2025-06-01T22:05:51.567569", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.416786, - 51.50314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 29.41, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161209406", - "info": { - "identifier": 161209406, - "sqm_ocr": 68.0, - "price": 2000.0, - "price_per_sqm": 29.41176470588235, - "url": "https://www.rightmove.co.uk/properties/161209406", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206645/161209406/206645_33843223_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.366262", - "last_seen": "2025-06-01T22:05:51.240882", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.419373, - 51.61585 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3890.0, - "url": "https://www.rightmove.co.uk/properties/161209898", - "info": { - "identifier": 161209898, - "sqm_ocr": null, - "price": 3890.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161209898", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Capital Heights Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55386/161209898/55386_10556821_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.848463", - "last_seen": "2025-06-01T22:06:07.637390", - "price": 3890.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009518, - 51.548386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/161209973", - "info": { - "identifier": 161209973, - "sqm_ocr": null, - "price": 3995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161209973", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "The Stow Brothers", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/115k/114391/161209973/114391_33843268_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.703707", - "last_seen": "2025-06-01T22:06:11.593773", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.030511, - 51.584328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161210042", - "info": { - "identifier": 161210042, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161210042", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48447/161210042/48447_YLH240027_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.592846", - "last_seen": "2025-06-01T22:06:04.438801", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.351481, - 51.42836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.03, - "qmprice": 46.85, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161210306", - "info": { - "identifier": 161210306, - "sqm_ocr": 64.03, - "price": 3000.0, - "price_per_sqm": 46.8530376386069, - "url": "https://www.rightmove.co.uk/properties/161210306", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51322/161210306/51322_WEL190011_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.522002", - "last_seen": "2025-06-01T22:06:14.934161", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133667, - 51.497154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161210456", - "info": { - "identifier": 161210456, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161210456", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Avery Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267890/161210456/267890_102759000849_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.983795", - "last_seen": "2025-06-01T22:05:47.583051", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04792, - 51.54854 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161210546", - "info": { - "identifier": 161210546, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161210546", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/161210546/209042_EHLb-Mid_let_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.277263", - "last_seen": "2025-06-01T22:05:49.372002", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202095, - 51.48579 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161211056", - "info": { - "identifier": 161211056, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161211056", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/126k/125836/161211056/125836_ELL170140_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.293681", - "last_seen": "2025-06-01T22:05:43.983312", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312718, - 51.523064 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.5, - "qmprice": 37.29, - "rooms": 3, - "total_price": 3375.0, - "url": "https://www.rightmove.co.uk/properties/161211512", - "info": { - "identifier": 161211512, - "sqm_ocr": 90.5, - "price": 3375.0, - "price_per_sqm": 37.29281767955801, - "url": "https://www.rightmove.co.uk/properties/161211512", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Settio Property Experience Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267794/161211512/267794_22383_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.791437", - "last_seen": "2025-06-01T22:05:56.135829", - "price": 3375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1948, - 51.5437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161211836", - "info": { - "identifier": 161211836, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161211836", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66897/161211836/66897_33843359_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.871339", - "last_seen": "2025-06-01T22:06:00.787639", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018618, - 51.464256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161211839", - "info": { - "identifier": 161211839, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161211839", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 102.0, - "service_charge": 3300.0, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Harding Green", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250814/161211839/250814_RX575256_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.306214", - "last_seen": "2025-06-01T22:06:01.581962", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225992, - 51.418243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/161211887", - "info": { - "identifier": 161211887, - "sqm_ocr": null, - "price": 3995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161211887", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Wigmore Jones", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92908/161211887/92908_33843365_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.677530", - "last_seen": "2025-06-01T22:05:49.167560", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221558, - 51.511665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.2, - "qmprice": 44.06, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161211971", - "info": { - "identifier": 161211971, - "sqm_ocr": 52.2, - "price": 2300.0, - "price_per_sqm": 44.06130268199234, - "url": "https://www.rightmove.co.uk/properties/161211971", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71785/161211971/71785_33843370_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.288827", - "last_seen": "2025-06-01T22:05:59.176674", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139964, - 51.454098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.23, - "qmprice": 38.7, - "rooms": 2, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/161212109", - "info": { - "identifier": 161212109, - "sqm_ocr": 72.23, - "price": 2795.0, - "price_per_sqm": 38.69583275647238, - "url": "https://www.rightmove.co.uk/properties/161212109", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Vesper Homes", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112054/161212109/112054_LON210129_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.612897", - "last_seen": "2025-06-01T22:06:08.795119", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057111, - 51.5171 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 31.47, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/161212307", - "info": { - "identifier": 161212307, - "sqm_ocr": 73.0, - "price": 2297.0, - "price_per_sqm": 31.465753424657535, - "url": "https://www.rightmove.co.uk/properties/161212307", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Cedar Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79883/161212307/79883_926_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.198049", - "last_seen": "2025-06-01T22:05:40.795080", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19931, - 51.5426 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.9, - "qmprice": 36.51, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161212577", - "info": { - "identifier": 161212577, - "sqm_ocr": 84.9, - "price": 3100.0, - "price_per_sqm": 36.513545347467605, - "url": "https://www.rightmove.co.uk/properties/161212577", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43812/161212577/43812_33691719_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.937191", - "last_seen": "2025-06-01T22:06:05.444124", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06838, - 51.501366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.8, - "qmprice": 33.01, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/161212718", - "info": { - "identifier": 161212718, - "sqm_ocr": 84.8, - "price": 2799.0, - "price_per_sqm": 33.007075471698116, - "url": "https://www.rightmove.co.uk/properties/161212718", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/161212718/84791_33843421_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.661692", - "last_seen": "2025-06-01T22:05:44.354101", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293034, - 51.524456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161212784", - "info": { - "identifier": 161212784, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161212784", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "RE/MAX Property Hub", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258956/161212784/258956_33843428_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.433493", - "last_seen": "2025-06-01T22:06:05.449980", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039537, - 51.49526 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 47.89, - "rooms": 2, - "total_price": 3879.0, - "url": "https://www.rightmove.co.uk/properties/161213039", - "info": { - "identifier": 161213039, - "sqm_ocr": 81.0, - "price": 3879.0, - "price_per_sqm": 47.888888888888886, - "url": "https://www.rightmove.co.uk/properties/161213039", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161213039/55101_1315683_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.907119", - "last_seen": "2025-06-01T22:06:06.928740", - "price": 3879.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102583, - 51.495773 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161213105", - "info": { - "identifier": 161213105, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161213105", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hiltons Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242060/161213105/242060_102765000874_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.258062", - "last_seen": "2025-06-01T22:05:52.247556", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36752, - 51.48841 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.5, - "qmprice": 58.95, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161213267", - "info": { - "identifier": 161213267, - "sqm_ocr": 47.5, - "price": 2800.0, - "price_per_sqm": 58.94736842105263, - "url": "https://www.rightmove.co.uk/properties/161213267", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/161213267/149153_1320537_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.647728", - "last_seen": "2025-06-01T22:06:07.758242", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148191, - 51.359486 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161213411", - "info": { - "identifier": 161213411, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161213411", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/161213411/135416_BPL180007_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.001297", - "last_seen": "2025-06-01T22:06:13.049579", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176583, - 51.470375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161213498", - "info": { - "identifier": 161213498, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161213498", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Steed Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285482/161213498/285482_R157197_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.056656", - "last_seen": "2025-06-01T22:06:04.038555", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.019157, - 51.5766 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161213813", - "info": { - "identifier": 161213813, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161213813", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Steed Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285482/161213813/285482_R199248_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.007874", - "last_seen": "2025-06-01T22:06:03.890151", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.089061, - 51.56192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.43, - "qmprice": 36.19, - "rooms": 2, - "total_price": 2513.0, - "url": "https://www.rightmove.co.uk/properties/161214164", - "info": { - "identifier": 161214164, - "sqm_ocr": 69.43, - "price": 2513.0, - "price_per_sqm": 36.19472850352873, - "url": "https://www.rightmove.co.uk/properties/161214164", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/161214164/29861_33843533_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.044225", - "last_seen": "2025-06-01T17:39:04.537738", - "price": 2513 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038878, - 51.520473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/161214473", - "info": { - "identifier": 161214473, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161214473", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161214473/17888_33096_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.755947", - "last_seen": "2025-06-01T22:05:42.559702", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1545, - 51.54154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.72, - "qmprice": 32.33, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/161214851", - "info": { - "identifier": 161214851, - "sqm_ocr": 73.72, - "price": 2383.0, - "price_per_sqm": 32.325013564839935, - "url": "https://www.rightmove.co.uk/properties/161214851", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/161214851/136139_2690494_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.880607", - "last_seen": "2025-06-01T22:06:08.653554", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.003482, - 51.51527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161214881", - "info": { - "identifier": 161214881, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161214881", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "STONEBANKS UK LTD", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272417/161214881/272417_33843562_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.311306", - "last_seen": "2025-06-01T22:05:44.019546", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.345988, - 51.509212 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.0, - "qmprice": 61.05, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/161214947", - "info": { - "identifier": 161214947, - "sqm_ocr": 55.0, - "price": 3358.0, - "price_per_sqm": 61.054545454545455, - "url": "https://www.rightmove.co.uk/properties/161214947", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80905/161214947/80905_BSL160148_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.628349", - "last_seen": "2025-06-01T22:06:15.262146", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120764, - 51.512646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.58, - "qmprice": 52.76, - "rooms": 2, - "total_price": 3935.0, - "url": "https://www.rightmove.co.uk/properties/161214983", - "info": { - "identifier": 161214983, - "sqm_ocr": 74.58, - "price": 3935.0, - "price_per_sqm": 52.7621346205417, - "url": "https://www.rightmove.co.uk/properties/161214983", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/161214983/29861_33843571_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.248228", - "last_seen": "2025-06-01T22:06:15.210865", - "price": 3934 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167701, - 51.529385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161215541", - "info": { - "identifier": 161215541, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161215541", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/161215541/252785_33843602_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.077200", - "last_seen": "2025-06-01T22:05:56.875757", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324301, - 51.484608 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161215544", - "info": { - "identifier": 161215544, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161215544", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "ENS Property Group Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247784/161215544/247784_247784-74237_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.499987", - "last_seen": "2025-06-01T22:05:56.843674", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076506, - 51.51604 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 124.1, - "qmprice": 32.23, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161215688", - "info": { - "identifier": 161215688, - "sqm_ocr": 124.1, - "price": 4000.0, - "price_per_sqm": 32.232070910556004, - "url": "https://www.rightmove.co.uk/properties/161215688", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/161215688/51465_669a8f9082ea6_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.569782", - "last_seen": "2025-06-01T22:06:01.206922", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225542, - 51.417652 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161216348", - "info": { - "identifier": 161216348, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161216348", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Birchills", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115933/161216348/115933_6ca88f1d-3869-4ffc-8979-f97413fd60ba_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.326872", - "last_seen": "2025-06-01T22:05:51.051915", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.230046, - 51.587963 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.7, - "qmprice": 39.62, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161216468", - "info": { - "identifier": 161216468, - "sqm_ocr": 75.7, - "price": 2999.0, - "price_per_sqm": 39.61690885072655, - "url": "https://www.rightmove.co.uk/properties/161216468", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218729/161216468/218729_33843255_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.160650", - "last_seen": "2025-06-01T22:05:42.576072", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140203, - 51.53539 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.0, - "qmprice": 29.13, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161216597", - "info": { - "identifier": 161216597, - "sqm_ocr": 103.0, - "price": 3000.0, - "price_per_sqm": 29.12621359223301, - "url": "https://www.rightmove.co.uk/properties/161216597", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13096/161216597/13096_EAF130006_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.239751", - "last_seen": "2025-06-01T22:05:39.575651", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166788, - 51.588192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.1, - "qmprice": 20.16, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161216930", - "info": { - "identifier": 161216930, - "sqm_ocr": 114.1, - "price": 2300.0, - "price_per_sqm": 20.157756354075374, - "url": "https://www.rightmove.co.uk/properties/161216930", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Romans", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156068/161216930/156068_UXC230083_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.669468", - "last_seen": "2025-06-01T22:05:51.397617", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.4748, - 51.5278 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.0, - "qmprice": 59.96, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/161217230", - "info": { - "identifier": 161217230, - "sqm_ocr": 56.0, - "price": 3358.0, - "price_per_sqm": 59.964285714285715, - "url": "https://www.rightmove.co.uk/properties/161217230", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Tavistock Bow", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/111k/110768/161217230/110768_101184000405_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.309542", - "last_seen": "2025-06-01T22:06:15.018689", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12076, - 51.51265 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161217278", - "info": { - "identifier": 161217278, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161217278", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/161217278/252785_33843721_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.902977", - "last_seen": "2025-06-01T22:05:51.871086", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324301, - 51.484608 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161217542", - "info": { - "identifier": 161217542, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161217542", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50304/161217542/50304_33843737_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.456920", - "last_seen": "2025-06-01T22:05:45.273096", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285442, - 51.510094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.8, - "qmprice": 43.01, - "rooms": 2, - "total_price": 2873.0, - "url": "https://www.rightmove.co.uk/properties/161218151", - "info": { - "identifier": 161218151, - "sqm_ocr": 66.8, - "price": 2873.0, - "price_per_sqm": 43.00898203592815, - "url": "https://www.rightmove.co.uk/properties/161218151", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/161218151/84833_33798127_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.334036", - "last_seen": "2025-06-01T22:05:49.325035", - "price": 2873 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212992, - 51.49566 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161218664", - "info": { - "identifier": 161218664, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161218664", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11465/161218664/11465_0421_HRT042101553_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.914438", - "last_seen": "2025-06-01T22:06:04.109047", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.035851, - 51.607452 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 33.95, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161218835", - "info": { - "identifier": 161218835, - "sqm_ocr": 81.0, - "price": 2750.0, - "price_per_sqm": 33.95061728395062, - "url": "https://www.rightmove.co.uk/properties/161218835", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons in association with James Pendleton", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279224/161218835/279224_JCC250025_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.123496", - "last_seen": "2025-06-01T22:05:59.283194", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135663, - 51.46378 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.6, - "qmprice": 37.56, - "rooms": 3, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/161219864", - "info": { - "identifier": 161219864, - "sqm_ocr": 79.6, - "price": 2990.0, - "price_per_sqm": 37.56281407035176, - "url": "https://www.rightmove.co.uk/properties/161219864", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98900/161219864/98900_P299593_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.561754", - "last_seen": "2025-06-01T22:06:04.583080", - "price": 2990 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25779, - 51.46885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161219918", - "info": { - "identifier": 161219918, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161219918", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/161219918/96542_ROCH_000428_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.482073", - "last_seen": "2025-06-01T22:05:53.272171", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119207, - 51.552017 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/161220152", - "info": { - "identifier": 161220152, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161220152", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "CITY REALTOR LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/179k/178868/161220152/178868_33843925_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.100649", - "last_seen": "2025-06-01T22:05:38.315280", - "price": 2799.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.103492, - 51.539948 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.7, - "qmprice": 34.26, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/161220209", - "info": { - "identifier": 161220209, - "sqm_ocr": 81.7, - "price": 2799.0, - "price_per_sqm": 34.2594859241126, - "url": "https://www.rightmove.co.uk/properties/161220209", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/161220209/136139_2710737_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.319343", - "last_seen": "2025-06-01T22:06:02.701811", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00562, - 51.51302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.4, - "qmprice": 43.14, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161220536", - "info": { - "identifier": 161220536, - "sqm_ocr": 90.4, - "price": 3900.0, - "price_per_sqm": 43.14159292035398, - "url": "https://www.rightmove.co.uk/properties/161220536", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/161220536/212327_P160479_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.010974", - "last_seen": "2025-06-01T22:06:09.346956", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01739, - 51.50091 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161220545", - "info": { - "identifier": 161220545, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161220545", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/161220545/82537_33843947_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.532404", - "last_seen": "2025-06-01T22:06:02.464440", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.006942, - 51.51302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.8, - "qmprice": 42.04, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161220677", - "info": { - "identifier": 161220677, - "sqm_ocr": 67.8, - "price": 2850.0, - "price_per_sqm": 42.0353982300885, - "url": "https://www.rightmove.co.uk/properties/161220677", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212396/161220677/212396_P160478_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.174850", - "last_seen": "2025-06-01T22:05:47.936616", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09227, - 51.57094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 32.85, - "rooms": 2, - "total_price": 2201.0, - "url": "https://www.rightmove.co.uk/properties/161222708", - "info": { - "identifier": 161222708, - "sqm_ocr": 67.0, - "price": 2201.0, - "price_per_sqm": 32.850746268656714, - "url": "https://www.rightmove.co.uk/properties/161222708", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146498/161222708/146498_33844083_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.150037", - "last_seen": "2025-06-01T22:06:05.935599", - "price": 2201 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090354, - 51.484997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161223053", - "info": { - "identifier": 161223053, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161223053", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25214/161223053/25214_33844117_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.627146", - "last_seen": "2025-06-01T22:06:06.757741", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.048966, - 51.498516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161223533", - "info": { - "identifier": 161223533, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161223533", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Luxe Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92324/161223533/92324_33844119_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.089409", - "last_seen": "2025-06-01T17:39:04.582573", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011333, - 51.5091 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.7, - "qmprice": 35.27, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161223713", - "info": { - "identifier": 161223713, - "sqm_ocr": 56.7, - "price": 2000.0, - "price_per_sqm": 35.273368606701936, - "url": "https://www.rightmove.co.uk/properties/161223713", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Century 21 London Central", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45920/161223713/45920_R189154_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.518814", - "last_seen": "2025-06-01T22:05:59.304301", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117912, - 51.48319 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161223839", - "info": { - "identifier": 161223839, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161223839", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84818/161223839/84818_33844161_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.275181", - "last_seen": "2025-06-01T22:06:04.533646", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.368711, - 51.455845 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161223965", - "info": { - "identifier": 161223965, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161223965", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Leo Newman", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98603/161223965/98603_2712338_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.282185", - "last_seen": "2025-06-01T22:05:49.501738", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21261, - 51.49029 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 35.38, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161224574", - "info": { - "identifier": 161224574, - "sqm_ocr": 65.0, - "price": 2300.0, - "price_per_sqm": 35.38461538461539, - "url": "https://www.rightmove.co.uk/properties/161224574", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Harris and Company", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52827/161224574/52827_33844185_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.035816", - "last_seen": "2025-06-01T22:05:40.538537", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19528, - 51.537804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161225561", - "info": { - "identifier": 161225561, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161225561", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Romans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156068/161225561/156068_UXC230067_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.482157", - "last_seen": "2025-06-01T22:05:51.160319", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.4636, - 51.5264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.5, - "qmprice": 29.02, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161225570", - "info": { - "identifier": 161225570, - "sqm_ocr": 96.5, - "price": 2800.0, - "price_per_sqm": 29.015544041450777, - "url": "https://www.rightmove.co.uk/properties/161225570", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12814/161225570/12814_EAM250425_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.328395", - "last_seen": "2025-06-01T22:05:44.032116", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312074, - 51.520393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2219.0, - "url": "https://www.rightmove.co.uk/properties/161226242", - "info": { - "identifier": 161226242, - "sqm_ocr": null, - "price": 2219.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161226242", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Native Communities", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272639/161226242/272639_2BedFF_IMG_00_0000_max_656x437.png", - "let_date_available": "02/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.679242", - "last_seen": "2025-06-01T22:05:43.333916", - "price": 2219.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092, - 51.37673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.3, - "qmprice": 40.09, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161226323", - "info": { - "identifier": 161226323, - "sqm_ocr": 87.3, - "price": 3500.0, - "price_per_sqm": 40.09163802978236, - "url": "https://www.rightmove.co.uk/properties/161226323", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166331/161226323/166331_1323442_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.071528", - "last_seen": "2025-06-01T22:05:40.531966", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303911, - 51.545715 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.47, - "qmprice": 44.27, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161227670", - "info": { - "identifier": 161227670, - "sqm_ocr": 56.47, - "price": 2500.0, - "price_per_sqm": 44.271294492650966, - "url": "https://www.rightmove.co.uk/properties/161227670", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/161227670/135416_HEA217676_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.865741", - "last_seen": "2025-06-01T22:06:13.546278", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140548, - 51.479572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161227784", - "info": { - "identifier": 161227784, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161227784", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Robsons", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264851/161227784/264851_2712248_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.890537", - "last_seen": "2025-06-01T22:05:50.326899", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37549, - 51.60443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.79, - "qmprice": 45.63, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161228315", - "info": { - "identifier": 161228315, - "sqm_ocr": 54.79, - "price": 2500.0, - "price_per_sqm": 45.628764373060775, - "url": "https://www.rightmove.co.uk/properties/161228315", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50930/161228315/50930_P5083E2128_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.133792", - "last_seen": "2025-06-01T22:05:44.825360", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30024, - 51.512 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161228390", - "info": { - "identifier": 161228390, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161228390", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66783/161228390/66783_P3778B2209_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.283664", - "last_seen": "2025-06-01T22:06:01.629922", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22127, - 51.4156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.7, - "qmprice": 39.25, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161228498", - "info": { - "identifier": 161228498, - "sqm_ocr": 63.7, - "price": 2500.0, - "price_per_sqm": 39.24646781789639, - "url": "https://www.rightmove.co.uk/properties/161228498", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/161228498/84875_33844518_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.273343", - "last_seen": "2025-06-01T22:05:59.155557", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132235, - 51.46226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161228735", - "info": { - "identifier": 161228735, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161228735", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/161228735/39507_630483_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.179346", - "last_seen": "2025-06-01T22:05:42.616205", - "price": 3150 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129884, - 51.543358 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.5, - "qmprice": 48.65, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161228789", - "info": { - "identifier": 161228789, - "sqm_ocr": 55.5, - "price": 2700.0, - "price_per_sqm": 48.648648648648646, - "url": "https://www.rightmove.co.uk/properties/161228789", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/161228789/84833_33844544_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.107287", - "last_seen": "2025-06-01T22:05:48.897337", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213364, - 51.4993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.26, - "qmprice": 46.09, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161228861", - "info": { - "identifier": 161228861, - "sqm_ocr": 67.26, - "price": 3100.0, - "price_per_sqm": 46.08980077311924, - "url": "https://www.rightmove.co.uk/properties/161228861", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/161228861/44537_TOL241132_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.991251", - "last_seen": "2025-06-01T20:20:00.063323", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070078, - 51.52089 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161228870", - "info": { - "identifier": 161228870, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161228870", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/161228870/39507_73415_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.976235", - "last_seen": "2025-06-01T22:06:09.183511", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.047345, - 51.524994 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.0, - "qmprice": 24.53, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161228909", - "info": { - "identifier": 161228909, - "sqm_ocr": 106.0, - "price": 2600.0, - "price_per_sqm": 24.528301886792452, - "url": "https://www.rightmove.co.uk/properties/161228909", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206645/161228909/206645_33844557_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.467739", - "last_seen": "2025-06-01T22:05:51.128035", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.43165, - 51.610455 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161229362", - "info": { - "identifier": 161229362, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161229362", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Infinity Property Solutions", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111497/161229362/111497_28999004_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.858799", - "last_seen": "2025-06-01T22:05:41.322339", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303509, - 51.545666 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.3, - "qmprice": 39.94, - "rooms": 2, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/161229395", - "info": { - "identifier": 161229395, - "sqm_ocr": 66.3, - "price": 2648.0, - "price_per_sqm": 39.93966817496229, - "url": "https://www.rightmove.co.uk/properties/161229395", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/161229395/84866_33844591_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.444656", - "last_seen": "2025-06-01T22:05:45.246705", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.256401, - 51.500256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.6, - "qmprice": 44.78, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161230055", - "info": { - "identifier": 161230055, - "sqm_ocr": 53.6, - "price": 2400.0, - "price_per_sqm": 44.776119402985074, - "url": "https://www.rightmove.co.uk/properties/161230055", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64127/161230055/64127_1324238_IMG_03_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.776622", - "last_seen": "2025-06-01T22:05:55.384718", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142677, - 51.54419 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161230295", - "info": { - "identifier": 161230295, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161230295", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Cottage Fields", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65535/161230295/65535_125628f7-22ac-4f90-99f4-3c07c17a00f8_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.759211", - "last_seen": "2025-06-01T22:06:12.054179", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.002328, - 51.62764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161230430", - "info": { - "identifier": 161230430, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161230430", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/161230430/39507_73117_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.443697", - "last_seen": "2025-06-01T22:06:08.744084", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025155, - 51.49283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/161230532", - "info": { - "identifier": 161230532, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161230532", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Rentals And Sales", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50366/161230532/50366_RWI-91818179_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.494677", - "last_seen": "2025-06-01T22:06:05.848691", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089325, - 51.47438 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161230868", - "info": { - "identifier": 161230868, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161230868", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209807/161230868/209807_CDL200045_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.008676", - "last_seen": "2025-06-01T20:20:00.045581", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01997, - 51.49809 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.5, - "qmprice": 30.77, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161230898", - "info": { - "identifier": 161230898, - "sqm_ocr": 110.5, - "price": 3400.0, - "price_per_sqm": 30.76923076923077, - "url": "https://www.rightmove.co.uk/properties/161230898", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/161230898/100423_1320394_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.116932", - "last_seen": "2025-06-01T22:06:04.398273", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.272993, - 51.464176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.3, - "qmprice": 64.29, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/161231036", - "info": { - "identifier": 161231036, - "sqm_ocr": 57.3, - "price": 3684.0, - "price_per_sqm": 64.29319371727749, - "url": "https://www.rightmove.co.uk/properties/161231036", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/161231036/15942_1313932_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.370055", - "last_seen": "2025-06-01T22:06:15.782663", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167847, - 51.50023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.8, - "qmprice": 55.87, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161231060", - "info": { - "identifier": 161231060, - "sqm_ocr": 69.8, - "price": 3900.0, - "price_per_sqm": 55.873925501432666, - "url": "https://www.rightmove.co.uk/properties/161231060", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/161231060/15942_1324255_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.990170", - "last_seen": "2025-06-01T22:05:58.281183", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179522, - 51.494667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161231453", - "info": { - "identifier": 161231453, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161231453", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "NEXIS Property", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272531/161231453/272531_MYR250044_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.895628", - "last_seen": "2025-06-01T22:06:00.771723", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035163, - 51.48761 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 144.3, - "qmprice": 27.37, - "rooms": 4, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/161231498", - "info": { - "identifier": 161231498, - "sqm_ocr": 144.3, - "price": 3950.0, - "price_per_sqm": 27.37352737352737, - "url": "https://www.rightmove.co.uk/properties/161231498", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84800/161231498/84800_33844743_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.652746", - "last_seen": "2025-06-01T22:05:58.777104", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.309985, - 51.428352 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2499.0, - "url": "https://www.rightmove.co.uk/properties/161231837", - "info": { - "identifier": 161231837, - "sqm_ocr": null, - "price": 2499.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161231837", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "LAND ROYALE PROPERTIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272384/161231837/272384_OGTRYFANCLOSE_IMG_12_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.931582", - "last_seen": "2025-06-01T22:06:04.162816", - "price": 2499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.04696, - 51.58002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.0, - "qmprice": 37.78, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161232665", - "info": { - "identifier": 161232665, - "sqm_ocr": 90.0, - "price": 3400.0, - "price_per_sqm": 37.77777777777778, - "url": "https://www.rightmove.co.uk/properties/161232665", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "NEILSON & BAUER LTD", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226418/161232665/226418_ISL230215_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.877755", - "last_seen": "2025-06-01T22:05:47.356384", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08967, - 51.52798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.71, - "qmprice": 43.8, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/161233112", - "info": { - "identifier": 161233112, - "sqm_ocr": 62.71, - "price": 2747.0, - "price_per_sqm": 43.80481581884867, - "url": "https://www.rightmove.co.uk/properties/161233112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84794/161233112/84794_33844830_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.193754, - 51.484043 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.0, - "qmprice": 26.63, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161233241", - "info": { - "identifier": 161233241, - "sqm_ocr": 92.0, - "price": 2450.0, - "price_per_sqm": 26.630434782608695, - "url": "https://www.rightmove.co.uk/properties/161233241", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "S J Smith Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72819/161233241/72819_103010009720_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.980140", - "last_seen": "2025-06-01T22:05:52.295515", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42927, - 51.45616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.4, - "qmprice": 38.1, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/161233448", - "info": { - "identifier": 161233448, - "sqm_ocr": 94.4, - "price": 3597.0, - "price_per_sqm": 38.103813559322035, - "url": "https://www.rightmove.co.uk/properties/161233448", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Strutt & Parker - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56065/161233448/56065_FHL250019_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.894095", - "last_seen": "2025-06-01T22:05:48.617652", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20247, - 51.47812 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 128.6, - "qmprice": 23.33, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161233799", - "info": { - "identifier": 161233799, - "sqm_ocr": 128.6, - "price": 3000.0, - "price_per_sqm": 23.328149300155523, - "url": "https://www.rightmove.co.uk/properties/161233799", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Bhoday Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263807/161233799/263807_79a12fde-3e1b-4655-bf38-932a944683f8_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.041193", - "last_seen": "2025-06-01T22:06:12.732782", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140296, - 51.429775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161234138", - "info": { - "identifier": 161234138, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161234138", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161234138/96668_242126617032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.904993", - "last_seen": "2025-06-01T22:06:12.973213", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178878, - 51.4299 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161234195", - "info": { - "identifier": 161234195, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161234195", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161234195/96668_243577331032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.688192", - "last_seen": "2025-06-01T22:06:09.164686", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.030689, - 51.509315 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161234573", - "info": { - "identifier": 161234573, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161234573", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161234573/96668_246526828042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.112218", - "last_seen": "2025-06-01T22:05:44.493948", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.319333, - 51.51979 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161234771", - "info": { - "identifier": 161234771, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161234771", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161234771/96668_246546128042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.942635", - "last_seen": "2025-06-01T22:06:03.977163", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.065911, - 51.598534 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161235476", - "info": { - "identifier": 161235476, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161235476", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39741/161235476/39741_33815888_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.094333", - "last_seen": "2025-06-01T22:06:15.514076", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190908, - 51.52405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.7, - "qmprice": 33.64, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161235656", - "info": { - "identifier": 161235656, - "sqm_ocr": 87.7, - "price": 2950.0, - "price_per_sqm": 33.63740022805017, - "url": "https://www.rightmove.co.uk/properties/161235656", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Daniel Cobb", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58939/161235656/58939_9fa04135-ea21-4cb8-a9b2-686a6004e2cc_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.197300", - "last_seen": "2025-06-01T22:05:58.973975", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110861, - 51.487003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161236277", - "info": { - "identifier": 161236277, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161236277", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Greenstone Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88567/161236277/88567_28007906_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.770117", - "last_seen": "2025-06-01T22:06:14.627572", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179588, - 51.533703 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.5, - "qmprice": 37.01, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161236664", - "info": { - "identifier": 161236664, - "sqm_ocr": 63.5, - "price": 2350.0, - "price_per_sqm": 37.00787401574803, - "url": "https://www.rightmove.co.uk/properties/161236664", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/161236664/84875_33844973_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.997369", - "last_seen": "2025-06-01T22:05:59.997565", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13312, - 51.47407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.96, - "qmprice": 46.41, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/161236691", - "info": { - "identifier": 161236691, - "sqm_ocr": 82.96, - "price": 3850.0, - "price_per_sqm": 46.40790742526519, - "url": "https://www.rightmove.co.uk/properties/161236691", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/161236691/135416_JBA220040_L_IMG_24_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.044293", - "last_seen": "2025-06-01T22:06:12.741478", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177522, - 51.472195 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 31.75, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161236970", - "info": { - "identifier": 161236970, - "sqm_ocr": 63.0, - "price": 2000.0, - "price_per_sqm": 31.746031746031747, - "url": "https://www.rightmove.co.uk/properties/161236970", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Swift Property Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202445/161236970/202445_6384_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.460199", - "last_seen": "2025-06-01T22:06:01.760102", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159676, - 51.403908 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.66, - "qmprice": 45.07, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161236979", - "info": { - "identifier": 161236979, - "sqm_ocr": 77.66, - "price": 3500.0, - "price_per_sqm": 45.06824620139068, - "url": "https://www.rightmove.co.uk/properties/161236979", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161236979/55101_1324168_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.950910", - "last_seen": "2025-06-01T22:06:06.992772", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080268, - 51.49615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3545.0, - "url": "https://www.rightmove.co.uk/properties/161237126", - "info": { - "identifier": 161237126, - "sqm_ocr": null, - "price": 3545.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161237126", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Peter Michael Estates & Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25176/161237126/25176_1657_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.009228", - "last_seen": "2025-06-01T22:05:45.904594", - "price": 3545.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11845, - 51.62541 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161237213", - "info": { - "identifier": 161237213, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161237213", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83027/161237213/83027_33806452_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.003196", - "last_seen": "2025-06-01T22:06:10.663944", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.003645, - 51.51246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.8, - "qmprice": 47.35, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161237345", - "info": { - "identifier": 161237345, - "sqm_ocr": 52.8, - "price": 2500.0, - "price_per_sqm": 47.34848484848485, - "url": "https://www.rightmove.co.uk/properties/161237345", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137369/161237345/137369_1323686_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.201073", - "last_seen": "2025-06-01T22:06:11.635929", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016413, - 51.589565 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.6, - "qmprice": 29.96, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/161237357", - "info": { - "identifier": 161237357, - "sqm_ocr": 71.6, - "price": 2145.0, - "price_per_sqm": 29.958100558659222, - "url": "https://www.rightmove.co.uk/properties/161237357", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161237357/48101_1318824_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.042080", - "last_seen": "2025-06-01T22:06:02.366116", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.038, - 51.500664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.6, - "qmprice": 40.85, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161237363", - "info": { - "identifier": 161237363, - "sqm_ocr": 71.6, - "price": 2925.0, - "price_per_sqm": 40.85195530726257, - "url": "https://www.rightmove.co.uk/properties/161237363", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161237363/48101_1311727_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.926146", - "last_seen": "2025-06-01T22:06:02.352701", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.038, - 51.500664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161237429", - "info": { - "identifier": 161237429, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161237429", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96151/161237429/96151_HMM170002_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.771075", - "last_seen": "2025-06-01T22:05:48.721857", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213794, - 51.48017 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 39.73, - "rooms": 3, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/161237450", - "info": { - "identifier": 161237450, - "sqm_ocr": 83.0, - "price": 3298.0, - "price_per_sqm": 39.734939759036145, - "url": "https://www.rightmove.co.uk/properties/161237450", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "David Andrew", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93623/161237450/93623_a3a4e901-18bb-439e-a990-457cfffb6f77_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.649165", - "last_seen": "2025-06-01T22:05:53.568514", - "price": 3298.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115503, - 51.565807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161237600", - "info": { - "identifier": 161237600, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161237600", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Get Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/181k/180173/161237600/180173_180173_p0192941_MAWE1101_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.081071", - "last_seen": "2025-06-01T22:06:07.063615", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098038, - 51.494476 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 33.33, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161237828", - "info": { - "identifier": 161237828, - "sqm_ocr": 63.0, - "price": 2100.0, - "price_per_sqm": 33.333333333333336, - "url": "https://www.rightmove.co.uk/properties/161237828", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Squires Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46983/161237828/46983_33845037_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.570644", - "last_seen": "2025-06-01T22:05:38.531895", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215165, - 51.60794 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/161238086", - "info": { - "identifier": 161238086, - "sqm_ocr": null, - "price": 2535.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161238086", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/161238086/67576_RL1734_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.868240", - "last_seen": "2025-06-01T22:05:41.974463", - "price": 2490.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137393, - 51.545635 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.9, - "qmprice": 31.34, - "rooms": 2, - "total_price": 2253.0, - "url": "https://www.rightmove.co.uk/properties/161238107", - "info": { - "identifier": 161238107, - "sqm_ocr": 71.9, - "price": 2253.0, - "price_per_sqm": 31.335187760778858, - "url": "https://www.rightmove.co.uk/properties/161238107", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/161238107/84791_33845054_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.179072", - "last_seen": "2025-06-01T22:05:44.429746", - "price": 2149 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.308291, - 51.51662 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161238182", - "info": { - "identifier": 161238182, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161238182", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Russell Collins", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62074/161238182/62074_102926001587_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.617494", - "last_seen": "2025-06-01T22:05:44.361610", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30172, - 51.50726 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161238491", - "info": { - "identifier": 161238491, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161238491", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Talbies", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201209/161238491/201209_talbies_678468084_IMG_16_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.140463", - "last_seen": "2025-06-01T22:05:38.674259", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182878, - 51.611122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/161238872", - "info": { - "identifier": 161238872, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161238872", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Freder", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269027/161238872/269027_RL0282_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.593377", - "last_seen": "2025-06-01T22:05:53.893075", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09449, - 51.521675 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161239403", - "info": { - "identifier": 161239403, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161239403", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161239403/96668_240789405032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.403324", - "last_seen": "2025-06-01T22:06:10.090813", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016958, - 51.491997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.1, - "qmprice": 41.13, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161240075", - "info": { - "identifier": 161240075, - "sqm_ocr": 85.1, - "price": 3500.0, - "price_per_sqm": 41.12808460634548, - "url": "https://www.rightmove.co.uk/properties/161240075", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280514/161240075/280514_KRO250017_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.722411", - "last_seen": "2025-06-01T22:05:40.178360", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200699, - 51.542393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161240333", - "info": { - "identifier": 161240333, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161240333", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161240333/96668_244773510042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.356433", - "last_seen": "2025-06-01T22:05:41.656759", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.009202, - 51.422146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2690.0, - "url": "https://www.rightmove.co.uk/properties/161240627", - "info": { - "identifier": 161240627, - "sqm_ocr": null, - "price": 2690.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161240627", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161240627/96668_240536403032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.636651", - "last_seen": "2025-06-01T22:05:59.387567", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122096, - 51.44719 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161241371", - "info": { - "identifier": 161241371, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161241371", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 34, - "status": null, - "last_seen": 0, - "agency": "CITY REALTOR LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/179k/178868/161241371/178868_33845606_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.069142, - 51.51871 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161241839", - "info": { - "identifier": 161241839, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161241839", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161241839/96668_245022713042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.832146", - "last_seen": "2025-06-01T22:05:41.276558", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.244712, - 51.538815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161241896", - "info": { - "identifier": 161241896, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161241896", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161241896/96668_246598428042025_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.398548", - "last_seen": "2025-06-01T22:06:00.172661", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141703, - 51.456078 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161242139", - "info": { - "identifier": 161242139, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161242139", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161242139/96668_238571013022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.143387", - "last_seen": "2025-06-01T22:05:50.627640", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.341523, - 51.586933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.18, - "qmprice": 24.95, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161242430", - "info": { - "identifier": 161242430, - "sqm_ocr": 84.18, - "price": 2100.0, - "price_per_sqm": 24.94654312188168, - "url": "https://www.rightmove.co.uk/properties/161242430", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Balgores", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10596/161242430/10596_LOH250012_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.087168", - "last_seen": "2025-06-01T22:05:38.223283", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.161195, - 51.545567 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/161243081", - "info": { - "identifier": 161243081, - "sqm_ocr": null, - "price": 2195.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161243081", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161243081/96668_235746919012025_IMG_11_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.375648", - "last_seen": "2025-06-01T22:06:02.507091", - "price": 2175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.030214, - 51.527634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161244962", - "info": { - "identifier": 161244962, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161244962", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161244962/96668_246351226042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.026092", - "last_seen": "2025-06-01T22:05:59.257687", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107147, - 51.473473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161248082", - "info": { - "identifier": 161248082, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161248082", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hinton Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69686/161248082/69686_102800002721_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.880693", - "last_seen": "2025-06-01T22:05:50.307470", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33683, - 51.60344 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161248796", - "info": { - "identifier": 161248796, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161248796", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Absolute Property Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74249/161248796/74249_33845783_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.485275", - "last_seen": "2025-06-01T22:05:46.988051", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.106407, - 51.487015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161248880", - "info": { - "identifier": 161248880, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161248880", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "RE/MAX Property Hub", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258956/161248880/258956_33845790_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.444846", - "last_seen": "2025-06-01T22:06:02.865650", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.019499, - 51.512966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.02, - "qmprice": 33.61, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161248919", - "info": { - "identifier": 161248919, - "sqm_ocr": 87.02, - "price": 2925.0, - "price_per_sqm": 33.61296253734774, - "url": "https://www.rightmove.co.uk/properties/161248919", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65911/161248919/65911_WAQ012565638_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.994813", - "last_seen": "2025-06-01T22:06:09.204680", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057468, - 51.504143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 154.0, - "qmprice": 20.78, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161250200", - "info": { - "identifier": 161250200, - "sqm_ocr": 154.0, - "price": 3200.0, - "price_per_sqm": 20.77922077922078, - "url": "https://www.rightmove.co.uk/properties/161250200", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13105/161250200/13105_NFL180200_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.080369", - "last_seen": "2025-06-01T22:05:38.476284", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165007, - 51.61239 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/161250614", - "info": { - "identifier": 161250614, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161250614", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/161250614/198539_33845912_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.015184", - "last_seen": "2025-06-01T22:06:02.595151", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.071829, - 51.506523 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/161250635", - "info": { - "identifier": 161250635, - "sqm_ocr": null, - "price": 2375.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161250635", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/161250635/198539_33845916_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.275504", - "last_seen": "2025-06-01T22:06:02.566451", - "price": 2374 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012373, - 51.511406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161250656", - "info": { - "identifier": 161250656, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161250656", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/161250656/198539_33845918_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.666347", - "last_seen": "2025-06-01T22:06:02.540480", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.006942, - 51.51302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2232.0, - "url": "https://www.rightmove.co.uk/properties/161250746", - "info": { - "identifier": 161250746, - "sqm_ocr": null, - "price": 2232.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161250746", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/161250746/96542_ROCH_000386_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.469707", - "last_seen": "2025-06-01T22:05:43.022052", - "price": 2231 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142868, - 51.54556 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161250752", - "info": { - "identifier": 161250752, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161250752", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Olivers Town", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54833/161250752/54833_90613_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.944554", - "last_seen": "2025-06-01T22:05:43.031829", - "price": 3800 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142827, - 51.54634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161250941", - "info": { - "identifier": 161250941, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161250941", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Centro", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/60k/59563/161250941/59563_33845938_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.316272", - "last_seen": "2025-06-01T22:06:07.764116", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14565, - 51.366714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161251016", - "info": { - "identifier": 161251016, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161251016", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Your Move", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6591/161251016/6591_SUR250004_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.773311", - "last_seen": "2025-06-01T22:05:58.714356", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.308628, - 51.398193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.2, - "qmprice": 25.81, - "rooms": 4, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161251511", - "info": { - "identifier": 161251511, - "sqm_ocr": 116.2, - "price": 2999.0, - "price_per_sqm": 25.80895008605852, - "url": "https://www.rightmove.co.uk/properties/161251511", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/205k/204995/161251511/204995_CSG240544_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.584733", - "last_seen": "2025-06-01T22:05:41.022518", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215778, - 51.554737 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.0, - "qmprice": 42.86, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161251697", - "info": { - "identifier": 161251697, - "sqm_ocr": 49.0, - "price": 2100.0, - "price_per_sqm": 42.857142857142854, - "url": "https://www.rightmove.co.uk/properties/161251697", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Orlando Reid", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86327/161251697/86327_33056303_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.300777", - "last_seen": "2025-06-01T22:05:59.170503", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134884, - 51.457584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.6, - "qmprice": 26.63, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161252345", - "info": { - "identifier": 161252345, - "sqm_ocr": 82.6, - "price": 2200.0, - "price_per_sqm": 26.63438256658596, - "url": "https://www.rightmove.co.uk/properties/161252345", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50181/161252345/50181_32221786_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.463338", - "last_seen": "2025-06-01T22:05:51.117594", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.416275, - 51.56327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.6, - "qmprice": 44.97, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161252822", - "info": { - "identifier": 161252822, - "sqm_ocr": 65.6, - "price": 2950.0, - "price_per_sqm": 44.96951219512196, - "url": "https://www.rightmove.co.uk/properties/161252822", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "April", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75126/161252822/75126_APR250037_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.052807", - "last_seen": "2025-06-01T22:05:54.821989", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.033824, - 51.55266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 33.33, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161254274", - "info": { - "identifier": 161254274, - "sqm_ocr": 75.0, - "price": 2500.0, - "price_per_sqm": 33.333333333333336, - "url": "https://www.rightmove.co.uk/properties/161254274", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Stones Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106225/161254274/106225_BEP200387_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.763249", - "last_seen": "2025-06-01T22:05:55.999720", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.248977, - 51.513596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161254529", - "info": { - "identifier": 161254529, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161254529", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161254529/96668_246499228042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.855890", - "last_seen": "2025-06-01T22:05:47.282777", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09752, - 51.56631 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161254532", - "info": { - "identifier": 161254532, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161254532", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161254532/96668_246499928042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.851383", - "last_seen": "2025-06-01T22:05:47.280966", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087071, - 51.55554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161254556", - "info": { - "identifier": 161254556, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161254556", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161254556/96668_246524728042025_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.844900", - "last_seen": "2025-06-01T22:05:47.270562", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.054433, - 51.557957 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161254682", - "info": { - "identifier": 161254682, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161254682", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161254682/96668_246628629042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.412162", - "last_seen": "2025-06-01T22:05:38.920083", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180772, - 51.625187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161255000", - "info": { - "identifier": 161255000, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161255000", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42912/161255000/42912_CBS210008_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.714612", - "last_seen": "2025-06-01T22:06:14.256496", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.227602, - 51.462803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.6, - "qmprice": 27.42, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161255339", - "info": { - "identifier": 161255339, - "sqm_ocr": 76.6, - "price": 2100.0, - "price_per_sqm": 27.41514360313316, - "url": "https://www.rightmove.co.uk/properties/161255339", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13325/161255339/13325_CHL140009_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.251939", - "last_seen": "2025-06-01T22:05:52.070300", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.301545, - 51.48443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161255801", - "info": { - "identifier": 161255801, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161255801", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44870/161255801/44870_32990402_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.078914", - "last_seen": "2025-06-01T22:05:38.482676", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217849, - 51.577873 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2209.0, - "url": "https://www.rightmove.co.uk/properties/161256059", - "info": { - "identifier": 161256059, - "sqm_ocr": null, - "price": 2209.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161256059", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Native Communities", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272639/161256059/272639_1Bed-FF-North_IMG_04_0000_max_656x437.png", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.851768", - "last_seen": "2025-06-01T22:05:43.589116", - "price": 2209.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092, - 51.37673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161256581", - "info": { - "identifier": 161256581, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161256581", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/161256581/222842_TCT250096_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.634265", - "last_seen": "2025-06-01T22:05:39.717998", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197762, - 51.58103 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 34.86, - "rooms": 2, - "total_price": 2405.0, - "url": "https://www.rightmove.co.uk/properties/161257343", - "info": { - "identifier": 161257343, - "sqm_ocr": 69.0, - "price": 2405.0, - "price_per_sqm": 34.85507246376812, - "url": "https://www.rightmove.co.uk/properties/161257343", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Daniels", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/25k/24347/161257343/24347_33827349_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.565720", - "last_seen": "2025-06-01T22:05:41.046347", - "price": 2405.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.280233, - 51.558163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 51.32, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161257553", - "info": { - "identifier": 161257553, - "sqm_ocr": 76.0, - "price": 3900.0, - "price_per_sqm": 51.31578947368421, - "url": "https://www.rightmove.co.uk/properties/161257553", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "AP Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235805/161257553/235805_33846361_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.027473", - "last_seen": "2025-06-01T22:06:09.752530", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013405, - 51.500046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161258579", - "info": { - "identifier": 161258579, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161258579", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Cromwells Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15626/161258579/15626_12659773_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.969463", - "last_seen": "2025-06-01T22:06:07.760200", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.236822, - 51.376286 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161258672", - "info": { - "identifier": 161258672, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161258672", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hotblack Desiato", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48488/161258672/48488_HIG250113_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.094831, - 51.55436 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.8, - "qmprice": 40.57, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161259092", - "info": { - "identifier": 161259092, - "sqm_ocr": 83.8, - "price": 3400.0, - "price_per_sqm": 40.572792362768496, - "url": "https://www.rightmove.co.uk/properties/161259092", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/161259092/84875_33846469_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.484866", - "last_seen": "2025-06-01T22:05:59.655217", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124795, - 51.460278 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.9, - "qmprice": 33.75, - "rooms": 2, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/161259542", - "info": { - "identifier": 161259542, - "sqm_ocr": 76.9, - "price": 2595.0, - "price_per_sqm": 33.74512353706112, - "url": "https://www.rightmove.co.uk/properties/161259542", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84809/161259542/84809_32522490_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.236422", - "last_seen": "2025-06-01T22:05:52.233853", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324236, - 51.467224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/161260913", - "info": { - "identifier": 161260913, - "sqm_ocr": null, - "price": 2349.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161260913", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/161260913/198539_33846590_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.295239", - "last_seen": "2025-06-01T22:06:11.304358", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0212, - 51.51284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 37.97, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161261318", - "info": { - "identifier": 161261318, - "sqm_ocr": 79.0, - "price": 3000.0, - "price_per_sqm": 37.9746835443038, - "url": "https://www.rightmove.co.uk/properties/161261318", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19269/161261318/19269_BET220059_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.667852", - "last_seen": "2025-06-01T22:06:09.676954", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052164, - 51.52856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.0, - "qmprice": 38.35, - "rooms": 3, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/161261996", - "info": { - "identifier": 161261996, - "sqm_ocr": 103.0, - "price": 3950.0, - "price_per_sqm": 38.349514563106794, - "url": "https://www.rightmove.co.uk/properties/161261996", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Maurice Louis", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/159k/158258/161261996/158258_035PUC_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.088486", - "last_seen": "2025-06-01T22:06:07.103368", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.050534, - 51.49868 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.4, - "qmprice": 36.65, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161262047", - "info": { - "identifier": 161262047, - "sqm_ocr": 106.4, - "price": 3900.0, - "price_per_sqm": 36.65413533834586, - "url": "https://www.rightmove.co.uk/properties/161262047", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166331/161262047/166331_1324247_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.725730", - "last_seen": "2025-06-01T22:05:44.270208", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.330847, - 51.55286 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.91, - "qmprice": 56.12, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161262071", - "info": { - "identifier": 161262071, - "sqm_ocr": 57.91, - "price": 3250.0, - "price_per_sqm": 56.12156795026766, - "url": "https://www.rightmove.co.uk/properties/161262071", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/161262071/15963_1324339_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.969918", - "last_seen": "2025-06-01T22:06:12.279797", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200575, - 51.451653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.9, - "qmprice": 37.98, - "rooms": 2, - "total_price": 2579.0, - "url": "https://www.rightmove.co.uk/properties/161262095", - "info": { - "identifier": 161262095, - "sqm_ocr": 67.9, - "price": 2579.0, - "price_per_sqm": 37.982326951399116, - "url": "https://www.rightmove.co.uk/properties/161262095", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/161262095/108515_1318750_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.517029", - "last_seen": "2025-06-01T22:05:57.796601", - "price": 2579.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204858, - 51.49652 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2749.0, - "url": "https://www.rightmove.co.uk/properties/161262110", - "info": { - "identifier": 161262110, - "sqm_ocr": null, - "price": 2749.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161262110", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Waltham Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108803/161262110/108803_3230_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.732583", - "last_seen": "2025-06-01T22:06:11.984463", - "price": 2749.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004625, - 51.569744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.79, - "qmprice": 80.34, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161262698", - "info": { - "identifier": 161262698, - "sqm_ocr": 49.79, - "price": 4000.0, - "price_per_sqm": 80.33741715203857, - "url": "https://www.rightmove.co.uk/properties/161262698", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Shaws Kensington", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41814/161262698/41814_SHW_SHW_LFSYCL_354_508406196_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.091043", - "last_seen": "2025-06-01T22:05:48.862775", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20707, - 51.488552 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161262851", - "info": { - "identifier": 161262851, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161262851", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48798/161262851/48798_YLG200050_L_IMG_21_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.345976", - "last_seen": "2025-06-01T22:06:04.287030", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.335552, - 51.454525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/161262902", - "info": { - "identifier": 161262902, - "sqm_ocr": null, - "price": 2349.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161262902", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/161262902/82537_33846688_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.231725", - "last_seen": "2025-06-01T22:06:09.544854", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0212, - 51.51284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2095.0, - "url": "https://www.rightmove.co.uk/properties/161263868", - "info": { - "identifier": 161263868, - "sqm_ocr": null, - "price": 2095.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161263868", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58464/161263868/58464_33846767_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.634425", - "last_seen": "2025-06-01T22:05:58.802945", - "price": 2095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305588, - 51.39089 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161264156", - "info": { - "identifier": 161264156, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161264156", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Robert Cooper & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92245/161264156/92245_EAS240270_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.474805", - "last_seen": "2025-06-01T20:19:32.862008", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.407584, - 51.566456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 25.95, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161264174", - "info": { - "identifier": 161264174, - "sqm_ocr": 79.0, - "price": 2050.0, - "price_per_sqm": 25.949367088607595, - "url": "https://www.rightmove.co.uk/properties/161264174", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie together with Thorgills", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242945/161264174/242945_HIV250520_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.112130", - "last_seen": "2025-06-01T22:05:51.777679", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.352453, - 51.469917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.96, - "qmprice": 30.79, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161264225", - "info": { - "identifier": 161264225, - "sqm_ocr": 64.96, - "price": 2000.0, - "price_per_sqm": 30.78817733990148, - "url": "https://www.rightmove.co.uk/properties/161264225", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82844/161264225/82844_P5691B3508_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.270162", - "last_seen": "2025-06-01T22:06:13.105650", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14261, - 51.41924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161264627", - "info": { - "identifier": 161264627, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161264627", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51171/161264627/51171_000906790_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.691875", - "last_seen": "2025-06-01T22:06:11.564860", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00865, - 51.56928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.5, - "qmprice": 32.54, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161265512", - "info": { - "identifier": 161265512, - "sqm_ocr": 84.5, - "price": 2750.0, - "price_per_sqm": 32.544378698224854, - "url": "https://www.rightmove.co.uk/properties/161265512", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49933/161265512/49933_BAR110298_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.507047", - "last_seen": "2025-06-01T22:06:04.843053", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24157, - 51.48378 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161265575", - "info": { - "identifier": 161265575, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161265575", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Hawksgrove Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278102/161265575/278102_32510312_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.046403", - "last_seen": "2025-06-01T22:05:45.725153", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098119, - 51.660442 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.4, - "qmprice": 41.28, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161265848", - "info": { - "identifier": 161265848, - "sqm_ocr": 65.4, - "price": 2700.0, - "price_per_sqm": 41.28440366972477, - "url": "https://www.rightmove.co.uk/properties/161265848", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/161265848/63031_CAL080144_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.243030", - "last_seen": "2025-06-01T22:05:42.316325", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137742, - 51.533474 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.3, - "qmprice": 38.99, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161265938", - "info": { - "identifier": 161265938, - "sqm_ocr": 51.3, - "price": 2000.0, - "price_per_sqm": 38.98635477582846, - "url": "https://www.rightmove.co.uk/properties/161265938", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30575/161265938/30575_05310910_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.439108", - "last_seen": "2025-06-01T22:06:04.741366", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.294, - 51.461 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.3, - "qmprice": 40.33, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161266046", - "info": { - "identifier": 161266046, - "sqm_ocr": 84.3, - "price": 3400.0, - "price_per_sqm": 40.33214709371293, - "url": "https://www.rightmove.co.uk/properties/161266046", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/161266046/101522_1320560_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.305746", - "last_seen": "2025-06-01T22:05:47.457207", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053358, - 51.5455 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.8, - "qmprice": 31.75, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/161266328", - "info": { - "identifier": 161266328, - "sqm_ocr": 111.8, - "price": 3550.0, - "price_per_sqm": 31.753130590339893, - "url": "https://www.rightmove.co.uk/properties/161266328", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/161266328/84889_1323139_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.797295", - "last_seen": "2025-06-01T22:06:14.955070", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133788, - 51.48616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161266481", - "info": { - "identifier": 161266481, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161266481", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47640/161266481/47640_33846950_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.013887", - "last_seen": "2025-06-01T22:05:47.577201", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07972, - 51.527897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 136.3, - "qmprice": 24.92, - "rooms": 4, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/161266583", - "info": { - "identifier": 161266583, - "sqm_ocr": 136.3, - "price": 3397.0, - "price_per_sqm": 24.922964049889945, - "url": "https://www.rightmove.co.uk/properties/161266583", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/161266583/84866_33846968_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.818738", - "last_seen": "2025-06-01T22:05:45.305131", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.294669, - 51.52348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161267411", - "info": { - "identifier": 161267411, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161267411", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51171/161267411/51171_000906781_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.638313", - "last_seen": "2025-06-01T22:06:11.931822", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00865, - 51.56928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161268860", - "info": { - "identifier": 161268860, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161268860", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36789/161268860/36789_CAL230006_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.080112", - "last_seen": "2025-06-01T17:39:04.572220", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019359, - 51.501198 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3074.0, - "url": "https://www.rightmove.co.uk/properties/161269442", - "info": { - "identifier": 161269442, - "sqm_ocr": null, - "price": 3074.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161269442", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Native Communities", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272639/161269442/272639_3Bed-FF-North_IMG_12_0000_max_656x437.png", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.847878", - "last_seen": "2025-06-01T22:05:43.433929", - "price": 3074.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09193, - 51.37685 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.8, - "qmprice": 40.65, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161269472", - "info": { - "identifier": 161269472, - "sqm_ocr": 73.8, - "price": 3000.0, - "price_per_sqm": 40.65040650406504, - "url": "https://www.rightmove.co.uk/properties/161269472", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Arlington Rouse", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/174k/173180/161269472/173180_173180-21672_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:56.501968", - "last_seen": "2025-06-01T20:19:56.501968", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06858, - 51.51031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.9, - "qmprice": 40.49, - "rooms": 3, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/161270246", - "info": { - "identifier": 161270246, - "sqm_ocr": 83.9, - "price": 3397.0, - "price_per_sqm": 40.48867699642431, - "url": "https://www.rightmove.co.uk/properties/161270246", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "David Andrew", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93623/161270246/93623_95dd6b63-d61e-4fba-a023-2996724a3c42_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.585324", - "last_seen": "2025-06-01T22:05:53.503765", - "price": 3397.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110159, - 51.567684 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.7, - "qmprice": 26.08, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161271044", - "info": { - "identifier": 161271044, - "sqm_ocr": 76.7, - "price": 2000.0, - "price_per_sqm": 26.07561929595828, - "url": "https://www.rightmove.co.uk/properties/161271044", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/242k/241370/161271044/241370_33847177_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.830037", - "last_seen": "2025-06-01T22:06:06.901209", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.048556, - 51.465446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161271356", - "info": { - "identifier": 161271356, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161271356", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Hunt Property Services Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86834/161271356/86834_33847198_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.835769", - "last_seen": "2025-06-01T22:06:03.961505", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.066139, - 51.602734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161271815", - "info": { - "identifier": 161271815, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161271815", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Balgores", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83920/161271815/83920_RML250010_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.275501", - "last_seen": "2025-06-01T22:05:50.955121", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.195637, - 51.568924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.07, - "qmprice": 43.79, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161272145", - "info": { - "identifier": 161272145, - "sqm_ocr": 89.07, - "price": 3900.0, - "price_per_sqm": 43.78578646008757, - "url": "https://www.rightmove.co.uk/properties/161272145", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65439/161272145/65439_HOL190160_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.777303", - "last_seen": "2025-06-01T22:06:00.057245", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12801, - 51.481396 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.4, - "qmprice": 30.98, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161272148", - "info": { - "identifier": 161272148, - "sqm_ocr": 69.4, - "price": 2150.0, - "price_per_sqm": 30.979827089337174, - "url": "https://www.rightmove.co.uk/properties/161272148", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65794/161272148/65794_33847265_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.111134", - "last_seen": "2025-06-01T22:06:13.964305", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190276, - 51.443203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 34.57, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161272481", - "info": { - "identifier": 161272481, - "sqm_ocr": 81.0, - "price": 2800.0, - "price_per_sqm": 34.5679012345679, - "url": "https://www.rightmove.co.uk/properties/161272481", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Fieldhouse Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5539/161272481/5539_33847299_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.500377", - "last_seen": "2025-06-01T22:06:04.869774", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066177, - 51.467136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161272676", - "info": { - "identifier": 161272676, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161272676", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Hiltons Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263948/161272676/263948_102736003898_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.190358", - "last_seen": "2025-06-01T22:05:52.638198", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3832, - 51.48503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.3, - "qmprice": 50.44, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161273282", - "info": { - "identifier": 161273282, - "sqm_ocr": 79.3, - "price": 4000.0, - "price_per_sqm": 50.441361916771754, - "url": "https://www.rightmove.co.uk/properties/161273282", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "FMX PROPERTIES LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264155/161273282/264155_39CAWCL_IMG_20_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.321337", - "last_seen": "2025-06-01T22:05:49.327667", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22233, - 51.51114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161273312", - "info": { - "identifier": 161273312, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161273312", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Tower Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43011/161273312/43011_33847369_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.289642", - "last_seen": "2025-06-01T22:06:03.622241", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.032954, - 51.52509 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.0, - "qmprice": 43.27, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161273339", - "info": { - "identifier": 161273339, - "sqm_ocr": 52.0, - "price": 2250.0, - "price_per_sqm": 43.26923076923077, - "url": "https://www.rightmove.co.uk/properties/161273339", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Independent London", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91421/161273339/91421_102043001592_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.157315", - "last_seen": "2025-06-01T22:06:06.076382", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04705, - 51.50491 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.7, - "qmprice": 41.1, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/161273840", - "info": { - "identifier": 161273840, - "sqm_ocr": 81.7, - "price": 3358.0, - "price_per_sqm": 41.1015911872705, - "url": "https://www.rightmove.co.uk/properties/161273840", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54732/161273840/54732_STL250020_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.234928", - "last_seen": "2025-06-01T22:05:42.706299", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144556, - 51.527332 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2002.0, - "url": "https://www.rightmove.co.uk/properties/161273846", - "info": { - "identifier": 161273846, - "sqm_ocr": null, - "price": 2002.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161273846", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50966/161273846/50966_P2113C4114_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.129989", - "last_seen": "2025-06-01T22:05:49.011758", - "price": 2002 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23362, - 51.50562 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.61, - "qmprice": 42.33, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161274989", - "info": { - "identifier": 161274989, - "sqm_ocr": 62.61, - "price": 2650.0, - "price_per_sqm": 42.325507107490814, - "url": "https://www.rightmove.co.uk/properties/161274989", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92503/161274989/92503_BYL230043_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.119900", - "last_seen": "2025-06-01T22:05:48.968238", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210783, - 51.470997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.9, - "qmprice": 29.91, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161275667", - "info": { - "identifier": 161275667, - "sqm_ocr": 81.9, - "price": 2450.0, - "price_per_sqm": 29.91452991452991, - "url": "https://www.rightmove.co.uk/properties/161275667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212357/161275667/212357_P160278_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.879563", - "last_seen": "2025-06-01T22:06:00.785691", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03593, - 51.49205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161276663", - "info": { - "identifier": 161276663, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161276663", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Hoopers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10007/161276663/10007_29003514_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.836822", - "last_seen": "2025-06-01T22:05:41.297123", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.248543, - 51.56187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.1, - "qmprice": 37.45, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161276909", - "info": { - "identifier": 161276909, - "sqm_ocr": 72.1, - "price": 2700.0, - "price_per_sqm": 37.447988904299585, - "url": "https://www.rightmove.co.uk/properties/161276909", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166331/161276909/166331_1324401_IMG_07_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.292369, - 51.56051 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161277152", - "info": { - "identifier": 161277152, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161277152", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161277152/17888_20158_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.762170", - "last_seen": "2025-06-01T22:05:42.544435", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13735, - 51.54127 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.1, - "qmprice": 31.24, - "rooms": 2, - "total_price": 2752.0, - "url": "https://www.rightmove.co.uk/properties/161277659", - "info": { - "identifier": 161277659, - "sqm_ocr": 88.1, - "price": 2752.0, - "price_per_sqm": 31.2372304199773, - "url": "https://www.rightmove.co.uk/properties/161277659", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Cedar Estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79883/161277659/79883_3486_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.270032", - "last_seen": "2025-06-01T22:05:42.378509", - "price": 2751 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17476, - 51.53979 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161277665", - "info": { - "identifier": 161277665, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161277665", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Brookings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181742/161277665/181742_BRO250356_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.325577", - "last_seen": "2025-06-01T22:05:50.930888", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.202479, - 51.58128 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/161277932", - "info": { - "identifier": 161277932, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161277932", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/161277932/264404_RX576377_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.996232", - "last_seen": "2025-06-01T22:05:59.366257", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119532, - 51.494183 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161277956", - "info": { - "identifier": 161277956, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161277956", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Eden Harper", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/32k/31836/161277956/31836_33847619_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.983520", - "last_seen": "2025-06-01T22:05:59.351503", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114479, - 51.45993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.0, - "qmprice": 20.87, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161278007", - "info": { - "identifier": 161278007, - "sqm_ocr": 103.0, - "price": 2150.0, - "price_per_sqm": 20.87378640776699, - "url": "https://www.rightmove.co.uk/properties/161278007", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Leo Newman", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98603/161278007/98603_2712442_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.351956", - "last_seen": "2025-06-01T22:05:41.643571", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.09917, - 51.37509 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161279552", - "info": { - "identifier": 161279552, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161279552", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161279552/96668_246667929042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.572856", - "last_seen": "2025-06-01T22:06:14.053761", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146209, - 51.47773 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161279636", - "info": { - "identifier": 161279636, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161279636", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161279636/96668_224151528092024_IMG_13_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.516577", - "last_seen": "2025-06-01T22:06:01.505575", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223785, - 51.41282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.19, - "qmprice": 27.72, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161280410", - "info": { - "identifier": 161280410, - "sqm_ocr": 90.19, - "price": 2500.0, - "price_per_sqm": 27.719259341390398, - "url": "https://www.rightmove.co.uk/properties/161280410", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50939/161280410/50939_P0950E5629_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.401907", - "last_seen": "2025-06-01T22:05:45.174182", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36874, - 51.52691 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.32, - "qmprice": 34.25, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161281112", - "info": { - "identifier": 161281112, - "sqm_ocr": 61.32, - "price": 2100.0, - "price_per_sqm": 34.24657534246575, - "url": "https://www.rightmove.co.uk/properties/161281112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Huttons & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257087/161281112/257087_HLO-80915880_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.344572", - "last_seen": "2025-06-01T17:39:04.790167", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02175, - 51.500443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/161281151", - "info": { - "identifier": 161281151, - "sqm_ocr": null, - "price": 3142.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161281151", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105760/161281151/105760_33833621_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.972866", - "last_seen": "2025-06-01T22:06:15.409189", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138688, - 51.49107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.5, - "qmprice": 35.43, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161282126", - "info": { - "identifier": 161282126, - "sqm_ocr": 63.5, - "price": 2250.0, - "price_per_sqm": 35.43307086614173, - "url": "https://www.rightmove.co.uk/properties/161282126", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84815/161282126/84815_33847793_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.622424", - "last_seen": "2025-06-01T22:06:04.258857", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.346162, - 51.42765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.06, - "qmprice": 35.9, - "rooms": 2, - "total_price": 2838.0, - "url": "https://www.rightmove.co.uk/properties/161282681", - "info": { - "identifier": 161282681, - "sqm_ocr": 79.06, - "price": 2838.0, - "price_per_sqm": 35.89678725018973, - "url": "https://www.rightmove.co.uk/properties/161282681", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/161282681/70038_5095_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.908678", - "last_seen": "2025-06-01T22:05:49.369744", - "price": 2990 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193561, - 51.479412 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161282774", - "info": { - "identifier": 161282774, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161282774", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84785/161282774/84785_33847834_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.592084", - "last_seen": "2025-06-01T22:05:44.707010", - "price": 2500 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269501, - 51.52383 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.8, - "qmprice": 48.9, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161283206", - "info": { - "identifier": 161283206, - "sqm_ocr": 81.8, - "price": 4000.0, - "price_per_sqm": 48.899755501222494, - "url": "https://www.rightmove.co.uk/properties/161283206", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3615/161283206/3615_NGL240101_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.448427", - "last_seen": "2025-06-01T22:05:57.721031", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212989, - 51.504833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.05, - "qmprice": 38.86, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161283923", - "info": { - "identifier": 161283923, - "sqm_ocr": 72.05, - "price": 2800.0, - "price_per_sqm": 38.86190145732131, - "url": "https://www.rightmove.co.uk/properties/161283923", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161283923/15975_1324405_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.279125", - "last_seen": "2025-06-01T22:06:01.649110", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199387, - 51.4299 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.82, - "qmprice": 38.37, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161283974", - "info": { - "identifier": 161283974, - "sqm_ocr": 93.82, - "price": 3600.0, - "price_per_sqm": 38.37134939245364, - "url": "https://www.rightmove.co.uk/properties/161283974", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Leonard Leese", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35405/161283974/35405_33847919_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.009974", - "last_seen": "2025-06-01T22:06:06.709383", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103363, - 51.488735 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.3, - "qmprice": 30.75, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161284037", - "info": { - "identifier": 161284037, - "sqm_ocr": 68.3, - "price": 2100.0, - "price_per_sqm": 30.74670571010249, - "url": "https://www.rightmove.co.uk/properties/161284037", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84815/161284037/84815_33847931_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.512027", - "last_seen": "2025-06-01T22:06:04.537840", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307984, - 51.42092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3220.0, - "url": "https://www.rightmove.co.uk/properties/161284187", - "info": { - "identifier": 161284187, - "sqm_ocr": null, - "price": 3220.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161284187", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "The Goat Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266387/161284187/266387_33789309_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.440119", - "last_seen": "2025-06-01T22:05:41.180601", - "price": 3220.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.245456, - 51.55358 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161284409", - "info": { - "identifier": 161284409, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161284409", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Letting Engine", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257840/161284409/257840_260_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.361816", - "last_seen": "2025-06-01T22:05:49.363653", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22155, - 51.51168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/161285054", - "info": { - "identifier": 161285054, - "sqm_ocr": null, - "price": 2496.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161285054", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84785/161285054/84785_33848001_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.778515", - "last_seen": "2025-06-01T22:05:44.326102", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27938, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161285135", - "info": { - "identifier": 161285135, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161285135", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Alexander David Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/104k/103550/161285135/103550_12637257_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.266056", - "last_seen": "2025-06-01T17:39:04.715886", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.032526, - 51.53208 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161285426", - "info": { - "identifier": 161285426, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161285426", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/161285426/222842_TCH231617_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.108467", - "last_seen": "2025-06-01T22:05:47.537220", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090404, - 51.531452 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161285462", - "info": { - "identifier": 161285462, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161285462", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/161285462/222842_TCH230942_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.042549", - "last_seen": "2025-06-01T22:05:53.406711", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100175, - 51.542294 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161286320", - "info": { - "identifier": 161286320, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161286320", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Daniels", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13501/161286320/13501_33848074_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.060603", - "last_seen": "2025-06-01T22:05:41.017570", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.323888, - 51.556484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161286452", - "info": { - "identifier": 161286452, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161286452", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Edmund Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20894/161286452/20894_33029597_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.245922", - "last_seen": "2025-06-01T22:05:41.524143", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.077545, - 51.41952 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.1, - "qmprice": 31.7, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161286494", - "info": { - "identifier": 161286494, - "sqm_ocr": 63.1, - "price": 2000.0, - "price_per_sqm": 31.695721077654515, - "url": "https://www.rightmove.co.uk/properties/161286494", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50930/161286494/50930_P1011F2924_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.345004", - "last_seen": "2025-06-01T22:05:44.080499", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29454, - 51.51435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161286812", - "info": { - "identifier": 161286812, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161286812", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Campbell Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50214/161286812/50214_100088004344_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.225474", - "last_seen": "2025-06-01T22:06:11.519220", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00561, - 51.50682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2625.0, - "url": "https://www.rightmove.co.uk/properties/161287328", - "info": { - "identifier": 161287328, - "sqm_ocr": null, - "price": 2625.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161287328", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "The Stow Brothers", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/115k/114391/161287328/114391_33848126_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.716640", - "last_seen": "2025-06-01T22:06:11.958944", - "price": 2625.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005389, - 51.586998 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161288087", - "info": { - "identifier": 161288087, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161288087", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Lords Associates of London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29226/161288087/29226_4323695_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.577130", - "last_seen": "2025-06-01T22:05:51.689295", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.478061, - 51.539562 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161288258", - "info": { - "identifier": 161288258, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161288258", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Lords Associates of London", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29226/161288258/29226_5690957_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.480293", - "last_seen": "2025-06-01T22:05:51.151652", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.477618, - 51.53597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 48.28, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161288417", - "info": { - "identifier": 161288417, - "sqm_ocr": 58.0, - "price": 2800.0, - "price_per_sqm": 48.275862068965516, - "url": "https://www.rightmove.co.uk/properties/161288417", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/161288417/56751_1324457_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.749904", - "last_seen": "2025-06-01T22:06:00.014494", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112182, - 51.479267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.84, - "qmprice": 40.93, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161288429", - "info": { - "identifier": 161288429, - "sqm_ocr": 81.84, - "price": 3350.0, - "price_per_sqm": 40.93352883675464, - "url": "https://www.rightmove.co.uk/properties/161288429", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80551/161288429/80551_RIL230040_L_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.672520", - "last_seen": "2025-06-01T22:06:04.697989", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.278818, - 51.48013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.29, - "qmprice": 27.29, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161288726", - "info": { - "identifier": 161288726, - "sqm_ocr": 95.29, - "price": 2600.0, - "price_per_sqm": 27.28512960436562, - "url": "https://www.rightmove.co.uk/properties/161288726", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/161288726/108947_1322571_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.013808", - "last_seen": "2025-06-01T22:05:50.225198", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.362456, - 51.573494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/161288930", - "info": { - "identifier": 161288930, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161288930", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161288930/17888_22586_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.841588", - "last_seen": "2025-06-01T22:05:54.233271", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12479, - 51.55222 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161288993", - "info": { - "identifier": 161288993, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161288993", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Dorrington", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281918/161288993/281918_15869_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.061465", - "last_seen": "2025-06-01T22:06:07.071124", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08897, - 51.4878 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161289359", - "info": { - "identifier": 161289359, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161289359", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161289359/96668_243342828032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.707315", - "last_seen": "2025-06-01T22:06:01.152292", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172122, - 51.40631 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161290151", - "info": { - "identifier": 161290151, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161290151", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Lords Associates of London", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29226/161290151/29226_11054687_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.399838", - "last_seen": "2025-06-01T22:05:51.509175", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.466469, - 51.52638 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2798.0, - "url": "https://www.rightmove.co.uk/properties/161290454", - "info": { - "identifier": 161290454, - "sqm_ocr": null, - "price": 2798.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161290454", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Way of Life (The Gessner)", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267533/161290454/267533_EVER-2675332y10LMwreTsGti8CgMB7rbVFWVW8kam6HrYvi7FvL5Yuzr4pYq_IMG_17_0000_max_656x437.png", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.852356", - "last_seen": "2025-06-01T22:05:50.104724", - "price": 2721.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.060291, - 51.590145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.97, - "qmprice": 49.16, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161290460", - "info": { - "identifier": 161290460, - "sqm_ocr": 57.97, - "price": 2850.0, - "price_per_sqm": 49.16336035880628, - "url": "https://www.rightmove.co.uk/properties/161290460", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55326/161290460/55326_ISL180015_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.184374", - "last_seen": "2025-06-01T22:05:54.127898", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119539, - 51.537148 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3856.0, - "url": "https://www.rightmove.co.uk/properties/161290577", - "info": { - "identifier": 161290577, - "sqm_ocr": null, - "price": 3856.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161290577", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Rentr", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260789/161290577/260789_6e11caac-c577-41f2-9217-4c2daaf4c765_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.570516", - "last_seen": "2025-06-01T22:06:10.540545", - "price": 3856.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06331, - 51.50887 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161290688", - "info": { - "identifier": 161290688, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161290688", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Hoopers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10007/161290688/10007_29004068_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.401750", - "last_seen": "2025-06-01T22:05:40.390500", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247153, - 51.563496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.47, - "qmprice": 35.75, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/161291198", - "info": { - "identifier": 161291198, - "sqm_ocr": 68.47, - "price": 2448.0, - "price_per_sqm": 35.75288447495254, - "url": "https://www.rightmove.co.uk/properties/161291198", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157817/161291198/157817_2707938_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.254238", - "last_seen": "2025-06-01T17:39:04.704666", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01787, - 51.49993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.5, - "qmprice": 33.9, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/161291474", - "info": { - "identifier": 161291474, - "sqm_ocr": 73.5, - "price": 2492.0, - "price_per_sqm": 33.904761904761905, - "url": "https://www.rightmove.co.uk/properties/161291474", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/161291474/84791_33848403_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.982833", - "last_seen": "2025-06-01T22:05:44.461260", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290625, - 51.51897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.2, - "qmprice": 31.86, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161292395", - "info": { - "identifier": 161292395, - "sqm_ocr": 72.2, - "price": 2300.0, - "price_per_sqm": 31.85595567867036, - "url": "https://www.rightmove.co.uk/properties/161292395", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Marc and Partners", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201956/161292395/201956_MAY210180_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.938370", - "last_seen": "2025-06-01T22:06:02.961887", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03837, - 51.50228 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.1, - "qmprice": 37.13, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161292602", - "info": { - "identifier": 161292602, - "sqm_ocr": 78.1, - "price": 2900.0, - "price_per_sqm": 37.13188220230474, - "url": "https://www.rightmove.co.uk/properties/161292602", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Hemmingfords", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201083/161292602/201083_33848469_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.056745", - "last_seen": "2025-06-01T22:05:53.228448", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11616, - 51.53125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.0, - "qmprice": 40.21, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161292899", - "info": { - "identifier": 161292899, - "sqm_ocr": 97.0, - "price": 3900.0, - "price_per_sqm": 40.20618556701031, - "url": "https://www.rightmove.co.uk/properties/161292899", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Napier Watt Limited", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83443/161292899/83443_31920167_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.673466", - "last_seen": "2025-06-01T22:05:49.213205", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183159, - 51.472458 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.52, - "qmprice": 59.51, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/161293238", - "info": { - "identifier": 161293238, - "sqm_ocr": 49.52, - "price": 2947.0, - "price_per_sqm": 59.51130856219709, - "url": "https://www.rightmove.co.uk/properties/161293238", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/161293238/108515_1324487_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.195076", - "last_seen": "2025-06-01T22:05:57.793168", - "price": 2947.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201001, - 51.494602 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.3, - "qmprice": 35.22, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161293316", - "info": { - "identifier": 161293316, - "sqm_ocr": 65.3, - "price": 2300.0, - "price_per_sqm": 35.22205206738132, - "url": "https://www.rightmove.co.uk/properties/161293316", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/161293316/66771_1324468_IMG_05_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.747369", - "last_seen": "2025-06-01T22:05:59.974369", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118538, - 51.4896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.8, - "qmprice": 44.12, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161293442", - "info": { - "identifier": 161293442, - "sqm_ocr": 74.8, - "price": 3300.0, - "price_per_sqm": 44.11764705882353, - "url": "https://www.rightmove.co.uk/properties/161293442", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161293442/253853_1324474_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.212463", - "last_seen": "2025-06-01T22:06:06.185833", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101521, - 51.493492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.3, - "qmprice": 50.74, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161293457", - "info": { - "identifier": 161293457, - "sqm_ocr": 47.3, - "price": 2400.0, - "price_per_sqm": 50.73995771670191, - "url": "https://www.rightmove.co.uk/properties/161293457", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Spencer James Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283697/161293457/283697_12052_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.518904", - "last_seen": "2025-06-01T22:05:59.722884", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122943, - 51.466305 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161293460", - "info": { - "identifier": 161293460, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161293460", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Spencer James Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283697/161293460/283697_12441_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.525345", - "last_seen": "2025-06-01T22:05:59.729195", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122943, - 51.466305 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/161293502", - "info": { - "identifier": 161293502, - "sqm_ocr": null, - "price": 3792.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161293502", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/161293502/120463_33848537_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.382060", - "last_seen": "2025-06-01T22:06:15.786866", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18357, - 51.53774 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.3, - "qmprice": 46.97, - "rooms": 4, - "total_price": 3490.0, - "url": "https://www.rightmove.co.uk/properties/161293523", - "info": { - "identifier": 161293523, - "sqm_ocr": 74.3, - "price": 3490.0, - "price_per_sqm": 46.97173620457605, - "url": "https://www.rightmove.co.uk/properties/161293523", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/161293523/15969_1324090_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.016014", - "last_seen": "2025-06-01T22:05:44.988653", - "price": 3490.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.301219, - 51.528168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.8, - "qmprice": 36.34, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161293802", - "info": { - "identifier": 161293802, - "sqm_ocr": 90.8, - "price": 3300.0, - "price_per_sqm": 36.34361233480176, - "url": "https://www.rightmove.co.uk/properties/161293802", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82857/161293802/82857_1322839_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.046413", - "last_seen": "2025-06-01T17:39:04.540288", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027152, - 51.51758 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161295668", - "info": { - "identifier": 161295668, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161295668", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161295668/96668_245861622042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.301770", - "last_seen": "2025-06-01T17:39:04.751865", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057211, - 51.51291 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.3, - "qmprice": 28.64, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161295803", - "info": { - "identifier": 161295803, - "sqm_ocr": 80.3, - "price": 2300.0, - "price_per_sqm": 28.642590286425904, - "url": "https://www.rightmove.co.uk/properties/161295803", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/161295803/108947_1324495_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.879126", - "last_seen": "2025-06-01T22:05:50.291893", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.332107, - 51.57931 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.6, - "qmprice": 68.26, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161295953", - "info": { - "identifier": 161295953, - "sqm_ocr": 58.6, - "price": 4000.0, - "price_per_sqm": 68.25938566552901, - "url": "https://www.rightmove.co.uk/properties/161295953", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161295953/253853_1324398_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.388774", - "last_seen": "2025-06-01T22:06:05.745464", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098893, - 51.495132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.83, - "qmprice": 56.36, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/161295998", - "info": { - "identifier": 161295998, - "sqm_ocr": 53.83, - "price": 3034.0, - "price_per_sqm": 56.362623072636076, - "url": "https://www.rightmove.co.uk/properties/161295998", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94246/161295998/94246_1324507_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.948553", - "last_seen": "2025-06-01T22:05:42.346184", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125535, - 51.52831 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161296547", - "info": { - "identifier": 161296547, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161296547", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "The London Letting Company", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233057/161296547/233057_33848631_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.359524", - "last_seen": "2025-06-01T22:06:07.738701", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191231, - 51.36172 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.1, - "qmprice": 31.21, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161298557", - "info": { - "identifier": 161298557, - "sqm_ocr": 72.1, - "price": 2250.0, - "price_per_sqm": 31.206657420249655, - "url": "https://www.rightmove.co.uk/properties/161298557", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/161298557/227810_1322880_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.548266", - "last_seen": "2025-06-01T22:05:47.081225", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.070987, - 51.492596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161299418", - "info": { - "identifier": 161299418, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161299418", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Sinton Andrews", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13712/161299418/13712_SINT_004384_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.277362", - "last_seen": "2025-06-01T22:05:56.997451", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.316032, - 51.517754 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161299940", - "info": { - "identifier": 161299940, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161299940", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Robert Cooper & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15002/161299940/15002_EAS240036_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.426881", - "last_seen": "2025-06-01T22:05:51.316127", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.390269, - 51.56489 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.58, - "qmprice": 42.41, - "rooms": 2, - "total_price": 3163.0, - "url": "https://www.rightmove.co.uk/properties/161300117", - "info": { - "identifier": 161300117, - "sqm_ocr": 74.58, - "price": 3163.0, - "price_per_sqm": 42.41083400375436, - "url": "https://www.rightmove.co.uk/properties/161300117", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80905/161300117/80905_BSL150302_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.527285", - "last_seen": "2025-06-01T22:06:15.671581", - "price": 3163 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125209, - 51.51286 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161302388", - "info": { - "identifier": 161302388, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161302388", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161302388/43310_CWL250185_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.048263", - "last_seen": "2025-06-01T22:06:00.777839", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035204, - 51.492516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.0, - "qmprice": 56.25, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161302787", - "info": { - "identifier": 161302787, - "sqm_ocr": 52.0, - "price": 2925.0, - "price_per_sqm": 56.25, - "url": "https://www.rightmove.co.uk/properties/161302787", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77514/161302787/77514_SXX140768_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.063466", - "last_seen": "2025-06-01T22:05:42.571334", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116362, - 51.522945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161302976", - "info": { - "identifier": 161302976, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161302976", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "PropertyLoop", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222287/161302976/222287_XbK7lsVs_IMG_00_0000_max_656x437.png", - "let_date_available": "31/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.484011", - "last_seen": "2025-06-01T22:05:48.249701", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2392, - 51.50661 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.9, - "qmprice": 44.97, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161303492", - "info": { - "identifier": 161303492, - "sqm_ocr": 81.9, - "price": 3683.0, - "price_per_sqm": 44.969474969474966, - "url": "https://www.rightmove.co.uk/properties/161303492", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54732/161303492/54732_LHL220304_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.003518", - "last_seen": "2025-06-01T22:06:15.515453", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173444, - 51.53328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.4, - "qmprice": 40.26, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/161303495", - "info": { - "identifier": 161303495, - "sqm_ocr": 83.4, - "price": 3358.0, - "price_per_sqm": 40.26378896882494, - "url": "https://www.rightmove.co.uk/properties/161303495", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54732/161303495/54732_STL170140_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.006967", - "last_seen": "2025-06-01T22:06:15.516817", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175773, - 51.530727 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.25, - "qmprice": 56.12, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/161304536", - "info": { - "identifier": 161304536, - "sqm_ocr": 48.25, - "price": 2708.0, - "price_per_sqm": 56.12435233160622, - "url": "https://www.rightmove.co.uk/properties/161304536", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36222/161304536/36222_MRB200128_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.917092", - "last_seen": "2025-06-01T22:06:15.388056", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154097, - 51.52175 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161304623", - "info": { - "identifier": 161304623, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161304623", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Purplebricks", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/154k/153656/161304623/153656_1880493-2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.811785", - "last_seen": "2025-06-01T22:06:04.043083", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.070475, - 51.554775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161304971", - "info": { - "identifier": 161304971, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161304971", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161304971/96668_246717829042025_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.328731", - "last_seen": "2025-06-01T22:06:00.151864", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128172, - 51.481453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.7, - "qmprice": 37.99, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161305430", - "info": { - "identifier": 161305430, - "sqm_ocr": 73.7, - "price": 2800.0, - "price_per_sqm": 37.99185888738128, - "url": "https://www.rightmove.co.uk/properties/161305430", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Ealing", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91315/161305430/91315_000005942b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.253785", - "last_seen": "2025-06-01T22:05:54.529621", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31132, - 51.51261 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.9, - "qmprice": 30.6, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161306819", - "info": { - "identifier": 161306819, - "sqm_ocr": 71.9, - "price": 2200.0, - "price_per_sqm": 30.598052851182196, - "url": "https://www.rightmove.co.uk/properties/161306819", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Woolwich", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260435/161306819/260435_000018376b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.657883", - "last_seen": "2025-06-01T22:05:46.675714", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07895, - 51.49672 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.5, - "qmprice": 29.14, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161306933", - "info": { - "identifier": 161306933, - "sqm_ocr": 75.5, - "price": 2200.0, - "price_per_sqm": 29.13907284768212, - "url": "https://www.rightmove.co.uk/properties/161306933", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Woolwich", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260435/161306933/260435_000018428b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.145544", - "last_seen": "2025-06-01T22:05:46.184632", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06577, - 51.48562 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.0, - "qmprice": 28.93, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161307197", - "info": { - "identifier": 161307197, - "sqm_ocr": 121.0, - "price": 3500.0, - "price_per_sqm": 28.925619834710744, - "url": "https://www.rightmove.co.uk/properties/161307197", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Property World", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6232/161307197/6232_WIVERTON3A_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.248294", - "last_seen": "2025-06-01T22:05:41.514845", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05421, - 51.42122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161307203", - "info": { - "identifier": 161307203, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161307203", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161307203/96668_244404407042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.522827", - "last_seen": "2025-06-01T22:06:06.006701", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064171, - 51.497303 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.36, - "qmprice": 44.21, - "rooms": 2, - "total_price": 3553.0, - "url": "https://www.rightmove.co.uk/properties/161307926", - "info": { - "identifier": 161307926, - "sqm_ocr": 80.36, - "price": 3553.0, - "price_per_sqm": 44.21353907416625, - "url": "https://www.rightmove.co.uk/properties/161307926", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65911/161307926/65911_WAQ012505419_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.503747", - "last_seen": "2025-06-01T22:06:10.644058", - "price": 3553 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064998, - 51.503746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.2, - "qmprice": 42.76, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161308538", - "info": { - "identifier": 161308538, - "sqm_ocr": 84.2, - "price": 3600.0, - "price_per_sqm": 42.75534441805225, - "url": "https://www.rightmove.co.uk/properties/161308538", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/161308538/52415_33848980_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.388503", - "last_seen": "2025-06-01T22:06:00.220514", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127736, - 51.43733 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 151.7, - "qmprice": 25.71, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161308733", - "info": { - "identifier": 161308733, - "sqm_ocr": 151.7, - "price": 3900.0, - "price_per_sqm": 25.708635464733028, - "url": "https://www.rightmove.co.uk/properties/161308733", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84803/161308733/84803_33848997_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.887686", - "last_seen": "2025-06-01T22:06:12.454577", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.226973, - 51.448483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.08, - "qmprice": 36.07, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161308943", - "info": { - "identifier": 161308943, - "sqm_ocr": 72.08, - "price": 2600.0, - "price_per_sqm": 36.07103218645949, - "url": "https://www.rightmove.co.uk/properties/161308943", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/161308943/29861_33849019_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.005514, - 51.509335 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 146.5, - "qmprice": 23.89, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161309324", - "info": { - "identifier": 161309324, - "sqm_ocr": 146.5, - "price": 3500.0, - "price_per_sqm": 23.890784982935152, - "url": "https://www.rightmove.co.uk/properties/161309324", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/161309324/52887_33849056_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.270891", - "last_seen": "2025-06-01T22:06:01.697601", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212327, - 51.42936 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.0, - "qmprice": 36.56, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161309783", - "info": { - "identifier": 161309783, - "sqm_ocr": 93.0, - "price": 3400.0, - "price_per_sqm": 36.55913978494624, - "url": "https://www.rightmove.co.uk/properties/161309783", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/161309783/221711_1575_EAF_113132_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.521776", - "last_seen": "2025-06-01T22:06:15.683216", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134379, - 51.48817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 36.08, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161310638", - "info": { - "identifier": 161310638, - "sqm_ocr": 69.3, - "price": 2500.0, - "price_per_sqm": 36.075036075036074, - "url": "https://www.rightmove.co.uk/properties/161310638", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57124/161310638/57124_P214560_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.381808", - "last_seen": "2025-06-01T22:06:11.402340", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05358, - 51.50718 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.5, - "qmprice": 33.57, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161311718", - "info": { - "identifier": 161311718, - "sqm_ocr": 71.5, - "price": 2400.0, - "price_per_sqm": 33.56643356643357, - "url": "https://www.rightmove.co.uk/properties/161311718", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238829/161311718/238829_33849183_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.836763", - "last_seen": "2025-06-01T22:06:13.642421", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144339, - 51.428158 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.9, - "qmprice": 23.55, - "rooms": 3, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/161311802", - "info": { - "identifier": 161311802, - "sqm_ocr": 120.9, - "price": 2847.0, - "price_per_sqm": 23.548387096774192, - "url": "https://www.rightmove.co.uk/properties/161311802", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50343/161311802/50343_33807847_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.415275", - "last_seen": "2025-06-01T22:05:48.370909", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23661, - 51.532284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.1, - "qmprice": 42.0, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161312588", - "info": { - "identifier": 161312588, - "sqm_ocr": 63.1, - "price": 2650.0, - "price_per_sqm": 41.996830427892235, - "url": "https://www.rightmove.co.uk/properties/161312588", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/161312588/84875_33849240_IMG_09_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.264013", - "last_seen": "2025-06-01T22:05:59.061858", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132915, - 51.463326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.63, - "qmprice": 50.17, - "rooms": 4, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/161313473", - "info": { - "identifier": 161313473, - "sqm_ocr": 79.63, - "price": 3995.0, - "price_per_sqm": 50.16953409519026, - "url": "https://www.rightmove.co.uk/properties/161313473", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/161313473/249692_RL4614_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.056717", - "last_seen": "2025-06-01T22:05:43.217745", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14774, - 51.544647 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.69, - "qmprice": 52.0, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161313602", - "info": { - "identifier": 161313602, - "sqm_ocr": 57.69, - "price": 3000.0, - "price_per_sqm": 52.00208008320333, - "url": "https://www.rightmove.co.uk/properties/161313602", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/161313602/96392_HEA170593_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.432879", - "last_seen": "2025-06-01T22:06:14.709452", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180402, - 51.532875 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161313689", - "info": { - "identifier": 161313689, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161313689", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25214/161313689/25214_33849307_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.278770", - "last_seen": "2025-06-01T22:06:05.067501", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04632, - 51.498615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.9, - "qmprice": 27.5, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161313986", - "info": { - "identifier": 161313986, - "sqm_ocr": 90.9, - "price": 2500.0, - "price_per_sqm": 27.502750275027502, - "url": "https://www.rightmove.co.uk/properties/161313986", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/161313986/52415_33849325_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.505873", - "last_seen": "2025-06-01T22:05:59.762178", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145097, - 51.41456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.35, - "qmprice": 28.03, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161314634", - "info": { - "identifier": 161314634, - "sqm_ocr": 71.35, - "price": 2000.0, - "price_per_sqm": 28.030833917309042, - "url": "https://www.rightmove.co.uk/properties/161314634", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Williams Harlow", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52677/161314634/52677_33096301_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.434610", - "last_seen": "2025-06-01T22:06:07.832787", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201025, - 51.359898 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161315747", - "info": { - "identifier": 161315747, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161315747", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48798/161315747/48798_YLG200074_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.527809", - "last_seen": "2025-06-01T22:06:04.595177", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.332042, - 51.448376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 48.7, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161315765", - "info": { - "identifier": 161315765, - "sqm_ocr": 77.0, - "price": 3750.0, - "price_per_sqm": 48.701298701298704, - "url": "https://www.rightmove.co.uk/properties/161315765", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161315765/87187_33478_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.560397", - "last_seen": "2025-06-01T22:06:10.791473", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065095, - 51.50762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.1, - "qmprice": 38.52, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161316197", - "info": { - "identifier": 161316197, - "sqm_ocr": 70.1, - "price": 2700.0, - "price_per_sqm": 38.516405135520685, - "url": "https://www.rightmove.co.uk/properties/161316197", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Bellman London Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/146k/145976/161316197/145976_12135485_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.784874", - "last_seen": "2025-06-01T22:05:48.656919", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199633, - 51.48285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 155.5, - "qmprice": 25.72, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161316389", - "info": { - "identifier": 161316389, - "sqm_ocr": 155.5, - "price": 4000.0, - "price_per_sqm": 25.723472668810288, - "url": "https://www.rightmove.co.uk/properties/161316389", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hilton & Fox", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237869/161316389/237869_hilton_2079845505_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.892012", - "last_seen": "2025-06-01T22:05:40.762947", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279452, - 51.547134 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.6, - "qmprice": 20.73, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161316455", - "info": { - "identifier": 161316455, - "sqm_ocr": 120.6, - "price": 2500.0, - "price_per_sqm": 20.729684908789388, - "url": "https://www.rightmove.co.uk/properties/161316455", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Truepenny's Property Consultants", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228695/161316455/228695_4630_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.284370", - "last_seen": "2025-06-01T22:05:46.800905", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.039045, - 51.4785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161316683", - "info": { - "identifier": 161316683, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161316683", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Aston Square", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274703/161316683/274703_BRIF2001100_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.588004", - "last_seen": "2025-06-01T22:05:38.867773", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20146, - 51.58352 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.2, - "qmprice": 39.84, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161316809", - "info": { - "identifier": 161316809, - "sqm_ocr": 50.2, - "price": 2000.0, - "price_per_sqm": 39.8406374501992, - "url": "https://www.rightmove.co.uk/properties/161316809", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Moveli", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191324/161316809/191324_RX576507_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.493934", - "last_seen": "2025-06-01T17:39:00.914685", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.294797, - 51.462315 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.76, - "qmprice": 31.95, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161317337", - "info": { - "identifier": 161317337, - "sqm_ocr": 90.76, - "price": 2900.0, - "price_per_sqm": 31.952401939180255, - "url": "https://www.rightmove.co.uk/properties/161317337", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161317337/26207_IUL200461_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.857760", - "last_seen": "2025-06-01T22:05:53.311770", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110854, - 51.54412 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161317427", - "info": { - "identifier": 161317427, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161317427", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161317427/96668_245587218042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.787074", - "last_seen": "2025-06-01T22:06:06.977142", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08437, - 51.49547 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161317631", - "info": { - "identifier": 161317631, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161317631", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Anthony James", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53504/161317631/53504_12659449_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.209449", - "last_seen": "2025-06-01T22:05:39.914887", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.178901, - 51.471416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 43.39, - "qmprice": 62.23, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161317760", - "info": { - "identifier": 161317760, - "sqm_ocr": 43.39, - "price": 2700.0, - "price_per_sqm": 62.22631942843973, - "url": "https://www.rightmove.co.uk/properties/161317760", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161317760/16050_1324481_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.037885", - "last_seen": "2025-06-01T22:05:47.547969", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074752, - 51.530975 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.1, - "qmprice": 59.88, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161317781", - "info": { - "identifier": 161317781, - "sqm_ocr": 50.1, - "price": 3000.0, - "price_per_sqm": 59.880239520958085, - "url": "https://www.rightmove.co.uk/properties/161317781", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161317781/16050_1322833_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.025200", - "last_seen": "2025-06-01T22:05:47.535359", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076151, - 51.52893 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.1, - "qmprice": 36.1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161317805", - "info": { - "identifier": 161317805, - "sqm_ocr": 83.1, - "price": 3000.0, - "price_per_sqm": 36.101083032490976, - "url": "https://www.rightmove.co.uk/properties/161317805", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161317805/48101_1321722_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.555198", - "last_seen": "2025-06-01T22:06:11.096632", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010729, - 51.505493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.5, - "qmprice": 23.9, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161317811", - "info": { - "identifier": 161317811, - "sqm_ocr": 125.5, - "price": 3000.0, - "price_per_sqm": 23.904382470119522, - "url": "https://www.rightmove.co.uk/properties/161317811", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161317811/48101_1324524_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.579015", - "last_seen": "2025-06-01T22:06:03.293010", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.077422, - 51.505386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.7, - "qmprice": 34.05, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161318150", - "info": { - "identifier": 161318150, - "sqm_ocr": 83.7, - "price": 2850.0, - "price_per_sqm": 34.05017921146953, - "url": "https://www.rightmove.co.uk/properties/161318150", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161318150/15975_1324515_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.692984", - "last_seen": "2025-06-01T22:06:13.347294", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222058, - 51.44393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.77, - "qmprice": 59.06, - "rooms": 2, - "total_price": 3294.0, - "url": "https://www.rightmove.co.uk/properties/161318303", - "info": { - "identifier": 161318303, - "sqm_ocr": 55.77, - "price": 3294.0, - "price_per_sqm": 59.06401291016675, - "url": "https://www.rightmove.co.uk/properties/161318303", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/161318303/71401_1320099_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.323544", - "last_seen": "2025-06-01T22:05:40.205744", - "price": 3294.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215861, - 51.54528 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 49.3, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161318474", - "info": { - "identifier": 161318474, - "sqm_ocr": 71.0, - "price": 3500.0, - "price_per_sqm": 49.29577464788732, - "url": "https://www.rightmove.co.uk/properties/161318474", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/161318474/77511_SDL230070_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.131476", - "last_seen": "2025-06-01T22:06:09.318950", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057202, - 51.51867 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.3, - "qmprice": 44.81, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161318522", - "info": { - "identifier": 161318522, - "sqm_ocr": 70.3, - "price": 3150.0, - "price_per_sqm": 44.80796586059744, - "url": "https://www.rightmove.co.uk/properties/161318522", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47640/161318522/47640_33849664_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.383571", - "last_seen": "2025-06-01T20:19:59.383571", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077304, - 51.520714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.96, - "qmprice": 30.59, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161319350", - "info": { - "identifier": 161319350, - "sqm_ocr": 120.96, - "price": 3700.0, - "price_per_sqm": 30.58862433862434, - "url": "https://www.rightmove.co.uk/properties/161319350", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201653/161319350/201653_WLL210023_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.118808", - "last_seen": "2025-06-01T22:05:59.899634", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108792, - 51.49385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.9, - "qmprice": 39.75, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161319500", - "info": { - "identifier": 161319500, - "sqm_ocr": 62.9, - "price": 2500.0, - "price_per_sqm": 39.7456279809221, - "url": "https://www.rightmove.co.uk/properties/161319500", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Truepenny's", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49874/161319500/49874_5098_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.438380", - "last_seen": "2025-06-01T22:06:05.834334", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065868, - 51.4436 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.68, - "qmprice": 35.46, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161319518", - "info": { - "identifier": 161319518, - "sqm_ocr": 67.68, - "price": 2400.0, - "price_per_sqm": 35.46099290780141, - "url": "https://www.rightmove.co.uk/properties/161319518", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Aitch Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/193k/192560/161319518/192560_TheChandlery30_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.485777", - "last_seen": "2025-06-01T22:06:09.717059", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06774, - 51.51317 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161319635", - "info": { - "identifier": 161319635, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161319635", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Edmund Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20894/161319635/20894_32535454_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.410487", - "last_seen": "2025-06-01T22:05:41.714461", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.095629, - 51.3904 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 124.1, - "qmprice": 27.4, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161319650", - "info": { - "identifier": 161319650, - "sqm_ocr": 124.1, - "price": 3400.0, - "price_per_sqm": 27.397260273972606, - "url": "https://www.rightmove.co.uk/properties/161319650", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/161319650/77197_VCT_VCT_LFSYCL_465_633154154_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.658121", - "last_seen": "2025-06-01T22:06:03.220483", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.070528, - 51.500336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161320193", - "info": { - "identifier": 161320193, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161320193", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94448/161320193/94448_EAL250139_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.505173", - "last_seen": "2025-06-01T22:05:44.609119", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293627, - 51.50742 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161320499", - "info": { - "identifier": 161320499, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161320499", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Japan Letting Agency", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258848/161320499/258848_33751290_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.376657", - "last_seen": "2025-06-01T22:05:44.299815", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.268057, - 51.50673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 31.9, - "rooms": 3, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/161320778", - "info": { - "identifier": 161320778, - "sqm_ocr": 72.0, - "price": 2297.0, - "price_per_sqm": 31.90277777777778, - "url": "https://www.rightmove.co.uk/properties/161320778", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266774/161320778/266774_33849786_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.975739", - "last_seen": "2025-06-01T22:05:44.181058", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.248057, - 51.53059 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.9, - "qmprice": 35.23, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161320940", - "info": { - "identifier": 161320940, - "sqm_ocr": 80.9, - "price": 2850.0, - "price_per_sqm": 35.228677379480835, - "url": "https://www.rightmove.co.uk/properties/161320940", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Wayne & Silver", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91636/161320940/91636_33849795_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.037558", - "last_seen": "2025-06-01T22:05:38.930524", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200953, - 51.565014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/161321186", - "info": { - "identifier": 161321186, - "sqm_ocr": null, - "price": 3120.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161321186", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "UKmate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263912/161321186/263912_ukmate_agent_1746008941_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "10/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.326297", - "last_seen": "2025-06-01T22:05:43.109340", - "price": 3120.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137522, - 51.53321 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.78, - "qmprice": 57.71, - "rooms": 2, - "total_price": 3796.0, - "url": "https://www.rightmove.co.uk/properties/161321735", - "info": { - "identifier": 161321735, - "sqm_ocr": 65.78, - "price": 3796.0, - "price_per_sqm": 57.70750988142292, - "url": "https://www.rightmove.co.uk/properties/161321735", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/161321735/70038_5103_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.046223", - "last_seen": "2025-06-01T22:05:48.834063", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199109, - 51.48422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3466.0, - "url": "https://www.rightmove.co.uk/properties/161321936", - "info": { - "identifier": 161321936, - "sqm_ocr": null, - "price": 3466.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161321936", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "UKmate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263912/161321936/263912_ukmate_agent_1746009480_IMG_24_0000_max_656x437.png", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.657610", - "last_seen": "2025-06-01T22:06:04.956231", - "price": 3466.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097137, - 51.492382 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 31.43, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161322098", - "info": { - "identifier": 161322098, - "sqm_ocr": 70.0, - "price": 2200.0, - "price_per_sqm": 31.428571428571427, - "url": "https://www.rightmove.co.uk/properties/161322098", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Network Agencies", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53310/161322098/53310_bavariaroad289_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.521281", - "last_seen": "2025-06-01T22:05:53.220700", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12222, - 51.56558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.07, - "qmprice": 30.04, - "rooms": 2, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/161322350", - "info": { - "identifier": 161322350, - "sqm_ocr": 73.07, - "price": 2195.0, - "price_per_sqm": 30.039687970439306, - "url": "https://www.rightmove.co.uk/properties/161322350", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Smartrose Estates ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146084/161322350/146084_75StJohns_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.726200", - "last_seen": "2025-06-01T22:06:12.008394", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00808, - 51.59221 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.8, - "qmprice": 28.25, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161322842", - "info": { - "identifier": 161322842, - "sqm_ocr": 70.8, - "price": 2000.0, - "price_per_sqm": 28.24858757062147, - "url": "https://www.rightmove.co.uk/properties/161322842", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100426/161322842/100426_1324565_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.751308", - "last_seen": "2025-06-01T22:05:59.653729", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.083248, - 51.420612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161323295", - "info": { - "identifier": 161323295, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161323295", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Dorrington", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281918/161323295/281918_15605_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.666235", - "last_seen": "2025-06-01T22:06:04.958150", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09018, - 51.48647 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.9, - "qmprice": 35.3, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161323538", - "info": { - "identifier": 161323538, - "sqm_ocr": 60.9, - "price": 2150.0, - "price_per_sqm": 35.30377668308703, - "url": "https://www.rightmove.co.uk/properties/161323538", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100624/161323538/100624_33849984_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.786909", - "last_seen": "2025-06-01T22:06:13.529546", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139661, - 51.42521 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.1, - "qmprice": 34.16, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161323553", - "info": { - "identifier": 161323553, - "sqm_ocr": 117.1, - "price": 4000.0, - "price_per_sqm": 34.158838599487616, - "url": "https://www.rightmove.co.uk/properties/161323553", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/161323553/264404_RX576631_IMG_25_0001_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.386945", - "last_seen": "2025-06-01T22:06:07.574884", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.007395, - 51.54098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.05, - "qmprice": 37.12, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161323763", - "info": { - "identifier": 161323763, - "sqm_ocr": 70.05, - "price": 2600.0, - "price_per_sqm": 37.116345467523196, - "url": "https://www.rightmove.co.uk/properties/161323763", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161323763/26207_HEA194077_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.701836", - "last_seen": "2025-06-01T22:05:53.598957", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088679, - 51.53781 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.58, - "qmprice": 32.62, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161323829", - "info": { - "identifier": 161323829, - "sqm_ocr": 73.58, - "price": 2400.0, - "price_per_sqm": 32.617559119325904, - "url": "https://www.rightmove.co.uk/properties/161323829", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83027/161323829/83027_33850001_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.772190", - "last_seen": "2025-06-01T22:06:08.056618", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068854, - 51.514755 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 29.41, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161324549", - "info": { - "identifier": 161324549, - "sqm_ocr": 85.0, - "price": 2500.0, - "price_per_sqm": 29.41176470588235, - "url": "https://www.rightmove.co.uk/properties/161324549", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247508/161324549/247508_P462024_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.029745", - "last_seen": "2025-06-01T22:06:04.077198", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.08799, - 51.5873 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.25, - "qmprice": 26.46, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161324915", - "info": { - "identifier": 161324915, - "sqm_ocr": 98.25, - "price": 2600.0, - "price_per_sqm": 26.463104325699746, - "url": "https://www.rightmove.co.uk/properties/161324915", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Camerons Stiff & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34175/161324915/34175_33850083_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.126404", - "last_seen": "2025-06-01T22:05:40.479196", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223492, - 51.53718 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 33.78, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/161325098", - "info": { - "identifier": 161325098, - "sqm_ocr": 73.9, - "price": 2496.0, - "price_per_sqm": 33.775372124492556, - "url": "https://www.rightmove.co.uk/properties/161325098", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218729/161325098/218729_33850100_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.828474", - "last_seen": "2025-06-01T22:05:54.951345", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148224, - 51.544346 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161325338", - "info": { - "identifier": 161325338, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161325338", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Talbots Partnership", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19416/161325338/19416_33850107_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.967733", - "last_seen": "2025-06-01T22:05:39.374459", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220436, - 51.5896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2903.0, - "url": "https://www.rightmove.co.uk/properties/161325473", - "info": { - "identifier": 161325473, - "sqm_ocr": null, - "price": 2903.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161325473", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Talbots Partnership", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19416/161325473/19416_33850117_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/10/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.142875", - "last_seen": "2025-06-01T22:05:38.576625", - "price": 2903 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22708, - 51.5818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161325686", - "info": { - "identifier": 161325686, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161325686", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84818/161325686/84818_33850132_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.643385", - "last_seen": "2025-06-01T22:06:04.694171", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.333975, - 51.44207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/161325920", - "info": { - "identifier": 161325920, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161325920", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161325920/96668_246547128042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.386116", - "last_seen": "2025-06-01T22:05:59.126118", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102318, - 51.471462 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161326058", - "info": { - "identifier": 161326058, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161326058", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161326058/96668_246748830042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.091593", - "last_seen": "2025-06-01T22:05:44.956059", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269314, - 51.51451 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161326223", - "info": { - "identifier": 161326223, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161326223", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161326223/96668_246761530042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.118788", - "last_seen": "2025-06-01T22:05:38.873814", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166841, - 51.59122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.6, - "qmprice": 30.54, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161327351", - "info": { - "identifier": 161327351, - "sqm_ocr": 114.6, - "price": 3500.0, - "price_per_sqm": 30.541012216404887, - "url": "https://www.rightmove.co.uk/properties/161327351", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/161327351/15951_1324573_IMG_01_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.146257", - "last_seen": "2025-06-01T22:05:44.391884", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267862, - 51.51185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.73, - "qmprice": 54.4, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161327579", - "info": { - "identifier": 161327579, - "sqm_ocr": 63.73, - "price": 3467.0, - "price_per_sqm": 54.40138082535698, - "url": "https://www.rightmove.co.uk/properties/161327579", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Manors", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85334/161327579/85334_BAK150819_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.978834", - "last_seen": "2025-06-01T22:06:15.492400", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153048, - 51.51582 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.6, - "qmprice": 66.87, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161328062", - "info": { - "identifier": 161328062, - "sqm_ocr": 48.6, - "price": 3250.0, - "price_per_sqm": 66.8724279835391, - "url": "https://www.rightmove.co.uk/properties/161328062", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/161328062/15963_1324225_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.826995", - "last_seen": "2025-06-01T22:06:12.641812", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22092, - 51.461376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161330099", - "info": { - "identifier": 161330099, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161330099", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "AIROPERATE LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275732/161330099/275732_2BR-Mid-Let-Harley-Road-Harlesden_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.076675", - "last_seen": "2025-06-01T22:05:55.435718", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25453, - 51.53525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.4, - "qmprice": 24.67, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/161331176", - "info": { - "identifier": 161331176, - "sqm_ocr": 121.4, - "price": 2995.0, - "price_per_sqm": 24.670510708401977, - "url": "https://www.rightmove.co.uk/properties/161331176", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191213/161331176/191213_KCK250562_L_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.651583", - "last_seen": "2025-06-01T22:05:44.330821", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25534, - 51.515392 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.63, - "qmprice": 42.72, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161331200", - "info": { - "identifier": 161331200, - "sqm_ocr": 93.63, - "price": 4000.0, - "price_per_sqm": 42.72134999465983, - "url": "https://www.rightmove.co.uk/properties/161331200", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111863/161331200/111863_WSL220067_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.260666", - "last_seen": "2025-06-01T22:06:15.869547", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142235, - 51.493324 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161331596", - "info": { - "identifier": 161331596, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161331596", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Woodward Estate Agents", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14627/161331596/14627_32704851_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.996379", - "last_seen": "2025-06-01T22:05:50.505597", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.339655, - 51.568874 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.8, - "qmprice": 52.27, - "rooms": 2, - "total_price": 2760.0, - "url": "https://www.rightmove.co.uk/properties/161331812", - "info": { - "identifier": 161331812, - "sqm_ocr": 52.8, - "price": 2760.0, - "price_per_sqm": 52.27272727272727, - "url": "https://www.rightmove.co.uk/properties/161331812", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/161331812/80340_a1G4J00000262iLUAQ_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.574741", - "last_seen": "2025-06-01T22:05:59.853607", - "price": 2760.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10812, - 51.50205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 147.16, - "qmprice": 25.82, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161331866", - "info": { - "identifier": 161331866, - "sqm_ocr": 147.16, - "price": 3800.0, - "price_per_sqm": 25.822234302799675, - "url": "https://www.rightmove.co.uk/properties/161331866", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Harding Green", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250814/161331866/250814_RX576446_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.140305", - "last_seen": "2025-06-01T22:05:44.904054", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.291997, - 51.51429 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161331902", - "info": { - "identifier": 161331902, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161331902", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/161331902/84878_33850456_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.666299", - "last_seen": "2025-06-01T22:06:01.150694", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193696, - 51.41853 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161332430", - "info": { - "identifier": 161332430, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161332430", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Northwood", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42308/161332430/42308_P1789_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.098513", - "last_seen": "2025-06-01T22:05:50.558539", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36818, - 51.59507 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.6, - "qmprice": 38.79, - "rooms": 3, - "total_price": 3359.0, - "url": "https://www.rightmove.co.uk/properties/161332703", - "info": { - "identifier": 161332703, - "sqm_ocr": 86.6, - "price": 3359.0, - "price_per_sqm": 38.787528868360276, - "url": "https://www.rightmove.co.uk/properties/161332703", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/161332703/15948_1324595_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.830974", - "last_seen": "2025-06-01T22:05:48.483770", - "price": 3359.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210088, - 51.487312 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.7, - "qmprice": 40.51, - "rooms": 2, - "total_price": 3553.0, - "url": "https://www.rightmove.co.uk/properties/161332901", - "info": { - "identifier": 161332901, - "sqm_ocr": 87.7, - "price": 3553.0, - "price_per_sqm": 40.51311288483466, - "url": "https://www.rightmove.co.uk/properties/161332901", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65872/161332901/65872_CWQ012569388_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.535278", - "last_seen": "2025-06-01T22:06:10.755892", - "price": 3553 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021317, - 51.507107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161333330", - "info": { - "identifier": 161333330, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161333330", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Nested", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269723/161333330/269723_f401f1bd-f691-4ad8-ae84-95e4b709ebc0_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.516321", - "last_seen": "2025-06-01T22:06:05.968539", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075896, - 51.486813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161333579", - "info": { - "identifier": 161333579, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161333579", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161333579/17888_34273_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.903402", - "last_seen": "2025-06-01T22:05:53.683317", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12453, - 51.55851 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.0, - "qmprice": 54.0, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161333675", - "info": { - "identifier": 161333675, - "sqm_ocr": 50.0, - "price": 2700.0, - "price_per_sqm": 54.0, - "url": "https://www.rightmove.co.uk/properties/161333675", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105644/161333675/105644_KCO240163_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.423704", - "last_seen": "2025-06-01T22:06:15.800104", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179357, - 51.51154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.7, - "qmprice": 45.65, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161333732", - "info": { - "identifier": 161333732, - "sqm_ocr": 65.7, - "price": 2999.0, - "price_per_sqm": 45.6468797564688, - "url": "https://www.rightmove.co.uk/properties/161333732", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105644/161333732/105644_KCO250561_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.337362", - "last_seen": "2025-06-01T22:06:14.525990", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168665, - 51.51326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.02, - "qmprice": 37.25, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161334110", - "info": { - "identifier": 161334110, - "sqm_ocr": 102.02, - "price": 3800.0, - "price_per_sqm": 37.24759851009606, - "url": "https://www.rightmove.co.uk/properties/161334110", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49000/161334110/49000_CLI664991_L_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.065835, - 51.506645 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/161334392", - "info": { - "identifier": 161334392, - "sqm_ocr": null, - "price": 3012.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161334392", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/161334392/17882_32973_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.525337", - "last_seen": "2025-06-01T22:05:42.103162", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13118, - 51.55116 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.02, - "qmprice": 53.61, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161334689", - "info": { - "identifier": 161334689, - "sqm_ocr": 69.02, - "price": 3700.0, - "price_per_sqm": 53.60764995653434, - "url": "https://www.rightmove.co.uk/properties/161334689", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161334689/26207_IUL230193_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.870444", - "last_seen": "2025-06-01T22:05:54.460309", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120323, - 51.53422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161335724", - "info": { - "identifier": 161335724, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161335724", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Streets Ahead", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257180/161335724/257180_THO250121_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.876608", - "last_seen": "2025-06-01T22:05:43.737845", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091486, - 51.407654 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.0, - "qmprice": 25.45, - "rooms": 4, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161335772", - "info": { - "identifier": 161335772, - "sqm_ocr": 112.0, - "price": 2850.0, - "price_per_sqm": 25.446428571428573, - "url": "https://www.rightmove.co.uk/properties/161335772", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Tuffin & Wren", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63391/161335772/63391_329540_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.387502", - "last_seen": "2025-06-01T22:05:45.257235", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303868, - 51.497913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161335907", - "info": { - "identifier": 161335907, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161335907", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Major Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245513/161335907/245513_10675636_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.911466", - "last_seen": "2025-06-01T22:05:50.322320", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36426, - 51.557766 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161336864", - "info": { - "identifier": 161336864, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161336864", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Homesearch Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/127k/126355/161336864/126355_RM_LP_3175_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.182008", - "last_seen": "2025-06-01T22:05:54.204934", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133404, - 51.56815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 142.6, - "qmprice": 19.99, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161337569", - "info": { - "identifier": 161337569, - "sqm_ocr": 142.6, - "price": 2850.0, - "price_per_sqm": 19.985974754558207, - "url": "https://www.rightmove.co.uk/properties/161337569", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Connor Prince", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/24k/23486/161337569/23486_Let944a_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.388599", - "last_seen": "2025-06-01T22:06:07.897348", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23211, - 51.3771 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.1, - "qmprice": 48.54, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161338385", - "info": { - "identifier": 161338385, - "sqm_ocr": 72.1, - "price": 3500.0, - "price_per_sqm": 48.54368932038835, - "url": "https://www.rightmove.co.uk/properties/161338385", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54922/161338385/54922_NEL250163_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.639683", - "last_seen": "2025-06-01T22:05:48.411311", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184761, - 51.474483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.5, - "qmprice": 56.37, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161338733", - "info": { - "identifier": 161338733, - "sqm_ocr": 61.5, - "price": 3467.0, - "price_per_sqm": 56.3739837398374, - "url": "https://www.rightmove.co.uk/properties/161338733", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/161338733/15942_1324109_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.384170", - "last_seen": "2025-06-01T22:05:58.036894", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182116, - 51.49426 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 39.74, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161338820", - "info": { - "identifier": 161338820, - "sqm_ocr": 78.0, - "price": 3100.0, - "price_per_sqm": 39.743589743589745, - "url": "https://www.rightmove.co.uk/properties/161338820", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/161338820/56751_1313701_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.976762", - "last_seen": "2025-06-01T22:05:59.266280", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118603, - 51.45479 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.6, - "qmprice": 41.35, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161339450", - "info": { - "identifier": 161339450, - "sqm_ocr": 78.6, - "price": 3250.0, - "price_per_sqm": 41.348600508905854, - "url": "https://www.rightmove.co.uk/properties/161339450", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Fox Gregory", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75037/161339450/75037_33796226_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.444966", - "last_seen": "2025-06-01T22:06:15.767901", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179034, - 51.53036 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 40.51, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161340428", - "info": { - "identifier": 161340428, - "sqm_ocr": 79.0, - "price": 3200.0, - "price_per_sqm": 40.50632911392405, - "url": "https://www.rightmove.co.uk/properties/161340428", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157376/161340428/157376_33850886_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.112643", - "last_seen": "2025-06-01T22:05:56.848189", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.081803, - 51.532833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161340566", - "info": { - "identifier": 161340566, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161340566", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Ian Gibbs", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143588/161340566/143588_1092_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.032011", - "last_seen": "2025-06-01T22:05:45.540413", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10227, - 51.65995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.4, - "qmprice": 57.25, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161340848", - "info": { - "identifier": 161340848, - "sqm_ocr": 52.4, - "price": 3000.0, - "price_per_sqm": 57.25190839694657, - "url": "https://www.rightmove.co.uk/properties/161340848", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/161340848/44537_CWL250178_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.926413", - "last_seen": "2025-06-01T22:06:08.802021", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074374, - 51.516724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 34.33, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161341610", - "info": { - "identifier": 161341610, - "sqm_ocr": 67.0, - "price": 2300.0, - "price_per_sqm": 34.32835820895522, - "url": "https://www.rightmove.co.uk/properties/161341610", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/122k/121789/161341610/121789_KCS250935_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.862499", - "last_seen": "2025-06-01T22:06:00.620507", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.036936, - 51.463974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161341751", - "info": { - "identifier": 161341751, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161341751", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57925/161341751/57925_KCT252144_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.421803", - "last_seen": "2025-06-01T22:05:41.735009", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.079061, - 51.38068 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2287.0, - "url": "https://www.rightmove.co.uk/properties/161341838", - "info": { - "identifier": 161341838, - "sqm_ocr": null, - "price": 2287.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161341838", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/161341838/54730_WLL250190_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.546636", - "last_seen": "2025-06-01T22:05:44.727969", - "price": 2287.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375651, - 51.504913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161342069", - "info": { - "identifier": 161342069, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161342069", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55326/161342069/55326_ISS250030_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.264218", - "last_seen": "2025-06-01T22:05:47.711515", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089341, - 51.572685 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161342306", - "info": { - "identifier": 161342306, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161342306", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47640/161342306/47640_33850983_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.379718", - "last_seen": "2025-06-01T22:06:09.166747", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04384, - 51.52599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161342402", - "info": { - "identifier": 161342402, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161342402", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22281/161342402/22281_LBA200260_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.551916", - "last_seen": "2025-06-01T22:06:14.122205", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161888, - 51.465137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161342408", - "info": { - "identifier": 161342408, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161342408", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/161342408/54730_WLL250191_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.378387", - "last_seen": "2025-06-01T22:05:45.239301", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375651, - 51.504913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161342513", - "info": { - "identifier": 161342513, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161342513", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Curtis And Parker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278867/161342513/278867_33850993_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.862317", - "last_seen": "2025-06-01T22:06:13.724876", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215378, - 51.46652 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161342672", - "info": { - "identifier": 161342672, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161342672", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Lifestyle Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81013/161342672/81013_6826_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.738047", - "last_seen": "2025-06-01T22:06:02.218487", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.073671, - 51.506298 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2118.0, - "url": "https://www.rightmove.co.uk/properties/161342828", - "info": { - "identifier": 161342828, - "sqm_ocr": null, - "price": 2118.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161342828", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/161342828/54730_WLL250192_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.793284", - "last_seen": "2025-06-01T22:05:45.021189", - "price": 2118.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375651, - 51.504913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161343206", - "info": { - "identifier": 161343206, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161343206", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "LAND", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278897/161343206/278897_RL0841_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.268874", - "last_seen": "2025-06-01T20:19:59.758670", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.000185, - 51.510124 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.6, - "qmprice": 38.72, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161343344", - "info": { - "identifier": 161343344, - "sqm_ocr": 73.6, - "price": 2850.0, - "price_per_sqm": 38.72282608695652, - "url": "https://www.rightmove.co.uk/properties/161343344", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43742/161343344/43742_P299804_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.742848", - "last_seen": "2025-06-01T22:06:14.426469", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13351, - 51.49076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161343965", - "info": { - "identifier": 161343965, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161343965", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Mercer Taylor", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/274k/273146/161343965/273146_33851086_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.980945", - "last_seen": "2025-06-01T22:06:13.636051", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177213, - 51.42871 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.4, - "qmprice": 39.45, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161344220", - "info": { - "identifier": 161344220, - "sqm_ocr": 71.4, - "price": 2817.0, - "price_per_sqm": 39.45378151260504, - "url": "https://www.rightmove.co.uk/properties/161344220", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/161344220/108515_1324243_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.278775", - "last_seen": "2025-06-01T22:05:58.480537", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194703, - 51.488518 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.55, - "qmprice": 39.37, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161344421", - "info": { - "identifier": 161344421, - "sqm_ocr": 71.55, - "price": 2817.0, - "price_per_sqm": 39.37106918238994, - "url": "https://www.rightmove.co.uk/properties/161344421", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/161344421/15945_1324246_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.577080", - "last_seen": "2025-06-01T22:05:57.481470", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205631, - 51.523445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/161344568", - "info": { - "identifier": 161344568, - "sqm_ocr": null, - "price": 3995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161344568", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Japan Letting Agency", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258848/161344568/258848_33851129_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.175362", - "last_seen": "2025-06-01T22:05:44.348381", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284707, - 51.508087 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.2, - "qmprice": 53.91, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161344580", - "info": { - "identifier": 161344580, - "sqm_ocr": 74.2, - "price": 4000.0, - "price_per_sqm": 53.908355795148246, - "url": "https://www.rightmove.co.uk/properties/161344580", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161344580/253853_1324596_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.287768", - "last_seen": "2025-06-01T22:06:05.534603", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101737, - 51.493263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.5, - "qmprice": 32.59, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161344664", - "info": { - "identifier": 161344664, - "sqm_ocr": 67.5, - "price": 2200.0, - "price_per_sqm": 32.592592592592595, - "url": "https://www.rightmove.co.uk/properties/161344664", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/161344664/250739_1324619_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.216390", - "last_seen": "2025-06-01T22:05:50.785681", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297847, - 51.605015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.05, - "qmprice": 30.75, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161344673", - "info": { - "identifier": 161344673, - "sqm_ocr": 78.05, - "price": 2400.0, - "price_per_sqm": 30.74951953875721, - "url": "https://www.rightmove.co.uk/properties/161344673", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/161344673/71401_1324177_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.226254", - "last_seen": "2025-06-01T22:05:41.292390", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222858, - 51.55889 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/161345072", - "info": { - "identifier": 161345072, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161345072", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Allday & Miller", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/226k/225662/161345072/225662_33851163_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.368553", - "last_seen": "2025-06-01T22:05:51.205272", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.469074, - 51.564907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/161345246", - "info": { - "identifier": 161345246, - "sqm_ocr": null, - "price": 2383.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161345246", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/161345246/146147_PR191363_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.077817", - "last_seen": "2025-06-01T22:06:00.677350", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02721, - 51.47875 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161346074", - "info": { - "identifier": 161346074, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161346074", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Perkins Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237644/161346074/237644_33851239_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.524194", - "last_seen": "2025-06-01T22:05:44.690208", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.370919, - 51.524536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.22, - "qmprice": 29.06, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161346506", - "info": { - "identifier": 161346506, - "sqm_ocr": 103.22, - "price": 3000.0, - "price_per_sqm": 29.06413485758574, - "url": "https://www.rightmove.co.uk/properties/161346506", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Oliver Burn", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66898/161346506/66898_2931_OBRN_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.039276", - "last_seen": "2025-06-01T22:06:00.761584", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03693, - 51.44624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.0, - "qmprice": 38.36, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161346686", - "info": { - "identifier": 161346686, - "sqm_ocr": 96.0, - "price": 3683.0, - "price_per_sqm": 38.364583333333336, - "url": "https://www.rightmove.co.uk/properties/161346686", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Tavistock Bow", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/111k/110768/161346686/110768_101184001673_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.501122", - "last_seen": "2025-06-01T22:06:14.700365", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123003, - 51.50922 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.3, - "qmprice": 34.85, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161347028", - "info": { - "identifier": 161347028, - "sqm_ocr": 70.3, - "price": 2450.0, - "price_per_sqm": 34.85064011379801, - "url": "https://www.rightmove.co.uk/properties/161347028", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84845/161347028/84845_33233411_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.602749", - "last_seen": "2025-06-01T22:06:04.706262", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.326393, - 51.431114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.7, - "qmprice": 44.6, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/161347634", - "info": { - "identifier": 161347634, - "sqm_ocr": 71.7, - "price": 3198.0, - "price_per_sqm": 44.60251046025105, - "url": "https://www.rightmove.co.uk/properties/161347634", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84830/161347634/84830_33851383_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.351770", - "last_seen": "2025-06-01T22:05:57.997833", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18884, - 51.494484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.01, - "qmprice": 42.05, - "rooms": 3, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161349059", - "info": { - "identifier": 161349059, - "sqm_ocr": 85.01, - "price": 3575.0, - "price_per_sqm": 42.053876014586514, - "url": "https://www.rightmove.co.uk/properties/161349059", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36213/161349059/36213_BDC220099_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.402639", - "last_seen": "2025-06-01T22:06:15.040693", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18184, - 51.51778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.0, - "qmprice": 31.6, - "rooms": 4, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161349656", - "info": { - "identifier": 161349656, - "sqm_ocr": 106.0, - "price": 3350.0, - "price_per_sqm": 31.60377358490566, - "url": "https://www.rightmove.co.uk/properties/161349656", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13325/161349656/13325_GER232051_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.051582", - "last_seen": "2025-06-01T22:05:52.149985", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.270593, - 51.492935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161350025", - "info": { - "identifier": 161350025, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161350025", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52448/161350025/52448_33851531_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.384906", - "last_seen": "2025-06-01T22:06:12.126151", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19666, - 51.46089 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161350262", - "info": { - "identifier": 161350262, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161350262", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/161350262/194222_HRP250294_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.453889", - "last_seen": "2025-06-01T22:06:01.809627", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.235769, - 51.402122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161350586", - "info": { - "identifier": 161350586, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161350586", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Connor Prince", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/24k/23486/161350586/23486_Let694a_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.340831", - "last_seen": "2025-06-01T22:06:07.798797", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22462, - 51.38112 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/161350592", - "info": { - "identifier": 161350592, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161350592", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Rolfe East", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/5k/4083/161350592/4083_33851564_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.997500", - "last_seen": "2025-06-01T22:05:44.382069", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.268529, - 51.51276 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 33.33, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161350943", - "info": { - "identifier": 161350943, - "sqm_ocr": 60.0, - "price": 2000.0, - "price_per_sqm": 33.333333333333336, - "url": "https://www.rightmove.co.uk/properties/161350943", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Match A Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50156/161350943/50156_29008863_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.310218", - "last_seen": "2025-06-01T22:05:56.592500", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.325515, - 51.510853 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.9, - "qmprice": 34.91, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161352239", - "info": { - "identifier": 161352239, - "sqm_ocr": 75.9, - "price": 2650.0, - "price_per_sqm": 34.91436100131752, - "url": "https://www.rightmove.co.uk/properties/161352239", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271538/161352239/271538_KCV250118_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.510351", - "last_seen": "2025-06-01T22:06:05.089934", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097805, - 51.481815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161352266", - "info": { - "identifier": 161352266, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161352266", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57985/161352266/57985_KCW251072_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.914890", - "last_seen": "2025-06-01T22:06:08.227050", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019699, - 51.506584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 156.44, - "qmprice": 23.96, - "rooms": 4, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/161352440", - "info": { - "identifier": 161352440, - "sqm_ocr": 156.44, - "price": 3748.0, - "price_per_sqm": 23.958066990539503, - "url": "https://www.rightmove.co.uk/properties/161352440", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50343/161352440/50343_33851668_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.208785", - "last_seen": "2025-06-01T22:05:41.257971", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220671, - 51.538948 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/161352791", - "info": { - "identifier": 161352791, - "sqm_ocr": null, - "price": 3792.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161352791", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57985/161352791/57985_KFF250264_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.613009", - "last_seen": "2025-06-01T22:06:09.915759", - "price": 3792.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008166, - 51.50433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3399.0, - "url": "https://www.rightmove.co.uk/properties/161353307", - "info": { - "identifier": 161353307, - "sqm_ocr": null, - "price": 3399.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161353307", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50930/161353307/50930_P4532E3530_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.958411", - "last_seen": "2025-06-01T22:05:44.129429", - "price": 3399.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28305, - 51.52093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.36, - "qmprice": 47.21, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161353397", - "info": { - "identifier": 161353397, - "sqm_ocr": 42.36, - "price": 2000.0, - "price_per_sqm": 47.214353163361665, - "url": "https://www.rightmove.co.uk/properties/161353397", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60770/161353397/60770_P2412D4612_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.547312", - "last_seen": "2025-06-01T22:05:59.128193", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11712, - 51.462 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 26.67, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161354552", - "info": { - "identifier": 161354552, - "sqm_ocr": 75.0, - "price": 2000.0, - "price_per_sqm": 26.666666666666668, - "url": "https://www.rightmove.co.uk/properties/161354552", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "Complete RPI", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/217k/216824/161354552/216824_RCS160113_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.461608", - "last_seen": "2025-06-01T22:05:39.002999", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27716, - 51.61202 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161355245", - "info": { - "identifier": 161355245, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161355245", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84839/161355245/84839_33851833_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.879319", - "last_seen": "2025-06-01T22:05:52.083359", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.362347, - 51.480972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161355266", - "info": { - "identifier": 161355266, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161355266", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78395/161355266/78395_33851834_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.636176", - "last_seen": "2025-06-01T22:06:09.382800", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065655, - 51.51359 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 39.55, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161355299", - "info": { - "identifier": 161355299, - "sqm_ocr": 67.0, - "price": 2650.0, - "price_per_sqm": 39.55223880597015, - "url": "https://www.rightmove.co.uk/properties/161355299", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257069/161355299/257069_33830875_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.722715", - "last_seen": "2025-06-01T22:05:46.306521", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.002804, - 51.48979 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161355629", - "info": { - "identifier": 161355629, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161355629", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208640/161355629/208640_P276737_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.242180", - "last_seen": "2025-06-01T22:05:39.896203", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.1733, - 51.48422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.16, - "qmprice": 55.39, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161356634", - "info": { - "identifier": 161356634, - "sqm_ocr": 54.16, - "price": 3000.0, - "price_per_sqm": 55.391432791728214, - "url": "https://www.rightmove.co.uk/properties/161356634", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/161356634/44537_TOL200161_L_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.083644", - "last_seen": "2025-06-01T22:06:06.736688", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089854, - 51.5012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161356643", - "info": { - "identifier": 161356643, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161356643", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44645/161356643/44645_FUL230177_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.680458", - "last_seen": "2025-06-01T22:05:49.306510", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206373, - 51.491425 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161356937", - "info": { - "identifier": 161356937, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161356937", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 32, - "status": null, - "last_seen": 0, - "agency": "We Can Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/217k/216545/161356937/216545_f767df7b-0751-4de6-b017-45e79a68ada5_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.790002", - "last_seen": "2025-06-01T22:06:00.148031", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13401, - 51.41386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 36.49, - "rooms": 2, - "total_price": 2956.0, - "url": "https://www.rightmove.co.uk/properties/161357219", - "info": { - "identifier": 161357219, - "sqm_ocr": 81.0, - "price": 2956.0, - "price_per_sqm": 36.49382716049383, - "url": "https://www.rightmove.co.uk/properties/161357219", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "EO ESTATE AGENTS", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245249/161357219/245249_EEA250091_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.801179", - "last_seen": "2025-06-01T22:06:13.615312", - "price": 2956.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19296, - 51.453793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.9, - "qmprice": 31.59, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161357243", - "info": { - "identifier": 161357243, - "sqm_ocr": 83.9, - "price": 2650.0, - "price_per_sqm": 31.585220500595945, - "url": "https://www.rightmove.co.uk/properties/161357243", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Citydeal Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96880/161357243/96880_RL2922_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.595230", - "last_seen": "2025-06-01T22:05:44.810103", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.263321, - 51.512157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 31.65, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161357429", - "info": { - "identifier": 161357429, - "sqm_ocr": 79.0, - "price": 2500.0, - "price_per_sqm": 31.645569620253166, - "url": "https://www.rightmove.co.uk/properties/161357429", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/161357429/57272_1324691_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.686984", - "last_seen": "2025-06-01T22:05:58.680571", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307549, - 51.409058 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.6, - "qmprice": 37.36, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/161357669", - "info": { - "identifier": 161357669, - "sqm_ocr": 77.6, - "price": 2899.0, - "price_per_sqm": 37.358247422680414, - "url": "https://www.rightmove.co.uk/properties/161357669", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50719/161357669/50719_33851957_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.294729", - "last_seen": "2025-06-01T22:05:57.917262", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208717, - 51.49846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.5, - "qmprice": 29.8, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161357834", - "info": { - "identifier": 161357834, - "sqm_ocr": 75.5, - "price": 2250.0, - "price_per_sqm": 29.801324503311257, - "url": "https://www.rightmove.co.uk/properties/161357834", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249770/161357834/249770_33851963_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.109084", - "last_seen": "2025-06-01T22:05:38.493475", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14963, - 51.615776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161358191", - "info": { - "identifier": 161358191, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161358191", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/161358191/70038_5110_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.156381", - "last_seen": "2025-06-01T22:05:48.474512", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190661, - 51.469486 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.4, - "qmprice": 46.21, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161358284", - "info": { - "identifier": 161358284, - "sqm_ocr": 84.4, - "price": 3900.0, - "price_per_sqm": 46.208530805687204, - "url": "https://www.rightmove.co.uk/properties/161358284", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/161358284/15948_1324700_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.346891", - "last_seen": "2025-06-01T22:05:49.400108", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206324, - 51.47421 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.8, - "qmprice": 54.32, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161358422", - "info": { - "identifier": 161358422, - "sqm_ocr": 71.8, - "price": 3900.0, - "price_per_sqm": 54.317548746518106, - "url": "https://www.rightmove.co.uk/properties/161358422", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/161358422/15963_1321806_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.111511", - "last_seen": "2025-06-01T22:06:12.701166", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199198, - 51.46066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.8, - "qmprice": 36.21, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161358425", - "info": { - "identifier": 161358425, - "sqm_ocr": 71.8, - "price": 2600.0, - "price_per_sqm": 36.211699164345404, - "url": "https://www.rightmove.co.uk/properties/161358425", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/161358425/15963_1321821_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.110219", - "last_seen": "2025-06-01T22:06:12.695395", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199198, - 51.46066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.5, - "qmprice": 66.04, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161360312", - "info": { - "identifier": 161360312, - "sqm_ocr": 52.5, - "price": 3467.0, - "price_per_sqm": 66.03809523809524, - "url": "https://www.rightmove.co.uk/properties/161360312", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/161360312/227810_1321941_IMG_07_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.582980", - "last_seen": "2025-06-01T22:05:46.578467", - "price": 3120.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.096857, - 51.499817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3749.0, - "url": "https://www.rightmove.co.uk/properties/161364080", - "info": { - "identifier": 161364080, - "sqm_ocr": null, - "price": 3749.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161364080", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/161364080/73120_1321155_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.408663", - "last_seen": "2025-06-01T22:05:52.997465", - "price": 3749.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094353, - 51.528336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.7, - "qmprice": 24.25, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161364104", - "info": { - "identifier": 161364104, - "sqm_ocr": 123.7, - "price": 3000.0, - "price_per_sqm": 24.252223120452708, - "url": "https://www.rightmove.co.uk/properties/161364104", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/161364104/130309_1322556_IMG_04_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.647086", - "last_seen": "2025-06-01T22:05:43.506010", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084822, - 51.337368 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.8, - "qmprice": 36.67, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161364215", - "info": { - "identifier": 161364215, - "sqm_ocr": 81.8, - "price": 3000.0, - "price_per_sqm": 36.67481662591687, - "url": "https://www.rightmove.co.uk/properties/161364215", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169979/161364215/169979_1320251_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.300659", - "last_seen": "2025-06-01T22:05:52.276668", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.356391, - 51.477955 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.7, - "qmprice": 37.26, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161364233", - "info": { - "identifier": 161364233, - "sqm_ocr": 57.7, - "price": 2150.0, - "price_per_sqm": 37.26169844020797, - "url": "https://www.rightmove.co.uk/properties/161364233", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/161364233/87812_1321109_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.104830", - "last_seen": "2025-06-01T22:05:39.616619", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.239717, - 51.57543 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161364413", - "info": { - "identifier": 161364413, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161364413", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/161364413/60927_000013658b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.696840", - "last_seen": "2025-06-01T22:05:49.268782", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23458, - 51.49575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 33.46, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/161365292", - "info": { - "identifier": 161365292, - "sqm_ocr": 68.0, - "price": 2275.0, - "price_per_sqm": 33.455882352941174, - "url": "https://www.rightmove.co.uk/properties/161365292", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Elms Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71927/161365292/71927_33852923_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.533045", - "last_seen": "2025-06-01T22:06:09.739588", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.060027, - 51.52857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.62, - "qmprice": 34.73, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161365649", - "info": { - "identifier": 161365649, - "sqm_ocr": 80.62, - "price": 2800.0, - "price_per_sqm": 34.7308360208385, - "url": "https://www.rightmove.co.uk/properties/161365649", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Blackfinch Property Management Ltd", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282167/161365649/282167_675234_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.487213", - "last_seen": "2025-06-01T22:06:02.191910", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.025208, - 51.498943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.7, - "qmprice": 55.19, - "rooms": 3, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161365745", - "info": { - "identifier": 161365745, - "sqm_ocr": 60.7, - "price": 3350.0, - "price_per_sqm": 55.18945634266886, - "url": "https://www.rightmove.co.uk/properties/161365745", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Rentd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230333/161365745/230333_zGK95tzRNBnu04vICist_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.405168", - "last_seen": "2025-06-01T22:05:40.556230", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206224, - 51.544346 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.93, - "qmprice": 39.17, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161365766", - "info": { - "identifier": 161365766, - "sqm_ocr": 68.93, - "price": 2700.0, - "price_per_sqm": 39.17017263890904, - "url": "https://www.rightmove.co.uk/properties/161365766", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/143k/142382/161365766/142382_ALQ012580435_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.762343", - "last_seen": "2025-06-01T22:06:09.403847", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063862, - 51.511745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161365838", - "info": { - "identifier": 161365838, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161365838", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Keys Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34266/161365838/34266_33852956_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.834344", - "last_seen": "2025-06-01T22:05:58.878553", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28058, - 51.412807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.6, - "qmprice": 40.8, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161366225", - "info": { - "identifier": 161366225, - "sqm_ocr": 57.6, - "price": 2350.0, - "price_per_sqm": 40.79861111111111, - "url": "https://www.rightmove.co.uk/properties/161366225", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Garrison Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181970/161366225/181970_564f8f42-babc-4998-a6c5-2e9c4ad0a55d_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.658848", - "last_seen": "2025-06-01T22:05:48.421282", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211018, - 51.497883 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 36.08, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161366609", - "info": { - "identifier": 161366609, - "sqm_ocr": 69.3, - "price": 2500.0, - "price_per_sqm": 36.075036075036074, - "url": "https://www.rightmove.co.uk/properties/161366609", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Properly", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218600/161366609/218600_4b44bcaa-a7ed-4dc7-94c2-095c6ce391ef_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.661457", - "last_seen": "2025-06-01T22:05:46.697908", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0138, - 51.49642 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.0, - "qmprice": 25.45, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161366846", - "info": { - "identifier": 161366846, - "sqm_ocr": 110.0, - "price": 2800.0, - "price_per_sqm": 25.454545454545453, - "url": "https://www.rightmove.co.uk/properties/161366846", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/115k/114730/161366846/114730_33853016_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.920148", - "last_seen": "2025-06-01T22:06:00.644147", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.054298, - 51.438496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 36.29, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161367065", - "info": { - "identifier": 161367065, - "sqm_ocr": 62.0, - "price": 2250.0, - "price_per_sqm": 36.29032258064516, - "url": "https://www.rightmove.co.uk/properties/161367065", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/161367065/77511_SDL240065_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.433958", - "last_seen": "2025-06-01T22:06:09.642625", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042105, - 51.512886 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161367098", - "info": { - "identifier": 161367098, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161367098", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "SJW property management limited", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/233k/232853/161367098/232853_eff93c99-7a66-4667-8770-42b87c0666c6_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.069946", - "last_seen": "2025-06-01T22:05:44.383939", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.338099, - 51.507103 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161367119", - "info": { - "identifier": 161367119, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161367119", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/161367119/54730_WLL250196_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.768037", - "last_seen": "2025-06-01T22:05:44.829053", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375651, - 51.504913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161367488", - "info": { - "identifier": 161367488, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161367488", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 932.0, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Keller Williams Oxygen", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/244k/243590/161367488/243590_RX576947_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.101987", - "last_seen": "2025-06-01T22:05:55.699069", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.278188, - 51.487675 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.6, - "qmprice": 29.29, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161367749", - "info": { - "identifier": 161367749, - "sqm_ocr": 95.6, - "price": 2800.0, - "price_per_sqm": 29.288702928870293, - "url": "https://www.rightmove.co.uk/properties/161367749", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63509/161367749/63509_P5889F5201_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.507989", - "last_seen": "2025-06-01T22:06:01.554336", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15491, - 51.41978 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161368244", - "info": { - "identifier": 161368244, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161368244", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161368244/87187_53936_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.813901", - "last_seen": "2025-06-01T22:05:50.136498", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.059003, - 51.58842 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161368757", - "info": { - "identifier": 161368757, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161368757", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/161368757/238265_L9620_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.424763", - "last_seen": "2025-06-01T22:05:43.060341", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180311, - 51.54815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.32, - "qmprice": 52.48, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161369264", - "info": { - "identifier": 161369264, - "sqm_ocr": 74.32, - "price": 3900.0, - "price_per_sqm": 52.47578040904199, - "url": "https://www.rightmove.co.uk/properties/161369264", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Hotblack Desiato", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51388/161369264/51388_ISL250009_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.721979", - "last_seen": "2025-06-01T22:05:53.629764", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109942, - 51.530434 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161369294", - "info": { - "identifier": 161369294, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161369294", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14879/161369294/14879_P276743_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.241039", - "last_seen": "2025-06-01T22:05:39.960780", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.09635, - 51.47087 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 128.78, - "qmprice": 25.24, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161369945", - "info": { - "identifier": 161369945, - "sqm_ocr": 128.78, - "price": 3250.0, - "price_per_sqm": 25.236838018325827, - "url": "https://www.rightmove.co.uk/properties/161369945", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161369945/15975_1324757_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.486874", - "last_seen": "2025-06-01T22:06:01.431830", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205919, - 51.41297 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.8, - "qmprice": 34.3, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161369984", - "info": { - "identifier": 161369984, - "sqm_ocr": 75.8, - "price": 2600.0, - "price_per_sqm": 34.300791556728235, - "url": "https://www.rightmove.co.uk/properties/161369984", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/161369984/227810_1324666_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.591951", - "last_seen": "2025-06-01T22:05:46.593438", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.071801, - 51.491734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.2, - "qmprice": 40.26, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/161370095", - "info": { - "identifier": 161370095, - "sqm_ocr": 73.2, - "price": 2947.0, - "price_per_sqm": 40.259562841530055, - "url": "https://www.rightmove.co.uk/properties/161370095", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113191/161370095/113191_33853273_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.687588", - "last_seen": "2025-06-01T22:06:08.729025", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0239, - 51.54056 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161370824", - "info": { - "identifier": 161370824, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161370824", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161370824/96668_246781330042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.304767", - "last_seen": "2025-06-01T22:05:50.993476", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.166944, - 51.596935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/161370893", - "info": { - "identifier": 161370893, - "sqm_ocr": null, - "price": 2899.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161370893", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161370893/96668_246877901052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.015333", - "last_seen": "2025-06-01T22:06:15.547133", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140967, - 51.49466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/161371298", - "info": { - "identifier": 161371298, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161371298", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/161371298/191255_33853343_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.627835", - "last_seen": "2025-06-01T22:06:09.959717", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03277, - 51.51178 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161371505", - "info": { - "identifier": 161371505, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161371505", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25214/161371505/25214_33853358_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.069039", - "last_seen": "2025-06-01T22:06:11.028517", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.007107, - 51.508106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.7, - "qmprice": 44.8, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161372114", - "info": { - "identifier": 161372114, - "sqm_ocr": 83.7, - "price": 3750.0, - "price_per_sqm": 44.80286738351254, - "url": "https://www.rightmove.co.uk/properties/161372114", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96278/161372114/96278_BRL240039_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.996576", - "last_seen": "2025-06-01T22:05:48.762211", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204322, - 51.485943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.6, - "qmprice": 43.4, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161372393", - "info": { - "identifier": 161372393, - "sqm_ocr": 57.6, - "price": 2500.0, - "price_per_sqm": 43.40277777777778, - "url": "https://www.rightmove.co.uk/properties/161372393", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77505/161372393/77505_HAC170006_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.102270", - "last_seen": "2025-06-01T22:05:55.631458", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055764, - 51.54147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161372558", - "info": { - "identifier": 161372558, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161372558", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93044/161372558/93044_33853408_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.363446", - "last_seen": "2025-06-01T22:05:49.423334", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.243377, - 51.494473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161372579", - "info": { - "identifier": 161372579, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161372579", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "NEILSON & BAUER LTD", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226418/161372579/226418_ISL250188_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.801228", - "last_seen": "2025-06-01T22:05:54.315363", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114265, - 51.559746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.9, - "qmprice": 42.91, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161372645", - "info": { - "identifier": 161372645, - "sqm_ocr": 76.9, - "price": 3300.0, - "price_per_sqm": 42.91287386215865, - "url": "https://www.rightmove.co.uk/properties/161372645", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Marc and Partners", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201956/161372645/201956_MAY250087_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.554163", - "last_seen": "2025-06-01T22:06:10.918565", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022652, - 51.500954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.7, - "qmprice": 35.36, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161373686", - "info": { - "identifier": 161373686, - "sqm_ocr": 70.7, - "price": 2500.0, - "price_per_sqm": 35.36067892503536, - "url": "https://www.rightmove.co.uk/properties/161373686", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/161373686/65785_33853490_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.092316", - "last_seen": "2025-06-01T22:06:14.057617", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.156072, - 51.439835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 31.75, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161373857", - "info": { - "identifier": 161373857, - "sqm_ocr": 69.3, - "price": 2200.0, - "price_per_sqm": 31.746031746031747, - "url": "https://www.rightmove.co.uk/properties/161373857", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Andrew Grant", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/226k/225224/161373857/225224_AGL220145_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.015412", - "last_seen": "2025-06-01T22:06:05.376928", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065779, - 51.473434 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 61.48, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161373893", - "info": { - "identifier": 161373893, - "sqm_ocr": 61.0, - "price": 3750.0, - "price_per_sqm": 61.47540983606557, - "url": "https://www.rightmove.co.uk/properties/161373893", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58003/161373893/58003_KBA250003_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.061272", - "last_seen": "2025-06-01T22:06:12.585289", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186262, - 51.445446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161374022", - "info": { - "identifier": 161374022, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161374022", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161374022/96668_246877601052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.618538", - "last_seen": "2025-06-01T22:05:42.208039", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116119, - 51.52891 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161374232", - "info": { - "identifier": 161374232, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161374232", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "ElliotLee", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61517/161374232/61517_99612b75-d209-4a26-a6ae-fe32c82b0bb7_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.548180", - "last_seen": "2025-06-01T22:05:44.123196", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.318939, - 51.549225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.5, - "qmprice": 46.26, - "rooms": 2, - "total_price": 2475.0, - "url": "https://www.rightmove.co.uk/properties/161374307", - "info": { - "identifier": 161374307, - "sqm_ocr": 53.5, - "price": 2475.0, - "price_per_sqm": 46.26168224299065, - "url": "https://www.rightmove.co.uk/properties/161374307", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58003/161374307/58003_KBA252458_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.504806", - "last_seen": "2025-06-01T22:06:14.112356", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184805, - 51.435738 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161374361", - "info": { - "identifier": 161374361, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161374361", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Williamson Dace Brown", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57296/161374361/57296_WDB50LA_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.042769", - "last_seen": "2025-06-01T22:05:38.335737", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.17839, - 51.56362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.52, - "qmprice": 50.95, - "rooms": 2, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/161374376", - "info": { - "identifier": 161374376, - "sqm_ocr": 77.52, - "price": 3950.0, - "price_per_sqm": 50.9545923632611, - "url": "https://www.rightmove.co.uk/properties/161374376", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43428/161374376/43428_FCL230140_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.265451", - "last_seen": "2025-06-01T22:05:58.462366", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190717, - 51.49451 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.08, - "qmprice": 24.1, - "rooms": 2, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/161374646", - "info": { - "identifier": 161374646, - "sqm_ocr": 91.08, - "price": 2195.0, - "price_per_sqm": 24.099692577953448, - "url": "https://www.rightmove.co.uk/properties/161374646", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "ElliotLee", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61517/161374646/61517_6c709a92-88c0-47eb-a030-46ab3080fcae_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.626776", - "last_seen": "2025-06-01T22:05:40.625672", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.311012, - 51.547905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.55, - "qmprice": 58.51, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161375030", - "info": { - "identifier": 161375030, - "sqm_ocr": 55.55, - "price": 3250.0, - "price_per_sqm": 58.50585058505851, - "url": "https://www.rightmove.co.uk/properties/161375030", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139751/161375030/139751_ECL190016_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.304004", - "last_seen": "2025-06-01T22:05:57.936376", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195492, - 51.48885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.9, - "qmprice": 43.94, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161375213", - "info": { - "identifier": 161375213, - "sqm_ocr": 78.9, - "price": 3467.0, - "price_per_sqm": 43.94169835234474, - "url": "https://www.rightmove.co.uk/properties/161375213", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/161375213/76585_1324770_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.206535", - "last_seen": "2025-06-01T22:06:14.505923", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151003, - 51.520584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.5, - "qmprice": 37.42, - "rooms": 3, - "total_price": 3424.0, - "url": "https://www.rightmove.co.uk/properties/161375279", - "info": { - "identifier": 161375279, - "sqm_ocr": 91.5, - "price": 3424.0, - "price_per_sqm": 37.4207650273224, - "url": "https://www.rightmove.co.uk/properties/161375279", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/161375279/15948_1324775_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.877560", - "last_seen": "2025-06-01T22:05:56.102975", - "price": 3424.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188526, - 51.46812 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.67, - "qmprice": 37.97, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161375288", - "info": { - "identifier": 161375288, - "sqm_ocr": 52.67, - "price": 2000.0, - "price_per_sqm": 37.97228023542814, - "url": "https://www.rightmove.co.uk/properties/161375288", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/161375288/80281_1324789_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.111500", - "last_seen": "2025-06-01T22:06:07.216694", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.008816, - 51.5296 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 37.3, - "rooms": 3, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/161375345", - "info": { - "identifier": 161375345, - "sqm_ocr": 79.0, - "price": 2947.0, - "price_per_sqm": 37.30379746835443, - "url": "https://www.rightmove.co.uk/properties/161375345", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/161375345/80796_8_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.588540", - "last_seen": "2025-06-01T22:05:59.405323", - "price": 2903 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11516, - 51.4536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.6, - "qmprice": 49.43, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161376161", - "info": { - "identifier": 161376161, - "sqm_ocr": 52.6, - "price": 2600.0, - "price_per_sqm": 49.42965779467681, - "url": "https://www.rightmove.co.uk/properties/161376161", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50064/161376161/50064_P276748_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.411616", - "last_seen": "2025-06-01T22:05:59.640731", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11907, - 51.49161 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 53.12, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161376242", - "info": { - "identifier": 161376242, - "sqm_ocr": 64.0, - "price": 3400.0, - "price_per_sqm": 53.125, - "url": "https://www.rightmove.co.uk/properties/161376242", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57985/161376242/57985_KCW240085_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.345622", - "last_seen": "2025-06-01T22:06:11.534795", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01557, - 51.49772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161376287", - "info": { - "identifier": 161376287, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161376287", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85697/161376287/85697_KDG230047_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.099923", - "last_seen": "2025-06-01T22:05:44.963928", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29686, - 51.519455 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 122.88, - "qmprice": 32.53, - "rooms": 3, - "total_price": 3997.0, - "url": "https://www.rightmove.co.uk/properties/161376326", - "info": { - "identifier": 161376326, - "sqm_ocr": 122.88, - "price": 3997.0, - "price_per_sqm": 32.527669270833336, - "url": "https://www.rightmove.co.uk/properties/161376326", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85697/161376326/85697_KDG250722_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.916142", - "last_seen": "2025-06-01T22:05:44.012251", - "price": 3997.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.292053, - 51.50692 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161376344", - "info": { - "identifier": 161376344, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161376344", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85697/161376344/85697_KDG250726_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.905628", - "last_seen": "2025-06-01T22:05:43.987314", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.294586, - 51.516273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.4, - "qmprice": 32.03, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/161376356", - "info": { - "identifier": 161376356, - "sqm_ocr": 87.4, - "price": 2799.0, - "price_per_sqm": 32.025171624713956, - "url": "https://www.rightmove.co.uk/properties/161376356", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85697/161376356/85697_KDG250914_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.900139", - "last_seen": "2025-06-01T22:05:43.981124", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.291449, - 51.524223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.8, - "qmprice": 29.19, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161376425", - "info": { - "identifier": 161376425, - "sqm_ocr": 78.8, - "price": 2300.0, - "price_per_sqm": 29.18781725888325, - "url": "https://www.rightmove.co.uk/properties/161376425", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57994/161376425/57994_KDI251314_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.381602", - "last_seen": "2025-06-01T22:06:05.713620", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064611, - 51.456127 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161376470", - "info": { - "identifier": 161376470, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161376470", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "PropertyLoop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222287/161376470/222287_AJvnhNnL_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.732723", - "last_seen": "2025-06-01T22:06:15.140732", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2035, - 51.52774 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/161376905", - "info": { - "identifier": 161376905, - "sqm_ocr": null, - "price": 3298.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161376905", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55432/161376905/55432_KAV230027_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.165761", - "last_seen": "2025-06-01T22:05:53.306352", - "price": 3298.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114137, - 51.56525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.87, - "qmprice": 38.04, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161377004", - "info": { - "identifier": 161377004, - "sqm_ocr": 78.87, - "price": 3000.0, - "price_per_sqm": 38.03727653100038, - "url": "https://www.rightmove.co.uk/properties/161377004", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57994/161377004/57994_KDI251637_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.268561", - "last_seen": "2025-06-01T22:05:59.048969", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096706, - 51.439365 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161377451", - "info": { - "identifier": 161377451, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161377451", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161377451/96668_244277306042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.359391", - "last_seen": "2025-06-01T22:05:51.162475", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.436203, - 51.49019 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161377847", - "info": { - "identifier": 161377847, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161377847", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156782/161377847/156782_KAE251078_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.164239", - "last_seen": "2025-06-01T22:06:13.899753", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166606, - 51.47551 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161378432", - "info": { - "identifier": 161378432, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161378432", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Peter Michael Estates & Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25176/161378432/25176_1362_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.934027", - "last_seen": "2025-06-01T22:05:39.347030", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18638, - 51.6067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2968.0, - "url": "https://www.rightmove.co.uk/properties/161378960", - "info": { - "identifier": 161378960, - "sqm_ocr": null, - "price": 2968.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161378960", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/161378960/49784_25857_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.099211", - "last_seen": "2025-06-01T22:05:59.940809", - "price": 2968 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14966, - 51.46521 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.4, - "qmprice": 22.64, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161379218", - "info": { - "identifier": 161379218, - "sqm_ocr": 99.4, - "price": 2250.0, - "price_per_sqm": 22.635814889336014, - "url": "https://www.rightmove.co.uk/properties/161379218", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Anthony Pepe Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280046/161379218/280046_CCB250080_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.913764", - "last_seen": "2025-06-01T22:05:45.469544", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100277, - 51.660336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161380055", - "info": { - "identifier": 161380055, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161380055", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Highcastle Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198884/161380055/198884_RL0528_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.797876", - "last_seen": "2025-06-01T22:06:04.068309", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.067186, - 51.56337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.3, - "qmprice": 33.42, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161380853", - "info": { - "identifier": 161380853, - "sqm_ocr": 76.3, - "price": 2550.0, - "price_per_sqm": 33.42070773263434, - "url": "https://www.rightmove.co.uk/properties/161380853", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Andrew", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80996/161380853/80996_c7055d0d-e057-4497-8c50-ea9a727f29d1_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.185677", - "last_seen": "2025-06-01T17:39:04.657150", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026471, - 51.498924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.0, - "qmprice": 19.17, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161380895", - "info": { - "identifier": 161380895, - "sqm_ocr": 120.0, - "price": 2300.0, - "price_per_sqm": 19.166666666666668, - "url": "https://www.rightmove.co.uk/properties/161380895", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Cameron Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17627/161380895/17627_33853931_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.563559", - "last_seen": "2025-06-01T22:05:51.376348", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.477789, - 51.503433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161381396", - "info": { - "identifier": 161381396, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161381396", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "City and Town Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80802/161381396/80802_2-3bed-Haverstock_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.757513", - "last_seen": "2025-06-01T22:05:42.302039", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15521, - 51.54542 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.47, - "qmprice": 38.03, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161381402", - "info": { - "identifier": 161381402, - "sqm_ocr": 85.47, - "price": 3250.0, - "price_per_sqm": 38.02503802503803, - "url": "https://www.rightmove.co.uk/properties/161381402", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Napier Watt Limited", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83443/161381402/83443_32194802_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.010483", - "last_seen": "2025-06-01T22:06:13.956577", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148075, - 51.482063 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.5, - "qmprice": 39.86, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161382248", - "info": { - "identifier": 161382248, - "sqm_ocr": 71.5, - "price": 2850.0, - "price_per_sqm": 39.86013986013986, - "url": "https://www.rightmove.co.uk/properties/161382248", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58003/161382248/58003_KBA252109_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.864259", - "last_seen": "2025-06-01T22:06:13.749086", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182098, - 51.45716 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161383223", - "info": { - "identifier": 161383223, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161383223", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161383223/96668_246832130042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.328836", - "last_seen": "2025-06-01T22:05:49.393596", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.230552, - 51.5025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161383358", - "info": { - "identifier": 161383358, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161383358", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161383358/96668_246894401052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.235298", - "last_seen": "2025-06-01T22:06:06.341146", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100961, - 51.47925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161384192", - "info": { - "identifier": 161384192, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161384192", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/161384192/176261_102708017659_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.584556", - "last_seen": "2025-06-01T22:05:57.154702", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10056, - 51.57989 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.5, - "qmprice": 31.01, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161384426", - "info": { - "identifier": 161384426, - "sqm_ocr": 64.5, - "price": 2000.0, - "price_per_sqm": 31.007751937984494, - "url": "https://www.rightmove.co.uk/properties/161384426", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111325/161384426/111325_KDP250651_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.915336", - "last_seen": "2025-06-01T22:05:53.754854", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12994, - 51.568024 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/161384768", - "info": { - "identifier": 161384768, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161384768", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111325/161384768/111325_KDP250813_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.022840", - "last_seen": "2025-06-01T22:05:39.028847", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176983, - 51.589718 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.4, - "qmprice": 38.46, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161384888", - "info": { - "identifier": 161384888, - "sqm_ocr": 62.4, - "price": 2400.0, - "price_per_sqm": 38.46153846153846, - "url": "https://www.rightmove.co.uk/properties/161384888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57952/161384888/57952_KDR251155_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.380842", - "last_seen": "2025-06-01T22:06:00.233821", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114002, - 51.47501 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.48, - "qmprice": 32.16, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/161384948", - "info": { - "identifier": 161384948, - "sqm_ocr": 77.48, - "price": 2492.0, - "price_per_sqm": 32.16313887454827, - "url": "https://www.rightmove.co.uk/properties/161384948", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Horton and Garton", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81801/161384948/81801_29012246_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.624170", - "last_seen": "2025-06-01T22:05:44.847523", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26493, - 51.500053 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.7, - "qmprice": 51.19, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161385467", - "info": { - "identifier": 161385467, - "sqm_ocr": 54.7, - "price": 2800.0, - "price_per_sqm": 51.18829981718464, - "url": "https://www.rightmove.co.uk/properties/161385467", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Huddletons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57234/161385467/57234_33854161_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.364666", - "last_seen": "2025-06-01T22:05:42.983825", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141313, - 51.537384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.51, - "qmprice": 46.8, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161386805", - "info": { - "identifier": 161386805, - "sqm_ocr": 70.51, - "price": 3300.0, - "price_per_sqm": 46.80187207488299, - "url": "https://www.rightmove.co.uk/properties/161386805", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161386805/26207_HEA225819_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.422747", - "last_seen": "2025-06-01T22:05:53.052011", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103555, - 51.533577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.7, - "qmprice": 46.79, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161387117", - "info": { - "identifier": 161387117, - "sqm_ocr": 57.7, - "price": 2700.0, - "price_per_sqm": 46.79376083188908, - "url": "https://www.rightmove.co.uk/properties/161387117", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Stones Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106225/161387117/106225_BEP230082_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.734006", - "last_seen": "2025-06-01T22:05:42.394239", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196626, - 51.554653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161387576", - "info": { - "identifier": 161387576, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161387576", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57096/161387576/57096_KQP240056_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.698177", - "last_seen": "2025-06-01T22:05:40.756399", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22076, - 51.538998 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161388011", - "info": { - "identifier": 161388011, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161388011", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/161388011/222842_TCH231710_L_IMG_00_0000_max_656x437.png", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.049669", - "last_seen": "2025-06-01T22:05:45.800303", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10486, - 51.63434 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161388026", - "info": { - "identifier": 161388026, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161388026", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Connells Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95882/161388026/95882_P2974F2901_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.031046", - "last_seen": "2025-06-01T22:05:41.042237", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28873, - 51.55374 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.01, - "qmprice": 33.5, - "rooms": 4, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161389349", - "info": { - "identifier": 161389349, - "sqm_ocr": 100.01, - "price": 3350.0, - "price_per_sqm": 33.4966503349665, - "url": "https://www.rightmove.co.uk/properties/161389349", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/161389349/84788_33854362_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.070613", - "last_seen": "2025-06-01T22:05:52.169855", - "price": 3349 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269759, - 51.492752 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161389460", - "info": { - "identifier": 161389460, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161389460", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161389460/96668_246831430042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.647079", - "last_seen": "2025-06-01T22:06:00.218136", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116074, - 51.45166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 31.1, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161389775", - "info": { - "identifier": 161389775, - "sqm_ocr": 82.0, - "price": 2550.0, - "price_per_sqm": 31.097560975609756, - "url": "https://www.rightmove.co.uk/properties/161389775", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30602/161389775/30602_06780634_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.868503", - "last_seen": "2025-06-01T22:05:50.244399", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31, - 51.609 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/161389820", - "info": { - "identifier": 161389820, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161389820", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/161389820/146147_PR232665_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.985894", - "last_seen": "2025-06-01T22:05:50.453645", - "price": 2166 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.345483, - 51.5943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.29, - "qmprice": 35.17, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161389847", - "info": { - "identifier": 161389847, - "sqm_ocr": 85.29, - "price": 3000.0, - "price_per_sqm": 35.17411185367569, - "url": "https://www.rightmove.co.uk/properties/161389847", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/161389847/77511_SHO170277_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.270490", - "last_seen": "2025-06-01T22:06:09.542819", - "price": 2890.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052525, - 51.516376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/161390117", - "info": { - "identifier": 161390117, - "sqm_ocr": null, - "price": 3358.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161390117", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Lessel", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191471/161390117/191471_33854397_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.918122", - "last_seen": "2025-06-01T22:06:05.241165", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097002, - 51.493385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161390267", - "info": { - "identifier": 161390267, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161390267", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30467/161390267/30467_000825753_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.831852", - "last_seen": "2025-06-01T22:06:03.894575", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.09534, - 51.56819 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161390387", - "info": { - "identifier": 161390387, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161390387", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5845/161390387/5845_P361439_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.469135", - "last_seen": "2025-06-01T22:06:07.863317", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19483, - 51.36034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.8, - "qmprice": 36.48, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/161391017", - "info": { - "identifier": 161391017, - "sqm_ocr": 58.8, - "price": 2145.0, - "price_per_sqm": 36.4795918367347, - "url": "https://www.rightmove.co.uk/properties/161391017", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161391017/48101_1323469_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.653381", - "last_seen": "2025-06-01T20:19:59.653381", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017292, - 51.48674 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.5, - "qmprice": 31.16, - "rooms": 2, - "total_price": 2384.0, - "url": "https://www.rightmove.co.uk/properties/161391035", - "info": { - "identifier": 161391035, - "sqm_ocr": 76.5, - "price": 2384.0, - "price_per_sqm": 31.163398692810457, - "url": "https://www.rightmove.co.uk/properties/161391035", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161391035/48101_1323305_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.002089, - 51.512756 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161391287", - "info": { - "identifier": 161391287, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161391287", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Arron James", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29355/161391287/29355_33055557_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.967827", - "last_seen": "2025-06-01T22:05:44.132375", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36204, - 51.533245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 129.8, - "qmprice": 29.28, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161391362", - "info": { - "identifier": 161391362, - "sqm_ocr": 129.8, - "price": 3800.0, - "price_per_sqm": 29.275808936825882, - "url": "https://www.rightmove.co.uk/properties/161391362", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/161391362/15951_1324845_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.227819", - "last_seen": "2025-06-01T22:05:44.499886", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.278062, - 51.504635 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.8, - "qmprice": 54.17, - "rooms": 2, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/161391428", - "info": { - "identifier": 161391428, - "sqm_ocr": 62.8, - "price": 3402.0, - "price_per_sqm": 54.171974522293, - "url": "https://www.rightmove.co.uk/properties/161391428", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161391428/55101_1324732_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.612348", - "last_seen": "2025-06-01T22:05:59.419983", - "price": 3402.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114904, - 51.50508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.8, - "qmprice": 28.81, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161391461", - "info": { - "identifier": 161391461, - "sqm_ocr": 112.8, - "price": 3250.0, - "price_per_sqm": 28.81205673758865, - "url": "https://www.rightmove.co.uk/properties/161391461", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92261/161391461/92261_KDJ250002_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.056607", - "last_seen": "2025-06-01T22:05:39.812480", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17326, - 51.62754 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.09, - "qmprice": 40.28, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161391539", - "info": { - "identifier": 161391539, - "sqm_ocr": 93.09, - "price": 3750.0, - "price_per_sqm": 40.28359651949726, - "url": "https://www.rightmove.co.uk/properties/161391539", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57934/161391539/57934_KDN251701_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.960426", - "last_seen": "2025-06-01T22:05:49.517999", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216173, - 51.48634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.1, - "qmprice": 39.94, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161391551", - "info": { - "identifier": 161391551, - "sqm_ocr": 65.1, - "price": 2600.0, - "price_per_sqm": 39.93855606758833, - "url": "https://www.rightmove.co.uk/properties/161391551", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161391551/253853_1323474_IMG_12_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.958391", - "last_seen": "2025-06-01T22:06:07.199021", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104072, - 51.48765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.2, - "qmprice": 23.67, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161391569", - "info": { - "identifier": 161391569, - "sqm_ocr": 116.2, - "price": 2750.0, - "price_per_sqm": 23.666092943201377, - "url": "https://www.rightmove.co.uk/properties/161391569", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78317/161391569/78317_KDS251344_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.737750", - "last_seen": "2025-06-01T22:05:58.698584", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254742, - 51.43597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.1, - "qmprice": 32.43, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161391605", - "info": { - "identifier": 161391605, - "sqm_ocr": 77.1, - "price": 2500.0, - "price_per_sqm": 32.4254215304799, - "url": "https://www.rightmove.co.uk/properties/161391605", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78317/161391605/78317_KDS251390_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.795317", - "last_seen": "2025-06-01T22:05:58.791801", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29394, - 51.403103 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 130.0, - "qmprice": 22.69, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161391617", - "info": { - "identifier": 161391617, - "sqm_ocr": 130.0, - "price": 2950.0, - "price_per_sqm": 22.692307692307693, - "url": "https://www.rightmove.co.uk/properties/161391617", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191414/161391617/191414_KDT250002_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.687163", - "last_seen": "2025-06-01T22:05:46.783588", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03514, - 51.45063 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.9, - "qmprice": 22.15, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161391632", - "info": { - "identifier": 161391632, - "sqm_ocr": 121.9, - "price": 2700.0, - "price_per_sqm": 22.149302707136997, - "url": "https://www.rightmove.co.uk/properties/161391632", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191414/161391632/191414_KDT250456_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.302992", - "last_seen": "2025-06-01T22:05:46.807220", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.028517, - 51.451572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 43.9, - "qmprice": 62.64, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161391752", - "info": { - "identifier": 161391752, - "sqm_ocr": 43.9, - "price": 2750.0, - "price_per_sqm": 62.64236902050114, - "url": "https://www.rightmove.co.uk/properties/161391752", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128530/161391752/128530_KDV250246_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.691123", - "last_seen": "2025-06-01T22:06:14.527746", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170279, - 51.52124 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.4, - "qmprice": 46.6, - "rooms": 3, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161391794", - "info": { - "identifier": 161391794, - "sqm_ocr": 79.4, - "price": 3700.0, - "price_per_sqm": 46.59949622166246, - "url": "https://www.rightmove.co.uk/properties/161391794", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161391794/16050_1324839_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.918441", - "last_seen": "2025-06-01T22:06:08.195596", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06418, - 51.52192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.0, - "qmprice": 74.62, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/161391797", - "info": { - "identifier": 161391797, - "sqm_ocr": 45.0, - "price": 3358.0, - "price_per_sqm": 74.62222222222222, - "url": "https://www.rightmove.co.uk/properties/161391797", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128530/161391797/128530_KDV250262_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.782789", - "last_seen": "2025-06-01T22:06:14.485569", - "price": 3358.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159043, - 51.524357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.3, - "qmprice": 36.12, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161392049", - "info": { - "identifier": 161392049, - "sqm_ocr": 62.3, - "price": 2250.0, - "price_per_sqm": 36.115569823434996, - "url": "https://www.rightmove.co.uk/properties/161392049", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108938/161392049/108938_1324822_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.990789", - "last_seen": "2025-06-01T22:05:47.494928", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08911, - 51.556107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.02, - "qmprice": 63.44, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161392088", - "info": { - "identifier": 161392088, - "sqm_ocr": 52.02, - "price": 3300.0, - "price_per_sqm": 63.437139561707035, - "url": "https://www.rightmove.co.uk/properties/161392088", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/161392088/149153_1324118_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.401056", - "last_seen": "2025-06-01T22:06:01.255443", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2358, - 51.402092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.7, - "qmprice": 26.68, - "rooms": 4, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161392403", - "info": { - "identifier": 161392403, - "sqm_ocr": 78.7, - "price": 2100.0, - "price_per_sqm": 26.683608640406607, - "url": "https://www.rightmove.co.uk/properties/161392403", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57961/161392403/57961_KDX251464_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.003859", - "last_seen": "2025-06-01T22:05:56.560097", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139864, - 51.64021 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.7, - "qmprice": 28.84, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161392415", - "info": { - "identifier": 161392415, - "sqm_ocr": 86.7, - "price": 2500.0, - "price_per_sqm": 28.83506343713956, - "url": "https://www.rightmove.co.uk/properties/161392415", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57961/161392415/57961_KDX251641_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.996684", - "last_seen": "2025-06-01T22:05:56.365964", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126378, - 51.628643 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.48, - "qmprice": 20.63, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161393150", - "info": { - "identifier": 161393150, - "sqm_ocr": 111.48, - "price": 2300.0, - "price_per_sqm": 20.63150340868317, - "url": "https://www.rightmove.co.uk/properties/161393150", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Cameron Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36963/161393150/36963_33854585_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.441383", - "last_seen": "2025-06-01T22:05:51.295138", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.473708, - 51.52805 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.7, - "qmprice": 29.47, - "rooms": 3, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/161393360", - "info": { - "identifier": 161393360, - "sqm_ocr": 84.7, - "price": 2496.0, - "price_per_sqm": 29.46871310507674, - "url": "https://www.rightmove.co.uk/properties/161393360", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/161393360/82537_33854602_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.320002", - "last_seen": "2025-06-01T22:06:10.320943", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014577, - 51.51467 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.9, - "qmprice": 32.09, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161394152", - "info": { - "identifier": 161394152, - "sqm_ocr": 77.9, - "price": 2500.0, - "price_per_sqm": 32.09242618741977, - "url": "https://www.rightmove.co.uk/properties/161394152", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18927/161394152/18927_33854670_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.545686", - "last_seen": "2025-06-01T22:05:42.109322", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167226, - 51.549595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161394221", - "info": { - "identifier": 161394221, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161394221", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13102/161394221/13102_MWL250063_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.557064", - "last_seen": "2025-06-01T22:05:49.855374", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141256, - 51.590446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161394716", - "info": { - "identifier": 161394716, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161394716", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kings Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162170/161394716/162170_33854717_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.676925", - "last_seen": "2025-06-01T22:06:11.737113", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00298, - 51.57021 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161395397", - "info": { - "identifier": 161395397, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161395397", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "SAB - Saint Andrews Bureau Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105104/161395397/105104_103035004637_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.228750", - "last_seen": "2025-06-01T22:05:59.591242", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12135, - 51.4921 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161395589", - "info": { - "identifier": 161395589, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161395589", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Your Move", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/32k/31368/161395589/31368_BEX250159_L_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.252145", - "last_seen": "2025-06-01T22:05:40.014077", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.14335, - 51.44866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2499.0, - "url": "https://www.rightmove.co.uk/properties/161396111", - "info": { - "identifier": 161396111, - "sqm_ocr": null, - "price": 2499.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161396111", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/161396111/221711_3466_EAF_182178_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.654061", - "last_seen": "2025-06-01T22:05:59.679571", - "price": 2499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117115, - 51.462383 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.3, - "qmprice": 27.07, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161396345", - "info": { - "identifier": 161396345, - "sqm_ocr": 105.3, - "price": 2850.0, - "price_per_sqm": 27.065527065527068, - "url": "https://www.rightmove.co.uk/properties/161396345", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57967/161396345/57967_KBS250866_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.118191", - "last_seen": "2025-06-01T22:06:06.688498", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05201, - 51.466034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.6, - "qmprice": 29.64, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161396348", - "info": { - "identifier": 161396348, - "sqm_ocr": 77.6, - "price": 2300.0, - "price_per_sqm": 29.63917525773196, - "url": "https://www.rightmove.co.uk/properties/161396348", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57967/161396348/57967_KBS251381_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.109983", - "last_seen": "2025-06-01T22:06:06.690598", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063376, - 51.464893 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 31.34, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161396552", - "info": { - "identifier": 161396552, - "sqm_ocr": 67.0, - "price": 2100.0, - "price_per_sqm": 31.34328358208955, - "url": "https://www.rightmove.co.uk/properties/161396552", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50064/161396552/50064_P276753_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.981021", - "last_seen": "2025-06-01T22:06:05.528423", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08962, - 51.48961 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161396591", - "info": { - "identifier": 161396591, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161396591", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47640/161396591/47640_33854839_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.153969", - "last_seen": "2025-06-01T22:05:47.387163", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088015, - 51.5316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.97, - "qmprice": 50.47, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161397173", - "info": { - "identifier": 161397173, - "sqm_ocr": 72.97, - "price": 3683.0, - "price_per_sqm": 50.4727970398794, - "url": "https://www.rightmove.co.uk/properties/161397173", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Campden Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45915/161397173/45915_1355_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.143299", - "last_seen": "2025-06-01T22:05:57.833214", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179785, - 51.4859 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161397395", - "info": { - "identifier": 161397395, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161397395", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/161397395/101522_1324465_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.191150", - "last_seen": "2025-06-01T22:05:47.632600", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.044557, - 51.545258 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161397401", - "info": { - "identifier": 161397401, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161397401", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161397401/253853_1323288_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.295438", - "last_seen": "2025-06-01T22:06:06.455391", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088135, - 51.48749 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161398049", - "info": { - "identifier": 161398049, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161398049", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82086/161398049/82086_1322854_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.160735", - "last_seen": "2025-06-01T22:06:06.240928", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102929, - 51.492832 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.11, - "qmprice": 32.42, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161398499", - "info": { - "identifier": 161398499, - "sqm_ocr": 77.11, - "price": 2500.0, - "price_per_sqm": 32.42121644404098, - "url": "https://www.rightmove.co.uk/properties/161398499", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161398499/43310_HEA225045_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.119486", - "last_seen": "2025-06-01T17:39:04.608232", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028053, - 51.51464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.91, - "qmprice": 36.82, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161398679", - "info": { - "identifier": 161398679, - "sqm_ocr": 105.91, - "price": 3900.0, - "price_per_sqm": 36.82371825134548, - "url": "https://www.rightmove.co.uk/properties/161398679", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/161398679/84833_33854974_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.536192", - "last_seen": "2025-06-01T22:05:48.277063", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222671, - 51.50285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161398994", - "info": { - "identifier": 161398994, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161398994", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Avery Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267890/161398994/267890_102759000795_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.577465", - "last_seen": "2025-06-01T22:05:46.579853", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0236, - 51.46028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161399027", - "info": { - "identifier": 161399027, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161399027", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/161399027/77197_VCT_VCT_LFSYCL_465_633398336_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.330396", - "last_seen": "2025-06-01T22:05:42.715599", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143686, - 51.528637 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 142.3, - "qmprice": 19.68, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161399129", - "info": { - "identifier": 161399129, - "sqm_ocr": 142.3, - "price": 2800.0, - "price_per_sqm": 19.676739283204498, - "url": "https://www.rightmove.co.uk/properties/161399129", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Colin Dean Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118630/161399129/118630_33855010_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.080827", - "last_seen": "2025-06-01T22:05:50.538701", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.338643, - 51.584644 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.4, - "qmprice": 38.51, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161399555", - "info": { - "identifier": 161399555, - "sqm_ocr": 84.4, - "price": 3250.0, - "price_per_sqm": 38.507109004739334, - "url": "https://www.rightmove.co.uk/properties/161399555", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101801/161399555/101801_KDY250388_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.575586", - "last_seen": "2025-06-01T22:05:58.402919", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196565, - 51.508656 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.2, - "qmprice": 35.04, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161399666", - "info": { - "identifier": 161399666, - "sqm_ocr": 84.2, - "price": 2950.0, - "price_per_sqm": 35.03562945368171, - "url": "https://www.rightmove.co.uk/properties/161399666", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57970/161399666/57970_KEA251949_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.817040", - "last_seen": "2025-06-01T22:06:13.661445", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196234, - 51.456936 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161399750", - "info": { - "identifier": 161399750, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161399750", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14614/161399750/14614_BLA120641_L_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.195924", - "last_seen": "2025-06-01T22:05:46.212496", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.014957, - 51.46477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.3, - "qmprice": 28.11, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161400215", - "info": { - "identifier": 161400215, - "sqm_ocr": 110.3, - "price": 3100.0, - "price_per_sqm": 28.105167724388032, - "url": "https://www.rightmove.co.uk/properties/161400215", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95629/161400215/95629_KEC250791_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.371451", - "last_seen": "2025-06-01T22:06:01.337885", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219442, - 51.40803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.8, - "qmprice": 50.17, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161400299", - "info": { - "identifier": 161400299, - "sqm_ocr": 59.8, - "price": 3000.0, - "price_per_sqm": 50.16722408026756, - "url": "https://www.rightmove.co.uk/properties/161400299", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128629/161400299/128629_KEF250338_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.124056", - "last_seen": "2025-06-01T22:05:57.752589", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18189, - 51.494225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 41.21, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161400332", - "info": { - "identifier": 161400332, - "sqm_ocr": 91.0, - "price": 3750.0, - "price_per_sqm": 41.20879120879121, - "url": "https://www.rightmove.co.uk/properties/161400332", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128629/161400332/128629_KEF250360_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.482318", - "last_seen": "2025-06-01T22:05:58.290477", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167863, - 51.484688 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161400602", - "info": { - "identifier": 161400602, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161400602", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107596/161400602/107596_P4387L5427_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.187676", - "last_seen": "2025-06-01T22:06:04.300917", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2598, - 51.46528 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 39.66, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/161400695", - "info": { - "identifier": 161400695, - "sqm_ocr": 65.0, - "price": 2578.0, - "price_per_sqm": 39.66153846153846, - "url": "https://www.rightmove.co.uk/properties/161400695", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Goldschmidt & Howland", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73971/161400695/73971_2624450_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.924677", - "last_seen": "2025-06-01T22:05:55.515533", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19667, - 51.55461 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 151.7, - "qmprice": 23.01, - "rooms": 4, - "total_price": 3490.0, - "url": "https://www.rightmove.co.uk/properties/161400827", - "info": { - "identifier": 161400827, - "sqm_ocr": 151.7, - "price": 3490.0, - "price_per_sqm": 23.005932762030326, - "url": "https://www.rightmove.co.uk/properties/161400827", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7963/161400827/7963_33855109_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.824782", - "last_seen": "2025-06-01T22:05:45.170030", - "price": 3490.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30054, - 51.5279 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3273.0, - "url": "https://www.rightmove.co.uk/properties/161401088", - "info": { - "identifier": 161401088, - "sqm_ocr": null, - "price": 3273.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161401088", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Wembley Park Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80783/161401088/80783_2525197_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.221720", - "last_seen": "2025-06-01T22:05:41.366293", - "price": 3273.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276363, - 51.558353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.8, - "qmprice": 39.03, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/161401346", - "info": { - "identifier": 161401346, - "sqm_ocr": 58.8, - "price": 2295.0, - "price_per_sqm": 39.03061224489796, - "url": "https://www.rightmove.co.uk/properties/161401346", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84803/161401346/84803_33853160_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.372479", - "last_seen": "2025-06-01T22:06:13.212360", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211442, - 51.462944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161401385", - "info": { - "identifier": 161401385, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161401385", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "John Grants Estate Agents Ltd", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78074/161401385/78074_10675825_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.03639, - 51.6076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161401541", - "info": { - "identifier": 161401541, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161401541", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161401541/96668_241090407032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.051367", - "last_seen": "2025-06-01T17:39:04.545212", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.000726, - 51.508827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161401682", - "info": { - "identifier": 161401682, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161401682", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161401682/96668_243150826032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.299355", - "last_seen": "2025-06-01T22:05:46.867616", - "price": 3499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018506, - 51.47456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 49.3, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161402282", - "info": { - "identifier": 161402282, - "sqm_ocr": 71.0, - "price": 3500.0, - "price_per_sqm": 49.29577464788732, - "url": "https://www.rightmove.co.uk/properties/161402282", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100426/161402282/100426_1324892_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.347970", - "last_seen": "2025-06-01T22:05:43.593248", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070028, - 51.41221 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.4, - "qmprice": 33.85, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161402378", - "info": { - "identifier": 161402378, - "sqm_ocr": 103.4, - "price": 3500.0, - "price_per_sqm": 33.849129593810446, - "url": "https://www.rightmove.co.uk/properties/161402378", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/155k/154577/161402378/154577_KBZ250785_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.133997", - "last_seen": "2025-06-01T22:06:12.598955", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205626, - 51.442352 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.01, - "qmprice": 64.99, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161402519", - "info": { - "identifier": 161402519, - "sqm_ocr": 60.01, - "price": 3900.0, - "price_per_sqm": 64.98916847192135, - "url": "https://www.rightmove.co.uk/properties/161402519", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/161402519/63031_CAL080079_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.817007", - "last_seen": "2025-06-01T22:05:42.217596", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146339, - 51.537308 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.5, - "qmprice": 33.56, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161402813", - "info": { - "identifier": 161402813, - "sqm_ocr": 74.5, - "price": 2500.0, - "price_per_sqm": 33.557046979865774, - "url": "https://www.rightmove.co.uk/properties/161402813", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Royal Arsenal Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13540/161402813/13540_102719000566_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.208325", - "last_seen": "2025-06-01T22:05:46.168718", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07137, - 51.49155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 38.89, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161403017", - "info": { - "identifier": 161403017, - "sqm_ocr": 63.0, - "price": 2450.0, - "price_per_sqm": 38.888888888888886, - "url": "https://www.rightmove.co.uk/properties/161403017", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/161403017/66771_1324874_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.002295", - "last_seen": "2025-06-01T22:05:59.214953", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108286, - 51.477013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.41, - "qmprice": 38.61, - "rooms": 2, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/161403200", - "info": { - "identifier": 161403200, - "sqm_ocr": 85.41, - "price": 3298.0, - "price_per_sqm": 38.61374546306053, - "url": "https://www.rightmove.co.uk/properties/161403200", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/161403200/191255_33855249_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.558783", - "last_seen": "2025-06-01T22:06:10.442566", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.050794, - 51.507538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 39.23, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161403881", - "info": { - "identifier": 161403881, - "sqm_ocr": 65.0, - "price": 2550.0, - "price_per_sqm": 39.23076923076923, - "url": "https://www.rightmove.co.uk/properties/161403881", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161403881/96668_246936001052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.216245", - "last_seen": "2025-06-01T17:39:02.264951", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077574, - 51.495564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.6, - "qmprice": 32.84, - "rooms": 2, - "total_price": 2384.0, - "url": "https://www.rightmove.co.uk/properties/161406212", - "info": { - "identifier": 161406212, - "sqm_ocr": 72.6, - "price": 2384.0, - "price_per_sqm": 32.837465564738295, - "url": "https://www.rightmove.co.uk/properties/161406212", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/161406212/15957_1324903_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.851185", - "last_seen": "2025-06-01T22:05:40.791243", - "price": 2384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200176, - 51.54115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 46.9, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161406215", - "info": { - "identifier": 161406215, - "sqm_ocr": 69.3, - "price": 3250.0, - "price_per_sqm": 46.8975468975469, - "url": "https://www.rightmove.co.uk/properties/161406215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/161406215/15957_1324336_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.031326", - "last_seen": "2025-06-01T22:05:42.600662", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162519, - 51.55781 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.66, - "qmprice": 32.27, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161406266", - "info": { - "identifier": 161406266, - "sqm_ocr": 83.66, - "price": 2700.0, - "price_per_sqm": 32.27348792732489, - "url": "https://www.rightmove.co.uk/properties/161406266", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/161406266/73120_1324907_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.872522", - "last_seen": "2025-06-01T22:05:53.744631", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103482, - 51.525803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.39, - "qmprice": 51.1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161406485", - "info": { - "identifier": 161406485, - "sqm_ocr": 73.39, - "price": 3750.0, - "price_per_sqm": 51.09687968388064, - "url": "https://www.rightmove.co.uk/properties/161406485", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/161406485/44537_CSL250126_L_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.743054", - "last_seen": "2025-06-01T22:06:04.923044", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101441, - 51.50052 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.92, - "qmprice": 39.28, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161406557", - "info": { - "identifier": 161406557, - "sqm_ocr": 78.92, - "price": 3100.0, - "price_per_sqm": 39.28028383172833, - "url": "https://www.rightmove.co.uk/properties/161406557", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3723/161406557/3723_PHL250406_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.684825", - "last_seen": "2025-06-01T22:06:15.086659", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191523, - 51.535496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.3, - "qmprice": 35.22, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161407382", - "info": { - "identifier": 161407382, - "sqm_ocr": 65.3, - "price": 2300.0, - "price_per_sqm": 35.22205206738132, - "url": "https://www.rightmove.co.uk/properties/161407382", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68802/161407382/68802_KDA250250_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.384505", - "last_seen": "2025-06-01T22:05:59.682856", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112388, - 51.449215 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 42.62, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161407424", - "info": { - "identifier": 161407424, - "sqm_ocr": 61.0, - "price": 2600.0, - "price_per_sqm": 42.622950819672134, - "url": "https://www.rightmove.co.uk/properties/161407424", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82720/161407424/82720_KDU250815_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.261681", - "last_seen": "2025-06-01T22:06:06.516019", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084961, - 51.49891 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.4, - "qmprice": 31.36, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/161407646", - "info": { - "identifier": 161407646, - "sqm_ocr": 68.4, - "price": 2145.0, - "price_per_sqm": 31.359649122807014, - "url": "https://www.rightmove.co.uk/properties/161407646", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57973/161407646/57973_KEG250548_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.584714", - "last_seen": "2025-06-01T22:06:15.176193", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171551, - 51.52435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.9, - "qmprice": 34.87, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161407667", - "info": { - "identifier": 161407667, - "sqm_ocr": 88.9, - "price": 3100.0, - "price_per_sqm": 34.87064116985377, - "url": "https://www.rightmove.co.uk/properties/161407667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57973/161407667/57973_KEG250560_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.552204", - "last_seen": "2025-06-01T22:06:15.146684", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172844, - 51.53455 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.5, - "qmprice": 37.91, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161407688", - "info": { - "identifier": 161407688, - "sqm_ocr": 105.5, - "price": 4000.0, - "price_per_sqm": 37.91469194312796, - "url": "https://www.rightmove.co.uk/properties/161407688", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57973/161407688/57973_KEG250562_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.532489", - "last_seen": "2025-06-01T22:06:15.123697", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166526, - 51.52776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.3, - "qmprice": 39.82, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161407769", - "info": { - "identifier": 161407769, - "sqm_ocr": 65.3, - "price": 2600.0, - "price_per_sqm": 39.81623277182236, - "url": "https://www.rightmove.co.uk/properties/161407769", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57973/161407769/57973_KEG250588_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.243713", - "last_seen": "2025-06-01T22:06:15.968654", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172812, - 51.533535 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.8, - "qmprice": 36.22, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161408033", - "info": { - "identifier": 161408033, - "sqm_ocr": 82.8, - "price": 2999.0, - "price_per_sqm": 36.21980676328503, - "url": "https://www.rightmove.co.uk/properties/161408033", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84869/161408033/84869_33855336_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.690010", - "last_seen": "2025-06-01T22:06:13.466215", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17869, - 51.468925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 35.21, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161408162", - "info": { - "identifier": 161408162, - "sqm_ocr": 71.0, - "price": 2500.0, - "price_per_sqm": 35.2112676056338, - "url": "https://www.rightmove.co.uk/properties/161408162", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57979/161408162/57979_KEH252790_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.050176", - "last_seen": "2025-06-01T22:05:59.305982", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125255, - 51.419014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.5, - "qmprice": 30.05, - "rooms": 4, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161408363", - "info": { - "identifier": 161408363, - "sqm_ocr": 96.5, - "price": 2900.0, - "price_per_sqm": 30.05181347150259, - "url": "https://www.rightmove.co.uk/properties/161408363", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57991/161408363/57991_KEJ251881_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.623103", - "last_seen": "2025-06-01T22:06:01.307412", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163547, - 51.41326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.7, - "qmprice": 47.85, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161408423", - "info": { - "identifier": 161408423, - "sqm_ocr": 62.7, - "price": 3000.0, - "price_per_sqm": 47.846889952153106, - "url": "https://www.rightmove.co.uk/properties/161408423", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58000/161408423/58000_KEO251259_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.635803", - "last_seen": "2025-06-01T22:06:01.770171", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185184, - 51.419266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.5, - "qmprice": 37.01, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161408435", - "info": { - "identifier": 161408435, - "sqm_ocr": 63.5, - "price": 2350.0, - "price_per_sqm": 37.00787401574803, - "url": "https://www.rightmove.co.uk/properties/161408435", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58000/161408435/58000_KEO251278_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.644458", - "last_seen": "2025-06-01T22:06:01.773023", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21511, - 51.41575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161408438", - "info": { - "identifier": 161408438, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161408438", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58000/161408438/58000_KEO251293_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.645864", - "last_seen": "2025-06-01T22:06:01.776179", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194856, - 51.424973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.8, - "qmprice": 33.02, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161408441", - "info": { - "identifier": 161408441, - "sqm_ocr": 84.8, - "price": 2800.0, - "price_per_sqm": 33.0188679245283, - "url": "https://www.rightmove.co.uk/properties/161408441", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58000/161408441/58000_KEO251294_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.647768", - "last_seen": "2025-06-01T22:06:01.782467", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187273, - 51.422832 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 136.9, - "qmprice": 27.76, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161408459", - "info": { - "identifier": 161408459, - "sqm_ocr": 136.9, - "price": 3800.0, - "price_per_sqm": 27.757487216946675, - "url": "https://www.rightmove.co.uk/properties/161408459", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58000/161408459/58000_KEO251472_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.653256", - "last_seen": "2025-06-01T22:06:01.791144", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201825, - 51.419685 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.8, - "qmprice": 32.09, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161408471", - "info": { - "identifier": 161408471, - "sqm_ocr": 74.8, - "price": 2400.0, - "price_per_sqm": 32.0855614973262, - "url": "https://www.rightmove.co.uk/properties/161408471", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58000/161408471/58000_KEO251788_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.430079", - "last_seen": "2025-06-01T22:06:01.817674", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219509, - 51.41509 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.64, - "qmprice": 38.68, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161408795", - "info": { - "identifier": 161408795, - "sqm_ocr": 64.64, - "price": 2500.0, - "price_per_sqm": 38.67574257425743, - "url": "https://www.rightmove.co.uk/properties/161408795", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66768/161408795/66768_1324912_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.466320", - "last_seen": "2025-06-01T22:06:05.674600", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063837, - 51.466774 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.9, - "qmprice": 50.93, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161409209", - "info": { - "identifier": 161409209, - "sqm_ocr": 58.9, - "price": 3000.0, - "price_per_sqm": 50.93378607809847, - "url": "https://www.rightmove.co.uk/properties/161409209", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Davies & Davies", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22559/161409209/22559_33854624_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.023433", - "last_seen": "2025-06-01T22:05:54.004553", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110815, - 51.565376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161410424", - "info": { - "identifier": 161410424, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161410424", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Japan Services Rent", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94576/161410424/94576_P2187_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.868700", - "last_seen": "2025-06-01T22:05:45.250412", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29454, - 51.51435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 43.55, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161410520", - "info": { - "identifier": 161410520, - "sqm_ocr": 62.0, - "price": 2700.0, - "price_per_sqm": 43.54838709677419, - "url": "https://www.rightmove.co.uk/properties/161410520", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57287/161410520/57287_1324782_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.511787", - "last_seen": "2025-06-01T22:05:59.844618", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105075, - 51.4454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161411045", - "info": { - "identifier": 161411045, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161411045", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161411045/96668_246939601052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.414338", - "last_seen": "2025-06-01T22:06:06.755564", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09974, - 51.497074 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161411180", - "info": { - "identifier": 161411180, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161411180", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Anthony Webb Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9316/161411180/9316_33855547_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.026121", - "last_seen": "2025-06-01T22:05:45.734317", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117187, - 51.61339 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.0, - "qmprice": 42.59, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161411516", - "info": { - "identifier": 161411516, - "sqm_ocr": 54.0, - "price": 2300.0, - "price_per_sqm": 42.592592592592595, - "url": "https://www.rightmove.co.uk/properties/161411516", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161411516/96668_239541922022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.783260", - "last_seen": "2025-06-01T22:05:46.989694", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.015143, - 51.486683 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161411777", - "info": { - "identifier": 161411777, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161411777", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Citydeal Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96880/161411777/96880_RL1782_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.009828", - "last_seen": "2025-06-01T22:05:44.135266", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265344, - 51.520344 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.82, - "qmprice": 56.41, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161411888", - "info": { - "identifier": 161411888, - "sqm_ocr": 63.82, - "price": 3600.0, - "price_per_sqm": 56.40864932623002, - "url": "https://www.rightmove.co.uk/properties/161411888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161411888/26207_IUL210193_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.718536", - "last_seen": "2025-06-01T22:05:53.487625", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108787, - 51.53953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 144.26, - "qmprice": 27.73, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161416217", - "info": { - "identifier": 161416217, - "sqm_ocr": 144.26, - "price": 4000.0, - "price_per_sqm": 27.72771384999307, - "url": "https://www.rightmove.co.uk/properties/161416217", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/161416217/52887_33855578_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.631091", - "last_seen": "2025-06-01T22:06:01.763886", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247042, - 51.41581 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.3, - "qmprice": 33.59, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161418590", - "info": { - "identifier": 161418590, - "sqm_ocr": 89.3, - "price": 3000.0, - "price_per_sqm": 33.5946248600224, - "url": "https://www.rightmove.co.uk/properties/161418590", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/193k/192209/161418590/192209_33855756_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.517268", - "last_seen": "2025-06-01T22:05:44.772485", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.266018, - 51.5195 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 27.03, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161418647", - "info": { - "identifier": 161418647, - "sqm_ocr": 74.0, - "price": 2000.0, - "price_per_sqm": 27.027027027027028, - "url": "https://www.rightmove.co.uk/properties/161418647", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118051/161418647/118051_33808932_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.859737", - "last_seen": "2025-06-01T22:06:00.517497", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027937, - 51.481743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.5, - "qmprice": 30.08, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161418653", - "info": { - "identifier": 161418653, - "sqm_ocr": 66.5, - "price": 2000.0, - "price_per_sqm": 30.075187969924812, - "url": "https://www.rightmove.co.uk/properties/161418653", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118051/161418653/118051_33855760_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.854861", - "last_seen": "2025-06-01T22:06:00.514847", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039666, - 51.468037 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/161419259", - "info": { - "identifier": 161419259, - "sqm_ocr": null, - "price": 3550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161419259", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/161419259/78429_LON-354_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.278901", - "last_seen": "2025-06-01T22:05:47.771098", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08959, - 51.52819 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161419667", - "info": { - "identifier": 161419667, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161419667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/161419667/77511_SDL190048_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.226005", - "last_seen": "2025-06-01T22:06:10.352833", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06598, - 51.515663 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161420030", - "info": { - "identifier": 161420030, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161420030", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Streets Ahead", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181634/161420030/181634_CRP220626_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.317694", - "last_seen": "2025-06-01T22:05:41.773747", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.041585, - 51.390903 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.3, - "qmprice": 38.79, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161421035", - "info": { - "identifier": 161421035, - "sqm_ocr": 59.3, - "price": 2300.0, - "price_per_sqm": 38.785834738617204, - "url": "https://www.rightmove.co.uk/properties/161421035", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/161421035/77197_VCT_VCT_LFSYCL_465_633176359_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.601350", - "last_seen": "2025-06-01T22:06:08.837976", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022964, - 51.49031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 43.21, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161421242", - "info": { - "identifier": 161421242, - "sqm_ocr": 81.0, - "price": 3500.0, - "price_per_sqm": 43.20987654320987, - "url": "https://www.rightmove.co.uk/properties/161421242", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49000/161421242/49000_CNL240071_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.223811", - "last_seen": "2025-06-01T22:06:06.412458", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104145, - 51.506195 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.12, - "qmprice": 54.64, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/161421365", - "info": { - "identifier": 161421365, - "sqm_ocr": 55.12, - "price": 3012.0, - "price_per_sqm": 54.644412191582006, - "url": "https://www.rightmove.co.uk/properties/161421365", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/161421365/108515_1321355_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.971682", - "last_seen": "2025-06-01T22:05:57.511254", - "price": 3012.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187018, - 51.484703 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.0, - "qmprice": 59.18, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161421401", - "info": { - "identifier": 161421401, - "sqm_ocr": 49.0, - "price": 2900.0, - "price_per_sqm": 59.183673469387756, - "url": "https://www.rightmove.co.uk/properties/161421401", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "LizardProperty", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274388/161421401/274388_ALC_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.865908", - "last_seen": "2025-06-01T22:05:42.493491", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13814, - 51.52195 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.8, - "qmprice": 34.38, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161421773", - "info": { - "identifier": 161421773, - "sqm_ocr": 69.8, - "price": 2400.0, - "price_per_sqm": 34.383954154727796, - "url": "https://www.rightmove.co.uk/properties/161421773", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/161421773/54730_WLL220108_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.555753", - "last_seen": "2025-06-01T22:05:40.435350", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.253094, - 51.541023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161421830", - "info": { - "identifier": 161421830, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161421830", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44544/161421830/44544_WFL250256_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.523429", - "last_seen": "2025-06-01T22:05:57.118142", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184764, - 51.476585 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/161421890", - "info": { - "identifier": 161421890, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161421890", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Stevenette & Company", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45143/161421890/45143_103220002364_IMG_18_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.875963", - "last_seen": "2025-06-01T22:06:03.677766", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02045, - 51.62346 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.33, - "qmprice": 48.21, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/161422427", - "info": { - "identifier": 161422427, - "sqm_ocr": 66.33, - "price": 3198.0, - "price_per_sqm": 48.21347806422433, - "url": "https://www.rightmove.co.uk/properties/161422427", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/161422427/25485_33856031_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.630618", - "last_seen": "2025-06-01T22:05:42.159961", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199141, - 51.552948 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161422430", - "info": { - "identifier": 161422430, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161422430", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/161422430/82537_33856032_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.019169, - 51.501472 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161422724", - "info": { - "identifier": 161422724, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161422724", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/161422724/17418_100415005535_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.496635", - "last_seen": "2025-06-01T22:05:51.684858", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.41232, - 51.60017 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/161423090", - "info": { - "identifier": 161423090, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161423090", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202016/161423090/202016_33819304_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.147598", - "last_seen": "2025-06-01T22:05:44.967605", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33316, - 51.508472 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 151.7, - "qmprice": 23.04, - "rooms": 4, - "total_price": 3495.0, - "url": "https://www.rightmove.co.uk/properties/161423123", - "info": { - "identifier": 161423123, - "sqm_ocr": 151.7, - "price": 3495.0, - "price_per_sqm": 23.038892551087674, - "url": "https://www.rightmove.co.uk/properties/161423123", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/161423123/54730_WLL250164_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.966255", - "last_seen": "2025-06-01T22:05:44.017564", - "price": 3495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.301023, - 51.528393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3790.0, - "url": "https://www.rightmove.co.uk/properties/161423264", - "info": { - "identifier": 161423264, - "sqm_ocr": null, - "price": 3790.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161423264", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/161423264/78429_LON-257_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.161172", - "last_seen": "2025-06-01T22:05:59.456502", - "price": 3790.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12739, - 51.48176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161423318", - "info": { - "identifier": 161423318, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161423318", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "O'Sullivan Property", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139934/161423318/139934_33715107_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.327737", - "last_seen": "2025-06-01T22:05:43.004808", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184994, - 51.53786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.9, - "qmprice": 30.82, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161423696", - "info": { - "identifier": 161423696, - "sqm_ocr": 64.9, - "price": 2000.0, - "price_per_sqm": 30.81664098613251, - "url": "https://www.rightmove.co.uk/properties/161423696", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239978/161423696/239978_KEI230040_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.956828", - "last_seen": "2025-06-01T22:06:00.682361", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03643, - 51.42445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2580.0, - "url": "https://www.rightmove.co.uk/properties/161423750", - "info": { - "identifier": 161423750, - "sqm_ocr": null, - "price": 2580.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161423750", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Way of Life (The Gessner)", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267533/161423750/267533_EVER-2675332y10qwxS1TEOOl2xIAapQUPdychXZqYR7YkT0BDaHHHUNviBhqUiuLm_IMG_21_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.805824", - "last_seen": "2025-06-01T22:05:56.850196", - "price": 2492.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.060291, - 51.590145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.1, - "qmprice": 46.29, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161423813", - "info": { - "identifier": 161423813, - "sqm_ocr": 82.1, - "price": 3800.0, - "price_per_sqm": 46.28501827040195, - "url": "https://www.rightmove.co.uk/properties/161423813", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161423813/87187_54659_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.310615", - "last_seen": "2025-06-01T22:05:49.442553", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184709, - 51.476204 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.24, - "qmprice": 35.09, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161423816", - "info": { - "identifier": 161423816, - "sqm_ocr": 71.24, - "price": 2500.0, - "price_per_sqm": 35.09264458169568, - "url": "https://www.rightmove.co.uk/properties/161423816", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161423816/87187_51445_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.211164", - "last_seen": "2025-06-01T22:05:41.348271", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283784, - 51.540775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 41.1, - "qmprice": 60.83, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161423930", - "info": { - "identifier": 161423930, - "sqm_ocr": 41.1, - "price": 2500.0, - "price_per_sqm": 60.82725060827251, - "url": "https://www.rightmove.co.uk/properties/161423930", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65920/161423930/65920_WMQ012517455_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.503226", - "last_seen": "2025-06-01T22:06:01.575157", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215324, - 51.41687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2677.0, - "url": "https://www.rightmove.co.uk/properties/161423942", - "info": { - "identifier": 161423942, - "sqm_ocr": null, - "price": 2677.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161423942", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Way of Life (The Gessner)", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267533/161423942/267533_EVER-2675332y10px6GTlbt78P2mhXijz91AOvhxToZnKWLmwRQ9qo5ZtHMy69AVM2tC_IMG_19_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.743330", - "last_seen": "2025-06-01T22:05:50.018037", - "price": 2622.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.060291, - 51.590145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.0, - "qmprice": 31.25, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161424659", - "info": { - "identifier": 161424659, - "sqm_ocr": 96.0, - "price": 3000.0, - "price_per_sqm": 31.25, - "url": "https://www.rightmove.co.uk/properties/161424659", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50304/161424659/50304_33854491_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.137677", - "last_seen": "2025-06-01T22:05:45.007699", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.313293, - 51.5274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2672.0, - "url": "https://www.rightmove.co.uk/properties/161425280", - "info": { - "identifier": 161425280, - "sqm_ocr": null, - "price": 2672.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161425280", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Way of Life (The Gessner)", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267533/161425280/267533_EVER-ODVhYzI3YTktNDJjNC00OGUzLTk0YzEtYTlmNGZiMzE3NDI1LTc=_IMG_21_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.717995", - "last_seen": "2025-06-01T22:05:49.995935", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.060291, - 51.590145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 41.03, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161425343", - "info": { - "identifier": 161425343, - "sqm_ocr": 78.0, - "price": 3200.0, - "price_per_sqm": 41.02564102564103, - "url": "https://www.rightmove.co.uk/properties/161425343", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77505/161425343/77505_GER253506_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.932913", - "last_seen": "2025-06-01T22:05:47.298151", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066418, - 51.555916 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/161425421", - "info": { - "identifier": 161425421, - "sqm_ocr": null, - "price": 2383.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161425421", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Abacus Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26267/161425421/26267_ABAC_009850_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.747139", - "last_seen": "2025-06-01T22:05:40.732002", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200066, - 51.541325 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.4, - "qmprice": 33.99, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/161425481", - "info": { - "identifier": 161425481, - "sqm_ocr": 107.4, - "price": 3650.0, - "price_per_sqm": 33.985102420856606, - "url": "https://www.rightmove.co.uk/properties/161425481", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18927/161425481/18927_33856203_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.831759", - "last_seen": "2025-06-01T22:05:42.468681", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163535, - 51.549202 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161426612", - "info": { - "identifier": 161426612, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161426612", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161426612/96668_246994602052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.118714, - 51.54283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/161426747", - "info": { - "identifier": 161426747, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161426747", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161426747/96668_246816830042025_IMG_21_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.423575", - "last_seen": "2025-06-01T22:05:41.758283", - "price": 2430.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066935, - 51.40801 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161426885", - "info": { - "identifier": 161426885, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161426885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57973/161426885/57973_KFX240085_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.061212", - "last_seen": "2025-06-01T22:06:15.719504", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183659, - 51.537453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.4, - "qmprice": 29.17, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161426927", - "info": { - "identifier": 161426927, - "sqm_ocr": 111.4, - "price": 3250.0, - "price_per_sqm": 29.174147217235188, - "url": "https://www.rightmove.co.uk/properties/161426927", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98852/161426927/98852_KEL250688_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.568003", - "last_seen": "2025-06-01T22:05:42.064734", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181222, - 51.542496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 43.18, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161427017", - "info": { - "identifier": 161427017, - "sqm_ocr": 66.0, - "price": 2850.0, - "price_per_sqm": 43.18181818181818, - "url": "https://www.rightmove.co.uk/properties/161427017", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98852/161427017/98852_KEL251057_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.177876", - "last_seen": "2025-06-01T22:05:42.790436", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17974, - 51.544586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.89, - "qmprice": 32.36, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161427176", - "info": { - "identifier": 161427176, - "sqm_ocr": 115.89, - "price": 3750.0, - "price_per_sqm": 32.35827077400984, - "url": "https://www.rightmove.co.uk/properties/161427176", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194036/161427176/194036_HWB240404_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.226626", - "last_seen": "2025-06-01T22:06:01.120197", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19979, - 51.418617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161427224", - "info": { - "identifier": 161427224, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161427224", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Oakland Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55705/161427224/55705_271e41d3-44b9-49fe-8418-7bc9f5e18a43_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.850657", - "last_seen": "2025-06-01T22:06:03.916387", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.058877, - 51.5618 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.3, - "qmprice": 34.92, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161427632", - "info": { - "identifier": 161427632, - "sqm_ocr": 67.3, - "price": 2350.0, - "price_per_sqm": 34.9182763744428, - "url": "https://www.rightmove.co.uk/properties/161427632", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257069/161427632/257069_33856322_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.124805", - "last_seen": "2025-06-01T22:05:57.122399", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017516, - 51.482986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.7, - "qmprice": 24.76, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/161427686", - "info": { - "identifier": 161427686, - "sqm_ocr": 84.7, - "price": 2097.0, - "price_per_sqm": 24.75796930342385, - "url": "https://www.rightmove.co.uk/properties/161427686", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/161427686/84791_33856328_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.892013", - "last_seen": "2025-06-01T22:05:55.969161", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305883, - 51.51257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.63, - "qmprice": 47.26, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161428355", - "info": { - "identifier": 161428355, - "sqm_ocr": 84.63, - "price": 4000.0, - "price_per_sqm": 47.26456339359565, - "url": "https://www.rightmove.co.uk/properties/161428355", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/143k/142382/161428355/142382_ALQ012556914_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.713189", - "last_seen": "2025-06-01T22:06:09.880670", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070139, - 51.513546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161428502", - "info": { - "identifier": 161428502, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161428502", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Adam Hayes Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235829/161428502/235829_33856386_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.181915", - "last_seen": "2025-06-01T22:05:39.828728", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190834, - 51.603497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.0, - "qmprice": 46.08, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161428610", - "info": { - "identifier": 161428610, - "sqm_ocr": 51.0, - "price": 2350.0, - "price_per_sqm": 46.07843137254902, - "url": "https://www.rightmove.co.uk/properties/161428610", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210110/161428610/210110_P299960_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.050571", - "last_seen": "2025-06-01T22:06:15.706926", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19587, - 51.52744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.3, - "qmprice": 44.77, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/161428631", - "info": { - "identifier": 161428631, - "sqm_ocr": 79.3, - "price": 3550.0, - "price_per_sqm": 44.76670870113493, - "url": "https://www.rightmove.co.uk/properties/161428631", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Petty Son & Prestwich Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70202/161428631/70202_33638370_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.552059", - "last_seen": "2025-06-01T22:05:59.904537", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12489, - 51.48243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161428754", - "info": { - "identifier": 161428754, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161428754", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247475/161428754/247475_P287603_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.770117", - "last_seen": "2025-06-01T22:06:03.729809", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03154, - 51.60645 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161428961", - "info": { - "identifier": 161428961, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161428961", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Homelink Lettings & Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13040/161428961/13040_33856414_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.081151", - "last_seen": "2025-06-01T22:05:45.902102", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128664, - 51.647125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.66, - "qmprice": 46.16, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161429186", - "info": { - "identifier": 161429186, - "sqm_ocr": 60.66, - "price": 2800.0, - "price_per_sqm": 46.15891856247939, - "url": "https://www.rightmove.co.uk/properties/161429186", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63025/161429186/63025_IUL230113_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.106522", - "last_seen": "2025-06-01T22:05:54.195436", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110893, - 51.524117 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.3, - "qmprice": 32.03, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161429357", - "info": { - "identifier": 161429357, - "sqm_ocr": 84.3, - "price": 2700.0, - "price_per_sqm": 32.028469750889684, - "url": "https://www.rightmove.co.uk/properties/161429357", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64571/161429357/64571_33655711_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.503549", - "last_seen": "2025-06-01T22:05:40.382566", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.246925, - 51.558445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.5, - "qmprice": 45.64, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161429465", - "info": { - "identifier": 161429465, - "sqm_ocr": 74.5, - "price": 3400.0, - "price_per_sqm": 45.63758389261745, - "url": "https://www.rightmove.co.uk/properties/161429465", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/161429465/60927_000012707b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.884566", - "last_seen": "2025-06-01T22:05:54.938579", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23458, - 51.49575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161429495", - "info": { - "identifier": 161429495, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161429495", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/161429495/264878_CAN211666_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.757383", - "last_seen": "2025-06-01T22:06:09.992598", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.012092, - 51.499866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.9, - "qmprice": 55.94, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161429942", - "info": { - "identifier": 161429942, - "sqm_ocr": 42.9, - "price": 2400.0, - "price_per_sqm": 55.94405594405595, - "url": "https://www.rightmove.co.uk/properties/161429942", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57991/161429942/57991_KEJ251531_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.328343", - "last_seen": "2025-06-01T22:06:13.150842", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.160823, - 51.430588 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 49.33, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161430092", - "info": { - "identifier": 161430092, - "sqm_ocr": 75.0, - "price": 3700.0, - "price_per_sqm": 49.333333333333336, - "url": "https://www.rightmove.co.uk/properties/161430092", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98738/161430092/98738_ISQ012555726_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.440998", - "last_seen": "2025-06-01T22:05:47.943246", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089892, - 51.532803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161430194", - "info": { - "identifier": 161430194, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161430194", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Property Inc", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191252/161430194/191252_PRI250085_L_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.723364", - "last_seen": "2025-06-01T22:05:50.000238", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.111201, - 51.590595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 159.6, - "qmprice": 18.73, - "rooms": 4, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/161431499", - "info": { - "identifier": 161431499, - "sqm_ocr": 159.6, - "price": 2990.0, - "price_per_sqm": 18.734335839598998, - "url": "https://www.rightmove.co.uk/properties/161431499", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57275/161431499/57275_1309804_IMG_04_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.023793", - "last_seen": "2025-06-01T22:05:50.514306", - "price": 2990.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.372697, - 51.59339 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161431511", - "info": { - "identifier": 161431511, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161431511", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Element Properties & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221111/161431511/221111_ALP250074_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.448824", - "last_seen": "2025-06-01T22:05:53.308235", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119415, - 51.56292 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.4, - "qmprice": 35.46, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161431559", - "info": { - "identifier": 161431559, - "sqm_ocr": 56.4, - "price": 2000.0, - "price_per_sqm": 35.46099290780142, - "url": "https://www.rightmove.co.uk/properties/161431559", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/161431559/80281_1324956_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.865176", - "last_seen": "2025-06-01T22:06:03.709740", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.070912, - 51.557026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3035.0, - "url": "https://www.rightmove.co.uk/properties/161431649", - "info": { - "identifier": 161431649, - "sqm_ocr": null, - "price": 3035.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161431649", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Shared", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265295/161431649/265295_CrimscottStreetFlat34_twoBedroom_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.631171", - "last_seen": "2025-06-01T22:06:07.044471", - "price": 3035.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07944, - 51.4952 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.8, - "qmprice": 41.81, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161431739", - "info": { - "identifier": 161431739, - "sqm_ocr": 59.8, - "price": 2500.0, - "price_per_sqm": 41.80602006688964, - "url": "https://www.rightmove.co.uk/properties/161431739", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/161431739/108947_1324975_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.562542", - "last_seen": "2025-06-01T22:05:44.836613", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.366815, - 51.54808 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.3, - "qmprice": 45.28, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161431784", - "info": { - "identifier": 161431784, - "sqm_ocr": 77.3, - "price": 3500.0, - "price_per_sqm": 45.278137128072444, - "url": "https://www.rightmove.co.uk/properties/161431784", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/161431784/15960_1324973_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.056358", - "last_seen": "2025-06-01T22:06:15.711483", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166438, - 51.528152 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.4, - "qmprice": 29.97, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161432048", - "info": { - "identifier": 161432048, - "sqm_ocr": 73.4, - "price": 2200.0, - "price_per_sqm": 29.972752043596728, - "url": "https://www.rightmove.co.uk/properties/161432048", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/161432048/65785_33821344_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.069621", - "last_seen": "2025-06-01T22:06:12.517907", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150697, - 51.439793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.1, - "qmprice": 36.38, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161432054", - "info": { - "identifier": 161432054, - "sqm_ocr": 70.1, - "price": 2550.0, - "price_per_sqm": 36.37660485021398, - "url": "https://www.rightmove.co.uk/properties/161432054", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52448/161432054/52448_33856629_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.059846", - "last_seen": "2025-06-01T22:06:12.511476", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19851, - 51.460835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.4, - "qmprice": 34.23, - "rooms": 2, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/161432063", - "info": { - "identifier": 161432063, - "sqm_ocr": 115.4, - "price": 3950.0, - "price_per_sqm": 34.22876949740034, - "url": "https://www.rightmove.co.uk/properties/161432063", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/161432063/60927_000019782b_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.603113", - "last_seen": "2025-06-01T22:05:48.308875", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22554, - 51.48725 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 33.33, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161432078", - "info": { - "identifier": 161432078, - "sqm_ocr": 75.0, - "price": 2500.0, - "price_per_sqm": 33.333333333333336, - "url": "https://www.rightmove.co.uk/properties/161432078", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12694/161432078/12694_GER238664_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.228649", - "last_seen": "2025-06-01T22:06:01.124305", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143918, - 51.411827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.5, - "qmprice": 32.0, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161433038", - "info": { - "identifier": 161433038, - "sqm_ocr": 62.5, - "price": 2000.0, - "price_per_sqm": 32.0, - "url": "https://www.rightmove.co.uk/properties/161433038", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148955/161433038/148955_KLS190011_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.758687", - "last_seen": "2025-06-01T22:05:58.754134", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303278, - 51.41304 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161433056", - "info": { - "identifier": 161433056, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161433056", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/161433056/135416_BPL250072_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.738974", - "last_seen": "2025-06-01T22:06:13.639372", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168862, - 51.476925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.7, - "qmprice": 39.51, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161434076", - "info": { - "identifier": 161434076, - "sqm_ocr": 98.7, - "price": 3900.0, - "price_per_sqm": 39.51367781155015, - "url": "https://www.rightmove.co.uk/properties/161434076", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/161434076/264878_CAN231445_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/09/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.012092, - 51.499866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161435060", - "info": { - "identifier": 161435060, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161435060", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/161435060/264878_CAN212858_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.043592", - "last_seen": "2025-06-01T22:06:02.598017", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.011345, - 51.516453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161435261", - "info": { - "identifier": 161435261, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161435261", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Inner City Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/104k/103850/161435261/103850_phoeniaam_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.170626", - "last_seen": "2025-06-01T22:06:10.322957", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04121, - 51.50994 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161435300", - "info": { - "identifier": 161435300, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161435300", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Property Company Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/230k/229163/161435300/229163_29013250_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.058821", - "last_seen": "2025-06-01T22:06:00.825069", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.000577, - 51.457863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 39.71, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161435462", - "info": { - "identifier": 161435462, - "sqm_ocr": 68.0, - "price": 2700.0, - "price_per_sqm": 39.705882352941174, - "url": "https://www.rightmove.co.uk/properties/161435462", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148955/161435462/148955_FRL130084_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.653013", - "last_seen": "2025-06-01T22:06:04.261185", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.296763, - 51.456524 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161435954", - "info": { - "identifier": 161435954, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161435954", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "BRITBRICKS", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282746/161435954/282746_brit_518500035_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.100778", - "last_seen": "2025-06-01T22:05:52.161680", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375758, - 51.466816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 127.7, - "qmprice": 23.1, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161435987", - "info": { - "identifier": 161435987, - "sqm_ocr": 127.7, - "price": 2950.0, - "price_per_sqm": 23.101018010963195, - "url": "https://www.rightmove.co.uk/properties/161435987", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Christopher Nevill", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9211/161435987/9211_3b967297-dad7-4695-98d6-485cf6f10bc3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.458712", - "last_seen": "2025-06-01T22:05:51.312796", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.479467, - 51.53822 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161436266", - "info": { - "identifier": 161436266, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161436266", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73310/161436266/73310_33856940_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.687995", - "last_seen": "2025-06-01T22:05:51.665828", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.41767, - 51.50123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.3, - "qmprice": 33.97, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161436590", - "info": { - "identifier": 161436590, - "sqm_ocr": 63.3, - "price": 2150.0, - "price_per_sqm": 33.9652448657188, - "url": "https://www.rightmove.co.uk/properties/161436590", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/161436590/15981_1324084_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.147328", - "last_seen": "2025-06-01T22:05:59.083115", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133669, - 51.428726 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.18, - "qmprice": 54.58, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/161436605", - "info": { - "identifier": 161436605, - "sqm_ocr": 55.18, - "price": 3012.0, - "price_per_sqm": 54.584994563247555, - "url": "https://www.rightmove.co.uk/properties/161436605", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/161436605/108515_1324934_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.152692", - "last_seen": "2025-06-01T22:05:57.788605", - "price": 3012.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191134, - 51.48805 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.4, - "qmprice": 47.62, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161436860", - "info": { - "identifier": 161436860, - "sqm_ocr": 50.4, - "price": 2400.0, - "price_per_sqm": 47.61904761904762, - "url": "https://www.rightmove.co.uk/properties/161436860", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/161436860/15957_1324991_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.721568", - "last_seen": "2025-06-01T22:05:39.309498", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197802, - 51.56218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.6, - "qmprice": 32.4, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161436911", - "info": { - "identifier": 161436911, - "sqm_ocr": 92.6, - "price": 3000.0, - "price_per_sqm": 32.39740820734342, - "url": "https://www.rightmove.co.uk/properties/161436911", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/161436911/15969_1324632_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.126154", - "last_seen": "2025-06-01T22:05:44.262338", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265545, - 51.520123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.7, - "qmprice": 27.48, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161436923", - "info": { - "identifier": 161436923, - "sqm_ocr": 83.7, - "price": 2300.0, - "price_per_sqm": 27.479091995221026, - "url": "https://www.rightmove.co.uk/properties/161436923", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/161436923/15969_1324983_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.115456", - "last_seen": "2025-06-01T22:05:44.248741", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28588, - 51.517067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.0, - "qmprice": 29.36, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161436962", - "info": { - "identifier": 161436962, - "sqm_ocr": 109.0, - "price": 3200.0, - "price_per_sqm": 29.357798165137616, - "url": "https://www.rightmove.co.uk/properties/161436962", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137369/161436962/137369_1324273_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.661304", - "last_seen": "2025-06-01T22:06:11.663662", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021228, - 51.568443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.5, - "qmprice": 62.97, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/161437010", - "info": { - "identifier": 161437010, - "sqm_ocr": 58.5, - "price": 3684.0, - "price_per_sqm": 62.97435897435897, - "url": "https://www.rightmove.co.uk/properties/161437010", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/161437010/76585_1324992_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.896219", - "last_seen": "2025-06-01T22:06:15.457753", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15885, - 51.51433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.7, - "qmprice": 37.49, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161437019", - "info": { - "identifier": 161437019, - "sqm_ocr": 86.7, - "price": 3250.0, - "price_per_sqm": 37.48558246828143, - "url": "https://www.rightmove.co.uk/properties/161437019", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/161437019/111056_1324910_IMG_01_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.213539", - "last_seen": "2025-06-01T22:06:10.373817", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061803, - 51.509323 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.1, - "qmprice": 39.94, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161437034", - "info": { - "identifier": 161437034, - "sqm_ocr": 65.1, - "price": 2600.0, - "price_per_sqm": 39.93855606758833, - "url": "https://www.rightmove.co.uk/properties/161437034", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/161437034/111056_1324915_IMG_05_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.255996", - "last_seen": "2025-06-01T22:06:10.511723", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071105, - 51.512543 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161438315", - "info": { - "identifier": 161438315, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161438315", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25214/161438315/25214_33857103_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.391577", - "last_seen": "2025-06-01T22:06:02.169763", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.006451, - 51.5119 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.9, - "qmprice": 39.51, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161438507", - "info": { - "identifier": 161438507, - "sqm_ocr": 75.9, - "price": 2999.0, - "price_per_sqm": 39.512516469038204, - "url": "https://www.rightmove.co.uk/properties/161438507", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77695/161438507/77695_33857111_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.225215", - "last_seen": "2025-06-01T22:06:15.910006", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12955, - 51.488174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.88, - "qmprice": 37.05, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161438819", - "info": { - "identifier": 161438819, - "sqm_ocr": 72.88, - "price": 2700.0, - "price_per_sqm": 37.04720087815588, - "url": "https://www.rightmove.co.uk/properties/161438819", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/161438819/51286_CLL250125_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.315660", - "last_seen": "2025-06-01T22:05:54.542296", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.258171, - 51.498165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161439359", - "info": { - "identifier": 161439359, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161439359", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92261/161439359/92261_KDJ250526_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.988955", - "last_seen": "2025-06-01T22:05:39.518242", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187889, - 51.609898 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.0, - "qmprice": 23.26, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161439515", - "info": { - "identifier": 161439515, - "sqm_ocr": 86.0, - "price": 2000.0, - "price_per_sqm": 23.25581395348837, - "url": "https://www.rightmove.co.uk/properties/161439515", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Truepenny's", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49874/161439515/49874_4503_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.238968", - "last_seen": "2025-06-01T22:05:39.947763", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.122808, - 51.49323 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.5, - "qmprice": 39.37, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161439617", - "info": { - "identifier": 161439617, - "sqm_ocr": 63.5, - "price": 2500.0, - "price_per_sqm": 39.37007874015748, - "url": "https://www.rightmove.co.uk/properties/161439617", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57967/161439617/57967_KBS240124_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.426030", - "last_seen": "2025-06-01T22:06:06.784439", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061941, - 51.46648 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161440193", - "info": { - "identifier": 161440193, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161440193", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161440193/96668_247013702052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.011946", - "last_seen": "2025-06-01T22:06:00.719452", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038549, - 51.49016 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/161440259", - "info": { - "identifier": 161440259, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161440259", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Andrews Letting and Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33326/161440259/33326_BAL250015_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.212748", - "last_seen": "2025-06-01T22:06:13.892539", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165827, - 51.43328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 138.2, - "qmprice": 21.71, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161440430", - "info": { - "identifier": 161440430, - "sqm_ocr": 138.2, - "price": 3000.0, - "price_per_sqm": 21.70767004341534, - "url": "https://www.rightmove.co.uk/properties/161440430", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112924/161440430/112924_P299987_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.911471", - "last_seen": "2025-06-01T22:06:00.595876", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01229, - 51.46908 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161441564", - "info": { - "identifier": 161441564, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161441564", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Mann Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89483/161441564/89483_000906341_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/04/2027", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.925727", - "last_seen": "2025-06-01T22:06:00.615749", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0047, - 51.45177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161441804", - "info": { - "identifier": 161441804, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161441804", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Cromwells Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15626/161441804/15626_12663547_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.349916", - "last_seen": "2025-06-01T22:06:07.858249", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.230857, - 51.381565 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.71, - "qmprice": 37.24, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161441873", - "info": { - "identifier": 161441873, - "sqm_ocr": 53.71, - "price": 2000.0, - "price_per_sqm": 37.237013591509964, - "url": "https://www.rightmove.co.uk/properties/161441873", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/161441873/15963_1324919_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.162917", - "last_seen": "2025-06-01T22:06:12.650334", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188964, - 51.450474 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.71, - "qmprice": 59.58, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161441882", - "info": { - "identifier": 161441882, - "sqm_ocr": 53.71, - "price": 3200.0, - "price_per_sqm": 59.57922174641594, - "url": "https://www.rightmove.co.uk/properties/161441882", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/161441882/15963_1324920_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.152771", - "last_seen": "2025-06-01T22:06:12.617484", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188964, - 51.450474 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161443499", - "info": { - "identifier": 161443499, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161443499", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/161443499/48994_CNL250119_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.015477, - 51.486675 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161444603", - "info": { - "identifier": 161444603, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161444603", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "David Conway & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6116/161444603/6116_56_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.069289", - "last_seen": "2025-06-01T22:05:50.553834", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35541, - 51.56881 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.02, - "qmprice": 42.84, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161444816", - "info": { - "identifier": 161444816, - "sqm_ocr": 56.02, - "price": 2400.0, - "price_per_sqm": 42.84184219921456, - "url": "https://www.rightmove.co.uk/properties/161444816", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons in association with James Pendleton", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279227/161444816/279227_WLS250251_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.575701", - "last_seen": "2025-06-01T22:06:12.210336", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185157, - 51.43645 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.5, - "qmprice": 50.51, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161445020", - "info": { - "identifier": 161445020, - "sqm_ocr": 49.5, - "price": 2500.0, - "price_per_sqm": 50.505050505050505, - "url": "https://www.rightmove.co.uk/properties/161445020", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "GMS", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90902/161445020/90902_225_GMSE_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.463512", - "last_seen": "2025-06-01T22:06:14.388569", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189623, - 51.514484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.42, - "qmprice": 21.93, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161445371", - "info": { - "identifier": 161445371, - "sqm_ocr": 125.42, - "price": 2750.0, - "price_per_sqm": 21.92632753946739, - "url": "https://www.rightmove.co.uk/properties/161445371", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Addison Townsend", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38757/161445371/38757_addison_939316856_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.949105", - "last_seen": "2025-06-01T22:05:39.448997", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131247, - 51.6319 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 45.98, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161445620", - "info": { - "identifier": 161445620, - "sqm_ocr": 87.0, - "price": 4000.0, - "price_per_sqm": 45.97701149425287, - "url": "https://www.rightmove.co.uk/properties/161445620", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/161445620/29861_33857612_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.901472", - "last_seen": "2025-06-01T22:06:13.410331", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132376, - 51.481228 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161445695", - "info": { - "identifier": 161445695, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161445695", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/123k/122989/161445695/122989_YLR250056_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.619150", - "last_seen": "2025-06-01T22:06:04.703687", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.288971, - 51.46861 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 37.74, - "rooms": 2, - "total_price": 2340.0, - "url": "https://www.rightmove.co.uk/properties/161445830", - "info": { - "identifier": 161445830, - "sqm_ocr": 62.0, - "price": 2340.0, - "price_per_sqm": 37.74193548387097, - "url": "https://www.rightmove.co.uk/properties/161445830", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/161445830/80796_675_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.585510", - "last_seen": "2025-06-01T22:05:59.959320", - "price": 2253 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11311, - 51.46139 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161446169", - "info": { - "identifier": 161446169, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161446169", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/161446169/32793_26582_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.506646", - "last_seen": "2025-06-01T22:05:56.663377", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20393, - 51.4764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 40.4, - "qmprice": 61.88, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161446424", - "info": { - "identifier": 161446424, - "sqm_ocr": 40.4, - "price": 2500.0, - "price_per_sqm": 61.881188118811885, - "url": "https://www.rightmove.co.uk/properties/161446424", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "B Bailey Property Management Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3074/161446424/3074_1029_194670_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.282877", - "last_seen": "2025-06-01T22:06:11.889458", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01754, - 51.55463 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.8, - "qmprice": 36.23, - "rooms": 2, - "total_price": 2384.0, - "url": "https://www.rightmove.co.uk/properties/161446547", - "info": { - "identifier": 161446547, - "sqm_ocr": 65.8, - "price": 2384.0, - "price_per_sqm": 36.23100303951368, - "url": "https://www.rightmove.co.uk/properties/161446547", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/161446547/15948_1324905_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.668345", - "last_seen": "2025-06-01T22:05:48.375557", - "price": 2384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204752, - 51.48969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/161446709", - "info": { - "identifier": 161446709, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161446709", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/161446709/84833_33857680_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.301356", - "last_seen": "2025-06-01T22:05:55.807324", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.233891, - 51.512928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.0, - "qmprice": 37.18, - "rooms": 2, - "total_price": 3532.0, - "url": "https://www.rightmove.co.uk/properties/161447156", - "info": { - "identifier": 161447156, - "sqm_ocr": 95.0, - "price": 3532.0, - "price_per_sqm": 37.17894736842105, - "url": "https://www.rightmove.co.uk/properties/161447156", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Sandfords", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151142/161447156/151142_RPL220007_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.078473", - "last_seen": "2025-06-01T22:06:15.741552", - "price": 3531 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167825, - 51.524094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.2, - "qmprice": 36.84, - "rooms": 2, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/161447756", - "info": { - "identifier": 161447756, - "sqm_ocr": 92.2, - "price": 3397.0, - "price_per_sqm": 36.84381778741865, - "url": "https://www.rightmove.co.uk/properties/161447756", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/60k/59810/161447756/59810_BGL240031_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.780346", - "last_seen": "2025-06-01T22:06:14.345043", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134389, - 51.48817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161447927", - "info": { - "identifier": 161447927, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161447927", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Elite & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283283/161447927/283283_33747282_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.808837", - "last_seen": "2025-06-01T22:05:47.040603", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.120021, - 51.488613 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.6, - "qmprice": 47.17, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161448302", - "info": { - "identifier": 161448302, - "sqm_ocr": 63.6, - "price": 3000.0, - "price_per_sqm": 47.16981132075472, - "url": "https://www.rightmove.co.uk/properties/161448302", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "London Homes Property Limited", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287264/161448302/287264_ARU-583662_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.033259", - "last_seen": "2025-06-01T22:06:05.285952", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095581, - 51.49218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161448947", - "info": { - "identifier": 161448947, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161448947", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Able Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/9k/8201/161448947/8201_8372_ABLE_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.232783", - "last_seen": "2025-06-01T22:05:39.937854", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.124708, - 51.487675 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161449196", - "info": { - "identifier": 161449196, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161449196", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Hoopers", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10007/161449196/10007_29016943_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.316124", - "last_seen": "2025-06-01T22:05:40.449008", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265826, - 51.545223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161449376", - "info": { - "identifier": 161449376, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161449376", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Braithwait", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274382/161449376/274382_33857886_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.975344", - "last_seen": "2025-06-01T22:06:15.586094", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202452, - 51.531914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.34, - "qmprice": 64.44, - "rooms": 2, - "total_price": 3695.0, - "url": "https://www.rightmove.co.uk/properties/161449487", - "info": { - "identifier": 161449487, - "sqm_ocr": 57.34, - "price": 3695.0, - "price_per_sqm": 64.4401813742588, - "url": "https://www.rightmove.co.uk/properties/161449487", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "EC Residential LTD", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244844/161449487/244844_1962_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.371899", - "last_seen": "2025-06-01T22:06:14.747592", - "price": 3695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15299, - 51.52201 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161450174", - "info": { - "identifier": 161450174, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161450174", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Rosewood Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63096/161450174/63096_PBRdShortLet_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.112984", - "last_seen": "2025-06-01T22:06:14.169459", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21017, - 51.46299 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161450261", - "info": { - "identifier": 161450261, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161450261", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161450261/96668_246470227042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.271734", - "last_seen": "2025-06-01T22:05:39.977939", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.151505, - 51.48693 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.79, - "qmprice": 42.38, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161450264", - "info": { - "identifier": 161450264, - "sqm_ocr": 70.79, - "price": 3000.0, - "price_per_sqm": 42.378867071620284, - "url": "https://www.rightmove.co.uk/properties/161450264", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/161450264/44537_HEA200158_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.526988", - "last_seen": "2025-06-01T22:06:11.272254", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065535, - 51.513054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161450534", - "info": { - "identifier": 161450534, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161450534", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161450534/96668_247033202052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.332445", - "last_seen": "2025-06-01T22:05:47.713634", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078799, - 51.53971 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161450606", - "info": { - "identifier": 161450606, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161450606", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161450606/96668_247031102052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.319100", - "last_seen": "2025-06-01T22:06:01.031467", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.027152, - 51.435524 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/161451383", - "info": { - "identifier": 161451383, - "sqm_ocr": null, - "price": 2847.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161451383", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/161451383/82537_33858000_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.444229", - "last_seen": "2025-06-01T22:06:11.000532", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018093, - 51.501255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161451797", - "info": { - "identifier": 161451797, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161451797", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Tatlers", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/156k/155624/161451797/155624_MUH250192_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.848721", - "last_seen": "2025-06-01T22:06:15.405538", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166543, - 51.534138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161451959", - "info": { - "identifier": 161451959, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161451959", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11495/161451959/11495_0435_FJL043502245_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.865701", - "last_seen": "2025-06-01T22:06:08.389506", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076615, - 51.528034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/161452424", - "info": { - "identifier": 161452424, - "sqm_ocr": null, - "price": 2847.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161452424", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/161452424/198539_33858067_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.189430", - "last_seen": "2025-06-01T22:06:10.365137", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018093, - 51.501255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 43.21, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161452667", - "info": { - "identifier": 161452667, - "sqm_ocr": 81.0, - "price": 3500.0, - "price_per_sqm": 43.20987654320987, - "url": "https://www.rightmove.co.uk/properties/161452667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "TAUK", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266639/161452667/266639_RX577514_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.713710", - "last_seen": "2025-06-01T22:06:04.886600", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104082, - 51.50619 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161452760", - "info": { - "identifier": 161452760, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161452760", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65872/161452760/65872_CWQ012549549_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.509534", - "last_seen": "2025-06-01T22:06:08.296397", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027739, - 51.506317 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161452829", - "info": { - "identifier": 161452829, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161452829", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Surrey Quays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60474/161452829/60474_SQ02052025AK_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.121129", - "last_seen": "2025-06-01T22:06:00.983836", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03694, - 51.49206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 37.97, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161452865", - "info": { - "identifier": 161452865, - "sqm_ocr": 79.0, - "price": 3000.0, - "price_per_sqm": 37.9746835443038, - "url": "https://www.rightmove.co.uk/properties/161452865", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50074/161452865/50074_P300001_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.565799", - "last_seen": "2025-06-01T22:05:58.433760", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20979, - 51.52172 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.6, - "qmprice": 33.63, - "rooms": 3, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/161452901", - "info": { - "identifier": 161452901, - "sqm_ocr": 102.6, - "price": 3450.0, - "price_per_sqm": 33.62573099415205, - "url": "https://www.rightmove.co.uk/properties/161452901", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/161452901/15963_1324893_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.734681", - "last_seen": "2025-06-01T22:06:13.644703", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218165, - 51.455605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161453234", - "info": { - "identifier": 161453234, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161453234", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Letting International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/184k/183545/161453234/183545_33858112_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.641830", - "last_seen": "2025-06-01T22:06:11.625277", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.014724, - 51.55646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 38.51, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161453822", - "info": { - "identifier": 161453822, - "sqm_ocr": 74.0, - "price": 2850.0, - "price_per_sqm": 38.513513513513516, - "url": "https://www.rightmove.co.uk/properties/161453822", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13108/161453822/13108_FIL160502_L_IMG_20_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.431327", - "last_seen": "2025-06-01T22:05:38.849673", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186826, - 51.63076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2401.0, - "url": "https://www.rightmove.co.uk/properties/161453915", - "info": { - "identifier": 161453915, - "sqm_ocr": null, - "price": 2401.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161453915", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/161453915/84866_33858157_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.781537", - "last_seen": "2025-06-01T22:05:45.106531", - "price": 2400 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.271469, - 51.496143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.1, - "qmprice": 36.18, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161453918", - "info": { - "identifier": 161453918, - "sqm_ocr": 69.1, - "price": 2500.0, - "price_per_sqm": 36.179450072358904, - "url": "https://www.rightmove.co.uk/properties/161453918", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/161453918/65785_33744560_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.993238", - "last_seen": "2025-06-01T22:06:14.018107", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148986, - 51.439507 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.7, - "qmprice": 42.59, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161453933", - "info": { - "identifier": 161453933, - "sqm_ocr": 58.7, - "price": 2500.0, - "price_per_sqm": 42.58943781942078, - "url": "https://www.rightmove.co.uk/properties/161453933", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99865/161453933/99865_33858158_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.716482", - "last_seen": "2025-06-01T22:06:00.106472", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129399, - 51.45302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161454191", - "info": { - "identifier": 161454191, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161454191", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "COZEE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262232/161454191/262232_bd8d3614-a03b-41c5-9cc9-85d9ae3f614a_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.680911", - "last_seen": "2025-06-01T22:06:03.402605", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02214, - 51.50869 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.4, - "qmprice": 42.85, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/161454338", - "info": { - "identifier": 161454338, - "sqm_ocr": 80.4, - "price": 3445.0, - "price_per_sqm": 42.84825870646766, - "url": "https://www.rightmove.co.uk/properties/161454338", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/161454338/65124_CEI241649_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.066877", - "last_seen": "2025-06-01T22:06:05.334860", - "price": 3315 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103729, - 51.50207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.14, - "qmprice": 34.06, - "rooms": 2, - "total_price": 2253.0, - "url": "https://www.rightmove.co.uk/properties/161454545", - "info": { - "identifier": 161454545, - "sqm_ocr": 66.14, - "price": 2253.0, - "price_per_sqm": 34.06410644088297, - "url": "https://www.rightmove.co.uk/properties/161454545", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/161454545/275489_02052025-Naim_IMG_00_0000_max_656x437.png", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.465625", - "last_seen": "2025-06-01T22:05:55.307703", - "price": 2253 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0738, - 51.56229 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.82, - "qmprice": 54.11, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161454596", - "info": { - "identifier": 161454596, - "sqm_ocr": 50.82, - "price": 2750.0, - "price_per_sqm": 54.112554112554115, - "url": "https://www.rightmove.co.uk/properties/161454596", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "House Collective", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198368/161454596/198368_PRH250026_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.264040", - "last_seen": "2025-06-01T22:05:42.694850", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162464, - 51.54695 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.54, - "qmprice": 53.55, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/161454908", - "info": { - "identifier": 161454908, - "sqm_ocr": 46.54, - "price": 2492.0, - "price_per_sqm": 53.54533734422003, - "url": "https://www.rightmove.co.uk/properties/161454908", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57973/161454908/57973_KEG240144_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.666701", - "last_seen": "2025-06-01T22:06:15.253976", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173088, - 51.52665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 133.7, - "qmprice": 26.18, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161454971", - "info": { - "identifier": 161454971, - "sqm_ocr": 133.7, - "price": 3500.0, - "price_per_sqm": 26.17801047120419, - "url": "https://www.rightmove.co.uk/properties/161454971", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112915/161454971/112915_P300011_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.328044", - "last_seen": "2025-06-01T22:05:46.410743", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01854, - 51.47449 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161455097", - "info": { - "identifier": 161455097, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161455097", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "The Stow Brothers", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267587/161455097/267587_33858255_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.333075", - "last_seen": "2025-06-01T22:06:08.224915", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011889, - 51.5244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.78, - "qmprice": 34.73, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161456378", - "info": { - "identifier": 161456378, - "sqm_ocr": 64.78, - "price": 2250.0, - "price_per_sqm": 34.73294226613152, - "url": "https://www.rightmove.co.uk/properties/161456378", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Tate Residential Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111214/161456378/111214_4986724_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.632154", - "last_seen": "2025-06-01T22:06:00.042688", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117455, - 51.465023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.3, - "qmprice": 28.42, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/161456525", - "info": { - "identifier": 161456525, - "sqm_ocr": 84.3, - "price": 2396.0, - "price_per_sqm": 28.422301304863584, - "url": "https://www.rightmove.co.uk/properties/161456525", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6954/161456525/6954_33858339_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.137861", - "last_seen": "2025-06-01T22:05:49.226149", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225116, - 51.505634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 27.47, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161456882", - "info": { - "identifier": 161456882, - "sqm_ocr": 91.0, - "price": 2500.0, - "price_per_sqm": 27.47252747252747, - "url": "https://www.rightmove.co.uk/properties/161456882", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Curchods Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13985/161456882/13985_CKT240138_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.470841", - "last_seen": "2025-06-01T22:06:07.883542", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.226502, - 51.38282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161456906", - "info": { - "identifier": 161456906, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161456906", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19059/161456906/19059_3aff59d9-fc7f-42eb-8f50-dc59a30d4d0a_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.085895", - "last_seen": "2025-06-01T22:05:50.593078", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.323587, - 51.584686 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161457308", - "info": { - "identifier": 161457308, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161457308", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161457308/96668_247038602052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.306435", - "last_seen": "2025-06-01T22:05:58.964687", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098803, - 51.430504 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161457332", - "info": { - "identifier": 161457332, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161457332", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161457332/96668_247039102052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.123954", - "last_seen": "2025-06-01T22:06:02.680399", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.018958, - 51.50875 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161457506", - "info": { - "identifier": 161457506, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161457506", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Your Move", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/32k/31359/161457506/31359_ABB160132_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.826268", - "last_seen": "2025-06-01T22:05:47.061676", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.104517, - 51.48775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 28.38, - "rooms": 4, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161457938", - "info": { - "identifier": 161457938, - "sqm_ocr": 74.0, - "price": 2100.0, - "price_per_sqm": 28.37837837837838, - "url": "https://www.rightmove.co.uk/properties/161457938", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Carter & Willow", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/60k/59646/161457938/59646_CW060161_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.081306", - "last_seen": "2025-06-01T22:05:38.323102", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.14439, - 51.55858 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161458394", - "info": { - "identifier": 161458394, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161458394", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/161458394/17882_36960_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "27/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.563583", - "last_seen": "2025-06-01T22:05:53.197847", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11519, - 51.5331 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.1, - "qmprice": 36.4, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/161458823", - "info": { - "identifier": 161458823, - "sqm_ocr": 63.1, - "price": 2297.0, - "price_per_sqm": 36.40253565768621, - "url": "https://www.rightmove.co.uk/properties/161458823", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/161458823/25485_33858477_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.601440", - "last_seen": "2025-06-01T22:05:42.095519", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203235, - 51.549583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.1, - "qmprice": 30.06, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161459117", - "info": { - "identifier": 161459117, - "sqm_ocr": 108.1, - "price": 3250.0, - "price_per_sqm": 30.064754856614247, - "url": "https://www.rightmove.co.uk/properties/161459117", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/161459117/111050_1323735_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.389371", - "last_seen": "2025-06-01T22:06:13.203511", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166788, - 51.431076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161459132", - "info": { - "identifier": 161459132, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161459132", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Charlesons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40074/161459132/40074_101903003877_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.852530", - "last_seen": "2025-06-01T22:06:03.937730", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.065344, - 51.5762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161459168", - "info": { - "identifier": 161459168, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161459168", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Rentr", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260789/161459168/260789_6541a282-4565-42d7-a901-023cddad4390_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.263497", - "last_seen": "2025-06-01T22:05:50.952820", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.190574, - 51.5314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.3, - "qmprice": 31.56, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161459774", - "info": { - "identifier": 161459774, - "sqm_ocr": 71.3, - "price": 2250.0, - "price_per_sqm": 31.55680224403927, - "url": "https://www.rightmove.co.uk/properties/161459774", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161459774/15975_1324153_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.614398", - "last_seen": "2025-06-01T22:06:01.757742", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208256, - 51.4135 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3720.0, - "url": "https://www.rightmove.co.uk/properties/161459972", - "info": { - "identifier": 161459972, - "sqm_ocr": null, - "price": 3720.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161459972", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/161459972/32793_39399_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.612879", - "last_seen": "2025-06-01T22:05:42.099442", - "price": 3720.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18074, - 51.54906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161460047", - "info": { - "identifier": 161460047, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161460047", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/161460047/222842_TCH220207_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.688932", - "last_seen": "2025-06-01T22:05:53.413764", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113038, - 51.55103 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161460575", - "info": { - "identifier": 161460575, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161460575", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Eden Harper", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67498/161460575/67498_33858611_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.229653", - "last_seen": "2025-06-01T22:06:12.203172", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.152781, - 51.475407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161460593", - "info": { - "identifier": 161460593, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161460593", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/161460593/32793_39225_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.202641", - "last_seen": "2025-06-01T22:05:48.569503", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20222, - 51.47601 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 41.77, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161460962", - "info": { - "identifier": 161460962, - "sqm_ocr": 83.0, - "price": 3467.0, - "price_per_sqm": 41.7710843373494, - "url": "https://www.rightmove.co.uk/properties/161460962", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Battersea & Nine Elms Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143171/161460962/143171_33858648_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.341595", - "last_seen": "2025-06-01T22:06:13.143056", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135037, - 51.479713 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161461454", - "info": { - "identifier": 161461454, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161461454", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161461454/96668_247033502052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.247780", - "last_seen": "2025-06-01T22:05:51.037054", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.238138, - 51.570072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161461853", - "info": { - "identifier": 161461853, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161461853", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12997/161461853/12997_NRT220079_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.502699", - "last_seen": "2025-06-01T22:05:44.770480", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3472, - 51.5081 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161462279", - "info": { - "identifier": 161462279, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161462279", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "The London Broker", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174521/161462279/174521_FES250029_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.252330", - "last_seen": "2025-06-01T22:05:59.554952", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12709, - 51.481705 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.93, - "qmprice": 34.28, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161463761", - "info": { - "identifier": 161463761, - "sqm_ocr": 72.93, - "price": 2500.0, - "price_per_sqm": 34.279446044151925, - "url": "https://www.rightmove.co.uk/properties/161463761", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57956/161463761/57956_LAD250065_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.994453", - "last_seen": "2025-06-01T22:05:57.530273", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215066, - 51.508896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.6, - "qmprice": 33.49, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/161463863", - "info": { - "identifier": 161463863, - "sqm_ocr": 65.6, - "price": 2197.0, - "price_per_sqm": 33.49085365853659, - "url": "https://www.rightmove.co.uk/properties/161463863", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7964/161463863/7964_33847403_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.259466", - "last_seen": "2025-06-01T22:05:44.447626", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34149, - 51.50509 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.51, - "qmprice": 59.25, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161463902", - "info": { - "identifier": 161463902, - "sqm_ocr": 67.51, - "price": 4000.0, - "price_per_sqm": 59.250481410161456, - "url": "https://www.rightmove.co.uk/properties/161463902", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94658/161463902/94658_33858800_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.283800", - "last_seen": "2025-06-01T22:05:58.356185", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20235, - 51.495144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161464136", - "info": { - "identifier": 161464136, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161464136", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "CROWN LUXURY HOMES LIMITED", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267257/161464136/267257_33858812_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.325225", - "last_seen": "2025-06-01T22:05:47.689315", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089185, - 51.57243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.1, - "qmprice": 34.67, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161464670", - "info": { - "identifier": 161464670, - "sqm_ocr": 72.1, - "price": 2500.0, - "price_per_sqm": 34.674063800277395, - "url": "https://www.rightmove.co.uk/properties/161464670", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62634/161464670/62634_33858846_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.608307", - "last_seen": "2025-06-01T22:06:01.751568", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174199, - 51.419052 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 119.2, - "qmprice": 19.92, - "rooms": 3, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/161464931", - "info": { - "identifier": 161464931, - "sqm_ocr": 119.2, - "price": 2375.0, - "price_per_sqm": 19.924496644295303, - "url": "https://www.rightmove.co.uk/properties/161464931", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "gLocalAgents.co.uk", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176603/161464931/176603_14886_EAF_182274_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.476757", - "last_seen": "2025-06-01T22:05:51.347538", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.44746, - 51.53518 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.02, - "qmprice": 29.82, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/161465684", - "info": { - "identifier": 161465684, - "sqm_ocr": 77.02, - "price": 2297.0, - "price_per_sqm": 29.823422487665542, - "url": "https://www.rightmove.co.uk/properties/161465684", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/161465684/198539_33752408_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.536215", - "last_seen": "2025-06-01T22:06:09.442404", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.040069, - 51.51014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 33.33, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161466026", - "info": { - "identifier": 161466026, - "sqm_ocr": 66.0, - "price": 2200.0, - "price_per_sqm": 33.333333333333336, - "url": "https://www.rightmove.co.uk/properties/161466026", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Baker and Chase", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/110k/109898/161466026/109898_33858941_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.018002", - "last_seen": "2025-06-01T22:05:45.730949", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070412, - 51.65773 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.81, - "qmprice": 31.41, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161466278", - "info": { - "identifier": 161466278, - "sqm_ocr": 74.81, - "price": 2350.0, - "price_per_sqm": 31.41291271220425, - "url": "https://www.rightmove.co.uk/properties/161466278", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Sparrows Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237491/161466278/237491_14101_001207_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.472605", - "last_seen": "2025-06-01T22:06:12.094856", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.243629, - 51.452736 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 156.0, - "qmprice": 20.83, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161466683", - "info": { - "identifier": 161466683, - "sqm_ocr": 156.0, - "price": 3250.0, - "price_per_sqm": 20.833333333333332, - "url": "https://www.rightmove.co.uk/properties/161466683", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/161466683/57272_1325054_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.620521", - "last_seen": "2025-06-01T22:05:58.528967", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.288766, - 51.39446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161466815", - "info": { - "identifier": 161466815, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161466815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Simon Clarke", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32535/161466815/32535_33858986_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.928961", - "last_seen": "2025-06-01T22:05:54.302185", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120833, - 51.549965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.15, - "qmprice": 40.05, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161466845", - "info": { - "identifier": 161466845, - "sqm_ocr": 81.15, - "price": 3250.0, - "price_per_sqm": 40.04929143561306, - "url": "https://www.rightmove.co.uk/properties/161466845", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161466845/16050_1325062_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.336011", - "last_seen": "2025-06-01T22:05:47.743789", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.082096, - 51.528084 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.89, - "qmprice": 33.75, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161466878", - "info": { - "identifier": 161466878, - "sqm_ocr": 88.89, - "price": 3000.0, - "price_per_sqm": 33.74957813027337, - "url": "https://www.rightmove.co.uk/properties/161466878", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/161466878/227810_1325052_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.718416", - "last_seen": "2025-06-01T22:05:46.896910", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.072919, - 51.491238 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.5, - "qmprice": 33.09, - "rooms": 2, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/161466881", - "info": { - "identifier": 161466881, - "sqm_ocr": 90.5, - "price": 2995.0, - "price_per_sqm": 33.0939226519337, - "url": "https://www.rightmove.co.uk/properties/161466881", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/161466881/227810_1322432_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.732814", - "last_seen": "2025-06-01T22:05:46.912356", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.072198, - 51.49152 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.8, - "qmprice": 35.76, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/161467115", - "info": { - "identifier": 161467115, - "sqm_ocr": 97.8, - "price": 3497.0, - "price_per_sqm": 35.756646216768914, - "url": "https://www.rightmove.co.uk/properties/161467115", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/161467115/84791_33859006_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.379837", - "last_seen": "2025-06-01T22:05:44.546413", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31507, - 51.52738 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/161467166", - "info": { - "identifier": 161467166, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161467166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50713/161467166/50713_33859009_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.269658", - "last_seen": "2025-06-01T22:05:57.943240", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21024, - 51.520267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.6, - "qmprice": 45.03, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161467169", - "info": { - "identifier": 161467169, - "sqm_ocr": 86.6, - "price": 3900.0, - "price_per_sqm": 45.03464203233256, - "url": "https://www.rightmove.co.uk/properties/161467169", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/105k/104924/161467169/104924_CIL170053_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.956554", - "last_seen": "2025-06-01T22:05:48.794283", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.227085, - 51.510212 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.2, - "qmprice": 35.28, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161467664", - "info": { - "identifier": 161467664, - "sqm_ocr": 99.2, - "price": 3500.0, - "price_per_sqm": 35.28225806451613, - "url": "https://www.rightmove.co.uk/properties/161467664", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "Conran Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17519/161467664/17519_LET250046_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.579976", - "last_seen": "2025-06-01T22:05:46.648495", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.011677, - 51.485058 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.57, - "qmprice": 43.83, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161467760", - "info": { - "identifier": 161467760, - "sqm_ocr": 77.57, - "price": 3400.0, - "price_per_sqm": 43.831378110094114, - "url": "https://www.rightmove.co.uk/properties/161467760", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161467760/43310_MRL100095_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.171198", - "last_seen": "2025-06-01T22:06:08.866574", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02, - 51.5 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/161467946", - "info": { - "identifier": 161467946, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161467946", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Swift Real Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275078/161467946/275078_368_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.280465", - "last_seen": "2025-06-01T22:05:48.447745", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22385, - 51.511 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 148.7, - "qmprice": 21.86, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161467967", - "info": { - "identifier": 161467967, - "sqm_ocr": 148.7, - "price": 3250.0, - "price_per_sqm": 21.856086079354405, - "url": "https://www.rightmove.co.uk/properties/161467967", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Lakin & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201140/161467967/201140_33859044_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.551470", - "last_seen": "2025-06-01T22:05:51.580455", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.440248, - 51.54271 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.6, - "qmprice": 43.97, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161468231", - "info": { - "identifier": 161468231, - "sqm_ocr": 79.6, - "price": 3500.0, - "price_per_sqm": 43.969849246231156, - "url": "https://www.rightmove.co.uk/properties/161468231", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/9k/8290/161468231/8290_CHI170180_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.368242", - "last_seen": "2025-06-01T22:05:52.660525", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254057, - 51.486027 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2294.0, - "url": "https://www.rightmove.co.uk/properties/161468381", - "info": { - "identifier": 161468381, - "sqm_ocr": null, - "price": 2294.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161468381", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Native Communities", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272639/161468381/272639_2Bed-FF-South3_IMG_03_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.803862", - "last_seen": "2025-06-01T22:05:43.663488", - "price": 2294.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09176, - 51.37638 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/161468705", - "info": { - "identifier": 161468705, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161468705", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161468705/96668_247050802052025_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.647860", - "last_seen": "2025-06-01T22:05:49.892676", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153796, - 51.59125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.14, - "qmprice": 38.49, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161468801", - "info": { - "identifier": 161468801, - "sqm_ocr": 70.14, - "price": 2700.0, - "price_per_sqm": 38.49443969204448, - "url": "https://www.rightmove.co.uk/properties/161468801", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Grange London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235148/161468801/235148_33859066_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.382400", - "last_seen": "2025-06-01T22:05:39.592610", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220976, - 51.57133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161468861", - "info": { - "identifier": 161468861, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161468861", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Foundation Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/189k/188543/161468861/188543_31634226_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.454663", - "last_seen": "2025-06-01T22:06:15.007513", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17425, - 51.522923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.25, - "qmprice": 62.28, - "rooms": 2, - "total_price": 3690.0, - "url": "https://www.rightmove.co.uk/properties/161468867", - "info": { - "identifier": 161468867, - "sqm_ocr": 59.25, - "price": 3690.0, - "price_per_sqm": 62.278481012658226, - "url": "https://www.rightmove.co.uk/properties/161468867", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/161468867/15981_1323502_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.182780", - "last_seen": "2025-06-01T22:06:12.682685", - "price": 3690.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15809, - 51.45027 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.25, - "qmprice": 40.25, - "rooms": 2, - "total_price": 2385.0, - "url": "https://www.rightmove.co.uk/properties/161468870", - "info": { - "identifier": 161468870, - "sqm_ocr": 59.25, - "price": 2385.0, - "price_per_sqm": 40.25316455696203, - "url": "https://www.rightmove.co.uk/properties/161468870", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/161468870/15981_1323511_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.15809, - 51.45027 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.9, - "qmprice": 42.66, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161468933", - "info": { - "identifier": 161468933, - "sqm_ocr": 87.9, - "price": 3750.0, - "price_per_sqm": 42.66211604095563, - "url": "https://www.rightmove.co.uk/properties/161468933", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/161468933/63031_CAL240086_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.437235", - "last_seen": "2025-06-01T22:05:56.258569", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148075, - 51.54071 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.8, - "qmprice": 41.97, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161468993", - "info": { - "identifier": 161468993, - "sqm_ocr": 54.8, - "price": 2300.0, - "price_per_sqm": 41.97080291970803, - "url": "https://www.rightmove.co.uk/properties/161468993", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/161468993/15948_1325077_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.886355", - "last_seen": "2025-06-01T22:05:48.726755", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19199, - 51.47587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 43.01, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161469191", - "info": { - "identifier": 161469191, - "sqm_ocr": 68.0, - "price": 2925.0, - "price_per_sqm": 43.01470588235294, - "url": "https://www.rightmove.co.uk/properties/161469191", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/161469191/111056_1325053_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.841109", - "last_seen": "2025-06-01T22:06:07.905382", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057705, - 51.50745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.1, - "qmprice": 28.54, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161469194", - "info": { - "identifier": 161469194, - "sqm_ocr": 91.1, - "price": 2600.0, - "price_per_sqm": 28.54006586169045, - "url": "https://www.rightmove.co.uk/properties/161469194", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/161469194/66771_1325018_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.294788", - "last_seen": "2025-06-01T22:05:59.635165", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118914, - 51.49132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2284.0, - "url": "https://www.rightmove.co.uk/properties/161469392", - "info": { - "identifier": 161469392, - "sqm_ocr": null, - "price": 2284.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161469392", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Native Communities", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272639/161469392/272639_2Bed-FF-South4_IMG_05_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.874088", - "last_seen": "2025-06-01T22:05:43.786519", - "price": 2284.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0919, - 51.37634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 42.17, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161469980", - "info": { - "identifier": 161469980, - "sqm_ocr": 83.0, - "price": 3500.0, - "price_per_sqm": 42.16867469879518, - "url": "https://www.rightmove.co.uk/properties/161469980", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13108/161469980/13108_BDC180028_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.364377", - "last_seen": "2025-06-01T22:05:39.610612", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167657, - 51.626442 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.9, - "qmprice": 39.75, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161470196", - "info": { - "identifier": 161470196, - "sqm_ocr": 62.9, - "price": 2500.0, - "price_per_sqm": 39.7456279809221, - "url": "https://www.rightmove.co.uk/properties/161470196", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58000/161470196/58000_KEO220066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.520262", - "last_seen": "2025-06-01T22:06:01.422143", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21511, - 51.41575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161470256", - "info": { - "identifier": 161470256, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161470256", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22209/161470256/22209_FLL130056_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.903523", - "last_seen": "2025-06-01T22:05:49.514183", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19, - 51.48 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161470265", - "info": { - "identifier": 161470265, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161470265", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52617/161470265/52617_LVE160089_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.806895", - "last_seen": "2025-06-01T22:06:16.114344", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188505, - 51.526337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 51.15, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161470268", - "info": { - "identifier": 161470268, - "sqm_ocr": 72.0, - "price": 3683.0, - "price_per_sqm": 51.15277777777778, - "url": "https://www.rightmove.co.uk/properties/161470268", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96154/161470268/96154_CSG160876_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.807954", - "last_seen": "2025-06-01T22:06:16.116162", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142399, - 51.51862 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161470271", - "info": { - "identifier": 161470271, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161470271", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96154/161470271/96154_CSV151724_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.815007", - "last_seen": "2025-06-01T22:06:16.136821", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166455, - 51.51916 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.3, - "qmprice": 52.98, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161470616", - "info": { - "identifier": 161470616, - "sqm_ocr": 45.3, - "price": 2400.0, - "price_per_sqm": 52.980132450331126, - "url": "https://www.rightmove.co.uk/properties/161470616", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/161470616/66771_1324119_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.619663", - "last_seen": "2025-06-01T22:06:00.030701", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118792, - 51.477337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161470691", - "info": { - "identifier": 161470691, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161470691", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157394/161470691/157394_PHL230035_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.352963", - "last_seen": "2025-06-01T22:05:43.064279", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136979, - 51.526733 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.7, - "qmprice": 39.25, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161472314", - "info": { - "identifier": 161472314, - "sqm_ocr": 63.7, - "price": 2500.0, - "price_per_sqm": 39.24646781789639, - "url": "https://www.rightmove.co.uk/properties/161472314", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Viewit Real Estate", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266159/161472314/266159_RL0024_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.187094", - "last_seen": "2025-06-01T22:05:59.469714", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128884, - 51.47847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161474192", - "info": { - "identifier": 161474192, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161474192", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161474192/96668_178897104082023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.188947", - "last_seen": "2025-06-01T22:05:53.508265", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125187, - 51.558186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161474684", - "info": { - "identifier": 161474684, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161474684", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161474684/96668_246087523042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.156296", - "last_seen": "2025-06-01T22:06:15.835812", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182038, - 51.51629 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161474687", - "info": { - "identifier": 161474687, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161474687", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161474687/96668_247068702052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.624704", - "last_seen": "2025-06-01T22:06:00.045643", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125117, - 51.48571 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/161474726", - "info": { - "identifier": 161474726, - "sqm_ocr": null, - "price": 3995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161474726", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161474726/96668_246978902052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.021287", - "last_seen": "2025-06-01T22:06:10.102130", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.046857, - 51.53064 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161474753", - "info": { - "identifier": 161474753, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161474753", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "London Homes Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162716/161474753/162716_3662_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.164922", - "last_seen": "2025-06-01T22:05:52.202501", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.376348, - 51.4628 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161474966", - "info": { - "identifier": 161474966, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161474966", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Ak247 Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261134/161474966/261134_wd2b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.860352", - "last_seen": "2025-06-01T22:05:56.979534", - "price": 2990.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08921, - 51.57243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.0, - "qmprice": 25.58, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161474984", - "info": { - "identifier": 161474984, - "sqm_ocr": 86.0, - "price": 2200.0, - "price_per_sqm": 25.58139534883721, - "url": "https://www.rightmove.co.uk/properties/161474984", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Allen Goldstein", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112351/161474984/112351_RL1899_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.802536", - "last_seen": "2025-06-01T22:06:00.355457", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066121, - 51.4277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161475071", - "info": { - "identifier": 161475071, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161475071", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Ak247 Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261134/161475071/261134_wd3b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.005885", - "last_seen": "2025-06-01T22:05:47.830484", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08921, - 51.57243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161477495", - "info": { - "identifier": 161477495, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161477495", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161477495/96668_247057002052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.262146", - "last_seen": "2025-06-01T22:05:50.937565", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.237208, - 51.608932 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.0, - "qmprice": 41.67, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161481293", - "info": { - "identifier": 161481293, - "sqm_ocr": 96.0, - "price": 4000.0, - "price_per_sqm": 41.666666666666664, - "url": "https://www.rightmove.co.uk/properties/161481293", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13093/161481293/13093_MIL250037_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.447049", - "last_seen": "2025-06-01T22:05:38.856748", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195105, - 51.594982 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161482274", - "info": { - "identifier": 161482274, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161482274", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Spencer Munson Property Services", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35858/161482274/35858_40381_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.781790", - "last_seen": "2025-06-01T22:06:03.783098", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.029107, - 51.607143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3416.0, - "url": "https://www.rightmove.co.uk/properties/161482589", - "info": { - "identifier": 161482589, - "sqm_ocr": null, - "price": 3416.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161482589", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/161482589/253604_30SANDHU0305_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.00607, - 51.54176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3483.0, - "url": "https://www.rightmove.co.uk/properties/161482625", - "info": { - "identifier": 161482625, - "sqm_ocr": null, - "price": 3483.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161482625", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/161482625/253604_88SANDHU0305_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.00607, - 51.54176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 136.75, - "qmprice": 21.57, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161483168", - "info": { - "identifier": 161483168, - "sqm_ocr": 136.75, - "price": 2950.0, - "price_per_sqm": 21.572212065813527, - "url": "https://www.rightmove.co.uk/properties/161483168", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/161483168/77192_48HORSH_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.119720", - "last_seen": "2025-06-01T22:05:39.749008", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16023, - 51.61411 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.6, - "qmprice": 46.08, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161483393", - "info": { - "identifier": 161483393, - "sqm_ocr": 58.6, - "price": 2700.0, - "price_per_sqm": 46.07508532423208, - "url": "https://www.rightmove.co.uk/properties/161483393", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/161483393/84827_33859551_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.657536", - "last_seen": "2025-06-01T22:05:48.353737", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206421, - 51.49305 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.1, - "qmprice": 27.25, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161484380", - "info": { - "identifier": 161484380, - "sqm_ocr": 99.1, - "price": 2700.0, - "price_per_sqm": 27.245206861755804, - "url": "https://www.rightmove.co.uk/properties/161484380", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Davidson Frost-Wellings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238889/161484380/238889_33859590_IMG_28_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.905263", - "last_seen": "2025-06-01T22:05:40.928950", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265606, - 51.56937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.33, - "qmprice": 19.6, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161484605", - "info": { - "identifier": 161484605, - "sqm_ocr": 117.33, - "price": 2300.0, - "price_per_sqm": 19.602829625841643, - "url": "https://www.rightmove.co.uk/properties/161484605", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "Rash & Rash", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39554/161484605/39554_33808414_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.971769", - "last_seen": "2025-06-01T22:05:49.748209", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08646, - 51.61389 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161484992", - "info": { - "identifier": 161484992, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161484992", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/161484992/84827_33859630_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.616430", - "last_seen": "2025-06-01T22:05:48.284654", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206326, - 51.49147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161486165", - "info": { - "identifier": 161486165, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161486165", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Henry Wiltshire", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256595/161486165/256595_24151_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.575370", - "last_seen": "2025-06-01T22:05:51.445223", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.419967, - 51.49798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.5, - "qmprice": 20.72, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161487458", - "info": { - "identifier": 161487458, - "sqm_ocr": 125.5, - "price": 2600.0, - "price_per_sqm": 20.717131474103585, - "url": "https://www.rightmove.co.uk/properties/161487458", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137369/161487458/137369_1323764_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.450379", - "last_seen": "2025-06-01T22:06:11.558192", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.001573, - 51.587605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.77, - "qmprice": 79.97, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161487965", - "info": { - "identifier": 161487965, - "sqm_ocr": 48.77, - "price": 3900.0, - "price_per_sqm": 79.9671929464835, - "url": "https://www.rightmove.co.uk/properties/161487965", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161487965/17888_31425_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.690843", - "last_seen": "2025-06-01T22:06:15.271012", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19576, - 51.51935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161488025", - "info": { - "identifier": 161488025, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161488025", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161488025/96668_200313328022024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.231542", - "last_seen": "2025-06-01T22:05:46.198765", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.040413, - 51.45509 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.8, - "qmprice": 50.15, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161488538", - "info": { - "identifier": 161488538, - "sqm_ocr": 59.8, - "price": 2999.0, - "price_per_sqm": 50.15050167224081, - "url": "https://www.rightmove.co.uk/properties/161488538", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55362/161488538/55362_33859816_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.659636", - "last_seen": "2025-06-01T22:06:14.520151", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18766, - 51.516808 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161488877", - "info": { - "identifier": 161488877, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161488877", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "JBrown", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239306/161488877/239306_6671_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.380865", - "last_seen": "2025-06-01T22:06:10.826568", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071317, - 51.515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.1, - "qmprice": 30.06, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161489045", - "info": { - "identifier": 161489045, - "sqm_ocr": 108.1, - "price": 3250.0, - "price_per_sqm": 30.064754856614247, - "url": "https://www.rightmove.co.uk/properties/161489045", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/161489045/98531_1325087_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.024520", - "last_seen": "2025-06-01T22:05:49.008502", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207263, - 51.491405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161490173", - "info": { - "identifier": 161490173, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161490173", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Lettings of London Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98582/161490173/98582_Hampden_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.528395", - "last_seen": "2025-06-01T22:05:38.960275", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14272, - 51.63254 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161490263", - "info": { - "identifier": 161490263, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161490263", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Island Homes", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129139/161490263/129139_33859923_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.529535", - "last_seen": "2025-06-01T22:06:11.337952", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020571, - 51.48743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161490416", - "info": { - "identifier": 161490416, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161490416", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Target Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74120/161490416/74120_33859937_IMG_01_0002_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.050678", - "last_seen": "2025-06-01T22:05:45.849142", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.044913, - 51.656437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161490437", - "info": { - "identifier": 161490437, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161490437", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "TrendyBlocks", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/277k/276857/161490437/276857_ILFORDFLAT_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.988956", - "last_seen": "2025-06-01T22:06:04.040886", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07545, - 51.5591 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/161490644", - "info": { - "identifier": 161490644, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161490644", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/161490644/105856_3244_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.449915", - "last_seen": "2025-06-01T22:06:05.608581", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096976, - 51.497032 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161490914", - "info": { - "identifier": 161490914, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161490914", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "UKmate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263912/161490914/263912_ukmate_agent_1746276776_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.531542", - "last_seen": "2025-06-01T22:05:40.396594", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229668, - 51.56211 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.9, - "qmprice": 42.82, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161491253", - "info": { - "identifier": 161491253, - "sqm_ocr": 75.9, - "price": 3250.0, - "price_per_sqm": 42.81949934123847, - "url": "https://www.rightmove.co.uk/properties/161491253", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161491253/96668_240047326022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.764655", - "last_seen": "2025-06-01T22:05:40.736633", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202904, - 51.53356 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161491985", - "info": { - "identifier": 161491985, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161491985", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Accommodation.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78006/161491985/78006_7774718537-2025-05-03_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.538811", - "last_seen": "2025-06-01T22:05:46.604228", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.118023, - 51.498543 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161492183", - "info": { - "identifier": 161492183, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161492183", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Majestic Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284723/161492183/284723_14512_000115_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.084689", - "last_seen": "2025-06-01T22:05:50.591319", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.339923, - 51.582386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 41.08, - "rooms": 3, - "total_price": 3163.0, - "url": "https://www.rightmove.co.uk/properties/161492318", - "info": { - "identifier": 161492318, - "sqm_ocr": 77.0, - "price": 3163.0, - "price_per_sqm": 41.077922077922075, - "url": "https://www.rightmove.co.uk/properties/161492318", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/29k/28238/161492318/28238_CEI241706_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.116702", - "last_seen": "2025-06-01T22:06:08.148298", - "price": 3163 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.012023, - 51.52437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.6, - "qmprice": 38.14, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161492330", - "info": { - "identifier": 161492330, - "sqm_ocr": 82.6, - "price": 3150.0, - "price_per_sqm": 38.13559322033898, - "url": "https://www.rightmove.co.uk/properties/161492330", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Butler & Stag", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/145k/144140/161492330/144140_33018795_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.869386", - "last_seen": "2025-06-01T22:06:08.097802", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00549, - 51.51565 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 129.9, - "qmprice": 27.71, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161492381", - "info": { - "identifier": 161492381, - "sqm_ocr": 129.9, - "price": 3600.0, - "price_per_sqm": 27.71362586605081, - "url": "https://www.rightmove.co.uk/properties/161492381", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118051/161492381/118051_33860032_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.198609", - "last_seen": "2025-06-01T22:06:00.290680", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035065, - 51.469032 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 155.14, - "qmprice": 18.37, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161492684", - "info": { - "identifier": 161492684, - "sqm_ocr": 155.14, - "price": 2850.0, - "price_per_sqm": 18.37050406084827, - "url": "https://www.rightmove.co.uk/properties/161492684", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161492684/43310_HEA254479_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.622745", - "last_seen": "2025-06-01T22:05:46.758924", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02379, - 51.477516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 47.41, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161492855", - "info": { - "identifier": 161492855, - "sqm_ocr": 58.0, - "price": 2750.0, - "price_per_sqm": 47.41379310344828, - "url": "https://www.rightmove.co.uk/properties/161492855", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Citydeal Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96880/161492855/96880_RL1132_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.710553", - "last_seen": "2025-06-01T22:06:15.285298", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174146, - 51.523537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.77, - "qmprice": 27.11, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161495486", - "info": { - "identifier": 161495486, - "sqm_ocr": 73.77, - "price": 2000.0, - "price_per_sqm": 27.111291853056798, - "url": "https://www.rightmove.co.uk/properties/161495486", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Humphrey and Brand Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71947/161495486/71947_19be2672-2f37-4404-9f4d-0056d704d54c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.844210", - "last_seen": "2025-06-01T22:05:58.929171", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.294549, - 51.38589 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2397.0, - "url": "https://www.rightmove.co.uk/properties/161495534", - "info": { - "identifier": 161495534, - "sqm_ocr": null, - "price": 2397.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161495534", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161495534/96668_95887417112020_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.590858", - "last_seen": "2025-06-01T22:05:46.680114", - "price": 2397.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.083078, - 51.478844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161495744", - "info": { - "identifier": 161495744, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161495744", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/122k/121090/161495744/121090_0635_HRT063500680_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.027360", - "last_seen": "2025-06-01T22:05:38.247627", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.158669, - 51.533802 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.3, - "qmprice": 38.35, - "rooms": 2, - "total_price": 2773.0, - "url": "https://www.rightmove.co.uk/properties/161495933", - "info": { - "identifier": 161495933, - "sqm_ocr": 72.3, - "price": 2773.0, - "price_per_sqm": 38.35408022130014, - "url": "https://www.rightmove.co.uk/properties/161495933", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/29k/28238/161495933/28238_CEI243997_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.179156", - "last_seen": "2025-06-01T22:06:07.463123", - "price": 2730 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.003142, - 51.54016 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.4, - "qmprice": 52.38, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/161497049", - "info": { - "identifier": 161497049, - "sqm_ocr": 72.4, - "price": 3792.0, - "price_per_sqm": 52.3756906077348, - "url": "https://www.rightmove.co.uk/properties/161497049", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/161497049/97423_CEI243071_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.776298", - "last_seen": "2025-06-01T22:05:54.504196", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099897, - 51.526695 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.3, - "qmprice": 30.96, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161497481", - "info": { - "identifier": 161497481, - "sqm_ocr": 74.3, - "price": 2300.0, - "price_per_sqm": 30.955585464333783, - "url": "https://www.rightmove.co.uk/properties/161497481", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 29, - "status": null, - "last_seen": 0, - "agency": "Ashmore & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/249k/248612/161497481/248612_7646192_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.177545", - "last_seen": "2025-06-01T22:05:38.499871", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232089, - 51.5838 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161498165", - "info": { - "identifier": 161498165, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161498165", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161498165/96668_244057003042025_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.440755", - "last_seen": "2025-06-01T22:06:08.017994", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067035, - 51.52092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 27.63, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161498831", - "info": { - "identifier": 161498831, - "sqm_ocr": 76.0, - "price": 2100.0, - "price_per_sqm": 27.63157894736842, - "url": "https://www.rightmove.co.uk/properties/161498831", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 28, - "status": null, - "last_seen": 0, - "agency": "Letio Ltd", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260273/161498831/260273_L201_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.811617", - "last_seen": "2025-06-01T22:06:06.056891", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07221, - 51.48252 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.4, - "qmprice": 35.91, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161500058", - "info": { - "identifier": 161500058, - "sqm_ocr": 72.4, - "price": 2600.0, - "price_per_sqm": 35.911602209944746, - "url": "https://www.rightmove.co.uk/properties/161500058", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161500058/96668_238440912022025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.061838", - "last_seen": "2025-06-01T22:06:05.210156", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070839, - 51.495476 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.2, - "qmprice": 20.14, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161500151", - "info": { - "identifier": 161500151, - "sqm_ocr": 114.2, - "price": 2300.0, - "price_per_sqm": 20.140105078809107, - "url": "https://www.rightmove.co.uk/properties/161500151", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161500151/96668_147614124082022_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.304742", - "last_seen": "2025-06-01T22:05:41.627250", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008673, - 51.374557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161500226", - "info": { - "identifier": 161500226, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161500226", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Robinson Jackson", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271901/161500226/271901_BAN230255_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.344322", - "last_seen": "2025-06-01T22:05:46.520794", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.097577, - 51.48844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161500313", - "info": { - "identifier": 161500313, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161500313", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "PropertyLoop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222287/161500313/222287_Lx5LolDo_IMG_00_0000_max_656x437.png", - "let_date_available": "04/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.816991", - "last_seen": "2025-06-01T22:05:46.507107", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0712, - 51.48463 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161500337", - "info": { - "identifier": 161500337, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161500337", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161500337/96668_246974201052025_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.235045", - "last_seen": "2025-06-01T22:05:40.784859", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225006, - 51.543137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161503955", - "info": { - "identifier": 161503955, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161503955", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Greenstone Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88567/161503955/88567_33860264_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.342546", - "last_seen": "2025-06-01T22:06:15.336583", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184974, - 51.536423 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161504687", - "info": { - "identifier": 161504687, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161504687", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57096/161504687/57096_WIG170079_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.680352", - "last_seen": "2025-06-01T22:05:40.546242", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224393, - 51.551346 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161505407", - "info": { - "identifier": 161505407, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161505407", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "EweMove", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263939/161505407/263939_10663344_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.282279", - "last_seen": "2025-06-01T22:05:40.005286", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.155017, - 51.460136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161506217", - "info": { - "identifier": 161506217, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161506217", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/161506217/252785_33860333_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.514005", - "last_seen": "2025-06-01T22:05:59.926181", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100781, - 51.46557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.38, - "qmprice": 46.6, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161506307", - "info": { - "identifier": 161506307, - "sqm_ocr": 64.38, - "price": 3000.0, - "price_per_sqm": 46.59832246039143, - "url": "https://www.rightmove.co.uk/properties/161506307", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "SW Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60378/161506307/60378_3725_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.355445", - "last_seen": "2025-06-01T22:06:14.530112", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147169, - 51.49546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161506466", - "info": { - "identifier": 161506466, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161506466", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Houst", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170132/161506466/170132_10128_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.283910", - "last_seen": "2025-06-01T22:06:12.907724", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16154, - 51.45263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161506490", - "info": { - "identifier": 161506490, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161506490", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Houst", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170132/161506490/170132_1154_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.447403", - "last_seen": "2025-06-01T22:06:05.490658", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07534, - 51.45925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161506550", - "info": { - "identifier": 161506550, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161506550", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Houst", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170132/161506550/170132_12412_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.959761", - "last_seen": "2025-06-01T22:06:14.062377", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175415, - 51.469975 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161506634", - "info": { - "identifier": 161506634, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161506634", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Houst", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170132/161506634/170132_12544_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.885325", - "last_seen": "2025-06-01T22:06:15.521279", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187886, - 51.5317 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161507042", - "info": { - "identifier": 161507042, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161507042", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/161507042/252785_33860348_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.500002", - "last_seen": "2025-06-01T22:06:01.386493", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24433, - 51.412853 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161507522", - "info": { - "identifier": 161507522, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161507522", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/161507522/252785_33860354_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.099704", - "last_seen": "2025-06-01T22:05:52.109193", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324301, - 51.484608 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161507978", - "info": { - "identifier": 161507978, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161507978", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 28, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161507978/96668_245798621042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.935829", - "last_seen": "2025-06-01T22:06:04.871531", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073681, - 51.48948 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161507993", - "info": { - "identifier": 161507993, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161507993", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161507993/96668_247185003052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.659773", - "last_seen": "2025-06-01T22:06:10.073352", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068465, - 51.5207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161508557", - "info": { - "identifier": 161508557, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161508557", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161508557/96668_235351715012025_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.858612", - "last_seen": "2025-06-01T22:06:02.299237", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.020484, - 51.511177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161508584", - "info": { - "identifier": 161508584, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161508584", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161508584/96668_246746230042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.929986", - "last_seen": "2025-06-01T22:05:47.251998", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076465, - 51.55283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.0, - "qmprice": 65.48, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161508791", - "info": { - "identifier": 161508791, - "sqm_ocr": 42.0, - "price": 2750.0, - "price_per_sqm": 65.47619047619048, - "url": "https://www.rightmove.co.uk/properties/161508791", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Visum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35298/161508791/35298_45383_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.465742", - "last_seen": "2025-06-01T20:19:57.465742", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019905, - 51.529026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 28.57, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161508998", - "info": { - "identifier": 161508998, - "sqm_ocr": 80.5, - "price": 2300.0, - "price_per_sqm": 28.571428571428573, - "url": "https://www.rightmove.co.uk/properties/161508998", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161508998/96668_247214304052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.441482", - "last_seen": "2025-06-01T22:06:07.766016", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183922, - 51.3639 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161509013", - "info": { - "identifier": 161509013, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161509013", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161509013/96668_247217604052025_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.062447", - "last_seen": "2025-06-01T22:06:03.969157", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.095131, - 51.61132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161509151", - "info": { - "identifier": 161509151, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161509151", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161509151/96668_247229204052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.218563", - "last_seen": "2025-06-01T22:05:42.925443", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203909, - 51.54986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161509343", - "info": { - "identifier": 161509343, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161509343", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161509343/96668_214486205072024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.023329", - "last_seen": "2025-06-01T22:06:02.497057", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.040255, - 51.502342 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161512838", - "info": { - "identifier": 161512838, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161512838", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161512838/96668_177633824072023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.771473", - "last_seen": "2025-06-01T22:06:03.685920", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.106092, - 51.55229 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.8, - "qmprice": 39.73, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161513222", - "info": { - "identifier": 161513222, - "sqm_ocr": 81.8, - "price": 3250.0, - "price_per_sqm": 39.73105134474328, - "url": "https://www.rightmove.co.uk/properties/161513222", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/161513222/65124_CEI244638_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.469359", - "last_seen": "2025-06-01T22:06:06.978772", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098135, - 51.492657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.5, - "qmprice": 35.89, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161514428", - "info": { - "identifier": 161514428, - "sqm_ocr": 78.5, - "price": 2817.0, - "price_per_sqm": 35.88535031847134, - "url": "https://www.rightmove.co.uk/properties/161514428", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53654/161514428/53654_33827029_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.627061", - "last_seen": "2025-06-01T22:06:13.523429", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183432, - 51.465057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161514749", - "info": { - "identifier": 161514749, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161514749", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "MacArthur Morrison", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72343/161514749/72343_MM2BE2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.026751", - "last_seen": "2025-06-01T22:06:09.340699", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06154, - 51.51406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/161515022", - "info": { - "identifier": 161515022, - "sqm_ocr": null, - "price": 3402.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161515022", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Primden Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261275/161515022/261275_14241_000740_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.422637", - "last_seen": "2025-06-01T22:05:47.969313", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090461, - 51.532566 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161515304", - "info": { - "identifier": 161515304, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161515304", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Waterfronts", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48795/161515304/48795_29020935_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.786942", - "last_seen": "2025-06-01T22:06:09.737525", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006854, - 51.50504 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.63, - "qmprice": 31.41, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161516084", - "info": { - "identifier": 161516084, - "sqm_ocr": 71.63, - "price": 2250.0, - "price_per_sqm": 31.41141979617479, - "url": "https://www.rightmove.co.uk/properties/161516084", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/208k/207812/161516084/207812_BHL080214_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.138995", - "last_seen": "2025-06-01T22:05:58.976928", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12701, - 51.43582 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161516405", - "info": { - "identifier": 161516405, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161516405", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Property Inside London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270212/161516405/270212_Broadley_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.304269", - "last_seen": "2025-06-01T22:06:15.327888", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16777, - 51.52359 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161516660", - "info": { - "identifier": 161516660, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161516660", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "MacArthur Morrison", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72343/161516660/72343_MM2BE1_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.944391", - "last_seen": "2025-06-01T22:06:10.271475", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06154, - 51.51406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.29, - "qmprice": 35.06, - "rooms": 2, - "total_price": 2254.0, - "url": "https://www.rightmove.co.uk/properties/161516897", - "info": { - "identifier": 161516897, - "sqm_ocr": 64.29, - "price": 2254.0, - "price_per_sqm": 35.05988489656245, - "url": "https://www.rightmove.co.uk/properties/161516897", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Jack Rose Estates Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256244/161516897/256244_JLP-40128157_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.672632", - "last_seen": "2025-06-01T22:06:08.059289", - "price": 2254.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016102, - 51.51966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161517785", - "info": { - "identifier": 161517785, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161517785", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "Maxwells Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88079/161517785/88079_2369_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.449380", - "last_seen": "2025-06-01T22:05:47.610860", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.046023, - 51.556408 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161517815", - "info": { - "identifier": 161517815, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161517815", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Robinson Jackson", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/60k/59433/161517815/59433_BAN250066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.263208", - "last_seen": "2025-06-01T22:05:39.983391", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.143517, - 51.448635 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2040.0, - "url": "https://www.rightmove.co.uk/properties/161518589", - "info": { - "identifier": 161518589, - "sqm_ocr": null, - "price": 2040.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161518589", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161518589/96668_237048830012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.374560", - "last_seen": "2025-06-01T22:05:38.705307", - "price": 2040.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.248587, - 51.598835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/161518640", - "info": { - "identifier": 161518640, - "sqm_ocr": null, - "price": 2648.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161518640", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/161518640/105856_3450_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.519807", - "last_seen": "2025-06-01T22:05:59.020249", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112299, - 51.482872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.4, - "qmprice": 46.1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161518946", - "info": { - "identifier": 161518946, - "sqm_ocr": 56.4, - "price": 2600.0, - "price_per_sqm": 46.09929078014184, - "url": "https://www.rightmove.co.uk/properties/161518946", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/161518946/84866_33860582_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.028744", - "last_seen": "2025-06-01T22:05:49.091365", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242657, - 51.492012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161519501", - "info": { - "identifier": 161519501, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161519501", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Houst", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170132/161519501/170132_12547_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.157963", - "last_seen": "2025-06-01T22:05:54.451879", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115598, - 51.5658 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161519663", - "info": { - "identifier": 161519663, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161519663", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161519663/96668_247267205052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.045530", - "last_seen": "2025-06-01T22:06:00.843020", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.031709, - 51.490726 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161519669", - "info": { - "identifier": 161519669, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161519669", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161519669/96668_224762503102024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.222740", - "last_seen": "2025-06-01T22:05:42.934047", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195372, - 51.54596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.74, - "qmprice": 36.49, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161519960", - "info": { - "identifier": 161519960, - "sqm_ocr": 76.74, - "price": 2800.0, - "price_per_sqm": 36.486838676049, - "url": "https://www.rightmove.co.uk/properties/161519960", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Grange London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235148/161519960/235148_33860609_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.072969", - "last_seen": "2025-06-01T22:05:39.756736", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220976, - 51.57133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/161520728", - "info": { - "identifier": 161520728, - "sqm_ocr": null, - "price": 2747.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161520728", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/161520728/181787_181787_112_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.488623", - "last_seen": "2025-06-01T22:06:05.504342", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08699, - 51.49739 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161521058", - "info": { - "identifier": 161521058, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161521058", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161521058/96668_246768830042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.107111", - "last_seen": "2025-06-01T22:06:00.988428", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.041346, - 51.48294 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/161521397", - "info": { - "identifier": 161521397, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161521397", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/161521397/181787_181787_851_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.643481", - "last_seen": "2025-06-01T22:06:05.768965", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08137, - 51.50089 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161521742", - "info": { - "identifier": 161521742, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161521742", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kevin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278792/161521742/278792_Se8_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.831797", - "last_seen": "2025-06-01T22:06:00.382644", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03181, - 51.49072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161521910", - "info": { - "identifier": 161521910, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161521910", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 27, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161521910/96668_246339326042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.710064", - "last_seen": "2025-06-01T22:05:51.601690", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.446398, - 51.482212 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161522720", - "info": { - "identifier": 161522720, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161522720", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161522720/96668_142551728062022_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.723493", - "last_seen": "2025-06-01T22:06:13.752953", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149063, - 51.48269 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.22, - "qmprice": 50.57, - "rooms": 2, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/161522969", - "info": { - "identifier": 161522969, - "sqm_ocr": 65.22, - "price": 3298.0, - "price_per_sqm": 50.5673106409077, - "url": "https://www.rightmove.co.uk/properties/161522969", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/139k/138797/161522969/138797_BPQ012508123_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.836705", - "last_seen": "2025-06-01T22:05:42.364613", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168006, - 51.547615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2775.0, - "url": "https://www.rightmove.co.uk/properties/161523107", - "info": { - "identifier": 161523107, - "sqm_ocr": null, - "price": 2775.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161523107", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161523107/96668_247071502052025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.673974", - "last_seen": "2025-06-01T22:06:05.831917", - "price": 2775.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077581, - 51.49949 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161523335", - "info": { - "identifier": 161523335, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161523335", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161523335/96668_234697609012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.983577", - "last_seen": "2025-06-01T22:06:00.711847", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037225, - 51.490757 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161523356", - "info": { - "identifier": 161523356, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161523356", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161523356/96668_247335505052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.143866", - "last_seen": "2025-06-01T22:05:47.670890", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075495, - 51.54916 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161523455", - "info": { - "identifier": 161523455, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161523455", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161523455/96668_206366023042024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.712472", - "last_seen": "2025-06-01T22:06:09.115741", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068465, - 51.5207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161523512", - "info": { - "identifier": 161523512, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161523512", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161523512/96668_247326205052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.391320", - "last_seen": "2025-06-01T22:05:50.229074", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.321187, - 51.579857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.2, - "qmprice": 56.91, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161523545", - "info": { - "identifier": 161523545, - "sqm_ocr": 49.2, - "price": 2800.0, - "price_per_sqm": 56.91056910569105, - "url": "https://www.rightmove.co.uk/properties/161523545", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/161523545/249692_RL4620_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.504473", - "last_seen": "2025-06-01T22:05:56.229373", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131678, - 51.539017 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161523983", - "info": { - "identifier": 161523983, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161523983", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161523983/96668_246294625042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.955566", - "last_seen": "2025-06-01T22:05:51.830570", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34728, - 51.47985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161525576", - "info": { - "identifier": 161525576, - "sqm_ocr": null, - "price": 2925.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161525576", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161525576/96668_247350205052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.285801", - "last_seen": "2025-06-01T22:06:16.120251", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184272, - 51.51792 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161527697", - "info": { - "identifier": 161527697, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161527697", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "VIVAT PROPERTY", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80277/161527697/80277_262605_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.598619", - "last_seen": "2025-06-01T22:06:15.084354", - "price": 3349 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17354, - 51.52341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.3, - "qmprice": 44.3, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161527748", - "info": { - "identifier": 161527748, - "sqm_ocr": 90.3, - "price": 4000.0, - "price_per_sqm": 44.296788482835, - "url": "https://www.rightmove.co.uk/properties/161527748", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286493/161527748/286493_33860742_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.415994", - "last_seen": "2025-06-01T22:06:06.898307", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.033813, - 51.503418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3292.0, - "url": "https://www.rightmove.co.uk/properties/161528000", - "info": { - "identifier": 161528000, - "sqm_ocr": null, - "price": 3292.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161528000", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/161528000/253604_271B0605_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161528048", - "info": { - "identifier": 161528048, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161528048", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286493/161528048/286493_33860756_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.973985", - "last_seen": "2025-06-01T22:06:06.292957", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.046353, - 51.498615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161528054", - "info": { - "identifier": 161528054, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161528054", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286493/161528054/286493_33860757_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.006675", - "last_seen": "2025-06-01T22:06:00.759421", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039098, - 51.491425 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.1, - "qmprice": 28.83, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161528057", - "info": { - "identifier": 161528057, - "sqm_ocr": 71.1, - "price": 2050.0, - "price_per_sqm": 28.832630098452885, - "url": "https://www.rightmove.co.uk/properties/161528057", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286493/161528057/286493_33857182_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.988119", - "last_seen": "2025-06-01T22:06:06.311274", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035715, - 51.50662 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3140.0, - "url": "https://www.rightmove.co.uk/properties/161528099", - "info": { - "identifier": 161528099, - "sqm_ocr": null, - "price": 3140.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161528099", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/161528099/253604_23X0605_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.00637, - 51.54218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3173.0, - "url": "https://www.rightmove.co.uk/properties/161528213", - "info": { - "identifier": 161528213, - "sqm_ocr": null, - "price": 3173.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161528213", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/161528213/253604_51X0605_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.171315", - "last_seen": "2025-06-01T22:06:07.208512", - "price": 3173.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3249.0, - "url": "https://www.rightmove.co.uk/properties/161528264", - "info": { - "identifier": 161528264, - "sqm_ocr": null, - "price": 3249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161528264", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/161528264/253604_166X0605_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.00607, - 51.54176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.3, - "qmprice": 37.7, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161528348", - "info": { - "identifier": 161528348, - "sqm_ocr": 70.3, - "price": 2650.0, - "price_per_sqm": 37.69559032716928, - "url": "https://www.rightmove.co.uk/properties/161528348", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Warwick Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/3k/2979/161528348/2979_33860773_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.496025", - "last_seen": "2025-06-01T22:05:40.574600", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211805, - 51.53424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161528816", - "info": { - "identifier": 161528816, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161528816", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Austin Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67166/161528816/67166_33860817_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.848314", - "last_seen": "2025-06-01T22:05:51.557228", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.444969, - 51.557407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161528927", - "info": { - "identifier": 161528927, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161528927", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161528927/96668_146914216082022_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.051194", - "last_seen": "2025-06-01T22:05:50.556209", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.272745, - 51.60424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 145.0, - "qmprice": 25.85, - "rooms": 4, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/161529824", - "info": { - "identifier": 161529824, - "sqm_ocr": 145.0, - "price": 3748.0, - "price_per_sqm": 25.848275862068967, - "url": "https://www.rightmove.co.uk/properties/161529824", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Sandersons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86681/161529824/86681_SHP002511_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.221439", - "last_seen": "2025-06-01T22:05:57.848563", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218859, - 51.51995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161529902", - "info": { - "identifier": 161529902, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161529902", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137699/161529902/137699_33860893_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.888258", - "last_seen": "2025-06-01T22:05:50.798396", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.343547, - 51.584743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.9, - "qmprice": 49.37, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161530037", - "info": { - "identifier": 161530037, - "sqm_ocr": 70.9, - "price": 3500.0, - "price_per_sqm": 49.36530324400564, - "url": "https://www.rightmove.co.uk/properties/161530037", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49000/161530037/49000_DOL230039_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.131177", - "last_seen": "2025-06-01T22:06:10.641798", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058299, - 51.514576 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161530379", - "info": { - "identifier": 161530379, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161530379", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Amanda Roberts", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63076/161530379/63076_amrdrysdalll_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.531563", - "last_seen": "2025-06-01T22:06:11.937883", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00989, - 51.63666 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 25.58, - "rooms": 2, - "total_price": 2123.0, - "url": "https://www.rightmove.co.uk/properties/161530733", - "info": { - "identifier": 161530733, - "sqm_ocr": 83.0, - "price": 2123.0, - "price_per_sqm": 25.57831325301205, - "url": "https://www.rightmove.co.uk/properties/161530733", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Unihood", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289043/161530733/289043_1AffinityHouse_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.734102", - "last_seen": "2025-06-01T22:05:40.616465", - "price": 2123 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28429, - 51.54094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 31.95, - "qmprice": 88.17, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161531015", - "info": { - "identifier": 161531015, - "sqm_ocr": 31.95, - "price": 2817.0, - "price_per_sqm": 88.16901408450704, - "url": "https://www.rightmove.co.uk/properties/161531015", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/161531015/15948_1324402_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.303289", - "last_seen": "2025-06-01T22:05:49.314193", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191663, - 51.477238 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161531339", - "info": { - "identifier": 161531339, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161531339", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/161531339/176261_102708017581_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.408579", - "last_seen": "2025-06-01T22:05:56.506268", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1093, - 51.58821 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161531363", - "info": { - "identifier": 161531363, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161531363", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115507/161531363/115507_P395839_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.417421", - "last_seen": "2025-06-01T22:06:14.360704", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14523, - 51.49302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/161531870", - "info": { - "identifier": 161531870, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161531870", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/161531870/96542_ROCH_000568_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.902685", - "last_seen": "2025-06-01T22:05:42.452203", - "price": 2166 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137723, - 51.542286 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161532194", - "info": { - "identifier": 161532194, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161532194", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Heaven Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/226k/225752/161532194/225752_103467001107_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.741994", - "last_seen": "2025-06-01T22:05:43.691507", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11299, - 51.40492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/161532275", - "info": { - "identifier": 161532275, - "sqm_ocr": null, - "price": 2383.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161532275", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/161532275/96542_ROCH_001244_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.795933", - "last_seen": "2025-06-01T22:05:53.692356", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124047, - 51.560677 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161532422", - "info": { - "identifier": 161532422, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161532422", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Churchill Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10143/161532422/10143_Georgelane2025CDVH_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.783909", - "last_seen": "2025-06-01T22:06:03.748743", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02867, - 51.59059 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.9, - "qmprice": 28.97, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161532443", - "info": { - "identifier": 161532443, - "sqm_ocr": 113.9, - "price": 3300.0, - "price_per_sqm": 28.97278314310799, - "url": "https://www.rightmove.co.uk/properties/161532443", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Squires Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87277/161532443/87277_33861065_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.213475", - "last_seen": "2025-06-01T22:05:38.460822", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225562, - 51.58327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3948.0, - "url": "https://www.rightmove.co.uk/properties/161532731", - "info": { - "identifier": 161532731, - "sqm_ocr": null, - "price": 3948.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161532731", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/161532731/275489_06052025-KZ94_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.958152", - "last_seen": "2025-06-01T22:05:48.973077", - "price": 3947 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223849, - 51.51098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161533148", - "info": { - "identifier": 161533148, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161533148", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "UKmate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263912/161533148/263912_ukmate_agent_1746522527_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.331336", - "last_seen": "2025-06-01T22:05:54.467788", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229668, - 51.56211 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 35.0, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161533232", - "info": { - "identifier": 161533232, - "sqm_ocr": 60.0, - "price": 2100.0, - "price_per_sqm": 35.0, - "url": "https://www.rightmove.co.uk/properties/161533232", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210107/161533232/210107_P299954_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.602400", - "last_seen": "2025-06-01T22:05:54.923905", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21546, - 51.53161 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 43.21, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161533337", - "info": { - "identifier": 161533337, - "sqm_ocr": 81.0, - "price": 3500.0, - "price_per_sqm": 43.20987654320987, - "url": "https://www.rightmove.co.uk/properties/161533337", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Atlas Property Letting & Services Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/125k/124174/161533337/124174_1793_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.544195", - "last_seen": "2025-06-01T22:06:07.072829", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1041, - 51.50639 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161533340", - "info": { - "identifier": 161533340, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161533340", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hills Estate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/153k/152342/161533340/152342_1459_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.561377", - "last_seen": "2025-06-01T22:06:07.100016", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065712, - 51.49247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161533376", - "info": { - "identifier": 161533376, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161533376", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Mann Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42117/161533376/42117_000807366_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.127657", - "last_seen": "2025-06-01T22:06:01.022143", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04495, - 51.42934 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.31, - "qmprice": 29.07, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161534225", - "info": { - "identifier": 161534225, - "sqm_ocr": 96.31, - "price": 2800.0, - "price_per_sqm": 29.07278579586751, - "url": "https://www.rightmove.co.uk/properties/161534225", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Fieldhouse Residential Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5539/161534225/5539_33861181_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.964680", - "last_seen": "2025-06-01T22:05:56.731473", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305142, - 51.511425 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161534726", - "info": { - "identifier": 161534726, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161534726", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Homequarters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269855/161534726/269855_27332_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.841747", - "last_seen": "2025-06-01T22:05:47.589769", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07717, - 51.52879 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 43.48, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161534798", - "info": { - "identifier": 161534798, - "sqm_ocr": 69.0, - "price": 3000.0, - "price_per_sqm": 43.47826086956522, - "url": "https://www.rightmove.co.uk/properties/161534798", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161534798/43310_MRL120131_L_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.753709", - "last_seen": "2025-06-01T22:06:09.663569", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02, - 51.5 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 33.71, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161535632", - "info": { - "identifier": 161535632, - "sqm_ocr": 89.0, - "price": 3000.0, - "price_per_sqm": 33.70786516853933, - "url": "https://www.rightmove.co.uk/properties/161535632", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/161535632/77511_SXX120489_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.160700", - "last_seen": "2025-06-01T22:05:47.701060", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079099, - 51.525703 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2480.0, - "url": "https://www.rightmove.co.uk/properties/161535821", - "info": { - "identifier": 161535821, - "sqm_ocr": null, - "price": 2480.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161535821", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Such Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238883/161535821/238883_275108_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.115450", - "last_seen": "2025-06-01T22:06:04.891284", - "price": 2480.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07204, - 51.47372 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 149.4, - "qmprice": 25.1, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161535989", - "info": { - "identifier": 161535989, - "sqm_ocr": 149.4, - "price": 3750.0, - "price_per_sqm": 25.100401606425702, - "url": "https://www.rightmove.co.uk/properties/161535989", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/161535989/238841_P299016_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.399825", - "last_seen": "2025-06-01T22:05:46.993350", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05924, - 51.49401 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 53.12, - "rooms": 2, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/161536001", - "info": { - "identifier": 161536001, - "sqm_ocr": 73.0, - "price": 3878.0, - "price_per_sqm": 53.12328767123287, - "url": "https://www.rightmove.co.uk/properties/161536001", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3728/161536001/3728_CHE250621_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.416276", - "last_seen": "2025-06-01T22:05:57.415966", - "price": 3878 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169387, - 51.486557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 46.43, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161536046", - "info": { - "identifier": 161536046, - "sqm_ocr": 70.0, - "price": 3250.0, - "price_per_sqm": 46.42857142857143, - "url": "https://www.rightmove.co.uk/properties/161536046", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161536046/253853_1324139_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.806837", - "last_seen": "2025-06-01T22:06:04.852633", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102929, - 51.492832 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 135.7, - "qmprice": 25.79, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161536478", - "info": { - "identifier": 161536478, - "sqm_ocr": 135.7, - "price": 3500.0, - "price_per_sqm": 25.792188651436994, - "url": "https://www.rightmove.co.uk/properties/161536478", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/161536478/87815_1324189_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.247765", - "last_seen": "2025-06-01T22:05:38.505816", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210931, - 51.596306 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3639.0, - "url": "https://www.rightmove.co.uk/properties/161536481", - "info": { - "identifier": 161536481, - "sqm_ocr": null, - "price": 3639.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161536481", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "RiverHomes", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11121/161536481/11121_33820023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.063737", - "last_seen": "2025-06-01T22:06:08.367430", - "price": 3639.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023872, - 51.507656 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.92, - "qmprice": 56.19, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/161536505", - "info": { - "identifier": 161536505, - "sqm_ocr": 55.92, - "price": 3142.0, - "price_per_sqm": 56.18741058655222, - "url": "https://www.rightmove.co.uk/properties/161536505", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/161536505/76585_1325128_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.910156", - "last_seen": "2025-06-01T22:05:42.458637", - "price": 3142.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134728, - 51.518536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.9, - "qmprice": 34.71, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161536532", - "info": { - "identifier": 161536532, - "sqm_ocr": 74.9, - "price": 2600.0, - "price_per_sqm": 34.712950600801065, - "url": "https://www.rightmove.co.uk/properties/161536532", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/161536532/111050_1324986_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.410355", - "last_seen": "2025-06-01T22:06:13.116683", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167831, - 51.423702 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 31.98, - "qmprice": 78.17, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161536835", - "info": { - "identifier": 161536835, - "sqm_ocr": 31.98, - "price": 2500.0, - "price_per_sqm": 78.17385866166354, - "url": "https://www.rightmove.co.uk/properties/161536835", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161536835/15975_1325126_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.513639", - "last_seen": "2025-06-01T22:06:01.693666", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182333, - 51.419952 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.5, - "qmprice": 45.22, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161537000", - "info": { - "identifier": 161537000, - "sqm_ocr": 57.5, - "price": 2600.0, - "price_per_sqm": 45.21739130434783, - "url": "https://www.rightmove.co.uk/properties/161537000", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48695/161537000/48695_33861370_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.035895", - "last_seen": "2025-06-01T22:06:15.792562", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165936, - 51.535233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161537069", - "info": { - "identifier": 161537069, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161537069", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50064/161537069/50064_P276785_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.579515", - "last_seen": "2025-06-01T22:05:59.343404", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11392, - 51.47669 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.8, - "qmprice": 52.08, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161537084", - "info": { - "identifier": 161537084, - "sqm_ocr": 76.8, - "price": 4000.0, - "price_per_sqm": 52.083333333333336, - "url": "https://www.rightmove.co.uk/properties/161537084", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210101/161537084/210101_P299760_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.495139", - "last_seen": "2025-06-01T22:05:49.689263", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1204, - 51.58165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.1, - "qmprice": 41.6, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161537096", - "info": { - "identifier": 161537096, - "sqm_ocr": 60.1, - "price": 2500.0, - "price_per_sqm": 41.597337770382694, - "url": "https://www.rightmove.co.uk/properties/161537096", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/161537096/96392_HEA163141_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.517946", - "last_seen": "2025-06-01T22:06:14.970519", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167126, - 51.534225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161538284", - "info": { - "identifier": 161538284, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161538284", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161538284/96668_246797930042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.966960", - "last_seen": "2025-06-01T22:05:59.067522", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13085, - 51.46517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161538581", - "info": { - "identifier": 161538581, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161538581", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161538581/96668_247370906052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.246458", - "last_seen": "2025-06-01T22:06:10.914193", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073525, - 51.522255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161538584", - "info": { - "identifier": 161538584, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161538584", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161538584/96668_247370806052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.699639", - "last_seen": "2025-06-01T22:05:39.351053", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173667, - 51.58949 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.9, - "qmprice": 50.07, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/161538608", - "info": { - "identifier": 161538608, - "sqm_ocr": 68.9, - "price": 3450.0, - "price_per_sqm": 50.07256894049346, - "url": "https://www.rightmove.co.uk/properties/161538608", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161538608/96668_247374506052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.882049", - "last_seen": "2025-06-01T22:06:12.729702", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134885, - 51.480244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161538635", - "info": { - "identifier": 161538635, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161538635", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161538635/96668_247389206052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.712639", - "last_seen": "2025-06-01T22:05:42.185496", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136532, - 51.52082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 40.6, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161538686", - "info": { - "identifier": 161538686, - "sqm_ocr": 73.9, - "price": 3000.0, - "price_per_sqm": 40.59539918809201, - "url": "https://www.rightmove.co.uk/properties/161538686", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Wren & co Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81351/161538686/81351_wren_1524693389_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.460731", - "last_seen": "2025-06-01T22:06:14.845200", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184638, - 51.534748 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161538698", - "info": { - "identifier": 161538698, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161538698", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161538698/96668_247383206052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.882482", - "last_seen": "2025-06-01T22:06:02.348791", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.020857, - 51.54156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3690.0, - "url": "https://www.rightmove.co.uk/properties/161538716", - "info": { - "identifier": 161538716, - "sqm_ocr": null, - "price": 3690.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161538716", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161538716/96668_247386106052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.271078", - "last_seen": "2025-06-01T22:06:12.122205", - "price": 3690.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168855, - 51.476883 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161538719", - "info": { - "identifier": 161538719, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161538719", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161538719/96668_246305025042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.025883, - 51.47846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161539022", - "info": { - "identifier": 161539022, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161539022", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99755/161539022/99755_2693895_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.544530", - "last_seen": "2025-06-01T22:06:14.508825", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175906, - 51.535324 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/161539193", - "info": { - "identifier": 161539193, - "sqm_ocr": null, - "price": 2349.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161539193", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113191/161539193/113191_33861485_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.445598", - "last_seen": "2025-06-01T22:05:47.608795", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068875, - 51.553383 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161539391", - "info": { - "identifier": 161539391, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161539391", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206645/161539391/206645_33450367_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.378849", - "last_seen": "2025-06-01T22:05:51.133623", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.413502, - 51.599277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161539475", - "info": { - "identifier": 161539475, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161539475", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "The Property Club", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/224k/223931/161539475/223931_356MR-MAY25_IMG_23_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.092390", - "last_seen": "2025-06-01T22:06:02.538424", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.047, - 51.54558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.54, - "qmprice": 42.92, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161539538", - "info": { - "identifier": 161539538, - "sqm_ocr": 88.54, - "price": 3800.0, - "price_per_sqm": 42.918454935622314, - "url": "https://www.rightmove.co.uk/properties/161539538", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Napier Watt Limited", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83443/161539538/83443_33861510_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.230776", - "last_seen": "2025-06-01T20:19:57.514042", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017259, - 51.501095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161539610", - "info": { - "identifier": 161539610, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161539610", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49012/161539610/49012_ISL220088_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.793032", - "last_seen": "2025-06-01T22:05:53.687059", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110394, - 51.53937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.0, - "qmprice": 41.96, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161539829", - "info": { - "identifier": 161539829, - "sqm_ocr": 56.0, - "price": 2350.0, - "price_per_sqm": 41.964285714285715, - "url": "https://www.rightmove.co.uk/properties/161539829", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Antony Roberts", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36579/161539829/36579_KEW250019_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.111937", - "last_seen": "2025-06-01T22:06:04.267472", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28649, - 51.48313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/161540093", - "info": { - "identifier": 161540093, - "sqm_ocr": null, - "price": 3445.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161540093", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161540093/17888_34997_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.952467", - "last_seen": "2025-06-01T22:05:42.628784", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14417, - 51.52969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3856.0, - "url": "https://www.rightmove.co.uk/properties/161540177", - "info": { - "identifier": 161540177, - "sqm_ocr": null, - "price": 3856.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161540177", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Visum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35298/161540177/35298_50584_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.581332", - "last_seen": "2025-06-01T20:19:59.516112", - "price": 3856.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063274, - 51.50894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161540369", - "info": { - "identifier": 161540369, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161540369", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Japan Services Rent", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94576/161540369/94576_P0050_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.231588", - "last_seen": "2025-06-01T22:05:44.344539", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28274, - 51.51768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 35.16, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161540504", - "info": { - "identifier": 161540504, - "sqm_ocr": 91.0, - "price": 3200.0, - "price_per_sqm": 35.16483516483517, - "url": "https://www.rightmove.co.uk/properties/161540504", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/161540504/48994_CNL250122_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.478705", - "last_seen": "2025-06-01T22:05:46.581687", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017568, - 51.467716 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.01, - "qmprice": 44.26, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161540618", - "info": { - "identifier": 161540618, - "sqm_ocr": 61.01, - "price": 2700.0, - "price_per_sqm": 44.25504015735125, - "url": "https://www.rightmove.co.uk/properties/161540618", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48997/161540618/48997_ELL250062_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.263089", - "last_seen": "2025-06-01T22:05:51.950235", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277323, - 51.48763 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.36, - "qmprice": 47.35, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161540630", - "info": { - "identifier": 161540630, - "sqm_ocr": 63.36, - "price": 3000.0, - "price_per_sqm": 47.34848484848485, - "url": "https://www.rightmove.co.uk/properties/161540630", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/161540630/96392_SVL170106_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.523549", - "last_seen": "2025-06-01T22:06:14.978673", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168523, - 51.520973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161540975", - "info": { - "identifier": 161540975, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161540975", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Curtis And Parker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278867/161540975/278867_33861610_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.302334", - "last_seen": "2025-06-01T22:05:49.525254", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238504, - 51.505367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161541332", - "info": { - "identifier": 161541332, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161541332", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Mercer Taylor", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/274k/273146/161541332/273146_33839217_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.135426", - "last_seen": "2025-06-01T22:06:12.496435", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167972, - 51.423603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.4, - "qmprice": 37.91, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161541524", - "info": { - "identifier": 161541524, - "sqm_ocr": 84.4, - "price": 3200.0, - "price_per_sqm": 37.91469194312796, - "url": "https://www.rightmove.co.uk/properties/161541524", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43769/161541524/43769_P299870_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.556579", - "last_seen": "2025-06-01T22:05:58.296992", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20347, - 51.49563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.07, - "qmprice": 38.66, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161541809", - "info": { - "identifier": 161541809, - "sqm_ocr": 84.07, - "price": 3250.0, - "price_per_sqm": 38.6582609729987, - "url": "https://www.rightmove.co.uk/properties/161541809", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161541809/43310_CWL190059_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.956372", - "last_seen": "2025-06-01T22:06:08.191365", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039518, - 51.518368 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.97, - "qmprice": 48.28, - "rooms": 2, - "total_price": 3813.0, - "url": "https://www.rightmove.co.uk/properties/161542277", - "info": { - "identifier": 161542277, - "sqm_ocr": 78.97, - "price": 3813.0, - "price_per_sqm": 48.28415854121818, - "url": "https://www.rightmove.co.uk/properties/161542277", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Unihood", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289043/161542277/289043_70BowdenHouse_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.004903", - "last_seen": "2025-06-01T22:06:14.144142", - "price": 3813 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14721, - 51.47906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.94, - "qmprice": 28.0, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161542367", - "info": { - "identifier": 161542367, - "sqm_ocr": 83.94, - "price": 2350.0, - "price_per_sqm": 27.996187753157017, - "url": "https://www.rightmove.co.uk/properties/161542367", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89228/161542367/89228_GRL210402_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.921763", - "last_seen": "2025-06-01T22:05:41.043902", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.286619, - 51.55568 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.2, - "qmprice": 35.52, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161542409", - "info": { - "identifier": 161542409, - "sqm_ocr": 73.2, - "price": 2600.0, - "price_per_sqm": 35.51912568306011, - "url": "https://www.rightmove.co.uk/properties/161542409", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128629/161542409/128629_KEF250538_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.487584", - "last_seen": "2025-06-01T22:06:14.886237", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149984, - 51.49223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.4, - "qmprice": 53.4, - "rooms": 2, - "total_price": 3813.0, - "url": "https://www.rightmove.co.uk/properties/161542727", - "info": { - "identifier": 161542727, - "sqm_ocr": 71.4, - "price": 3813.0, - "price_per_sqm": 53.403361344537814, - "url": "https://www.rightmove.co.uk/properties/161542727", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Unihood", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289043/161542727/289043_66BowdenHouse_IMG_24_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.078040", - "last_seen": "2025-06-01T22:06:14.267610", - "price": 3813 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14721, - 51.47906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.68, - "qmprice": 51.77, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161542751", - "info": { - "identifier": 161542751, - "sqm_ocr": 65.68, - "price": 3400.0, - "price_per_sqm": 51.766138855054805, - "url": "https://www.rightmove.co.uk/properties/161542751", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73228/161542751/73228_BZV160191_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.453502", - "last_seen": "2025-06-01T22:05:42.585444", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140356, - 51.535496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.6, - "qmprice": 29.26, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161542970", - "info": { - "identifier": 161542970, - "sqm_ocr": 78.6, - "price": 2300.0, - "price_per_sqm": 29.262086513994912, - "url": "https://www.rightmove.co.uk/properties/161542970", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286493/161542970/286493_33861731_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.934923", - "last_seen": "2025-06-01T22:06:05.029542", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03225, - 51.501396 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.6, - "qmprice": 20.08, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161542979", - "info": { - "identifier": 161542979, - "sqm_ocr": 104.6, - "price": 2100.0, - "price_per_sqm": 20.076481835564053, - "url": "https://www.rightmove.co.uk/properties/161542979", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286493/161542979/286493_33861732_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.930158", - "last_seen": "2025-06-01T22:06:05.022584", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.041952, - 51.506966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.3, - "qmprice": 31.65, - "rooms": 2, - "total_price": 2225.0, - "url": "https://www.rightmove.co.uk/properties/161543120", - "info": { - "identifier": 161543120, - "sqm_ocr": 70.3, - "price": 2225.0, - "price_per_sqm": 31.650071123755335, - "url": "https://www.rightmove.co.uk/properties/161543120", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Letio Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260273/161543120/260273_L204_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.076212", - "last_seen": "2025-06-01T22:06:08.376616", - "price": 2225.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017595, - 51.50975 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 119.7, - "qmprice": 29.24, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161543243", - "info": { - "identifier": 161543243, - "sqm_ocr": 119.7, - "price": 3500.0, - "price_per_sqm": 29.239766081871345, - "url": "https://www.rightmove.co.uk/properties/161543243", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Daniel Cobb", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58939/161543243/58939_5cb8d1e9-7d89-4c19-805b-94c09781ae5a_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.225564", - "last_seen": "2025-06-01T22:05:59.451078", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123268, - 51.467564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.7, - "qmprice": 35.77, - "rooms": 4, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/161543456", - "info": { - "identifier": 161543456, - "sqm_ocr": 111.7, - "price": 3995.0, - "price_per_sqm": 35.76544315129812, - "url": "https://www.rightmove.co.uk/properties/161543456", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238829/161543456/238829_33861770_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.634870", - "last_seen": "2025-06-01T22:06:13.557833", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175869, - 51.424076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2175.0, - "url": "https://www.rightmove.co.uk/properties/161543459", - "info": { - "identifier": 161543459, - "sqm_ocr": null, - "price": 2175.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161543459", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Anisten Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50556/161543459/50556_102614001412_IMG_13_0002_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.047129", - "last_seen": "2025-06-01T22:05:38.277966", - "price": 2175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.14859, - 51.5559 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161543513", - "info": { - "identifier": 161543513, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161543513", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Hamways", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47472/161543513/47472_live/3002_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.792991", - "last_seen": "2025-06-01T22:06:11.676051", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00309, - 51.592144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.7, - "qmprice": 24.14, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161543531", - "info": { - "identifier": 161543531, - "sqm_ocr": 107.7, - "price": 2600.0, - "price_per_sqm": 24.14113277623027, - "url": "https://www.rightmove.co.uk/properties/161543531", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100624/161543531/100624_33861778_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.129925", - "last_seen": "2025-06-01T22:05:59.313906", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11343, - 51.433956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.2, - "qmprice": 22.28, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161543741", - "info": { - "identifier": 161543741, - "sqm_ocr": 121.2, - "price": 2700.0, - "price_per_sqm": 22.277227722772277, - "url": "https://www.rightmove.co.uk/properties/161543741", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66200/161543741/66200_RUI230076_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.423688", - "last_seen": "2025-06-01T22:05:51.328684", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.411835, - 51.58925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161544158", - "info": { - "identifier": 161544158, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161544158", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Property Company", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76256/161544158/76256_LET170067_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.935807", - "last_seen": "2025-06-01T22:05:53.909067", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10072, - 51.562122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.52, - "qmprice": 38.91, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161544656", - "info": { - "identifier": 161544656, - "sqm_ocr": 83.52, - "price": 3250.0, - "price_per_sqm": 38.912835249042146, - "url": "https://www.rightmove.co.uk/properties/161544656", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34986/161544656/34986_ISL230044_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.010322", - "last_seen": "2025-06-01T22:05:53.277350", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10997, - 51.535442 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161544887", - "info": { - "identifier": 161544887, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161544887", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22029/161544887/22029_CSV210380_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.106589", - "last_seen": "2025-06-01T22:05:57.484752", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214301, - 51.506435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.4, - "qmprice": 55.21, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161545214", - "info": { - "identifier": 161545214, - "sqm_ocr": 63.4, - "price": 3500.0, - "price_per_sqm": 55.20504731861199, - "url": "https://www.rightmove.co.uk/properties/161545214", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39872/161545214/39872_100783018333_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.285831", - "last_seen": "2025-06-01T22:05:58.018854", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18087, - 51.48054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.2, - "qmprice": 24.95, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161545250", - "info": { - "identifier": 161545250, - "sqm_ocr": 100.2, - "price": 2500.0, - "price_per_sqm": 24.9500998003992, - "url": "https://www.rightmove.co.uk/properties/161545250", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100441/161545250/100441_YLI250023_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.197931", - "last_seen": "2025-06-01T22:05:52.278907", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.335343, - 51.47402 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 49.37, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161545571", - "info": { - "identifier": 161545571, - "sqm_ocr": 79.0, - "price": 3900.0, - "price_per_sqm": 49.36708860759494, - "url": "https://www.rightmove.co.uk/properties/161545571", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/161545571/16023_1321344_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.182869", - "last_seen": "2025-06-01T22:06:15.732569", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146305, - 51.49749 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161545754", - "info": { - "identifier": 161545754, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161545754", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81217/161545754/81217_0617_FJL061700928_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.269752", - "last_seen": "2025-06-01T22:05:47.798771", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08547, - 51.573204 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.5, - "qmprice": 36.92, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161545793", - "info": { - "identifier": 161545793, - "sqm_ocr": 97.5, - "price": 3600.0, - "price_per_sqm": 36.92307692307692, - "url": "https://www.rightmove.co.uk/properties/161545793", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161545793/16050_1325164_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.604574", - "last_seen": "2025-06-01T20:19:59.604574", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070772, - 51.51943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161545946", - "info": { - "identifier": 161545946, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161545946", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Curtis And Parker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278867/161545946/278867_33861931_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.832463", - "last_seen": "2025-06-01T22:05:48.499449", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.227972, - 51.50872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.1, - "qmprice": 48.76, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161545988", - "info": { - "identifier": 161545988, - "sqm_ocr": 71.1, - "price": 3467.0, - "price_per_sqm": 48.76230661040788, - "url": "https://www.rightmove.co.uk/properties/161545988", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247910/161545988/247910_66d6d3fb80433_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.140805", - "last_seen": "2025-06-01T22:05:57.715345", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190582, - 51.488594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.2, - "qmprice": 25.2, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161546318", - "info": { - "identifier": 161546318, - "sqm_ocr": 99.2, - "price": 2500.0, - "price_per_sqm": 25.201612903225804, - "url": "https://www.rightmove.co.uk/properties/161546318", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/221k/220400/161546318/220400_WAL100088_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.585419", - "last_seen": "2025-06-01T22:06:13.452510", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162839, - 51.422207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.0, - "qmprice": 48.0, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161546423", - "info": { - "identifier": 161546423, - "sqm_ocr": 50.0, - "price": 2400.0, - "price_per_sqm": 48.0, - "url": "https://www.rightmove.co.uk/properties/161546423", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "The Estate Company", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246440/161546423/246440_33861959_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.257232", - "last_seen": "2025-06-01T22:05:42.198035", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200177, - 51.54407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.3, - "qmprice": 35.61, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161546429", - "info": { - "identifier": 161546429, - "sqm_ocr": 98.3, - "price": 3500.0, - "price_per_sqm": 35.60528992878942, - "url": "https://www.rightmove.co.uk/properties/161546429", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43754/161546429/43754_P300040_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.589795", - "last_seen": "2025-06-01T22:05:59.322255", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13296, - 51.46189 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161546576", - "info": { - "identifier": 161546576, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161546576", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/161546576/29861_33861969_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.848372", - "last_seen": "2025-06-01T22:05:47.597614", - "price": 3349 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0742, - 51.530193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.8, - "qmprice": 28.15, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161546675", - "info": { - "identifier": 161546675, - "sqm_ocr": 120.8, - "price": 3400.0, - "price_per_sqm": 28.14569536423841, - "url": "https://www.rightmove.co.uk/properties/161546675", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tennison Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76430/161546675/76430_336019_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.023579", - "last_seen": "2025-06-01T22:06:14.001580", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147855, - 51.419693 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.9, - "qmprice": 33.18, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161548391", - "info": { - "identifier": 161548391, - "sqm_ocr": 85.9, - "price": 2850.0, - "price_per_sqm": 33.17811408614668, - "url": "https://www.rightmove.co.uk/properties/161548391", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49030/161548391/49030_WML250027_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.395745", - "last_seen": "2025-06-01T22:06:01.315828", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219527, - 51.405342 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.0, - "qmprice": 57.78, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/161548652", - "info": { - "identifier": 161548652, - "sqm_ocr": 51.0, - "price": 2947.0, - "price_per_sqm": 57.78431372549019, - "url": "https://www.rightmove.co.uk/properties/161548652", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210110/161548652/210110_P300091_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.991711", - "last_seen": "2025-06-01T22:05:41.136844", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19792, - 51.53026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161549387", - "info": { - "identifier": 161549387, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161549387", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161549387/96668_247094802052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.983033", - "last_seen": "2025-06-01T22:05:51.864418", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.402154, - 51.445633 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.82, - "qmprice": 44.23, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161549423", - "info": { - "identifier": 161549423, - "sqm_ocr": 67.82, - "price": 3000.0, - "price_per_sqm": 44.234739015039814, - "url": "https://www.rightmove.co.uk/properties/161549423", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51322/161549423/51322_WEL170070_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.259747", - "last_seen": "2025-06-01T22:06:14.340246", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136831, - 51.489407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.6, - "qmprice": 47.71, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161549432", - "info": { - "identifier": 161549432, - "sqm_ocr": 78.6, - "price": 3750.0, - "price_per_sqm": 47.709923664122144, - "url": "https://www.rightmove.co.uk/properties/161549432", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/161549432/63031_LRL220141_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.476197", - "last_seen": "2025-06-01T22:05:55.220836", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143064, - 51.527515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161550041", - "info": { - "identifier": 161550041, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161550041", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greenfield Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/60k/59831/161550041/59831_100031005523_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.811649", - "last_seen": "2025-06-01T22:05:58.912532", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28308, - 51.37804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 134.0, - "qmprice": 20.9, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161550050", - "info": { - "identifier": 161550050, - "sqm_ocr": 134.0, - "price": 2800.0, - "price_per_sqm": 20.895522388059703, - "url": "https://www.rightmove.co.uk/properties/161550050", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Pedder", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21470/161550050/21470_33862220_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.095794", - "last_seen": "2025-06-01T22:06:00.979945", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034939, - 51.43921 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.68, - "qmprice": 43.04, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161550455", - "info": { - "identifier": 161550455, - "sqm_ocr": 76.68, - "price": 3300.0, - "price_per_sqm": 43.03599374021909, - "url": "https://www.rightmove.co.uk/properties/161550455", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/161550455/77197_VCT_VCT_LFSYCL_465_633140009_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.752801", - "last_seen": "2025-06-01T22:05:42.632785", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130546, - 51.5466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/161550623", - "info": { - "identifier": 161550623, - "sqm_ocr": null, - "price": 2695.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161550623", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Peter Michael Estates & Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25176/161550623/25176_1458_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.907319", - "last_seen": "2025-06-01T22:05:39.507454", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14355, - 51.63336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161550641", - "info": { - "identifier": 161550641, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161550641", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66176/161550641/66176_P5351G2625_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.917200", - "last_seen": "2025-06-01T22:05:39.531836", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21049, - 51.61426 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.2, - "qmprice": 46.75, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161551484", - "info": { - "identifier": 161551484, - "sqm_ocr": 49.2, - "price": 2300.0, - "price_per_sqm": 46.74796747967479, - "url": "https://www.rightmove.co.uk/properties/161551484", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Nicholls Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87224/161551484/87224_PRA11825_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.591058", - "last_seen": "2025-06-01T22:05:58.682664", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312129, - 51.361416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161551751", - "info": { - "identifier": 161551751, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161551751", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161551751/96668_247022802052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.404383", - "last_seen": "2025-06-01T22:06:11.406878", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.059003, - 51.52034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161552594", - "info": { - "identifier": 161552594, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161552594", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Campbell Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50214/161552594/50214_100088004347_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.212713", - "last_seen": "2025-06-01T22:06:07.964222", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01823, - 51.49831 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.9, - "qmprice": 25.26, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161552648", - "info": { - "identifier": 161552648, - "sqm_ocr": 106.9, - "price": 2700.0, - "price_per_sqm": 25.257249766136574, - "url": "https://www.rightmove.co.uk/properties/161552648", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Dimension Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87953/161552648/87953_3781_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.685254", - "last_seen": "2025-06-01T22:06:11.699247", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013807, - 51.5692 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161553248", - "info": { - "identifier": 161553248, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161553248", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89228/161553248/89228_WCL250067_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.786624", - "last_seen": "2025-06-01T22:05:40.702810", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295476, - 51.55375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.26, - "qmprice": 39.16, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161553920", - "info": { - "identifier": 161553920, - "sqm_ocr": 84.26, - "price": 3300.0, - "price_per_sqm": 39.164490861618795, - "url": "https://www.rightmove.co.uk/properties/161553920", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Laurence Leigh Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80035/161553920/80035_LLR250059_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.018733", - "last_seen": "2025-06-01T22:05:42.677813", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130051, - 51.546906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161554184", - "info": { - "identifier": 161554184, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161554184", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Marc and Partners", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201956/161554184/201956_MAY230542_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.222155", - "last_seen": "2025-06-01T22:06:10.800125", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056921, - 51.518517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 47.3, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161554202", - "info": { - "identifier": 161554202, - "sqm_ocr": 74.0, - "price": 3500.0, - "price_per_sqm": 47.2972972972973, - "url": "https://www.rightmove.co.uk/properties/161554202", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Settio Property Experience Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267794/161554202/267794_32918_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.524676", - "last_seen": "2025-06-01T22:05:43.252582", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10302, - 51.51734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.0, - "qmprice": 47.17, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161554310", - "info": { - "identifier": 161554310, - "sqm_ocr": 53.0, - "price": 2500.0, - "price_per_sqm": 47.16981132075472, - "url": "https://www.rightmove.co.uk/properties/161554310", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/161554310/56751_1325182_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.495859", - "last_seen": "2025-06-01T22:05:58.995536", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122789, - 51.47167 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.86, - "qmprice": 35.2, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161554472", - "info": { - "identifier": 161554472, - "sqm_ocr": 73.86, - "price": 2600.0, - "price_per_sqm": 35.20173300839426, - "url": "https://www.rightmove.co.uk/properties/161554472", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "CENTURY 21 Sophia Elena", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85477/161554472/85477_CEN150059_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.007537", - "last_seen": "2025-06-01T22:05:57.439099", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20704, - 51.50747 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 128.46, - "qmprice": 23.35, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161555069", - "info": { - "identifier": 161555069, - "sqm_ocr": 128.46, - "price": 3000.0, - "price_per_sqm": 23.353573096683792, - "url": "https://www.rightmove.co.uk/properties/161555069", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Peach Properties", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74746/161555069/74746_33862564_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.719794", - "last_seen": "2025-06-01T22:06:09.596070", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.059941, - 51.527523 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.24, - "qmprice": 52.22, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161555699", - "info": { - "identifier": 161555699, - "sqm_ocr": 62.24, - "price": 3250.0, - "price_per_sqm": 52.217223650385606, - "url": "https://www.rightmove.co.uk/properties/161555699", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53038/161555699/53038_CBW200120_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.016128", - "last_seen": "2025-06-01T22:06:14.165023", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148124, - 51.482033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3553.0, - "url": "https://www.rightmove.co.uk/properties/161556149", - "info": { - "identifier": 161556149, - "sqm_ocr": null, - "price": 3553.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161556149", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "UKmate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263912/161556149/263912_ukmate_agent_1746540757_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.757775", - "last_seen": "2025-06-01T22:06:05.939384", - "price": 3553.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098624, - 51.49401 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161556383", - "info": { - "identifier": 161556383, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161556383", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Orlando Reid", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86327/161556383/86327_33862653_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.793715", - "last_seen": "2025-06-01T22:05:59.686489", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123546, - 51.471912 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161556455", - "info": { - "identifier": 161556455, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161556455", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Blueprint Estate Agents Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92744/161556455/92744_15859602_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.965734", - "last_seen": "2025-06-01T22:05:53.997847", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114436, - 51.551006 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161556638", - "info": { - "identifier": 161556638, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161556638", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Easymove", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237299/161556638/237299_10676018_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.089054", - "last_seen": "2025-06-01T22:06:02.520549", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.045804, - 51.503788 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161556725", - "info": { - "identifier": 161556725, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161556725", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Aston Rowe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230534/161556725/230534_33655604_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.666728", - "last_seen": "2025-06-01T22:05:45.083223", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.286509, - 51.51409 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161556743", - "info": { - "identifier": 161556743, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161556743", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Spencer James Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283697/161556743/283697_13509_IMG_33_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.060938", - "last_seen": "2025-06-01T22:05:45.899761", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099223, - 51.632526 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161556914", - "info": { - "identifier": 161556914, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161556914", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "CROWN HOME BUYING AND LETTING", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218051/161556914/218051_RL0760_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.576060", - "last_seen": "2025-06-01T22:05:59.341760", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115128, - 51.486366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.22, - "qmprice": 34.22, - "rooms": 2, - "total_price": 2232.0, - "url": "https://www.rightmove.co.uk/properties/161556956", - "info": { - "identifier": 161556956, - "sqm_ocr": 65.22, - "price": 2232.0, - "price_per_sqm": 34.22263109475621, - "url": "https://www.rightmove.co.uk/properties/161556956", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Daniel Rose Residential Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33048/161556956/33048_DRR_001141_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.708834", - "last_seen": "2025-06-01T22:05:42.173329", - "price": 2231 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19257, - 51.555103 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.5, - "qmprice": 33.57, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161557283", - "info": { - "identifier": 161557283, - "sqm_ocr": 71.5, - "price": 2400.0, - "price_per_sqm": 33.56643356643357, - "url": "https://www.rightmove.co.uk/properties/161557283", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Surrey Quays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60474/161557283/60474_SQ06052025AK_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.470731", - "last_seen": "2025-06-01T22:06:00.675221", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01289, - 51.46522 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.38, - "qmprice": 51.39, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161557361", - "info": { - "identifier": 161557361, - "sqm_ocr": 58.38, - "price": 3000.0, - "price_per_sqm": 51.3874614594039, - "url": "https://www.rightmove.co.uk/properties/161557361", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51322/161557361/51322_WEL230179_L_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.475909", - "last_seen": "2025-06-01T22:06:15.152293", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139517, - 51.48853 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.16, - "qmprice": 48.41, - "rooms": 3, - "total_price": 2622.0, - "url": "https://www.rightmove.co.uk/properties/161558051", - "info": { - "identifier": 161558051, - "sqm_ocr": 54.16, - "price": 2622.0, - "price_per_sqm": 48.41211225997046, - "url": "https://www.rightmove.co.uk/properties/161558051", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/161558051/70038_5120_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.000390", - "last_seen": "2025-06-01T22:05:49.337114", - "price": 2621 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210072, - 51.470036 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.47, - "qmprice": 34.19, - "rooms": 2, - "total_price": 3640.0, - "url": "https://www.rightmove.co.uk/properties/161558090", - "info": { - "identifier": 161558090, - "sqm_ocr": 106.47, - "price": 3640.0, - "price_per_sqm": 34.18803418803419, - "url": "https://www.rightmove.co.uk/properties/161558090", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/161558090/48994_CNL140190_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:40.444223", - "last_seen": "2025-06-01T20:19:56.023786", - "price": 3640.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0213, - 51.5071 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161558672", - "info": { - "identifier": 161558672, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161558672", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Daniels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167654/161558672/167654_33862803_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.311369", - "last_seen": "2025-06-01T22:05:58.068486", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21274, - 51.527122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161558699", - "info": { - "identifier": 161558699, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161558699", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/161558699/87812_1325186_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.740897", - "last_seen": "2025-06-01T22:05:39.435581", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24264, - 51.57785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.75, - "qmprice": 36.7, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161559485", - "info": { - "identifier": 161559485, - "sqm_ocr": 81.75, - "price": 3000.0, - "price_per_sqm": 36.69724770642202, - "url": "https://www.rightmove.co.uk/properties/161559485", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Griffin Stevens", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170219/161559485/170219_102703000738_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.123379", - "last_seen": "2025-06-01T22:06:04.282645", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29546, - 51.45474 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.14, - "qmprice": 34.02, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161559572", - "info": { - "identifier": 161559572, - "sqm_ocr": 66.14, - "price": 2250.0, - "price_per_sqm": 34.01874811006955, - "url": "https://www.rightmove.co.uk/properties/161559572", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Oaks Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201446/161559572/201446_TUL250159_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.315521", - "last_seen": "2025-06-01T22:06:12.971211", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185336, - 51.43639 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.8, - "qmprice": 38.52, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161560154", - "info": { - "identifier": 161560154, - "sqm_ocr": 68.8, - "price": 2650.0, - "price_per_sqm": 38.51744186046512, - "url": "https://www.rightmove.co.uk/properties/161560154", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212396/161560154/212396_P160641_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.131298", - "last_seen": "2025-06-01T22:05:47.656350", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08834, - 51.57178 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 33.33, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161560724", - "info": { - "identifier": 161560724, - "sqm_ocr": 75.0, - "price": 2500.0, - "price_per_sqm": 33.333333333333336, - "url": "https://www.rightmove.co.uk/properties/161560724", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/161560724/84875_33862884_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.109419", - "last_seen": "2025-06-01T22:05:59.281192", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124445, - 51.47034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.9, - "qmprice": 40.76, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/161560904", - "info": { - "identifier": 161560904, - "sqm_ocr": 53.9, - "price": 2197.0, - "price_per_sqm": 40.76066790352505, - "url": "https://www.rightmove.co.uk/properties/161560904", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43812/161560904/43812_33862887_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.318715", - "last_seen": "2025-06-01T22:06:05.630203", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07449, - 51.488277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 45.69, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161561237", - "info": { - "identifier": 161561237, - "sqm_ocr": 58.0, - "price": 2650.0, - "price_per_sqm": 45.689655172413794, - "url": "https://www.rightmove.co.uk/properties/161561237", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41337/161561237/41337_06741523_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.280860", - "last_seen": "2025-06-01T22:06:16.133304", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169, - 51.532 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.84, - "qmprice": 48.29, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161562389", - "info": { - "identifier": 161562389, - "sqm_ocr": 82.84, - "price": 4000.0, - "price_per_sqm": 48.285852245292126, - "url": "https://www.rightmove.co.uk/properties/161562389", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161562389/87187_19026_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.407535", - "last_seen": "2025-06-01T22:05:43.206182", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193203, - 51.557304 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161562761", - "info": { - "identifier": 161562761, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161562761", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84785/161562761/84785_33862937_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.491935", - "last_seen": "2025-06-01T22:05:45.046141", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.256619, - 51.518684 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.58, - "qmprice": 53.0, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161562788", - "info": { - "identifier": 161562788, - "sqm_ocr": 73.58, - "price": 3900.0, - "price_per_sqm": 53.003533568904594, - "url": "https://www.rightmove.co.uk/properties/161562788", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/143k/142382/161562788/142382_ALQ012571938_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.530191", - "last_seen": "2025-06-01T22:05:43.302171", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074714, - 51.51116 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161563235", - "info": { - "identifier": 161563235, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161563235", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Sonia Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181958/161563235/181958_sonia_722568083_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.899878", - "last_seen": "2025-06-01T22:05:50.227198", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299081, - 51.591686 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2511.0, - "url": "https://www.rightmove.co.uk/properties/161564051", - "info": { - "identifier": 161564051, - "sqm_ocr": null, - "price": 2511.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161564051", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Way of Life", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256148/161564051/256148_EVER-2561482y10aOfBSuWYj3Ay9m9CJhLrOQPDyMWplOORkCpojQy366EqOmJ6216C_IMG_30_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.652287", - "last_seen": "2025-06-01T20:19:57.814355", - "price": 2511.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01022, - 51.52516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.5, - "qmprice": 29.63, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161565386", - "info": { - "identifier": 161565386, - "sqm_ocr": 67.5, - "price": 2000.0, - "price_per_sqm": 29.62962962962963, - "url": "https://www.rightmove.co.uk/properties/161565386", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/256k/255212/161565386/255212_33863030_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.185505", - "last_seen": "2025-06-01T22:06:06.517955", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078865, - 51.462215 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.2, - "qmprice": 49.39, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161565461", - "info": { - "identifier": 161565461, - "sqm_ocr": 70.2, - "price": 3467.0, - "price_per_sqm": 49.387464387464384, - "url": "https://www.rightmove.co.uk/properties/161565461", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "RiverHomes", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11121/161565461/11121_33863034_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.123267", - "last_seen": "2025-06-01T22:06:12.444241", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184157, - 51.464283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.0, - "qmprice": 21.51, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161565731", - "info": { - "identifier": 161565731, - "sqm_ocr": 93.0, - "price": 2000.0, - "price_per_sqm": 21.50537634408602, - "url": "https://www.rightmove.co.uk/properties/161565731", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/161565731/221711_2054_EAF_128590_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.879826", - "last_seen": "2025-06-01T22:05:43.567614", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106415, - 51.389385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.6, - "qmprice": 40.15, - "rooms": 2, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/161566022", - "info": { - "identifier": 161566022, - "sqm_ocr": 74.6, - "price": 2995.0, - "price_per_sqm": 40.14745308310992, - "url": "https://www.rightmove.co.uk/properties/161566022", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66539/161566022/66539_33863081_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.975929", - "last_seen": "2025-06-01T22:05:54.030195", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093876, - 51.54592 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.4, - "qmprice": 45.11, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161566091", - "info": { - "identifier": 161566091, - "sqm_ocr": 65.4, - "price": 2950.0, - "price_per_sqm": 45.10703363914373, - "url": "https://www.rightmove.co.uk/properties/161566091", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Wayne & Silver", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91636/161566091/91636_33544827_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.249932", - "last_seen": "2025-06-01T22:05:42.201703", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162552, - 51.54919 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.0, - "qmprice": 26.47, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161566349", - "info": { - "identifier": 161566349, - "sqm_ocr": 102.0, - "price": 2700.0, - "price_per_sqm": 26.470588235294116, - "url": "https://www.rightmove.co.uk/properties/161566349", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265814/161566349/265814_100783018725_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.965881", - "last_seen": "2025-06-01T22:06:14.094113", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17905, - 51.46927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.46, - "qmprice": 36.21, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161566505", - "info": { - "identifier": 161566505, - "sqm_ocr": 81.46, - "price": 2950.0, - "price_per_sqm": 36.214092806285294, - "url": "https://www.rightmove.co.uk/properties/161566505", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/161566505/48994_CNL230044_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.367278", - "last_seen": "2025-06-01T22:06:08.940557", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008808, - 51.489 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161567156", - "info": { - "identifier": 161567156, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161567156", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161567156/96668_70455616012020_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.566608", - "last_seen": "2025-06-01T22:05:44.934479", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297087, - 51.509056 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.8, - "qmprice": 46.02, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161567522", - "info": { - "identifier": 161567522, - "sqm_ocr": 72.8, - "price": 3350.0, - "price_per_sqm": 46.01648351648352, - "url": "https://www.rightmove.co.uk/properties/161567522", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43829/161567522/43829_P300130_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.507453", - "last_seen": "2025-06-01T22:05:43.276471", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10769, - 51.51238 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 139.04, - "qmprice": 21.22, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161567852", - "info": { - "identifier": 161567852, - "sqm_ocr": 139.04, - "price": 2950.0, - "price_per_sqm": 21.21691599539701, - "url": "https://www.rightmove.co.uk/properties/161567852", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26204/161567852/26204_33863172_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.335121", - "last_seen": "2025-06-01T22:06:01.369658", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22798, - 51.39952 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 42.77, - "rooms": 2, - "total_price": 2652.0, - "url": "https://www.rightmove.co.uk/properties/161567873", - "info": { - "identifier": 161567873, - "sqm_ocr": 62.0, - "price": 2652.0, - "price_per_sqm": 42.774193548387096, - "url": "https://www.rightmove.co.uk/properties/161567873", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Lexstone Global", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271157/161567873/271157_Fulham_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.690820", - "last_seen": "2025-06-01T22:05:48.460820", - "price": 2652 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21077, - 51.47102 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161567909", - "info": { - "identifier": 161567909, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161567909", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Wayne & Silver", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91636/161567909/91636_33863177_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.691789", - "last_seen": "2025-06-01T22:06:00.170908", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100781, - 51.46557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.9, - "qmprice": 43.26, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161568584", - "info": { - "identifier": 161568584, - "sqm_ocr": 80.9, - "price": 3500.0, - "price_per_sqm": 43.26328800988875, - "url": "https://www.rightmove.co.uk/properties/161568584", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/161568584/66771_1325195_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.591225", - "last_seen": "2025-06-01T22:06:00.080580", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1282, - 51.480644 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.53, - "qmprice": 30.05, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161568788", - "info": { - "identifier": 161568788, - "sqm_ocr": 81.53, - "price": 2450.0, - "price_per_sqm": 30.050288237458602, - "url": "https://www.rightmove.co.uk/properties/161568788", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Ashley King", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71212/161568788/71212_L13435_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.742905", - "last_seen": "2025-06-01T22:06:09.084708", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0008, - 51.508682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3770.0, - "url": "https://www.rightmove.co.uk/properties/161568836", - "info": { - "identifier": 161568836, - "sqm_ocr": null, - "price": 3770.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161568836", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Square Quarters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76064/161568836/76064_188982_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.466379", - "last_seen": "2025-06-01T22:05:56.836471", - "price": 3770 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098929, - 51.524254 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.9, - "qmprice": 44.93, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161568935", - "info": { - "identifier": 161568935, - "sqm_ocr": 77.9, - "price": 3500.0, - "price_per_sqm": 44.929396662387674, - "url": "https://www.rightmove.co.uk/properties/161568935", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "RHW Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49982/161568935/49982_33863241_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.788995", - "last_seen": "2025-06-01T22:05:42.289356", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175708, - 51.541447 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.8, - "qmprice": 49.26, - "rooms": 2, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/161570270", - "info": { - "identifier": 161570270, - "sqm_ocr": 57.8, - "price": 2847.0, - "price_per_sqm": 49.2560553633218, - "url": "https://www.rightmove.co.uk/properties/161570270", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86531/161570270/86531_P300131_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.763471", - "last_seen": "2025-06-01T22:05:58.795582", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29195, - 51.41009 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/161570840", - "info": { - "identifier": 161570840, - "sqm_ocr": null, - "price": 2899.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161570840", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "2 Let Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47049/161570840/47049_342_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.162438", - "last_seen": "2025-06-01T22:05:56.746201", - "price": 2899.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.039212, - 51.48516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161571071", - "info": { - "identifier": 161571071, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161571071", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Godfrey And Barr", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56618/161571071/56618_5122_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.165954", - "last_seen": "2025-06-01T22:05:56.077818", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199212, - 51.57412 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161571404", - "info": { - "identifier": 161571404, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161571404", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "The Property Shop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167138/161571404/167138_TPR1001776_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.978367", - "last_seen": "2025-06-01T22:05:50.338377", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37977, - 51.57769 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 30.82, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161571428", - "info": { - "identifier": 161571428, - "sqm_ocr": 73.0, - "price": 2250.0, - "price_per_sqm": 30.82191780821918, - "url": "https://www.rightmove.co.uk/properties/161571428", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Brian Cox & Company", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156206/161571428/156206_12037167_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.975532", - "last_seen": "2025-06-01T22:05:50.320108", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.38025, - 51.578743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/161571626", - "info": { - "identifier": 161571626, - "sqm_ocr": null, - "price": 2349.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161571626", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7963/161571626/7963_33863398_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.046800", - "last_seen": "2025-06-01T22:05:55.238060", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.311326, - 51.511112 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 148.6, - "qmprice": 21.53, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161571632", - "info": { - "identifier": 161571632, - "sqm_ocr": 148.6, - "price": 3200.0, - "price_per_sqm": 21.534320323014807, - "url": "https://www.rightmove.co.uk/properties/161571632", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84848/161571632/84848_33863400_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.115219", - "last_seen": "2025-06-01T22:06:04.696043", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.380945, - 51.447094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161571647", - "info": { - "identifier": 161571647, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161571647", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Major Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245513/161571647/245513_10676345_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.872491", - "last_seen": "2025-06-01T22:05:50.800478", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.332558, - 51.580982 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161571971", - "info": { - "identifier": 161571971, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161571971", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Kings Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6484/161571971/6484_33863424_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.933706", - "last_seen": "2025-06-01T22:05:45.438083", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03951, - 51.63461 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.1, - "qmprice": 25.62, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161572007", - "info": { - "identifier": 161572007, - "sqm_ocr": 117.1, - "price": 3000.0, - "price_per_sqm": 25.619128949615714, - "url": "https://www.rightmove.co.uk/properties/161572007", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212357/161572007/212357_P160645_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.584158", - "last_seen": "2025-06-01T22:05:46.788273", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00236, - 51.48807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.9, - "qmprice": 24.73, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161572067", - "info": { - "identifier": 161572067, - "sqm_ocr": 84.9, - "price": 2100.0, - "price_per_sqm": 24.734982332155475, - "url": "https://www.rightmove.co.uk/properties/161572067", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chalk Street Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/169k/168170/161572067/168170_L108357_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.306083", - "last_seen": "2025-06-01T22:05:51.033137", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.174053, - 51.5803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/161572160", - "info": { - "identifier": 161572160, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161572160", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/161572160/176261_102708042555_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.427333", - "last_seen": "2025-06-01T22:05:49.606291", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12014, - 51.58111 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161572241", - "info": { - "identifier": 161572241, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161572241", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Lawrence Rand", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46205/161572241/46205_d861d1d4-c3c5-4351-94a4-ef407fc0f8aa_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.272210", - "last_seen": "2025-06-01T22:05:44.378064", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.342535, - 51.558002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.2, - "qmprice": 46.39, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161572280", - "info": { - "identifier": 161572280, - "sqm_ocr": 58.2, - "price": 2700.0, - "price_per_sqm": 46.391752577319586, - "url": "https://www.rightmove.co.uk/properties/161572280", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41343/161572280/41343_06731710_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.545970", - "last_seen": "2025-06-01T22:05:49.751493", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14868, - 51.573814 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161572586", - "info": { - "identifier": 161572586, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161572586", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Simple Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238226/161572586/238226_5806_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.410291", - "last_seen": "2025-06-01T22:05:51.212949", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.457907, - 51.52446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161572643", - "info": { - "identifier": 161572643, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161572643", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Century 21 Goodmayes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279887/161572643/279887_R200230_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.274484", - "last_seen": "2025-06-01T22:06:07.206750", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00609, - 51.532257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3297.0, - "url": "https://www.rightmove.co.uk/properties/161572769", - "info": { - "identifier": 161572769, - "sqm_ocr": null, - "price": 3297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161572769", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Aaron Shohet Property", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265799/161572769/265799_33863483_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.404635", - "last_seen": "2025-06-01T22:05:38.922344", - "price": 3297.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210118, - 51.61384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3990.0, - "url": "https://www.rightmove.co.uk/properties/161572844", - "info": { - "identifier": 161572844, - "sqm_ocr": null, - "price": 3990.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161572844", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Tennison Property", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76430/161572844/76430_704368_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.595984", - "last_seen": "2025-06-01T22:06:01.780011", - "price": 3990.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199293, - 51.418095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.6, - "qmprice": 28.54, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161572952", - "info": { - "identifier": 161572952, - "sqm_ocr": 101.6, - "price": 2900.0, - "price_per_sqm": 28.543307086614174, - "url": "https://www.rightmove.co.uk/properties/161572952", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/161572952/15966_1321191_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.716144", - "last_seen": "2025-06-01T22:06:13.759359", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167214, - 51.468586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.1, - "qmprice": 27.06, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161572958", - "info": { - "identifier": 161572958, - "sqm_ocr": 120.1, - "price": 3250.0, - "price_per_sqm": 27.060782681099084, - "url": "https://www.rightmove.co.uk/properties/161572958", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161572958/48101_1325125_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.378635", - "last_seen": "2025-06-01T22:06:11.350191", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00875, - 51.499992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.77, - "qmprice": 39.27, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161573006", - "info": { - "identifier": 161573006, - "sqm_ocr": 82.77, - "price": 3250.0, - "price_per_sqm": 39.26543433611212, - "url": "https://www.rightmove.co.uk/properties/161573006", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80551/161573006/80551_KIL200079_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.627569", - "last_seen": "2025-06-01T22:06:04.788680", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279185, - 51.479736 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161573123", - "info": { - "identifier": 161573123, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161573123", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Element Properties & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221111/161573123/221111_ALP250073_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.925525", - "last_seen": "2025-06-01T22:06:15.636627", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191743, - 51.524754 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161573144", - "info": { - "identifier": 161573144, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161573144", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Xavi & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88636/161573144/88636_280_XAVI_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.207582", - "last_seen": "2025-06-01T22:05:52.311496", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312032, - 51.484703 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 31.99, - "rooms": 3, - "total_price": 2575.0, - "url": "https://www.rightmove.co.uk/properties/161573246", - "info": { - "identifier": 161573246, - "sqm_ocr": 80.5, - "price": 2575.0, - "price_per_sqm": 31.987577639751553, - "url": "https://www.rightmove.co.uk/properties/161573246", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Adam Hayes Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82115/161573246/82115_33863523_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.301102", - "last_seen": "2025-06-01T22:05:38.573255", - "price": 2575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179206, - 51.610493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.61, - "qmprice": 40.47, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161573270", - "info": { - "identifier": 161573270, - "sqm_ocr": 69.61, - "price": 2817.0, - "price_per_sqm": 40.4683235167361, - "url": "https://www.rightmove.co.uk/properties/161573270", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52942/161573270/52942_33863526_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.390619", - "last_seen": "2025-06-01T22:06:14.612059", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130815, - 51.490643 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161573306", - "info": { - "identifier": 161573306, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161573306", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Pomp Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117175/161573306/117175_33860927_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.219993", - "last_seen": "2025-06-01T22:05:57.830964", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193759, - 51.490158 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161573456", - "info": { - "identifier": 161573456, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161573456", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194231/161573456/194231_LWI160495_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.438498", - "last_seen": "2025-06-01T22:06:01.704255", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232634, - 51.406265 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 50.63, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161573789", - "info": { - "identifier": 161573789, - "sqm_ocr": 79.0, - "price": 4000.0, - "price_per_sqm": 50.63291139240506, - "url": "https://www.rightmove.co.uk/properties/161573789", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50933/161573789/50933_P0705M5115_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.561609", - "last_seen": "2025-06-01T22:05:57.413267", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1656, - 51.49154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161573900", - "info": { - "identifier": 161573900, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161573900", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161573900/96668_230280122112024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.389218", - "last_seen": "2025-06-01T22:05:41.732622", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05247, - 51.401817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.6, - "qmprice": 34.53, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161574146", - "info": { - "identifier": 161574146, - "sqm_ocr": 66.6, - "price": 2300.0, - "price_per_sqm": 34.53453453453454, - "url": "https://www.rightmove.co.uk/properties/161574146", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57967/161574146/57967_KBS240038_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.438822", - "last_seen": "2025-06-01T22:06:06.962658", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.047044, - 51.46363 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.9, - "qmprice": 36.74, - "rooms": 3, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/161574464", - "info": { - "identifier": 161574464, - "sqm_ocr": 97.9, - "price": 3597.0, - "price_per_sqm": 36.741573033707866, - "url": "https://www.rightmove.co.uk/properties/161574464", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/161574464/84833_33863586_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.899579", - "last_seen": "2025-06-01T22:05:48.652600", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.239574, - 51.50795 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161574467", - "info": { - "identifier": 161574467, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161574467", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78410/161574467/78410_33863587_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.482415", - "last_seen": "2025-06-01T22:06:13.191757", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173504, - 51.46082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.1, - "qmprice": 66.56, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161574491", - "info": { - "identifier": 161574491, - "sqm_ocr": 60.1, - "price": 4000.0, - "price_per_sqm": 66.55574043261231, - "url": "https://www.rightmove.co.uk/properties/161574491", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161574491/87187_54787_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.771329", - "last_seen": "2025-06-01T22:05:53.484680", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09665, - 51.52902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161574497", - "info": { - "identifier": 161574497, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161574497", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161574497/87187_43707_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.821914", - "last_seen": "2025-06-01T22:06:09.742924", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01871, - 51.49952 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 50.83, - "rooms": 2, - "total_price": 3965.0, - "url": "https://www.rightmove.co.uk/properties/161574548", - "info": { - "identifier": 161574548, - "sqm_ocr": 78.0, - "price": 3965.0, - "price_per_sqm": 50.833333333333336, - "url": "https://www.rightmove.co.uk/properties/161574548", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Tavistock Bow", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/111k/110768/161574548/110768_101184001358_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.441034", - "last_seen": "2025-06-01T22:05:43.104690", - "price": 3965 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128363, - 51.513115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.04, - "qmprice": 30.11, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161574755", - "info": { - "identifier": 161574755, - "sqm_ocr": 78.04, - "price": 2350.0, - "price_per_sqm": 30.11276268580215, - "url": "https://www.rightmove.co.uk/properties/161574755", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/127k/126934/161574755/126934_6814a3046c768_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.773056", - "last_seen": "2025-06-01T22:06:13.831007", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175004, - 51.465294 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161574767", - "info": { - "identifier": 161574767, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161574767", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benjamin Stevens", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93881/161574767/93881_BNJ_DGW_LFSYCL_460_625419167_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.923135", - "last_seen": "2025-06-01T22:05:39.542572", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.259676, - 51.622784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.4, - "qmprice": 44.33, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161574827", - "info": { - "identifier": 161574827, - "sqm_ocr": 56.4, - "price": 2500.0, - "price_per_sqm": 44.326241134751776, - "url": "https://www.rightmove.co.uk/properties/161574827", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Red Property Partnership", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83545/161574827/83545_33863605_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.606774", - "last_seen": "2025-06-01T22:05:42.001148", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.111505, - 51.519104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161575055", - "info": { - "identifier": 161575055, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161575055", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/161575055/222842_TCT241324_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.522835", - "last_seen": "2025-06-01T22:05:52.926659", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107683, - 51.556664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.8, - "qmprice": 35.78, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161575121", - "info": { - "identifier": 161575121, - "sqm_ocr": 104.8, - "price": 3750.0, - "price_per_sqm": 35.782442748091604, - "url": "https://www.rightmove.co.uk/properties/161575121", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99865/161575121/99865_33863612_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.251299", - "last_seen": "2025-06-01T22:05:59.488241", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140735, - 51.4538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/161575460", - "info": { - "identifier": 161575460, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161575460", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/161575460/181787_181787_873_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.339348", - "last_seen": "2025-06-01T22:06:05.355628", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08847, - 51.49292 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.4, - "qmprice": 46.68, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161575733", - "info": { - "identifier": 161575733, - "sqm_ocr": 81.4, - "price": 3800.0, - "price_per_sqm": 46.68304668304668, - "url": "https://www.rightmove.co.uk/properties/161575733", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161575733/253853_1325006_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.499939", - "last_seen": "2025-06-01T22:06:07.038919", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101788, - 51.49341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 40.14, - "rooms": 2, - "total_price": 3532.0, - "url": "https://www.rightmove.co.uk/properties/161575793", - "info": { - "identifier": 161575793, - "sqm_ocr": 88.0, - "price": 3532.0, - "price_per_sqm": 40.13636363636363, - "url": "https://www.rightmove.co.uk/properties/161575793", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/161575793/73120_1321149_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.138387", - "last_seen": "2025-06-01T22:05:54.440249", - "price": 3532.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094353, - 51.528336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.47, - "qmprice": 63.79, - "rooms": 2, - "total_price": 2709.0, - "url": "https://www.rightmove.co.uk/properties/161575832", - "info": { - "identifier": 161575832, - "sqm_ocr": 42.47, - "price": 2709.0, - "price_per_sqm": 63.7862020249588, - "url": "https://www.rightmove.co.uk/properties/161575832", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/161575832/15942_1325231_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.315662", - "last_seen": "2025-06-01T22:05:58.119320", - "price": 2709.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184322, - 51.497097 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.48, - "qmprice": 31.4, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/161575985", - "info": { - "identifier": 161575985, - "sqm_ocr": 79.48, - "price": 2496.0, - "price_per_sqm": 31.40412682435833, - "url": "https://www.rightmove.co.uk/properties/161575985", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/161575985/84788_33863635_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.944257", - "last_seen": "2025-06-01T22:05:51.789919", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.245307, - 51.493526 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.39, - "qmprice": 40.68, - "rooms": 2, - "total_price": 2904.0, - "url": "https://www.rightmove.co.uk/properties/161576018", - "info": { - "identifier": 161576018, - "sqm_ocr": 71.39, - "price": 2904.0, - "price_per_sqm": 40.67796610169491, - "url": "https://www.rightmove.co.uk/properties/161576018", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161576018/55101_1325244_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.089925", - "last_seen": "2025-06-01T22:06:06.378096", - "price": 2904.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091213, - 51.500355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 51.95, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161576039", - "info": { - "identifier": 161576039, - "sqm_ocr": 77.0, - "price": 4000.0, - "price_per_sqm": 51.94805194805195, - "url": "https://www.rightmove.co.uk/properties/161576039", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/161576039/15966_1325248_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.708079", - "last_seen": "2025-06-01T22:06:13.739729", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14877, - 51.48109 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161576057", - "info": { - "identifier": 161576057, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161576057", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/161576057/39507_297100_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.375492", - "last_seen": "2025-06-01T22:06:11.348290", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065209, - 51.51097 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161576063", - "info": { - "identifier": 161576063, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161576063", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/161576063/39507_102592_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.393598", - "last_seen": "2025-06-01T22:06:11.404748", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029408, - 51.5202 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3770.0, - "url": "https://www.rightmove.co.uk/properties/161576087", - "info": { - "identifier": 161576087, - "sqm_ocr": null, - "price": 3770.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161576087", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/161576087/39507_353099_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.429324", - "last_seen": "2025-06-01T22:06:11.491128", - "price": 3770 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055496, - 51.527046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 30.71, - "rooms": 4, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/161576135", - "info": { - "identifier": 161576135, - "sqm_ocr": 91.0, - "price": 2795.0, - "price_per_sqm": 30.714285714285715, - "url": "https://www.rightmove.co.uk/properties/161576135", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Akelius Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102505/161576135/102505_40029-3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.494710", - "last_seen": "2025-06-01T22:05:40.268825", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21949, - 51.54642 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161576351", - "info": { - "identifier": 161576351, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161576351", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Estate & Agent", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79575/161576351/79575_ESTAT_000546_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.853646", - "last_seen": "2025-06-01T22:05:58.846409", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29656, - 51.403023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161576393", - "info": { - "identifier": 161576393, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161576393", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/256k/255212/161576393/255212_33863668_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.346644", - "last_seen": "2025-06-01T22:06:06.859330", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.081961, - 51.457935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.4, - "qmprice": 59.74, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161576630", - "info": { - "identifier": 161576630, - "sqm_ocr": 54.4, - "price": 3250.0, - "price_per_sqm": 59.74264705882353, - "url": "https://www.rightmove.co.uk/properties/161576630", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22353/161576630/22353_CSG200362_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.334356", - "last_seen": "2025-06-01T22:06:14.470448", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195151, - 51.51772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.26, - "qmprice": 38.91, - "rooms": 3, - "total_price": 2773.0, - "url": "https://www.rightmove.co.uk/properties/161576729", - "info": { - "identifier": 161576729, - "sqm_ocr": 71.26, - "price": 2773.0, - "price_per_sqm": 38.91383665450463, - "url": "https://www.rightmove.co.uk/properties/161576729", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/161576729/70038_4906_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.814598", - "last_seen": "2025-06-01T22:05:48.480747", - "price": 2773 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213194, - 51.478573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161576756", - "info": { - "identifier": 161576756, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161576756", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161576756/96668_241889815032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.506231", - "last_seen": "2025-06-01T22:06:05.500641", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.044203, - 51.49369 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 129.4, - "qmprice": 25.12, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161576936", - "info": { - "identifier": 161576936, - "sqm_ocr": 129.4, - "price": 3250.0, - "price_per_sqm": 25.115919629057185, - "url": "https://www.rightmove.co.uk/properties/161576936", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100426/161576936/100426_1324914_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.746089", - "last_seen": "2025-06-01T22:05:43.601110", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063035, - 51.39015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.4, - "qmprice": 47.04, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161576960", - "info": { - "identifier": 161576960, - "sqm_ocr": 74.4, - "price": 3500.0, - "price_per_sqm": 47.04301075268817, - "url": "https://www.rightmove.co.uk/properties/161576960", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/161576960/101522_1325120_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.747079", - "last_seen": "2025-06-01T22:06:11.904871", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01372, - 51.5616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.2, - "qmprice": 30.82, - "rooms": 2, - "total_price": 2102.0, - "url": "https://www.rightmove.co.uk/properties/161577038", - "info": { - "identifier": 161577038, - "sqm_ocr": 68.2, - "price": 2102.0, - "price_per_sqm": 30.821114369501466, - "url": "https://www.rightmove.co.uk/properties/161577038", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161577038/55101_1324112_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.424390", - "last_seen": "2025-06-01T22:06:06.939790", - "price": 2102.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094928, - 51.486946 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.38, - "qmprice": 56.64, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161577080", - "info": { - "identifier": 161577080, - "sqm_ocr": 57.38, - "price": 3250.0, - "price_per_sqm": 56.63994423143952, - "url": "https://www.rightmove.co.uk/properties/161577080", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/161577080/71401_1325252_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.147349", - "last_seen": "2025-06-01T22:05:41.362240", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221086, - 51.552544 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 46.97, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161577287", - "info": { - "identifier": 161577287, - "sqm_ocr": 66.0, - "price": 3100.0, - "price_per_sqm": 46.96969696969697, - "url": "https://www.rightmove.co.uk/properties/161577287", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Tennison Property", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76430/161577287/76430_558574_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.964031", - "last_seen": "2025-06-01T22:05:47.277056", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087979, - 51.530903 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161577494", - "info": { - "identifier": 161577494, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161577494", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156782/161577494/156782_KAE220077_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.942067", - "last_seen": "2025-06-01T22:06:13.857965", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170309, - 51.47656 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.9, - "qmprice": 25.99, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161578112", - "info": { - "identifier": 161578112, - "sqm_ocr": 103.9, - "price": 2700.0, - "price_per_sqm": 25.98652550529355, - "url": "https://www.rightmove.co.uk/properties/161578112", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Davidson Frost-Wellings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238889/161578112/238889_33834628_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.106717", - "last_seen": "2025-06-01T22:05:50.732107", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305022, - 51.619778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.9, - "qmprice": 37.56, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161578490", - "info": { - "identifier": 161578490, - "sqm_ocr": 63.9, - "price": 2400.0, - "price_per_sqm": 37.55868544600939, - "url": "https://www.rightmove.co.uk/properties/161578490", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107905/161578490/107905_GWL240107_L_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.104063", - "last_seen": "2025-06-01T22:05:46.501603", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015718, - 51.480145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161578505", - "info": { - "identifier": 161578505, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161578505", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77583/161578505/77583_YLT250023_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.305632", - "last_seen": "2025-06-01T22:06:04.422175", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.334658, - 51.43073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161578784", - "info": { - "identifier": 161578784, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161578784", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161578784/96668_13399727042016_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.177804", - "last_seen": "2025-06-01T22:06:06.507888", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089983, - 51.47937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161578847", - "info": { - "identifier": 161578847, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161578847", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Such Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238883/161578847/238883_275122_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.051873", - "last_seen": "2025-06-01T22:05:59.187294", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09875, - 51.43976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.2, - "qmprice": 31.97, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161579147", - "info": { - "identifier": 161579147, - "sqm_ocr": 78.2, - "price": 2500.0, - "price_per_sqm": 31.9693094629156, - "url": "https://www.rightmove.co.uk/properties/161579147", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161579147/96668_247476906052025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.559933", - "last_seen": "2025-06-01T22:05:38.950832", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240955, - 51.5957 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2996.0, - "url": "https://www.rightmove.co.uk/properties/161579195", - "info": { - "identifier": 161579195, - "sqm_ocr": null, - "price": 2996.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161579195", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161579195/96668_245949822042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.708949", - "last_seen": "2025-06-01T22:06:15.196661", - "price": 2996.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178024, - 51.51368 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161579411", - "info": { - "identifier": 161579411, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161579411", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161579411/96668_247321705052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.780884", - "last_seen": "2025-06-01T22:05:43.679356", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098523, - 51.41541 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161579672", - "info": { - "identifier": 161579672, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161579672", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Crestwell Property Consultants", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95125/161579672/95125_RL0078_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.526112", - "last_seen": "2025-06-01T22:05:49.730163", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.085793, - 51.5991 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.08, - "qmprice": 51.52, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161580815", - "info": { - "identifier": 161580815, - "sqm_ocr": 63.08, - "price": 3250.0, - "price_per_sqm": 51.52187698161065, - "url": "https://www.rightmove.co.uk/properties/161580815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36213/161580815/36213_KGT220047_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.437333", - "last_seen": "2025-06-01T22:06:14.736415", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182013, - 51.51128 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161582372", - "info": { - "identifier": 161582372, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161582372", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161582372/96668_242957225032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.062876", - "last_seen": "2025-06-01T22:05:47.673119", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073967, - 51.559063 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.4, - "qmprice": 34.8, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161583344", - "info": { - "identifier": 161583344, - "sqm_ocr": 70.4, - "price": 2450.0, - "price_per_sqm": 34.80113636363636, - "url": "https://www.rightmove.co.uk/properties/161583344", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161583344/48101_1325084_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.379071", - "last_seen": "2025-06-01T22:06:07.968915", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026981, - 51.502457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.5, - "qmprice": 45.1, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/161583515", - "info": { - "identifier": 161583515, - "sqm_ocr": 76.5, - "price": 3450.0, - "price_per_sqm": 45.09803921568628, - "url": "https://www.rightmove.co.uk/properties/161583515", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/161583515/60927_000012819b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.236893", - "last_seen": "2025-06-01T22:05:49.450180", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23458, - 51.49575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.8, - "qmprice": 43.94, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/161583614", - "info": { - "identifier": 161583614, - "sqm_ocr": 80.8, - "price": 3550.0, - "price_per_sqm": 43.93564356435644, - "url": "https://www.rightmove.co.uk/properties/161583614", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/161583614/60927_000004661c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.006250", - "last_seen": "2025-06-01T22:05:49.084318", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22654, - 51.48753 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.92, - "qmprice": 29.61, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161583671", - "info": { - "identifier": 161583671, - "sqm_ocr": 70.92, - "price": 2100.0, - "price_per_sqm": 29.61082910321489, - "url": "https://www.rightmove.co.uk/properties/161583671", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Southall", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266303/161583671/266303_000019497a_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.513268", - "last_seen": "2025-06-01T22:05:44.874432", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3876, - 51.50689 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3852.0, - "url": "https://www.rightmove.co.uk/properties/161583980", - "info": { - "identifier": 161583980, - "sqm_ocr": null, - "price": 3852.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161583980", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Native Communities", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272588/161583980/272588_2bedCP_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.424950", - "last_seen": "2025-06-01T20:19:57.401460", - "price": 3852.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07097, - 51.51502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3482.0, - "url": "https://www.rightmove.co.uk/properties/161583983", - "info": { - "identifier": 161583983, - "sqm_ocr": null, - "price": 3482.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161583983", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Native Communities", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272588/161583983/272588_2bedcp2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.442975", - "last_seen": "2025-06-01T20:19:57.365922", - "price": 3482.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07097, - 51.51502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3173.0, - "url": "https://www.rightmove.co.uk/properties/161584187", - "info": { - "identifier": 161584187, - "sqm_ocr": null, - "price": 3173.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161584187", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/161584187/253604_108X0705_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.347581", - "last_seen": "2025-06-01T22:06:07.655458", - "price": 3173.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00768, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3416.0, - "url": "https://www.rightmove.co.uk/properties/161584304", - "info": { - "identifier": 161584304, - "sqm_ocr": null, - "price": 3416.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161584304", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/161584304/253604_301X0705_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.37, - "qmprice": 43.58, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161584403", - "info": { - "identifier": 161584403, - "sqm_ocr": 57.37, - "price": 2500.0, - "price_per_sqm": 43.57678229039568, - "url": "https://www.rightmove.co.uk/properties/161584403", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117766/161584403/117766_CLI694487_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.073038", - "last_seen": "2025-06-01T22:06:12.305078", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161142, - 51.474667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/161584556", - "info": { - "identifier": 161584556, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161584556", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/161584556/146147_PR191302_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.931942", - "last_seen": "2025-06-01T22:06:00.572599", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038069, - 51.491856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.54, - "qmprice": 32.15, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161584664", - "info": { - "identifier": 161584664, - "sqm_ocr": 99.54, - "price": 3200.0, - "price_per_sqm": 32.14788024914607, - "url": "https://www.rightmove.co.uk/properties/161584664", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Maison", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/224k/223244/161584664/223244_L108391_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.455990", - "last_seen": "2025-06-01T22:06:06.983866", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10263, - 51.488117 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161585222", - "info": { - "identifier": 161585222, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161585222", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Fullers Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56520/161585222/56520_yewtree_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.962305", - "last_seen": "2025-06-01T22:05:45.544406", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10493, - 51.63428 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.46, - "qmprice": 40.57, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161585237", - "info": { - "identifier": 161585237, - "sqm_ocr": 85.46, - "price": 3467.0, - "price_per_sqm": 40.5686871050784, - "url": "https://www.rightmove.co.uk/properties/161585237", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Nine Elms", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/197k/196106/161585237/196106_07052501_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.013642", - "last_seen": "2025-06-01T22:05:59.740148", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12827, - 51.48142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 122.1, - "qmprice": 32.35, - "rooms": 3, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/161585882", - "info": { - "identifier": 161585882, - "sqm_ocr": 122.1, - "price": 3950.0, - "price_per_sqm": 32.350532350532355, - "url": "https://www.rightmove.co.uk/properties/161585882", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/161585882/52887_33864054_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.457837", - "last_seen": "2025-06-01T22:06:01.535320", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201158, - 51.435112 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.0, - "qmprice": 37.25, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161586893", - "info": { - "identifier": 161586893, - "sqm_ocr": 102.0, - "price": 3800.0, - "price_per_sqm": 37.254901960784316, - "url": "https://www.rightmove.co.uk/properties/161586893", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50249/161586893/50249_RCL230008_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.673017", - "last_seen": "2025-06-01T22:05:51.590283", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.465042, - 51.562805 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161587427", - "info": { - "identifier": 161587427, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161587427", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hanley Estates Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72329/161587427/72329_1521_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.809510", - "last_seen": "2025-06-01T22:05:42.310294", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1369, - 51.52751 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.1, - "qmprice": 28.06, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161587583", - "info": { - "identifier": 161587583, - "sqm_ocr": 89.1, - "price": 2500.0, - "price_per_sqm": 28.058361391694728, - "url": "https://www.rightmove.co.uk/properties/161587583", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/161587583/52415_33864172_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.693102", - "last_seen": "2025-06-01T22:06:00.179312", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139567, - 51.41433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.2, - "qmprice": 32.21, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161588018", - "info": { - "identifier": 161588018, - "sqm_ocr": 65.2, - "price": 2100.0, - "price_per_sqm": 32.20858895705521, - "url": "https://www.rightmove.co.uk/properties/161588018", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Fieldhouse Residential Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5539/161588018/5539_33864194_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.911071", - "last_seen": "2025-06-01T22:06:06.046151", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069126, - 51.470764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161588576", - "info": { - "identifier": 161588576, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161588576", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Charlotte Day Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256769/161588576/256769_LET017_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.254921", - "last_seen": "2025-06-01T22:05:44.359187", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2684, - 51.50794 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.59, - "qmprice": 33.54, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161588579", - "info": { - "identifier": 161588579, - "sqm_ocr": 65.59, - "price": 2200.0, - "price_per_sqm": 33.541698429638664, - "url": "https://www.rightmove.co.uk/properties/161588579", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/161588579/250739_1324630_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.004970", - "last_seen": "2025-06-01T22:05:50.426550", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297144, - 51.60568 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.14, - "qmprice": 33.41, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/161588606", - "info": { - "identifier": 161588606, - "sqm_ocr": 90.14, - "price": 3012.0, - "price_per_sqm": 33.41468826270246, - "url": "https://www.rightmove.co.uk/properties/161588606", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/161588606/15942_1325267_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.253572", - "last_seen": "2025-06-01T22:05:58.326672", - "price": 3012.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195925, - 51.49511 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.8, - "qmprice": 34.76, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161588678", - "info": { - "identifier": 161588678, - "sqm_ocr": 74.8, - "price": 2600.0, - "price_per_sqm": 34.75935828877005, - "url": "https://www.rightmove.co.uk/properties/161588678", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72234/161588678/72234_RWL210085_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.541216", - "last_seen": "2025-06-01T22:06:03.326209", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.028288, - 51.499935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.46, - "qmprice": 37.62, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161588747", - "info": { - "identifier": 161588747, - "sqm_ocr": 62.46, - "price": 2350.0, - "price_per_sqm": 37.62407941082293, - "url": "https://www.rightmove.co.uk/properties/161588747", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/161588747/15966_1324218_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.583582", - "last_seen": "2025-06-01T22:06:13.474392", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148848, - 51.471336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 32.89, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161588912", - "info": { - "identifier": 161588912, - "sqm_ocr": 76.0, - "price": 2500.0, - "price_per_sqm": 32.89473684210526, - "url": "https://www.rightmove.co.uk/properties/161588912", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33101/161588912/33101_CLS251244_L_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.566983", - "last_seen": "2025-06-01T22:05:56.204886", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.241542, - 51.514492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161589155", - "info": { - "identifier": 161589155, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161589155", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Battersea & Nine Elms Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143171/161589155/143171_33864253_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.262332", - "last_seen": "2025-06-01T22:06:01.877767", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005859, - 51.512722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.91, - "qmprice": 50.08, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161589350", - "info": { - "identifier": 161589350, - "sqm_ocr": 59.91, - "price": 3000.0, - "price_per_sqm": 50.07511266900351, - "url": "https://www.rightmove.co.uk/properties/161589350", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194036/161589350/194036_HRP210430_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.594756", - "last_seen": "2025-06-01T22:06:01.785185", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201207, - 51.417995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 52.34, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161589569", - "info": { - "identifier": 161589569, - "sqm_ocr": 64.0, - "price": 3350.0, - "price_per_sqm": 52.34375, - "url": "https://www.rightmove.co.uk/properties/161589569", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86071/161589569/86071_BAQ012539014_IMG_00_0006_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.670797", - "last_seen": "2025-06-01T22:05:48.280759", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181771, - 51.4735 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.8, - "qmprice": 45.82, - "rooms": 2, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/161591219", - "info": { - "identifier": 161591219, - "sqm_ocr": 81.8, - "price": 3748.0, - "price_per_sqm": 45.81907090464548, - "url": "https://www.rightmove.co.uk/properties/161591219", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/161591219/212327_P160650_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.565130", - "last_seen": "2025-06-01T22:06:09.254871", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02553, - 51.50266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.81, - "qmprice": 29.28, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161591279", - "info": { - "identifier": 161591279, - "sqm_ocr": 88.81, - "price": 2600.0, - "price_per_sqm": 29.27598243441054, - "url": "https://www.rightmove.co.uk/properties/161591279", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Sinton Andrews", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13712/161591279/13712_SINT_001392_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.168086", - "last_seen": "2025-06-01T22:05:44.412849", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.315017, - 51.52497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.8, - "qmprice": 44.54, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/161591324", - "info": { - "identifier": 161591324, - "sqm_ocr": 53.8, - "price": 2396.0, - "price_per_sqm": 44.53531598513011, - "url": "https://www.rightmove.co.uk/properties/161591324", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39741/161591324/39741_33784986_IMG_03_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.216206", - "last_seen": "2025-06-01T22:06:16.040954", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192727, - 51.525974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161591369", - "info": { - "identifier": 161591369, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161591369", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161591369/281513_LDN240043_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.781831", - "last_seen": "2025-06-01T22:05:47.071700", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026847, - 51.46141 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 28.42, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161591375", - "info": { - "identifier": 161591375, - "sqm_ocr": 73.9, - "price": 2100.0, - "price_per_sqm": 28.41677943166441, - "url": "https://www.rightmove.co.uk/properties/161591375", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161591375/281513_LDN250002_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.179240", - "last_seen": "2025-06-01T22:05:41.408701", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.281694, - 51.54105 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.4, - "qmprice": 34.16, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161591384", - "info": { - "identifier": 161591384, - "sqm_ocr": 64.4, - "price": 2200.0, - "price_per_sqm": 34.16149068322981, - "url": "https://www.rightmove.co.uk/properties/161591384", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161591384/281513_LDN250018_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.794027", - "last_seen": "2025-06-01T22:05:47.085411", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.028317, - 51.461597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.2, - "qmprice": 36.52, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161591393", - "info": { - "identifier": 161591393, - "sqm_ocr": 71.2, - "price": 2600.0, - "price_per_sqm": 36.51685393258427, - "url": "https://www.rightmove.co.uk/properties/161591393", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161591393/281513_LDN180112_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.797369", - "last_seen": "2025-06-01T22:05:47.094132", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.072915, - 51.491306 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 130.0, - "qmprice": 23.08, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161591399", - "info": { - "identifier": 161591399, - "sqm_ocr": 130.0, - "price": 3000.0, - "price_per_sqm": 23.076923076923077, - "url": "https://www.rightmove.co.uk/properties/161591399", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161591399/281513_LDN190030_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.800039", - "last_seen": "2025-06-01T22:05:47.095907", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.030375, - 51.45824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 34.29, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161591405", - "info": { - "identifier": 161591405, - "sqm_ocr": 70.0, - "price": 2400.0, - "price_per_sqm": 34.285714285714285, - "url": "https://www.rightmove.co.uk/properties/161591405", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161591405/281513_LDN210042_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.532250", - "last_seen": "2025-06-01T22:05:46.681950", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026816, - 51.461105 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.2, - "qmprice": 29.11, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161591411", - "info": { - "identifier": 161591411, - "sqm_ocr": 96.2, - "price": 2800.0, - "price_per_sqm": 29.106029106029105, - "url": "https://www.rightmove.co.uk/properties/161591411", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161591411/281513_LDN210064_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.537067", - "last_seen": "2025-06-01T22:05:46.687890", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.027926, - 51.4612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161591465", - "info": { - "identifier": 161591465, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161591465", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Humphrey & CO Property Services", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79533/161591465/79533_33696631_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.933228", - "last_seen": "2025-06-01T22:06:04.020143", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.088939, - 51.56205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 28.24, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161591468", - "info": { - "identifier": 161591468, - "sqm_ocr": 85.0, - "price": 2400.0, - "price_per_sqm": 28.235294117647058, - "url": "https://www.rightmove.co.uk/properties/161591468", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161591468/281513_LDN230064_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.564992", - "last_seen": "2025-06-01T22:05:46.775581", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.024142, - 51.460865 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.2, - "qmprice": 32.76, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161591480", - "info": { - "identifier": 161591480, - "sqm_ocr": 99.2, - "price": 3250.0, - "price_per_sqm": 32.762096774193544, - "url": "https://www.rightmove.co.uk/properties/161591480", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161591480/281513_LDN240109_L_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.232322", - "last_seen": "2025-06-01T22:05:47.781165", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093442, - 51.572823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.8, - "qmprice": 41.21, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161591486", - "info": { - "identifier": 161591486, - "sqm_ocr": 72.8, - "price": 3000.0, - "price_per_sqm": 41.20879120879121, - "url": "https://www.rightmove.co.uk/properties/161591486", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161591486/281513_LDN200111_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.588573", - "last_seen": "2025-06-01T22:05:46.793484", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.008413, - 51.500633 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 28.77, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161591495", - "info": { - "identifier": 161591495, - "sqm_ocr": 73.0, - "price": 2100.0, - "price_per_sqm": 28.767123287671232, - "url": "https://www.rightmove.co.uk/properties/161591495", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161591495/281513_LDN220111_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.598841", - "last_seen": "2025-06-01T22:05:46.810537", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.030679, - 51.45726 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.9, - "qmprice": 39.05, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161591501", - "info": { - "identifier": 161591501, - "sqm_ocr": 58.9, - "price": 2300.0, - "price_per_sqm": 39.04923599320883, - "url": "https://www.rightmove.co.uk/properties/161591501", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161591501/281513_LDN220149_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.265064", - "last_seen": "2025-06-01T22:05:46.189589", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.068319, - 51.494446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.1, - "qmprice": 41.28, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161591516", - "info": { - "identifier": 161591516, - "sqm_ocr": 75.1, - "price": 3100.0, - "price_per_sqm": 41.27829560585886, - "url": "https://www.rightmove.co.uk/properties/161591516", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161591516/281513_LDN230094_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.179540", - "last_seen": "2025-06-01T22:06:05.237027", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097386, - 51.491768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.3, - "qmprice": 32.34, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161591540", - "info": { - "identifier": 161591540, - "sqm_ocr": 77.3, - "price": 2500.0, - "price_per_sqm": 32.34152652005175, - "url": "https://www.rightmove.co.uk/properties/161591540", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161591540/281513_LDN250013_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.249900", - "last_seen": "2025-06-01T22:06:08.709892", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01594, - 51.49591 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.2, - "qmprice": 45.39, - "rooms": 2, - "total_price": 2687.0, - "url": "https://www.rightmove.co.uk/properties/161591756", - "info": { - "identifier": 161591756, - "sqm_ocr": 59.2, - "price": 2687.0, - "price_per_sqm": 45.38851351351351, - "url": "https://www.rightmove.co.uk/properties/161591756", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40512/161591756/40512_33864427_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.506669", - "last_seen": "2025-06-01T22:06:06.761275", - "price": 2686 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092344, - 51.499653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.5, - "qmprice": 35.97, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161591963", - "info": { - "identifier": 161591963, - "sqm_ocr": 69.5, - "price": 2500.0, - "price_per_sqm": 35.97122302158273, - "url": "https://www.rightmove.co.uk/properties/161591963", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/161591963/84827_33864444_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.387227", - "last_seen": "2025-06-01T22:05:58.288253", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204528, - 51.49395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.3, - "qmprice": 34.1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161592026", - "info": { - "identifier": 161592026, - "sqm_ocr": 95.3, - "price": 3250.0, - "price_per_sqm": 34.10283315844701, - "url": "https://www.rightmove.co.uk/properties/161592026", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/145k/144923/161592026/144923_HPQ012528570_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.21072, - 51.532043 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161592146", - "info": { - "identifier": 161592146, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161592146", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161592146/96668_204646408042024_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.790078", - "last_seen": "2025-06-01T22:05:43.684622", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104492, - 51.34517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.23, - "qmprice": 35.09, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161592179", - "info": { - "identifier": 161592179, - "sqm_ocr": 81.23, - "price": 2850.0, - "price_per_sqm": 35.08555952234396, - "url": "https://www.rightmove.co.uk/properties/161592179", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269888/161592179/269888_NEW210184_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.050246", - "last_seen": "2025-06-01T22:06:00.565876", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043145, - 51.47245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161592365", - "info": { - "identifier": 161592365, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161592365", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Greenstone Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88567/161592365/88567_32988248_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.613292", - "last_seen": "2025-06-01T22:06:15.090926", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198466, - 51.528446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161592428", - "info": { - "identifier": 161592428, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161592428", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161592428/96668_247362605052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.623040", - "last_seen": "2025-06-01T22:06:00.109726", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127202, - 51.43559 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161592542", - "info": { - "identifier": 161592542, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161592542", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161592542/96668_11552107022016_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.554541", - "last_seen": "2025-06-01T22:05:51.470161", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.395921, - 51.51769 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.6, - "qmprice": 58.82, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161593115", - "info": { - "identifier": 161593115, - "sqm_ocr": 64.6, - "price": 3800.0, - "price_per_sqm": 58.82352941176471, - "url": "https://www.rightmove.co.uk/properties/161593115", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161593115/26207_IUL100051_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.116731", - "last_seen": "2025-06-01T22:05:54.386405", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102122, - 51.538635 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/161593295", - "info": { - "identifier": 161593295, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161593295", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Abacus Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26267/161593295/26267_ABAC_017570_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.938729", - "last_seen": "2025-06-01T22:05:39.568993", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197675, - 51.562546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161593355", - "info": { - "identifier": 161593355, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161593355", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Adam Kennedy", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280523/161593355/280523_29016979_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.938787", - "last_seen": "2025-06-01T22:05:45.445163", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08364, - 51.659267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.9, - "qmprice": 41.03, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161593427", - "info": { - "identifier": 161593427, - "sqm_ocr": 71.9, - "price": 2950.0, - "price_per_sqm": 41.029207232267034, - "url": "https://www.rightmove.co.uk/properties/161593427", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Kew", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260411/161593427/260411_000013625b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.702991", - "last_seen": "2025-06-01T22:05:58.611741", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30327, - 51.4146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.5, - "qmprice": 31.42, - "rooms": 3, - "total_price": 3975.0, - "url": "https://www.rightmove.co.uk/properties/161593487", - "info": { - "identifier": 161593487, - "sqm_ocr": 126.5, - "price": 3975.0, - "price_per_sqm": 31.42292490118577, - "url": "https://www.rightmove.co.uk/properties/161593487", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/161593487/281129_Maple070501_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.501820", - "last_seen": "2025-06-01T22:05:38.835018", - "price": 3975.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22083, - 51.57143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.8, - "qmprice": 26.57, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161593625", - "info": { - "identifier": 161593625, - "sqm_ocr": 82.8, - "price": 2200.0, - "price_per_sqm": 26.570048309178745, - "url": "https://www.rightmove.co.uk/properties/161593625", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Humphrey & CO Property Services", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79533/161593625/79533_33864536_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.897025", - "last_seen": "2025-06-01T22:06:03.997828", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.022117, - 51.579517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161593673", - "info": { - "identifier": 161593673, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161593673", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6292/161593673/6292_KTL130027_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.294762, - 51.59931 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161593919", - "info": { - "identifier": 161593919, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161593919", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7558/161593919/7558_FIL150032_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.456055", - "last_seen": "2025-06-01T22:05:38.799242", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198345, - 51.590004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.56, - "qmprice": 50.43, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161594024", - "info": { - "identifier": 161594024, - "sqm_ocr": 51.56, - "price": 2600.0, - "price_per_sqm": 50.4266873545384, - "url": "https://www.rightmove.co.uk/properties/161594024", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68234/161594024/68234_CLK140371_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.444094", - "last_seen": "2025-06-01T22:05:55.977679", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099056, - 51.524178 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/161594417", - "info": { - "identifier": 161594417, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161594417", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/161594417/105856_2748_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.183905", - "last_seen": "2025-06-01T22:06:05.239015", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.085236, - 51.49824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.6, - "qmprice": 26.1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161594798", - "info": { - "identifier": 161594798, - "sqm_ocr": 99.6, - "price": 2600.0, - "price_per_sqm": 26.104417670682732, - "url": "https://www.rightmove.co.uk/properties/161594798", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Urban Village", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60210/161594798/60210_101645003213_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.815242", - "last_seen": "2025-06-01T22:06:06.211897", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06171, - 51.4717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.54, - "qmprice": 39.85, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/161594840", - "info": { - "identifier": 161594840, - "sqm_ocr": 62.54, - "price": 2492.0, - "price_per_sqm": 39.84649824112568, - "url": "https://www.rightmove.co.uk/properties/161594840", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Circa London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77406/161594840/77406_2646760_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.275044", - "last_seen": "2025-06-01T22:05:47.824261", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07039, - 51.5333 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 41.04, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161595251", - "info": { - "identifier": 161595251, - "sqm_ocr": 67.0, - "price": 2750.0, - "price_per_sqm": 41.04477611940298, - "url": "https://www.rightmove.co.uk/properties/161595251", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/161595251/71419_1325269_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.214328", - "last_seen": "2025-06-01T22:05:59.403406", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130584, - 51.42538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 34.25, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/161595254", - "info": { - "identifier": 161595254, - "sqm_ocr": 67.0, - "price": 2295.0, - "price_per_sqm": 34.25373134328358, - "url": "https://www.rightmove.co.uk/properties/161595254", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/161595254/71419_1325268_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.213259", - "last_seen": "2025-06-01T22:05:59.401620", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130584, - 51.42538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 40.79, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161595464", - "info": { - "identifier": 161595464, - "sqm_ocr": 76.0, - "price": 3100.0, - "price_per_sqm": 40.78947368421053, - "url": "https://www.rightmove.co.uk/properties/161595464", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Kew", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260411/161595464/260411_000012211_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.478431", - "last_seen": "2025-06-01T22:06:04.626768", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27927, - 51.47969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 56.44, - "rooms": 2, - "total_price": 3499.0, - "url": "https://www.rightmove.co.uk/properties/161595530", - "info": { - "identifier": 161595530, - "sqm_ocr": 62.0, - "price": 3499.0, - "price_per_sqm": 56.435483870967744, - "url": "https://www.rightmove.co.uk/properties/161595530", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253316/161595530/253316_NHO101122_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.499084", - "last_seen": "2025-06-01T22:06:14.879490", - "price": 3499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188261, - 51.516712 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.8, - "qmprice": 48.65, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161595686", - "info": { - "identifier": 161595686, - "sqm_ocr": 66.8, - "price": 3250.0, - "price_per_sqm": 48.65269461077845, - "url": "https://www.rightmove.co.uk/properties/161595686", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161595686/26207_IUL110116_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.785557", - "last_seen": "2025-06-01T22:05:53.502076", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097587, - 51.534863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161596043", - "info": { - "identifier": 161596043, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161596043", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Property Company", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76256/161596043/76256_LET170075_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.134490", - "last_seen": "2025-06-01T22:05:54.455656", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118289, - 51.563602 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161596253", - "info": { - "identifier": 161596253, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161596253", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29165/161596253/29165_BRN240197_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.251918", - "last_seen": "2025-06-01T22:05:38.487932", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16926, - 51.64971 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2255.0, - "url": "https://www.rightmove.co.uk/properties/161596271", - "info": { - "identifier": 161596271, - "sqm_ocr": null, - "price": 2255.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161596271", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237557/161596271/237557_P66013_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.324432", - "last_seen": "2025-06-01T22:06:07.747301", - "price": 2255.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18892, - 51.36037 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.1, - "qmprice": 43.87, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161596829", - "info": { - "identifier": 161596829, - "sqm_ocr": 66.1, - "price": 2900.0, - "price_per_sqm": 43.872919818456886, - "url": "https://www.rightmove.co.uk/properties/161596829", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Unihood", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289043/161596829/289043_166HartingtonsCourt_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.055779", - "last_seen": "2025-06-01T22:05:47.408533", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09318, - 51.56997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161596901", - "info": { - "identifier": 161596901, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161596901", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Choices", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12401/161596901/12401_CYL250013_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.835049", - "last_seen": "2025-06-01T22:05:43.746632", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09631, - 51.36213 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3822.0, - "url": "https://www.rightmove.co.uk/properties/161597258", - "info": { - "identifier": 161597258, - "sqm_ocr": null, - "price": 3822.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161597258", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/161597258/146147_PR191349_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.037366", - "last_seen": "2025-06-01T22:05:49.136908", - "price": 3822 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222748, - 51.51108 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161597369", - "info": { - "identifier": 161597369, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161597369", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Sinton Andrews", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13712/161597369/13712_SINT_004389_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.076053", - "last_seen": "2025-06-01T22:05:44.078349", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303463, - 51.522457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161597567", - "info": { - "identifier": 161597567, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161597567", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/161597567/80105_9049_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.218207", - "last_seen": "2025-06-01T22:05:41.199567", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.263139, - 51.594055 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 35.69, - "rooms": 2, - "total_price": 2427.0, - "url": "https://www.rightmove.co.uk/properties/161597867", - "info": { - "identifier": 161597867, - "sqm_ocr": 68.0, - "price": 2427.0, - "price_per_sqm": 35.69117647058823, - "url": "https://www.rightmove.co.uk/properties/161597867", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Garrett Whitelock", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105305/161597867/105305_101341001740_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.911864", - "last_seen": "2025-06-01T22:06:04.962487", - "price": 2426 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06356, - 51.48927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.3, - "qmprice": 79.39, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/161597996", - "info": { - "identifier": 161597996, - "sqm_ocr": 42.3, - "price": 3358.0, - "price_per_sqm": 79.38534278959811, - "url": "https://www.rightmove.co.uk/properties/161597996", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62293/161597996/62293_33864813_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.594964", - "last_seen": "2025-06-01T22:06:14.960399", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159164, - 51.524345 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.5, - "qmprice": 42.52, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161598200", - "info": { - "identifier": 161598200, - "sqm_ocr": 63.5, - "price": 2700.0, - "price_per_sqm": 42.51968503937008, - "url": "https://www.rightmove.co.uk/properties/161598200", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Rentd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230333/161598200/230333_hawL6bgPn4alKkFYUtNw_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.677517", - "last_seen": "2025-06-01T22:05:45.110427", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.309345, - 51.517784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.5, - "qmprice": 43.05, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161598341", - "info": { - "identifier": 161598341, - "sqm_ocr": 75.5, - "price": 3250.0, - "price_per_sqm": 43.04635761589404, - "url": "https://www.rightmove.co.uk/properties/161598341", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/141k/140183/161598341/140183_QPL250066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.874102", - "last_seen": "2025-06-01T22:05:41.002730", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203183, - 51.533806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161598518", - "info": { - "identifier": 161598518, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161598518", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161598518/17888_39721_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.470484", - "last_seen": "2025-06-01T22:05:42.561380", - "price": 2500 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14832, - 51.5445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.4, - "qmprice": 35.61, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161598521", - "info": { - "identifier": 161598521, - "sqm_ocr": 67.4, - "price": 2400.0, - "price_per_sqm": 35.60830860534124, - "url": "https://www.rightmove.co.uk/properties/161598521", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89228/161598521/89228_WCL200364_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.340146", - "last_seen": "2025-06-01T22:05:40.734330", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285251, - 51.557392 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.6, - "qmprice": 44.1, - "rooms": 3, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/161598695", - "info": { - "identifier": 161598695, - "sqm_ocr": 56.6, - "price": 2496.0, - "price_per_sqm": 44.09893992932862, - "url": "https://www.rightmove.co.uk/properties/161598695", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/161598695/105856_3360_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.522219", - "last_seen": "2025-06-01T22:06:06.453073", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06941, - 51.500282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.2, - "qmprice": 36.38, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161599013", - "info": { - "identifier": 161599013, - "sqm_ocr": 96.2, - "price": 3500.0, - "price_per_sqm": 36.38253638253638, - "url": "https://www.rightmove.co.uk/properties/161599013", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Latymers Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74302/161599013/74302_LATYM_000287_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.049715", - "last_seen": "2025-06-01T22:05:49.154477", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214994, - 51.494896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.81, - "qmprice": 29.94, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161599139", - "info": { - "identifier": 161599139, - "sqm_ocr": 76.81, - "price": 2300.0, - "price_per_sqm": 29.94401770602786, - "url": "https://www.rightmove.co.uk/properties/161599139", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/115k/114493/161599139/114493_P300186_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.947480", - "last_seen": "2025-06-01T22:05:45.452501", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1359, - 51.65779 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.1, - "qmprice": 21.21, - "rooms": 4, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161599745", - "info": { - "identifier": 161599745, - "sqm_ocr": 106.1, - "price": 2250.0, - "price_per_sqm": 21.20640904806786, - "url": "https://www.rightmove.co.uk/properties/161599745", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33947/161599745/33947_05041304_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.028158", - "last_seen": "2025-06-01T22:05:51.833117", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.403, - 51.446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.9, - "qmprice": 40.68, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161600093", - "info": { - "identifier": 161600093, - "sqm_ocr": 79.9, - "price": 3250.0, - "price_per_sqm": 40.675844806007504, - "url": "https://www.rightmove.co.uk/properties/161600093", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111325/161600093/111325_KDP180023_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.379857", - "last_seen": "2025-06-01T22:05:49.813105", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145231, - 51.574192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.0, - "qmprice": 40.82, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161600111", - "info": { - "identifier": 161600111, - "sqm_ocr": 49.0, - "price": 2000.0, - "price_per_sqm": 40.816326530612244, - "url": "https://www.rightmove.co.uk/properties/161600111", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/161600111/15948_1325201_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.776407", - "last_seen": "2025-06-01T22:05:48.413481", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222586, - 51.480732 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.43, - "qmprice": 39.45, - "rooms": 2, - "total_price": 2384.0, - "url": "https://www.rightmove.co.uk/properties/161600399", - "info": { - "identifier": 161600399, - "sqm_ocr": 60.43, - "price": 2384.0, - "price_per_sqm": 39.45060400463346, - "url": "https://www.rightmove.co.uk/properties/161600399", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/161600399/111056_1325288_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.457738", - "last_seen": "2025-06-01T20:19:59.387276", - "price": 2384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058738, - 51.50598 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.3, - "qmprice": 28.87, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/161600423", - "info": { - "identifier": 161600423, - "sqm_ocr": 74.3, - "price": 2145.0, - "price_per_sqm": 28.869448183041722, - "url": "https://www.rightmove.co.uk/properties/161600423", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/161600423/15957_1321647_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.654559", - "last_seen": "2025-06-01T22:05:41.994498", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171341, - 51.54248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.29, - "qmprice": 50.55, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161600453", - "info": { - "identifier": 161600453, - "sqm_ocr": 64.29, - "price": 3250.0, - "price_per_sqm": 50.55218540986156, - "url": "https://www.rightmove.co.uk/properties/161600453", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/161600453/15954_1325297_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.552115", - "last_seen": "2025-06-01T22:05:52.924670", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118009, - 51.548615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.5, - "qmprice": 46.1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161600516", - "info": { - "identifier": 161600516, - "sqm_ocr": 70.5, - "price": 3250.0, - "price_per_sqm": 46.09929078014184, - "url": "https://www.rightmove.co.uk/properties/161600516", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161600516/16050_1325306_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.872966", - "last_seen": "2025-06-01T22:06:09.585456", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008889, - 51.524246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.6, - "qmprice": 32.51, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161600522", - "info": { - "identifier": 161600522, - "sqm_ocr": 64.6, - "price": 2100.0, - "price_per_sqm": 32.5077399380805, - "url": "https://www.rightmove.co.uk/properties/161600522", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212357/161600522/212357_P160657_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.420795", - "last_seen": "2025-06-01T22:05:46.424449", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01547, - 51.47875 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.5, - "qmprice": 32.62, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161600525", - "info": { - "identifier": 161600525, - "sqm_ocr": 70.5, - "price": 2300.0, - "price_per_sqm": 32.6241134751773, - "url": "https://www.rightmove.co.uk/properties/161600525", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161600525/16050_1325307_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.845924", - "last_seen": "2025-06-01T22:06:09.557582", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008889, - 51.524246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.6, - "qmprice": 44.38, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161600801", - "info": { - "identifier": 161600801, - "sqm_ocr": 67.6, - "price": 3000.0, - "price_per_sqm": 44.37869822485207, - "url": "https://www.rightmove.co.uk/properties/161600801", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157376/161600801/157376_33865026_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.258916", - "last_seen": "2025-06-01T22:05:47.395972", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088533, - 51.535618 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161600942", - "info": { - "identifier": 161600942, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161600942", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89228/161600942/89228_WCL250083_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.399939", - "last_seen": "2025-06-01T22:05:40.056171", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.282059, - 51.559563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.1, - "qmprice": 36.48, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161601167", - "info": { - "identifier": 161601167, - "sqm_ocr": 89.1, - "price": 3250.0, - "price_per_sqm": 36.47586980920315, - "url": "https://www.rightmove.co.uk/properties/161601167", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49030/161601167/49030_WML230136_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.832979", - "last_seen": "2025-06-01T22:06:01.390613", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191836, - 51.4192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.2, - "qmprice": 36.01, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161601281", - "info": { - "identifier": 161601281, - "sqm_ocr": 72.2, - "price": 2600.0, - "price_per_sqm": 36.01108033240997, - "url": "https://www.rightmove.co.uk/properties/161601281", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84794/161601281/84794_33865065_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.774187", - "last_seen": "2025-06-01T22:05:49.347576", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195485, - 51.48227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.6, - "qmprice": 44.38, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161601305", - "info": { - "identifier": 161601305, - "sqm_ocr": 67.6, - "price": 3000.0, - "price_per_sqm": 44.37869822485207, - "url": "https://www.rightmove.co.uk/properties/161601305", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/161601305/198539_33865069_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.344990", - "last_seen": "2025-06-01T22:05:47.940037", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088533, - 51.535618 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/161601503", - "info": { - "identifier": 161601503, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161601503", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286493/161601503/286493_33854633_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.335000", - "last_seen": "2025-06-01T22:06:05.230596", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.049649, - 51.501633 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161601713", - "info": { - "identifier": 161601713, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161601713", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/161601713/95098_P299112_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.278030", - "last_seen": "2025-06-01T22:05:46.727506", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06565, - 51.48599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161601911", - "info": { - "identifier": 161601911, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161601911", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Statons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30912/161601911/30912_LET200116_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.871296", - "last_seen": "2025-06-01T22:05:45.856844", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155305, - 51.662537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 31.51, - "rooms": 2, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/161601959", - "info": { - "identifier": 161601959, - "sqm_ocr": 76.0, - "price": 2395.0, - "price_per_sqm": 31.513157894736842, - "url": "https://www.rightmove.co.uk/properties/161601959", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/161601959/52887_33865129_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.791884", - "last_seen": "2025-06-01T22:06:12.762606", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213018, - 51.438553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.24, - "qmprice": 27.03, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161602238", - "info": { - "identifier": 161602238, - "sqm_ocr": 120.24, - "price": 3250.0, - "price_per_sqm": 27.029274783765803, - "url": "https://www.rightmove.co.uk/properties/161602238", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84803/161602238/84803_33865154_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.091880", - "last_seen": "2025-06-01T22:06:12.242830", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.230521, - 51.46289 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161602463", - "info": { - "identifier": 161602463, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161602463", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Seymours Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70149/161602463/70149_2672050_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.804821", - "last_seen": "2025-06-01T22:05:58.916887", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29715, - 51.39011 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161603402", - "info": { - "identifier": 161603402, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161603402", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "GCP", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/196k/195305/161603402/195305_1201Boston_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.782038", - "last_seen": "2025-06-01T22:05:40.606120", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27554, - 51.55553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.9, - "qmprice": 29.79, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161603426", - "info": { - "identifier": 161603426, - "sqm_ocr": 125.9, - "price": 3750.0, - "price_per_sqm": 29.78554408260524, - "url": "https://www.rightmove.co.uk/properties/161603426", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77493/161603426/77493_SXX120588_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.774764", - "last_seen": "2025-06-01T22:05:53.400103", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088121, - 51.526295 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161603438", - "info": { - "identifier": 161603438, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161603438", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Eden Harper", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/32k/31836/161603438/31836_33865225_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.282606", - "last_seen": "2025-06-01T22:05:59.471418", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107346, - 51.44278 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.4, - "qmprice": 30.58, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161603597", - "info": { - "identifier": 161603597, - "sqm_ocr": 65.4, - "price": 2000.0, - "price_per_sqm": 30.58103975535168, - "url": "https://www.rightmove.co.uk/properties/161603597", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224513/161603597/224513_P366910_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.495509", - "last_seen": "2025-06-01T22:06:03.367767", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02154, - 51.50816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161603738", - "info": { - "identifier": 161603738, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161603738", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/161603738/222842_TCT250284_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.980137", - "last_seen": "2025-06-01T22:05:53.230838", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091153, - 51.526775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3625.0, - "url": "https://www.rightmove.co.uk/properties/161603771", - "info": { - "identifier": 161603771, - "sqm_ocr": null, - "price": 3625.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161603771", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Austin Homes London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105559/161603771/105559_5514fa46-6508-40b0-a9b8-f3ada3b304b9_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.006233", - "last_seen": "2025-06-01T22:05:53.178032", - "price": 3625.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097344, - 51.52754 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.0, - "qmprice": 21.38, - "rooms": 2, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/161603975", - "info": { - "identifier": 161603975, - "sqm_ocr": 112.0, - "price": 2395.0, - "price_per_sqm": 21.383928571428573, - "url": "https://www.rightmove.co.uk/properties/161603975", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Devenports", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242942/161603975/242942_TWD250317_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.301866", - "last_seen": "2025-06-01T22:06:04.418006", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35675, - 51.42563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161603996", - "info": { - "identifier": 161603996, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161603996", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22029/161603996/22029_CSV172025_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.113158", - "last_seen": "2025-06-01T22:05:58.350766", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212093, - 51.511658 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.8, - "qmprice": 35.43, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161604017", - "info": { - "identifier": 161604017, - "sqm_ocr": 98.8, - "price": 3500.0, - "price_per_sqm": 35.4251012145749, - "url": "https://www.rightmove.co.uk/properties/161604017", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161604017/55101_1325331_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.956676", - "last_seen": "2025-06-01T22:06:04.928471", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090095, - 51.497128 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.34, - "qmprice": 50.0, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161604083", - "info": { - "identifier": 161604083, - "sqm_ocr": 69.34, - "price": 3467.0, - "price_per_sqm": 50.0, - "url": "https://www.rightmove.co.uk/properties/161604083", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/161604083/15948_1325323_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.547274", - "last_seen": "2025-06-01T22:05:48.698904", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182607, - 51.473583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161605094", - "info": { - "identifier": 161605094, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161605094", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Property Company Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/230k/229163/161605094/229163_17618433_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.358327", - "last_seen": "2025-06-01T22:05:41.583999", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.010514, - 51.391476 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 50.66, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/161605862", - "info": { - "identifier": 161605862, - "sqm_ocr": 68.0, - "price": 3445.0, - "price_per_sqm": 50.661764705882355, - "url": "https://www.rightmove.co.uk/properties/161605862", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Complete Prime Residential Ltd", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53946/161605862/53946_46063_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.251195", - "last_seen": "2025-06-01T22:06:15.391832", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171203, - 51.5192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161606084", - "info": { - "identifier": 161606084, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161606084", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/161606084/238841_P300158_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.801642", - "last_seen": "2025-06-01T22:05:46.555643", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05982, - 51.49418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161606729", - "info": { - "identifier": 161606729, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161606729", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Surrey Quays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60474/161606729/60474_SQ07052025AK_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.829067", - "last_seen": "2025-06-01T22:06:00.301807", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03783, - 51.49145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 132.38, - "qmprice": 30.22, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161607101", - "info": { - "identifier": 161607101, - "sqm_ocr": 132.38, - "price": 4000.0, - "price_per_sqm": 30.216044719746186, - "url": "https://www.rightmove.co.uk/properties/161607101", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Wayne & Silver", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91636/161607101/91636_33851482_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.285057", - "last_seen": "2025-06-01T22:05:43.131789", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202897, - 51.549633 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.0, - "qmprice": 39.62, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161607341", - "info": { - "identifier": 161607341, - "sqm_ocr": 53.0, - "price": 2100.0, - "price_per_sqm": 39.62264150943396, - "url": "https://www.rightmove.co.uk/properties/161607341", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Akelius Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102505/161607341/102505_40031-32_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.322159", - "last_seen": "2025-06-01T22:06:08.655244", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04968, - 51.5242 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.0, - "qmprice": 23.58, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161607779", - "info": { - "identifier": 161607779, - "sqm_ocr": 106.0, - "price": 2500.0, - "price_per_sqm": 23.58490566037736, - "url": "https://www.rightmove.co.uk/properties/161607779", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Novus Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94804/161607779/94804_charter9_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.047592", - "last_seen": "2025-06-01T22:05:45.522567", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12988, - 51.63908 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/161608304", - "info": { - "identifier": 161608304, - "sqm_ocr": null, - "price": 2990.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161608304", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Stonebridge Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214412/161608304/214412_3285_STOB_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.894001", - "last_seen": "2025-06-01T22:06:04.006691", - "price": 2990.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.105184, - 51.604706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161608637", - "info": { - "identifier": 161608637, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161608637", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Agency Group", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79431/161608637/79431_RX576704_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.248373", - "last_seen": "2025-06-01T22:06:13.995558", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21573, - 51.4435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 33.56, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161608850", - "info": { - "identifier": 161608850, - "sqm_ocr": 73.0, - "price": 2450.0, - "price_per_sqm": 33.56164383561644, - "url": "https://www.rightmove.co.uk/properties/161608850", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "NEXIS Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272531/161608850/272531_MYR240067_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.939282", - "last_seen": "2025-06-01T22:05:41.129099", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276438, - 51.56092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.2, - "qmprice": 49.1, - "rooms": 2, - "total_price": 2514.0, - "url": "https://www.rightmove.co.uk/properties/161609096", - "info": { - "identifier": 161609096, - "sqm_ocr": 51.2, - "price": 2514.0, - "price_per_sqm": 49.1015625, - "url": "https://www.rightmove.co.uk/properties/161609096", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/161609096/15948_1325333_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.067668", - "last_seen": "2025-06-01T22:05:49.298623", - "price": 2514.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201329, - 51.47604 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.9, - "qmprice": 30.9, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161609192", - "info": { - "identifier": 161609192, - "sqm_ocr": 80.9, - "price": 2500.0, - "price_per_sqm": 30.902348578491964, - "url": "https://www.rightmove.co.uk/properties/161609192", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Hub Of Homes", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281309/161609192/281309_24792_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.180912", - "last_seen": "2025-06-01T22:06:04.277205", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.260541, - 51.467373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.5, - "qmprice": 21.6, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161609201", - "info": { - "identifier": 161609201, - "sqm_ocr": 106.5, - "price": 2300.0, - "price_per_sqm": 21.5962441314554, - "url": "https://www.rightmove.co.uk/properties/161609201", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80716/161609201/80716_100510000445_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.714136", - "last_seen": "2025-06-01T22:05:43.462807", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08055, - 51.41392 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161609204", - "info": { - "identifier": 161609204, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161609204", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Holland Properties", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36516/161609204/36516_1198_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.906385", - "last_seen": "2025-06-01T22:06:09.619598", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025109, - 51.502655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.4, - "qmprice": 44.38, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/161609729", - "info": { - "identifier": 161609729, - "sqm_ocr": 66.4, - "price": 2947.0, - "price_per_sqm": 44.382530120481924, - "url": "https://www.rightmove.co.uk/properties/161609729", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/161609729/15960_1323729_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.637736", - "last_seen": "2025-06-01T22:06:14.744910", - "price": 2947.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177894, - 51.53257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 47.76, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161610113", - "info": { - "identifier": 161610113, - "sqm_ocr": 67.0, - "price": 3200.0, - "price_per_sqm": 47.76119402985075, - "url": "https://www.rightmove.co.uk/properties/161610113", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/161610113/15951_1325347_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.295459", - "last_seen": "2025-06-01T22:05:44.350445", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269741, - 51.498386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.25, - "qmprice": 49.83, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161610284", - "info": { - "identifier": 161610284, - "sqm_ocr": 75.25, - "price": 3750.0, - "price_per_sqm": 49.83388704318937, - "url": "https://www.rightmove.co.uk/properties/161610284", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Orlando Reid", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86327/161610284/86327_33865645_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.944612", - "last_seen": "2025-06-01T22:06:14.132896", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148369, - 51.48048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 46.05, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161610311", - "info": { - "identifier": 161610311, - "sqm_ocr": 76.0, - "price": 3500.0, - "price_per_sqm": 46.05263157894737, - "url": "https://www.rightmove.co.uk/properties/161610311", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Pomp Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117175/161610311/117175_33865648_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.235749", - "last_seen": "2025-06-01T22:05:58.014859", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183552, - 51.49892 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 35.82, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161610545", - "info": { - "identifier": 161610545, - "sqm_ocr": 67.0, - "price": 2400.0, - "price_per_sqm": 35.82089552238806, - "url": "https://www.rightmove.co.uk/properties/161610545", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210116/161610545/210116_P299769_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.357547", - "last_seen": "2025-06-01T22:05:40.716813", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21435, - 51.54877 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.43, - "qmprice": 35.24, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/161610566", - "info": { - "identifier": 161610566, - "sqm_ocr": 79.43, - "price": 2799.0, - "price_per_sqm": 35.23857484577615, - "url": "https://www.rightmove.co.uk/properties/161610566", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/161610566/136139_2504203_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.043695", - "last_seen": "2025-06-01T22:06:02.637861", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.006329, - 51.513695 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.1, - "qmprice": 37.02, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161611283", - "info": { - "identifier": 161611283, - "sqm_ocr": 76.1, - "price": 2817.0, - "price_per_sqm": 37.01708278580815, - "url": "https://www.rightmove.co.uk/properties/161611283", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62293/161611283/62293_33858623_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.719720", - "last_seen": "2025-06-01T22:06:15.130810", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164288, - 51.524445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2475.0, - "url": "https://www.rightmove.co.uk/properties/161611322", - "info": { - "identifier": 161611322, - "sqm_ocr": null, - "price": 2475.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161611322", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/128k/127549/161611322/127549_P292942_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.361239", - "last_seen": "2025-06-01T22:06:13.976721", - "price": 2475.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18652, - 51.4362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161611388", - "info": { - "identifier": 161611388, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161611388", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hanover", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74440/161611388/74440_HNV070182_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.997842", - "last_seen": "2025-06-01T22:06:15.986806", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175556, - 51.536873 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161611493", - "info": { - "identifier": 161611493, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161611493", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161611493/17888_36346_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.010567", - "last_seen": "2025-06-01T22:05:42.753613", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14508, - 51.53924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.17, - "qmprice": 29.7, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161611943", - "info": { - "identifier": 161611943, - "sqm_ocr": 84.17, - "price": 2500.0, - "price_per_sqm": 29.701793988356897, - "url": "https://www.rightmove.co.uk/properties/161611943", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/161611943/51286_CHD250009_L_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.988393", - "last_seen": "2025-06-01T22:05:49.132742", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.235197, - 51.510845 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161612603", - "info": { - "identifier": 161612603, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161612603", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/125k/124951/161612603/124951_P1571F2718_IMG_00_0000_max_656x437.png", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.211804", - "last_seen": "2025-06-01T22:05:52.371825", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277, - 51.49395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161612984", - "info": { - "identifier": 161612984, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161612984", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Cranbrook Lettings & Sales", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/237k/236963/161612984/236963_cranbrook_1827188465_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.078371", - "last_seen": "2025-06-01T22:05:38.329313", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.089026, - 51.5396 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.65, - "qmprice": 24.38, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161613545", - "info": { - "identifier": 161613545, - "sqm_ocr": 106.65, - "price": 2600.0, - "price_per_sqm": 24.37880918893577, - "url": "https://www.rightmove.co.uk/properties/161613545", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112924/161613545/112924_P300084_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.318447", - "last_seen": "2025-06-01T22:05:47.020848", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07192, - 51.49406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.8, - "qmprice": 47.16, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161613671", - "info": { - "identifier": 161613671, - "sqm_ocr": 75.8, - "price": 3575.0, - "price_per_sqm": 47.163588390501324, - "url": "https://www.rightmove.co.uk/properties/161613671", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/161613671/65124_CEE240483_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.545860", - "last_seen": "2025-06-01T22:06:06.086366", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09652, - 51.492657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161613728", - "info": { - "identifier": 161613728, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161613728", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Ak247 Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261134/161613728/261134_71north_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.917166", - "last_seen": "2025-06-01T22:05:41.101458", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27648, - 51.56111 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.43, - "qmprice": 27.84, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161613977", - "info": { - "identifier": 161613977, - "sqm_ocr": 75.43, - "price": 2100.0, - "price_per_sqm": 27.840381810950547, - "url": "https://www.rightmove.co.uk/properties/161613977", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26204/161613977/26204_33865861_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.387097", - "last_seen": "2025-06-01T22:06:01.253357", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198608, - 51.41571 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.3, - "qmprice": 26.37, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161614475", - "info": { - "identifier": 161614475, - "sqm_ocr": 104.3, - "price": 2750.0, - "price_per_sqm": 26.366251198465964, - "url": "https://www.rightmove.co.uk/properties/161614475", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "EweMove", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264530/161614475/264530_10406787_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.782386", - "last_seen": "2025-06-01T22:06:11.638092", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01527, - 51.555664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.9, - "qmprice": 59.5, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161614523", - "info": { - "identifier": 161614523, - "sqm_ocr": 61.9, - "price": 3683.0, - "price_per_sqm": 59.49919224555735, - "url": "https://www.rightmove.co.uk/properties/161614523", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Lexstone Global", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271157/161614523/271157_Southkensington_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.981923", - "last_seen": "2025-06-01T22:05:57.414529", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18135, - 51.49376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.2, - "qmprice": 41.53, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161614676", - "info": { - "identifier": 161614676, - "sqm_ocr": 60.2, - "price": 2500.0, - "price_per_sqm": 41.52823920265781, - "url": "https://www.rightmove.co.uk/properties/161614676", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279227/161614676/279227_WLS230109_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.272122", - "last_seen": "2025-06-01T22:06:12.962742", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17149, - 51.439297 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.4, - "qmprice": 50.88, - "rooms": 3, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/161614868", - "info": { - "identifier": 161614868, - "sqm_ocr": 72.4, - "price": 3684.0, - "price_per_sqm": 50.88397790055248, - "url": "https://www.rightmove.co.uk/properties/161614868", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/161614868/76585_1325352_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.909708", - "last_seen": "2025-06-01T22:06:15.703093", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142588, - 51.5184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 51.15, - "rooms": 2, - "total_price": 3857.0, - "url": "https://www.rightmove.co.uk/properties/161615012", - "info": { - "identifier": 161615012, - "sqm_ocr": 75.4, - "price": 3857.0, - "price_per_sqm": 51.15384615384615, - "url": "https://www.rightmove.co.uk/properties/161615012", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/161615012/65124_CEA230002_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.921293", - "last_seen": "2025-06-01T22:06:06.376010", - "price": 3856 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096477, - 51.492928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.5, - "qmprice": 44.22, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161616179", - "info": { - "identifier": 161616179, - "sqm_ocr": 73.5, - "price": 3250.0, - "price_per_sqm": 44.21768707482993, - "url": "https://www.rightmove.co.uk/properties/161616179", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6073/161616179/6073_33865942_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.846750", - "last_seen": "2025-06-01T22:05:53.869006", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09569, - 51.52633 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.34, - "qmprice": 42.54, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161616266", - "info": { - "identifier": 161616266, - "sqm_ocr": 69.34, - "price": 2950.0, - "price_per_sqm": 42.543986155177386, - "url": "https://www.rightmove.co.uk/properties/161616266", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/146k/145463/161616266/145463_WLS240569_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.219655", - "last_seen": "2025-06-01T22:06:12.538272", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182972, - 51.464672 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161616446", - "info": { - "identifier": 161616446, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161616446", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/161616446/228512_33865967_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.425999", - "last_seen": "2025-06-01T22:05:39.751553", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.256455, - 51.62285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.24, - "qmprice": 34.49, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161616488", - "info": { - "identifier": 161616488, - "sqm_ocr": 94.24, - "price": 3250.0, - "price_per_sqm": 34.48641765704584, - "url": "https://www.rightmove.co.uk/properties/161616488", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "TK International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66289/161616488/66289_33865965_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.472398", - "last_seen": "2025-06-01T22:06:15.698861", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175263, - 51.53095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161616545", - "info": { - "identifier": 161616545, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161616545", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Huddletons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57234/161616545/57234_33865972_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.832792", - "last_seen": "2025-06-01T22:05:50.197959", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126873, - 51.577347 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 142.3, - "qmprice": 22.84, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161616764", - "info": { - "identifier": 161616764, - "sqm_ocr": 142.3, - "price": 3250.0, - "price_per_sqm": 22.839072382290933, - "url": "https://www.rightmove.co.uk/properties/161616764", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267758/161616764/267758_HHL250016_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.051521", - "last_seen": "2025-06-01T22:06:05.043954", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096661, - 51.454548 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.14, - "qmprice": 42.68, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161616794", - "info": { - "identifier": 161616794, - "sqm_ocr": 76.14, - "price": 3250.0, - "price_per_sqm": 42.684528500131336, - "url": "https://www.rightmove.co.uk/properties/161616794", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157376/161616794/157376_33865993_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.110774", - "last_seen": "2025-06-01T22:06:08.150481", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052982, - 51.531387 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 41.56, - "rooms": 2, - "total_price": 2905.0, - "url": "https://www.rightmove.co.uk/properties/161616827", - "info": { - "identifier": 161616827, - "sqm_ocr": 69.9, - "price": 2905.0, - "price_per_sqm": 41.55937052932761, - "url": "https://www.rightmove.co.uk/properties/161616827", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/161616827/281129_070502_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.580705", - "last_seen": "2025-06-01T22:05:38.898502", - "price": 2905.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22111, - 51.57144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161617073", - "info": { - "identifier": 161617073, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161617073", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112924/161617073/112924_P300210_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.387416", - "last_seen": "2025-06-01T22:05:46.392231", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06565, - 51.48599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 40.12, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161618291", - "info": { - "identifier": 161618291, - "sqm_ocr": 81.0, - "price": 3250.0, - "price_per_sqm": 40.123456790123456, - "url": "https://www.rightmove.co.uk/properties/161618291", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49012/161618291/49012_ISL250030_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.139074", - "last_seen": "2025-06-01T22:05:47.870110", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088936, - 51.57249 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/161618552", - "info": { - "identifier": 161618552, - "sqm_ocr": null, - "price": 2695.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161618552", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Leo Newman", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98603/161618552/98603_2447671_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.368313", - "last_seen": "2025-06-01T22:06:14.439539", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16754, - 51.51855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161618675", - "info": { - "identifier": 161618675, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161618675", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Robert Lehrer Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57714/161618675/57714_ROBEL_002877_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.549703", - "last_seen": "2025-06-01T22:05:49.726149", - "price": 3349 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141357, - 51.57033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.25, - "qmprice": 27.3, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161618894", - "info": { - "identifier": 161618894, - "sqm_ocr": 84.25, - "price": 2300.0, - "price_per_sqm": 27.299703264094955, - "url": "https://www.rightmove.co.uk/properties/161618894", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242966/161618894/242966_P140967_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.678253", - "last_seen": "2025-06-01T22:05:39.424583", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24732, - 51.59581 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 30.99, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161619116", - "info": { - "identifier": 161619116, - "sqm_ocr": 71.0, - "price": 2200.0, - "price_per_sqm": 30.985915492957748, - "url": "https://www.rightmove.co.uk/properties/161619116", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Filtons Stratford Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49212/161619116/49212_46John_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.433569", - "last_seen": "2025-06-01T22:06:07.319907", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01249, - 51.53068 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3495.0, - "url": "https://www.rightmove.co.uk/properties/161619392", - "info": { - "identifier": 161619392, - "sqm_ocr": null, - "price": 3495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161619392", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161619392/96668_243346628032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.937998", - "last_seen": "2025-06-01T22:05:47.812563", - "price": 3495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052873, - 51.55835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 130.8, - "qmprice": 17.58, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161619836", - "info": { - "identifier": 161619836, - "sqm_ocr": 130.8, - "price": 2300.0, - "price_per_sqm": 17.584097859327215, - "url": "https://www.rightmove.co.uk/properties/161619836", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46992/161619836/46992_33866196_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.701149", - "last_seen": "2025-06-01T22:05:51.592598", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.453247, - 51.53142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161620037", - "info": { - "identifier": 161620037, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161620037", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161620037/96668_247376106052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.116195", - "last_seen": "2025-06-01T22:05:59.204171", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118, - 51.46614 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161620085", - "info": { - "identifier": 161620085, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161620085", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161620085/96668_247445706052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.863960", - "last_seen": "2025-06-01T22:06:00.434522", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005731, - 51.464073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161620211", - "info": { - "identifier": 161620211, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161620211", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161620211/96668_247414306052025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.904535", - "last_seen": "2025-06-01T22:06:00.733194", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.003974, - 51.4683 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161620529", - "info": { - "identifier": 161620529, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161620529", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161620529/96668_247233704052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.931425", - "last_seen": "2025-06-01T22:05:57.199784", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053791, - 51.538906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161620616", - "info": { - "identifier": 161620616, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161620616", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161620616/96668_112275331052021_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.412107", - "last_seen": "2025-06-01T22:06:12.995417", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222257, - 51.4429 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/161620661", - "info": { - "identifier": 161620661, - "sqm_ocr": null, - "price": 2295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161620661", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161620661/96668_219231116082024_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.696639", - "last_seen": "2025-06-01T22:05:40.460399", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.230229, - 51.54652 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/161620970", - "info": { - "identifier": 161620970, - "sqm_ocr": null, - "price": 2595.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161620970", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Dayfields", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58157/161620970/58157_amb_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.967977", - "last_seen": "2025-06-01T22:05:45.480216", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03877, - 51.65396 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.0, - "qmprice": 47.27, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161621162", - "info": { - "identifier": 161621162, - "sqm_ocr": 55.0, - "price": 2600.0, - "price_per_sqm": 47.27272727272727, - "url": "https://www.rightmove.co.uk/properties/161621162", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161621162/55101_1323221_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.316567", - "last_seen": "2025-06-01T22:06:05.266230", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07187, - 51.48897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/161621234", - "info": { - "identifier": 161621234, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161621234", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43766/161621234/43766_P300207_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.552933", - "last_seen": "2025-06-01T22:05:48.694768", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22554, - 51.48725 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.3, - "qmprice": 20.48, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161621315", - "info": { - "identifier": 161621315, - "sqm_ocr": 112.3, - "price": 2300.0, - "price_per_sqm": 20.480854853072127, - "url": "https://www.rightmove.co.uk/properties/161621315", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Cray & Norton Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/32k/31313/161621315/31313_CRNO_004114_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.640259", - "last_seen": "2025-06-01T22:05:43.445026", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06223, - 51.380833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161621522", - "info": { - "identifier": 161621522, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161621522", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "UKmate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263912/161621522/263912_ukmate_agent_1746629597_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.428501", - "last_seen": "2025-06-01T22:05:59.902248", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115003, - 51.486378 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161621687", - "info": { - "identifier": 161621687, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161621687", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57916/161621687/57916_KCR250217_L_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.230082", - "last_seen": "2025-06-01T22:05:57.289905", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.070261, - 51.471928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161621789", - "info": { - "identifier": 161621789, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161621789", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Kubie Gold Associates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82958/161621789/82958_29031425_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.196312", - "last_seen": "2025-06-01T22:05:57.727827", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218083, - 51.5094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 43.45, - "rooms": 2, - "total_price": 3085.0, - "url": "https://www.rightmove.co.uk/properties/161622467", - "info": { - "identifier": 161622467, - "sqm_ocr": 71.0, - "price": 3085.0, - "price_per_sqm": 43.45070422535211, - "url": "https://www.rightmove.co.uk/properties/161622467", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Get Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57558/161622467/57558_57558_p0193752_SKYL008D_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.016967", - "last_seen": "2025-06-01T22:06:07.441028", - "price": 3085.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01052, - 51.546146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.6, - "qmprice": 36.47, - "rooms": 4, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/161622596", - "info": { - "identifier": 161622596, - "sqm_ocr": 72.6, - "price": 2648.0, - "price_per_sqm": 36.47382920110193, - "url": "https://www.rightmove.co.uk/properties/161622596", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/161622596/105856_2719_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.472270", - "last_seen": "2025-06-01T22:06:07.177701", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099661, - 51.482697 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.4, - "qmprice": 40.86, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161622962", - "info": { - "identifier": 161622962, - "sqm_ocr": 73.4, - "price": 2999.0, - "price_per_sqm": 40.858310626702995, - "url": "https://www.rightmove.co.uk/properties/161622962", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "CHARMILL RESIDENTIAL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233558/161622962/233558_31962932_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.779137", - "last_seen": "2025-06-01T22:06:15.848191", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177715, - 51.52481 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 30.02, - "rooms": 3, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/161623127", - "info": { - "identifier": 161623127, - "sqm_ocr": 83.0, - "price": 2492.0, - "price_per_sqm": 30.02409638554217, - "url": "https://www.rightmove.co.uk/properties/161623127", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Champions", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45441/161623127/45441_4795_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.154815", - "last_seen": "2025-06-01T22:05:44.843224", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28095, - 51.50759 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161623199", - "info": { - "identifier": 161623199, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161623199", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19059/161623199/19059_7313afdd-7499-48df-9834-800d79342259_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.374049", - "last_seen": "2025-06-01T22:05:46.943714", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.021837, - 51.484863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3680.0, - "url": "https://www.rightmove.co.uk/properties/161624048", - "info": { - "identifier": 161624048, - "sqm_ocr": null, - "price": 3680.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161624048", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Urban Bubble", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263291/161624048/263291_LBA31003_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.064091", - "last_seen": "2025-06-01T22:06:00.460678", - "price": 3680.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01376, - 51.46672 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161624300", - "info": { - "identifier": 161624300, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161624300", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Jonathan Arron Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69315/161624300/69315_JOW230181_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.822366", - "last_seen": "2025-06-01T22:05:50.180438", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141086, - 51.570446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.7, - "qmprice": 37.14, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161624468", - "info": { - "identifier": 161624468, - "sqm_ocr": 72.7, - "price": 2700.0, - "price_per_sqm": 37.13892709766162, - "url": "https://www.rightmove.co.uk/properties/161624468", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50951/161624468/50951_P0520F3120_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.124872", - "last_seen": "2025-06-01T22:06:06.597169", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09983, - 51.48294 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 41.63, - "rooms": 2, - "total_price": 2910.0, - "url": "https://www.rightmove.co.uk/properties/161624651", - "info": { - "identifier": 161624651, - "sqm_ocr": 69.9, - "price": 2910.0, - "price_per_sqm": 41.63090128755365, - "url": "https://www.rightmove.co.uk/properties/161624651", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank Lettings (ILM)", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137825/161624651/137825_BIQ012514479_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.567113", - "last_seen": "2025-06-01T22:05:38.869832", - "price": 2910.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22083, - 51.57143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161624768", - "info": { - "identifier": 161624768, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161624768", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161624768/96668_247583407052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:56.762090", - "last_seen": "2025-06-01T20:19:56.762090", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058038, - 51.51335 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/161624876", - "info": { - "identifier": 161624876, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161624876", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/161624876/275489_07052025-CN914_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.804112", - "last_seen": "2025-06-01T22:06:06.295958", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097412, - 51.49174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.92, - "qmprice": 34.81, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161625503", - "info": { - "identifier": 161625503, - "sqm_ocr": 114.92, - "price": 4000.0, - "price_per_sqm": 34.80682213713888, - "url": "https://www.rightmove.co.uk/properties/161625503", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201653/161625503/201653_WLL230070_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.376284", - "last_seen": "2025-06-01T22:05:59.825982", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108942, - 51.494316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.81, - "qmprice": 35.97, - "rooms": 3, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/161625758", - "info": { - "identifier": 161625758, - "sqm_ocr": 109.81, - "price": 3950.0, - "price_per_sqm": 35.97122302158273, - "url": "https://www.rightmove.co.uk/properties/161625758", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/161625758/84827_33866522_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.491870", - "last_seen": "2025-06-01T22:05:48.577824", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208142, - 51.488743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.2, - "qmprice": 65.79, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161625779", - "info": { - "identifier": 161625779, - "sqm_ocr": 53.2, - "price": 3500.0, - "price_per_sqm": 65.78947368421052, - "url": "https://www.rightmove.co.uk/properties/161625779", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218729/161625779/218729_33866526_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.791718", - "last_seen": "2025-06-01T22:05:53.427047", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125188, - 51.558186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.06, - "qmprice": 43.7, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161625845", - "info": { - "identifier": 161625845, - "sqm_ocr": 56.06, - "price": 2450.0, - "price_per_sqm": 43.70317516946129, - "url": "https://www.rightmove.co.uk/properties/161625845", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201653/161625845/201653_WLL210080_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.005977", - "last_seen": "2025-06-01T22:06:00.024441", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.111356, - 51.493763 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.2, - "qmprice": 30.84, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161625950", - "info": { - "identifier": 161625950, - "sqm_ocr": 123.2, - "price": 3800.0, - "price_per_sqm": 30.844155844155843, - "url": "https://www.rightmove.co.uk/properties/161625950", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57991/161625950/57991_KEJ240038_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.065060", - "last_seen": "2025-06-01T22:06:13.372967", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163878, - 51.42185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161625959", - "info": { - "identifier": 161625959, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161625959", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161625959/87187_56847_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.068381", - "last_seen": "2025-06-01T22:06:13.389611", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146402, - 51.479046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161626196", - "info": { - "identifier": 161626196, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161626196", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Messila Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92735/161626196/92735_33813344_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.302409", - "last_seen": "2025-06-01T22:06:15.479358", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175541, - 51.537502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161626202", - "info": { - "identifier": 161626202, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161626202", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/161626202/95098_P300228_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.291917", - "last_seen": "2025-06-01T22:06:03.159933", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02868, - 51.50012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/161626268", - "info": { - "identifier": 161626268, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161626268", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7964/161626268/7964_33866557_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.556516", - "last_seen": "2025-06-01T22:05:44.264310", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.311051, - 51.492954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.2, - "qmprice": 40.14, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161626685", - "info": { - "identifier": 161626685, - "sqm_ocr": 87.2, - "price": 3500.0, - "price_per_sqm": 40.137614678899084, - "url": "https://www.rightmove.co.uk/properties/161626685", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161626685/16050_1325411_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.134814", - "last_seen": "2025-06-01T22:06:11.113600", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067241, - 51.520752 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.0, - "qmprice": 56.6, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161626697", - "info": { - "identifier": 161626697, - "sqm_ocr": 53.0, - "price": 3000.0, - "price_per_sqm": 56.60377358490566, - "url": "https://www.rightmove.co.uk/properties/161626697", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161626697/16050_1325414_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.171091", - "last_seen": "2025-06-01T22:05:47.762586", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076151, - 51.52893 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.88, - "qmprice": 37.75, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161626781", - "info": { - "identifier": 161626781, - "sqm_ocr": 68.88, - "price": 2600.0, - "price_per_sqm": 37.746806039488966, - "url": "https://www.rightmove.co.uk/properties/161626781", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/161626781/15942_1325398_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.082522", - "last_seen": "2025-06-01T22:05:57.545680", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180968, - 51.4804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161626790", - "info": { - "identifier": 161626790, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161626790", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Ivory Real Estate", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82380/161626790/82380_IVG250095_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.360835", - "last_seen": "2025-06-01T22:06:08.735928", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027756, - 51.507206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.5, - "qmprice": 54.25, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/161626826", - "info": { - "identifier": 161626826, - "sqm_ocr": 63.5, - "price": 3445.0, - "price_per_sqm": 54.25196850393701, - "url": "https://www.rightmove.co.uk/properties/161626826", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/161626826/76585_1323841_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.759351", - "last_seen": "2025-06-01T22:06:15.344434", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168927, - 51.520714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 145.8, - "qmprice": 20.58, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161627036", - "info": { - "identifier": 161627036, - "sqm_ocr": 145.8, - "price": 3000.0, - "price_per_sqm": 20.576131687242796, - "url": "https://www.rightmove.co.uk/properties/161627036", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/161627036/130309_1324749_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.567905", - "last_seen": "2025-06-01T22:05:43.518339", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055498, - 51.334347 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161627249", - "info": { - "identifier": 161627249, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161627249", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "relocate-me.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33012/161627249/33012_19583_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.096290", - "last_seen": "2025-06-01T22:05:54.458004", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09687, - 51.52983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.3, - "qmprice": 41.31, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161627615", - "info": { - "identifier": 161627615, - "sqm_ocr": 82.3, - "price": 3400.0, - "price_per_sqm": 41.31227217496963, - "url": "https://www.rightmove.co.uk/properties/161627615", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/161627615/15945_1321422_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.166132", - "last_seen": "2025-06-01T22:05:58.331065", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198347, - 51.508957 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.3, - "qmprice": 35.76, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161627744", - "info": { - "identifier": 161627744, - "sqm_ocr": 78.3, - "price": 2800.0, - "price_per_sqm": 35.759897828863345, - "url": "https://www.rightmove.co.uk/properties/161627744", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118051/161627744/118051_33866648_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.143112", - "last_seen": "2025-06-01T22:06:00.725963", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038859, - 51.467716 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3046.0, - "url": "https://www.rightmove.co.uk/properties/161627780", - "info": { - "identifier": 161627780, - "sqm_ocr": null, - "price": 3046.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161627780", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fyfe McDade Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93194/161627780/93194_BLL0016F0_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.989650", - "last_seen": "2025-06-01T22:05:42.727328", - "price": 3046 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124182, - 51.5259 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161627876", - "info": { - "identifier": 161627876, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161627876", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Hiltons Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.607095", - "last_seen": "2025-06-01T22:05:44.206575", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.38212, - 51.49913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161627960", - "info": { - "identifier": 161627960, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161627960", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51316/161627960/51316_LIL250001_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.315949", - "last_seen": "2025-06-01T22:06:14.296725", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18669, - 51.520473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.0, - "qmprice": 24.3, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161628641", - "info": { - "identifier": 161628641, - "sqm_ocr": 107.0, - "price": 2600.0, - "price_per_sqm": 24.299065420560748, - "url": "https://www.rightmove.co.uk/properties/161628641", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Network Agencies", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53310/161628641/53310_lonsdaledrive313_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.908116", - "last_seen": "2025-06-01T22:05:45.672021", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11794, - 51.64815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.25, - "qmprice": 47.51, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161628683", - "info": { - "identifier": 161628683, - "sqm_ocr": 75.25, - "price": 3575.0, - "price_per_sqm": 47.50830564784053, - "url": "https://www.rightmove.co.uk/properties/161628683", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Regent & Wood", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270854/161628683/270854_78d68d16-c4f0-4ba2-bf03-b19391b0c5bc_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.931008", - "last_seen": "2025-06-01T22:05:42.385253", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138253, - 51.524582 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2125.0, - "url": "https://www.rightmove.co.uk/properties/161628797", - "info": { - "identifier": 161628797, - "sqm_ocr": null, - "price": 2125.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161628797", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "relocate-me.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33012/161628797/33012_52429_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.087460", - "last_seen": "2025-06-01T22:06:03.242556", - "price": 2125.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.036713, - 51.500637 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.63, - "qmprice": 55.17, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161629085", - "info": { - "identifier": 161629085, - "sqm_ocr": 61.63, - "price": 3400.0, - "price_per_sqm": 55.16793769268213, - "url": "https://www.rightmove.co.uk/properties/161629085", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107902/161629085/107902_BZV220275_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.770727", - "last_seen": "2025-06-01T22:05:59.727943", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114823, - 51.505486 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 48.55, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161629112", - "info": { - "identifier": 161629112, - "sqm_ocr": 69.0, - "price": 3350.0, - "price_per_sqm": 48.55072463768116, - "url": "https://www.rightmove.co.uk/properties/161629112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71137/161629112/71137_33866725_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.132930", - "last_seen": "2025-06-01T22:06:06.618985", - "price": 3349 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103842, - 51.502113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.1, - "qmprice": 23.66, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161630231", - "info": { - "identifier": 161630231, - "sqm_ocr": 114.1, - "price": 2700.0, - "price_per_sqm": 23.663453111305873, - "url": "https://www.rightmove.co.uk/properties/161630231", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85706/161630231/85706_KDE240188_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.672190", - "last_seen": "2025-06-01T22:05:43.386925", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080141, - 51.41572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 43.51, - "qmprice": 68.95, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161630279", - "info": { - "identifier": 161630279, - "sqm_ocr": 43.51, - "price": 3000.0, - "price_per_sqm": 68.9496667432774, - "url": "https://www.rightmove.co.uk/properties/161630279", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "tlc Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18984/161630279/18984_ELL180121_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.137817", - "last_seen": "2025-06-01T22:05:57.786311", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196814, - 51.493095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3999.0, - "url": "https://www.rightmove.co.uk/properties/161630762", - "info": { - "identifier": 161630762, - "sqm_ocr": null, - "price": 3999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161630762", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Bamboo Living Management Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272480/161630762/272480_YorkHse_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.050147", - "last_seen": "2025-06-01T22:06:15.839771", - "price": 3999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13646, - 51.51716 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.3, - "qmprice": 55.75, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161630858", - "info": { - "identifier": 161630858, - "sqm_ocr": 58.3, - "price": 3250.0, - "price_per_sqm": 55.746140651801035, - "url": "https://www.rightmove.co.uk/properties/161630858", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Viewit Real Estate", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266159/161630858/266159_RL0046_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.063079", - "last_seen": "2025-06-01T22:06:13.370009", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140086, - 51.4759 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 47.46, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161630867", - "info": { - "identifier": 161630867, - "sqm_ocr": 59.0, - "price": 2800.0, - "price_per_sqm": 47.45762711864407, - "url": "https://www.rightmove.co.uk/properties/161630867", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Viewit Real Estate", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266159/161630867/266159_RL0095_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.751120", - "last_seen": "2025-06-01T22:05:59.709210", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115815, - 51.484924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161631284", - "info": { - "identifier": 161631284, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161631284", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "London House", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287183/161631284/287183_LOH250053_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.001021", - "last_seen": "2025-06-01T22:05:59.016630", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128172, - 51.481453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161631320", - "info": { - "identifier": 161631320, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161631320", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Property Broker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61607/161631320/61607_292609d0-f7e5-4ba3-95b7-0c800fcc653a_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.391052", - "last_seen": "2025-06-01T22:05:46.390355", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02906, - 51.45782 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161631326", - "info": { - "identifier": 161631326, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161631326", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Property Broker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61607/161631326/61607_994499ea-9236-4533-b053-34aa7bf41f6e_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.389187", - "last_seen": "2025-06-01T22:05:46.388153", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02906, - 51.45782 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.26, - "qmprice": 38.55, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161631539", - "info": { - "identifier": 161631539, - "sqm_ocr": 62.26, - "price": 2400.0, - "price_per_sqm": 38.5480244137488, - "url": "https://www.rightmove.co.uk/properties/161631539", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Balgores", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95722/161631539/95722_HOL250032_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.280144", - "last_seen": "2025-06-01T22:05:51.004175", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.252931, - 51.557056 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.5, - "qmprice": 34.29, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/161631749", - "info": { - "identifier": 161631749, - "sqm_ocr": 69.5, - "price": 2383.0, - "price_per_sqm": 34.28776978417266, - "url": "https://www.rightmove.co.uk/properties/161631749", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/161631749/25485_33866868_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.495346", - "last_seen": "2025-06-01T22:05:42.514059", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199717, - 51.554306 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161631986", - "info": { - "identifier": 161631986, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161631986", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Viewit Real Estate", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266159/161631986/266159_RL0109_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.249732", - "last_seen": "2025-06-01T22:06:15.407515", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147505, - 51.4902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161632046", - "info": { - "identifier": 161632046, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161632046", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/161632046/198539_33866889_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.528980", - "last_seen": "2025-06-01T20:19:58.128311", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024649, - 51.50212 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 34.43, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161632151", - "info": { - "identifier": 161632151, - "sqm_ocr": 61.0, - "price": 2100.0, - "price_per_sqm": 34.42622950819672, - "url": "https://www.rightmove.co.uk/properties/161632151", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/161632151/15969_1324965_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.791086", - "last_seen": "2025-06-01T22:05:45.391088", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299731, - 51.511215 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.3, - "qmprice": 27.65, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/161632166", - "info": { - "identifier": 161632166, - "sqm_ocr": 108.3, - "price": 2995.0, - "price_per_sqm": 27.654662973222532, - "url": "https://www.rightmove.co.uk/properties/161632166", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/161632166/98531_1320886_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.803272", - "last_seen": "2025-06-01T22:05:44.554430", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25711, - 51.515682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.3, - "qmprice": 43.34, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161632190", - "info": { - "identifier": 161632190, - "sqm_ocr": 62.3, - "price": 2700.0, - "price_per_sqm": 43.33868378812199, - "url": "https://www.rightmove.co.uk/properties/161632190", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Daniel Watney", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87247/161632190/87247_299548-2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.124219", - "last_seen": "2025-06-01T22:05:53.668848", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120893, - 51.531574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 30.41, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161632211", - "info": { - "identifier": 161632211, - "sqm_ocr": 74.0, - "price": 2250.0, - "price_per_sqm": 30.405405405405407, - "url": "https://www.rightmove.co.uk/properties/161632211", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/161632211/80281_1325326_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.243435", - "last_seen": "2025-06-01T22:06:07.619510", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.006881, - 51.548847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 42.72, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/161632298", - "info": { - "identifier": 161632298, - "sqm_ocr": 71.0, - "price": 3033.0, - "price_per_sqm": 42.71830985915493, - "url": "https://www.rightmove.co.uk/properties/161632298", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52942/161632298/52942_33866910_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.967654", - "last_seen": "2025-06-01T22:06:15.794729", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131745, - 51.49543 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.17, - "qmprice": 49.58, - "rooms": 2, - "total_price": 3380.0, - "url": "https://www.rightmove.co.uk/properties/161632349", - "info": { - "identifier": 161632349, - "sqm_ocr": 68.17, - "price": 3380.0, - "price_per_sqm": 49.58192753410591, - "url": "https://www.rightmove.co.uk/properties/161632349", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/161632349/15942_1325194_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.040407", - "last_seen": "2025-06-01T22:05:57.479829", - "price": 3380.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181576, - 51.49878 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.5, - "qmprice": 49.48, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161632373", - "info": { - "identifier": 161632373, - "sqm_ocr": 48.5, - "price": 2400.0, - "price_per_sqm": 49.48453608247423, - "url": "https://www.rightmove.co.uk/properties/161632373", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Sheraton Management Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77739/161632373/77739_69eada3879097c91835f23b53c8d88f3d5fb1bab996885f9_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.675003", - "last_seen": "2025-06-01T22:05:48.233046", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207561, - 51.488186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.71, - "qmprice": 57.69, - "rooms": 2, - "total_price": 3618.0, - "url": "https://www.rightmove.co.uk/properties/161632499", - "info": { - "identifier": 161632499, - "sqm_ocr": 62.71, - "price": 3618.0, - "price_per_sqm": 57.69414766384946, - "url": "https://www.rightmove.co.uk/properties/161632499", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52347/161632499/52347_BEQ012583237_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.723688", - "last_seen": "2025-06-01T22:06:15.127529", - "price": 3618 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147168, - 51.49546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.65, - "qmprice": 24.58, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161632553", - "info": { - "identifier": 161632553, - "sqm_ocr": 97.65, - "price": 2400.0, - "price_per_sqm": 24.577572964669738, - "url": "https://www.rightmove.co.uk/properties/161632553", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161632553/16050_1325439_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.467500", - "last_seen": "2025-06-01T20:19:57.467500", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069406, - 51.51694 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.0, - "qmprice": 55.78, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/161632622", - "info": { - "identifier": 161632622, - "sqm_ocr": 54.0, - "price": 3012.0, - "price_per_sqm": 55.77777777777778, - "url": "https://www.rightmove.co.uk/properties/161632622", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43062/161632622/43062_NHL110063_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.559254", - "last_seen": "2025-06-01T22:05:57.972702", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197868, - 51.511475 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 30.56, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161632637", - "info": { - "identifier": 161632637, - "sqm_ocr": 72.0, - "price": 2200.0, - "price_per_sqm": 30.555555555555557, - "url": "https://www.rightmove.co.uk/properties/161632637", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Next Step Estates (South West) Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/185k/184157/161632637/184157_NEX1000978_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.102072", - "last_seen": "2025-06-01T22:06:13.432952", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185995, - 51.435097 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.93, - "qmprice": 54.23, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161633099", - "info": { - "identifier": 161633099, - "sqm_ocr": 59.93, - "price": 3250.0, - "price_per_sqm": 54.229934924078094, - "url": "https://www.rightmove.co.uk/properties/161633099", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80905/161633099/80905_BSL160947_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.735785", - "last_seen": "2025-06-01T22:06:15.340404", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119559, - 51.513165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161633345", - "info": { - "identifier": 161633345, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161633345", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Property Broker", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61607/161633345/61607_74b4d8b6-e56c-49e6-b3c1-ef31fd7c8456_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.168856", - "last_seen": "2025-06-01T22:06:11.214605", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056046, - 51.51832 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161633360", - "info": { - "identifier": 161633360, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161633360", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Property Broker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61607/161633360/61607_a19a9ccd-88b1-4a02-9500-e4d1a820d5a4_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.235689", - "last_seen": "2025-06-01T22:06:11.331754", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.062787, - 51.514294 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 40.99, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161633456", - "info": { - "identifier": 161633456, - "sqm_ocr": 80.5, - "price": 3300.0, - "price_per_sqm": 40.993788819875775, - "url": "https://www.rightmove.co.uk/properties/161633456", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/161633456/84827_33866962_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.720871", - "last_seen": "2025-06-01T22:05:48.317528", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20811, - 51.489765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161633477", - "info": { - "identifier": 161633477, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161633477", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/161633477/82537_33866964_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.302820", - "last_seen": "2025-06-01T22:06:08.563645", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024649, - 51.50212 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2630.0, - "url": "https://www.rightmove.co.uk/properties/161633714", - "info": { - "identifier": 161633714, - "sqm_ocr": null, - "price": 2630.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161633714", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161633714/96668_245640819042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.024355", - "last_seen": "2025-06-01T22:06:13.332621", - "price": 2630.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197261, - 51.456707 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.01, - "qmprice": 47.66, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161633717", - "info": { - "identifier": 161633717, - "sqm_ocr": 75.01, - "price": 3575.0, - "price_per_sqm": 47.66031195840554, - "url": "https://www.rightmove.co.uk/properties/161633717", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80905/161633717/80905_BSL160905_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.376419", - "last_seen": "2025-06-01T22:05:42.583273", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128881, - 51.513165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161633903", - "info": { - "identifier": 161633903, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161633903", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161633903/96668_247525407052025_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.942063", - "last_seen": "2025-06-01T22:05:50.246570", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.367297, - 51.585983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.4, - "qmprice": 32.89, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161634659", - "info": { - "identifier": 161634659, - "sqm_ocr": 68.4, - "price": 2250.0, - "price_per_sqm": 32.89473684210526, - "url": "https://www.rightmove.co.uk/properties/161634659", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99865/161634659/99865_33866999_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.418497", - "last_seen": "2025-06-01T22:05:59.559358", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142865, - 51.45256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.1, - "qmprice": 50.93, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/161635463", - "info": { - "identifier": 161635463, - "sqm_ocr": 45.1, - "price": 2297.0, - "price_per_sqm": 50.931263858093125, - "url": "https://www.rightmove.co.uk/properties/161635463", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/161635463/84833_33867015_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.526315", - "last_seen": "2025-06-01T22:05:58.371882", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210973, - 51.500153 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.8, - "qmprice": 30.75, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161635469", - "info": { - "identifier": 161635469, - "sqm_ocr": 87.8, - "price": 2700.0, - "price_per_sqm": 30.751708428246015, - "url": "https://www.rightmove.co.uk/properties/161635469", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78410/161635469/78410_33867016_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.173226, - 51.461407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.97, - "qmprice": 27.79, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161635838", - "info": { - "identifier": 161635838, - "sqm_ocr": 71.97, - "price": 2000.0, - "price_per_sqm": 27.78935667639294, - "url": "https://www.rightmove.co.uk/properties/161635838", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Leslie & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247031/161635838/247031_LEA-4918239_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.246455", - "last_seen": "2025-06-01T22:05:44.189526", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.316161, - 51.514545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.49, - "qmprice": 29.56, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161636423", - "info": { - "identifier": 161636423, - "sqm_ocr": 79.49, - "price": 2350.0, - "price_per_sqm": 29.563467102780226, - "url": "https://www.rightmove.co.uk/properties/161636423", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212357/161636423/212357_P160678_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.123266", - "last_seen": "2025-06-01T22:05:46.479621", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01181, - 51.47366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.1, - "qmprice": 28.01, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161636573", - "info": { - "identifier": 161636573, - "sqm_ocr": 107.1, - "price": 3000.0, - "price_per_sqm": 28.011204481792717, - "url": "https://www.rightmove.co.uk/properties/161636573", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57967/161636573/57967_KBS240015_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.689572", - "last_seen": "2025-06-01T22:06:06.782568", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079214, - 51.479984 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.5, - "qmprice": 32.52, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161636699", - "info": { - "identifier": 161636699, - "sqm_ocr": 61.5, - "price": 2000.0, - "price_per_sqm": 32.520325203252035, - "url": "https://www.rightmove.co.uk/properties/161636699", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Sandra Davidson Estate Agents", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13342/161636699/13342_33867049_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.711673", - "last_seen": "2025-06-01T22:06:02.787473", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.044796, - 51.539368 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161637746", - "info": { - "identifier": 161637746, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161637746", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161637746/96668_247442206052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.078854", - "last_seen": "2025-06-01T22:05:45.941416", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14077, - 51.63878 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2890.0, - "url": "https://www.rightmove.co.uk/properties/161638958", - "info": { - "identifier": 161638958, - "sqm_ocr": null, - "price": 2890.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161638958", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161638958/96668_247539507052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.004571", - "last_seen": "2025-06-01T22:06:06.441335", - "price": 2890.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102058, - 51.49596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161641841", - "info": { - "identifier": 161641841, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161641841", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161641841/96668_210958404062024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.394432", - "last_seen": "2025-06-01T22:06:12.947274", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182098, - 51.43555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.6, - "qmprice": 28.74, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161643587", - "info": { - "identifier": 161643587, - "sqm_ocr": 69.6, - "price": 2000.0, - "price_per_sqm": 28.73563218390805, - "url": "https://www.rightmove.co.uk/properties/161643587", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Paramount", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62636/161643587/62636_PAR190061_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.387753", - "last_seen": "2025-06-01T22:05:40.745201", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.243758, - 51.548767 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161643986", - "info": { - "identifier": 161643986, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161643986", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161643986/96668_247111003052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.267405", - "last_seen": "2025-06-01T22:05:41.510814", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.003578, - 51.371685 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161644064", - "info": { - "identifier": 161644064, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161644064", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161644064/96668_247604407052025_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.006897", - "last_seen": "2025-06-01T22:06:06.448450", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078389, - 51.48669 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3640.0, - "url": "https://www.rightmove.co.uk/properties/161644076", - "info": { - "identifier": 161644076, - "sqm_ocr": null, - "price": 3640.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161644076", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161644076/96668_247626507052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.016367", - "last_seen": "2025-06-01T22:06:06.459273", - "price": 3640.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104157, - 51.499683 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161644475", - "info": { - "identifier": 161644475, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161644475", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161644475/96668_228439306112024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.350789", - "last_seen": "2025-06-01T22:05:52.229984", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.407239, - 51.446556 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161644499", - "info": { - "identifier": 161644499, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161644499", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161644499/96668_247121603052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.174571", - "last_seen": "2025-06-01T22:05:53.756592", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0859, - 51.54812 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161644856", - "info": { - "identifier": 161644856, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161644856", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161644856/96668_247629807052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.263071", - "last_seen": "2025-06-01T22:06:06.946827", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.083219, - 51.49938 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161644859", - "info": { - "identifier": 161644859, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161644859", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161644859/96668_247623707052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.236774", - "last_seen": "2025-06-01T22:05:43.111097", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140564, - 51.52957 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.9, - "qmprice": 58.47, - "rooms": 3, - "total_price": 3795.0, - "url": "https://www.rightmove.co.uk/properties/161644934", - "info": { - "identifier": 161644934, - "sqm_ocr": 64.9, - "price": 3795.0, - "price_per_sqm": 58.474576271186436, - "url": "https://www.rightmove.co.uk/properties/161644934", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/161644934/249692_RL4621_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.986875", - "last_seen": "2025-06-01T22:05:42.731758", - "price": 3795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139995, - 51.52979 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 37.5, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161645180", - "info": { - "identifier": 161645180, - "sqm_ocr": 64.0, - "price": 2400.0, - "price_per_sqm": 37.5, - "url": "https://www.rightmove.co.uk/properties/161645180", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Allen Goldstein", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112351/161645180/112351_RL1901_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.831942", - "last_seen": "2025-06-01T22:05:53.858977", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090168, - 51.544 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161645429", - "info": { - "identifier": 161645429, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161645429", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161645429/96668_247637107052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.530335", - "last_seen": "2025-06-01T22:05:49.765762", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072758, - 51.60375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.89, - "qmprice": 34.57, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161646587", - "info": { - "identifier": 161646587, - "sqm_ocr": 83.89, - "price": 2900.0, - "price_per_sqm": 34.569078555250925, - "url": "https://www.rightmove.co.uk/properties/161646587", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Aston Chase", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84235/161646587/84235_RGL160240_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.654164", - "last_seen": "2025-06-01T22:05:40.572497", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201718, - 51.53399 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.19, - "qmprice": 29.35, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161646590", - "info": { - "identifier": 161646590, - "sqm_ocr": 85.19, - "price": 2500.0, - "price_per_sqm": 29.346167390538795, - "url": "https://www.rightmove.co.uk/properties/161646590", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Aston Chase", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84235/161646590/84235_RGL220018_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.457320", - "last_seen": "2025-06-01T22:05:38.808779", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197314, - 51.580765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161647256", - "info": { - "identifier": 161647256, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161647256", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161647256/96668_247555007052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.060541", - "last_seen": "2025-06-01T22:05:45.027031", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.281815, - 51.53513 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3186.0, - "url": "https://www.rightmove.co.uk/properties/161650640", - "info": { - "identifier": 161650640, - "sqm_ocr": null, - "price": 3186.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161650640", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/161650640/253604_85h0805_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.878122", - "last_seen": "2025-06-01T22:06:07.248909", - "price": 3186.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0072, - 51.54164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/161650982", - "info": { - "identifier": 161650982, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161650982", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "parkinsonfarr", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29643/161650982/29643_735_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.798218", - "last_seen": "2025-06-01T22:05:40.965152", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23851, - 51.55084 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.7, - "qmprice": 29.99, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161651285", - "info": { - "identifier": 161651285, - "sqm_ocr": 66.7, - "price": 2000.0, - "price_per_sqm": 29.98500749625187, - "url": "https://www.rightmove.co.uk/properties/161651285", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/208k/207812/161651285/207812_CCT250901_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.537194", - "last_seen": "2025-06-01T22:05:59.307771", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128187, - 51.413666 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161653190", - "info": { - "identifier": 161653190, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161653190", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Day Morris", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/190k/189104/161653190/189104_33864478_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.478066", - "last_seen": "2025-06-01T22:05:42.472622", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15557, - 51.555943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.9, - "qmprice": 26.45, - "rooms": 3, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/161653220", - "info": { - "identifier": 161653220, - "sqm_ocr": 120.9, - "price": 3198.0, - "price_per_sqm": 26.451612903225804, - "url": "https://www.rightmove.co.uk/properties/161653220", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/161653220/84788_33867558_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.057590", - "last_seen": "2025-06-01T22:05:52.118262", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.255647, - 51.4892 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.2, - "qmprice": 28.9, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161653322", - "info": { - "identifier": 161653322, - "sqm_ocr": 69.2, - "price": 2000.0, - "price_per_sqm": 28.90173410404624, - "url": "https://www.rightmove.co.uk/properties/161653322", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Evans & Company", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29484/161653322/29484_33867568_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.746494", - "last_seen": "2025-06-01T22:05:45.308737", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.354371, - 51.52418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.71, - "qmprice": 41.79, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161653691", - "info": { - "identifier": 161653691, - "sqm_ocr": 95.71, - "price": 4000.0, - "price_per_sqm": 41.79291610072093, - "url": "https://www.rightmove.co.uk/properties/161653691", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Tates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32769/161653691/32769_33856799_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.878962", - "last_seen": "2025-06-01T22:05:48.489940", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218401, - 51.4935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.3, - "qmprice": 32.5, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161653868", - "info": { - "identifier": 161653868, - "sqm_ocr": 72.3, - "price": 2350.0, - "price_per_sqm": 32.50345781466113, - "url": "https://www.rightmove.co.uk/properties/161653868", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/161653868/65785_33867611_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.786638", - "last_seen": "2025-06-01T22:05:59.752875", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134324, - 51.44761 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.9, - "qmprice": 46.11, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161654171", - "info": { - "identifier": 161654171, - "sqm_ocr": 75.9, - "price": 3500.0, - "price_per_sqm": 46.113306982872196, - "url": "https://www.rightmove.co.uk/properties/161654171", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161654171/253853_1325317_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.238482", - "last_seen": "2025-06-01T22:06:05.374966", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101788, - 51.49341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.19, - "qmprice": 41.57, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161654336", - "info": { - "identifier": 161654336, - "sqm_ocr": 78.19, - "price": 3250.0, - "price_per_sqm": 41.56541757257961, - "url": "https://www.rightmove.co.uk/properties/161654336", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161654336/48101_1325437_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.084346", - "last_seen": "2025-06-01T22:06:02.441225", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017601, - 51.50527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.98, - "qmprice": 47.63, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161654426", - "info": { - "identifier": 161654426, - "sqm_ocr": 83.98, - "price": 4000.0, - "price_per_sqm": 47.630388187663726, - "url": "https://www.rightmove.co.uk/properties/161654426", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43428/161654426/43428_FCL130225_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.458316", - "last_seen": "2025-06-01T22:05:58.414837", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198676, - 51.493988 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.1, - "qmprice": 24.19, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161654675", - "info": { - "identifier": 161654675, - "sqm_ocr": 95.1, - "price": 2300.0, - "price_per_sqm": 24.185068349106206, - "url": "https://www.rightmove.co.uk/properties/161654675", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Christopher Nevill", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9211/161654675/9211_52e93326-2214-4fa0-8e27-35e4eb360047_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.987120", - "last_seen": "2025-06-01T22:05:51.810300", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.419134, - 51.453598 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.3, - "qmprice": 47.28, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161654717", - "info": { - "identifier": 161654717, - "sqm_ocr": 42.3, - "price": 2000.0, - "price_per_sqm": 47.28132387706856, - "url": "https://www.rightmove.co.uk/properties/161654717", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/161654717/98531_1325255_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.539443", - "last_seen": "2025-06-01T22:05:48.665080", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23046, - 51.507233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2215.0, - "url": "https://www.rightmove.co.uk/properties/161654726", - "info": { - "identifier": 161654726, - "sqm_ocr": null, - "price": 2215.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161654726", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/161654726/238769_na40p8286_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.134474", - "last_seen": "2025-06-01T22:05:38.995694", - "price": 2215.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24039, - 51.57676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/161655791", - "info": { - "identifier": 161655791, - "sqm_ocr": null, - "price": 2595.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161655791", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Choices Asset Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/183k/182333/161655791/182333_ARO250066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.669057", - "last_seen": "2025-06-01T22:06:11.629413", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021274, - 51.56764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.7, - "qmprice": 30.82, - "rooms": 3, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/161655794", - "info": { - "identifier": 161655794, - "sqm_ocr": 77.7, - "price": 2395.0, - "price_per_sqm": 30.82368082368082, - "url": "https://www.rightmove.co.uk/properties/161655794", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14546/161655794/14546_DLL170068_L_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.395891", - "last_seen": "2025-06-01T22:06:08.767661", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035146, - 51.509422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161656025", - "info": { - "identifier": 161656025, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161656025", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RocketPM", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250460/161656025/250460_33865785_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.026098", - "last_seen": "2025-06-01T22:06:13.292016", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150458, - 51.446304 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161656391", - "info": { - "identifier": 161656391, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161656391", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "relocate-me.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33012/161656391/33012_160_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.909334", - "last_seen": "2025-06-01T22:05:54.010678", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087488, - 51.525105 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161656520", - "info": { - "identifier": 161656520, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161656520", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11443/161656520/11443_0407_HRT040705176_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.895830", - "last_seen": "2025-06-01T22:05:44.408683", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.331665, - 51.514492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/161656715", - "info": { - "identifier": 161656715, - "sqm_ocr": null, - "price": 3098.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161656715", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/161656715/275489_07052025-JC25031680_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.844973", - "last_seen": "2025-06-01T22:05:49.911756", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076069, - 51.583897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161656775", - "info": { - "identifier": 161656775, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161656775", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Frost Partnership", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7530/161656775/7530_FLL250020_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.371282", - "last_seen": "2025-06-01T22:05:52.245785", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.416282, - 51.447067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.5, - "qmprice": 60.47, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161657060", - "info": { - "identifier": 161657060, - "sqm_ocr": 64.5, - "price": 3900.0, - "price_per_sqm": 60.46511627906977, - "url": "https://www.rightmove.co.uk/properties/161657060", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156875/161657060/156875_33867808_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.026358", - "last_seen": "2025-06-01T22:06:14.998190", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132429, - 51.51691 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.8, - "qmprice": 27.63, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161657843", - "info": { - "identifier": 161657843, - "sqm_ocr": 77.8, - "price": 2150.0, - "price_per_sqm": 27.63496143958869, - "url": "https://www.rightmove.co.uk/properties/161657843", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Bricks Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244235/161657843/244235_33867869_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.031716", - "last_seen": "2025-06-01T22:06:03.984929", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.095166, - 51.61133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.52, - "qmprice": 44.35, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161658401", - "info": { - "identifier": 161658401, - "sqm_ocr": 63.52, - "price": 2817.0, - "price_per_sqm": 44.348236775818634, - "url": "https://www.rightmove.co.uk/properties/161658401", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51316/161658401/51316_LIL250052_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.091163", - "last_seen": "2025-06-01T22:06:15.887842", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193507, - 51.527172 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.3, - "qmprice": 42.87, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161658671", - "info": { - "identifier": 161658671, - "sqm_ocr": 93.3, - "price": 4000.0, - "price_per_sqm": 42.87245444801715, - "url": "https://www.rightmove.co.uk/properties/161658671", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/161658671/95098_P299535_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.912674", - "last_seen": "2025-06-01T22:06:08.818274", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161658956", - "info": { - "identifier": 161658956, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161658956", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260939/161658956/260939_FIN250095_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.098865", - "last_seen": "2025-06-01T22:05:39.875404", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147129, - 51.613598 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161659091", - "info": { - "identifier": 161659091, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161659091", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Eastway Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56722/161659091/56722_103NORM_IMG_06_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.675604", - "last_seen": "2025-06-01T22:06:11.883743", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00465, - 51.5633 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161659361", - "info": { - "identifier": 161659361, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161659361", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82086/161659361/82086_1325501_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.088587", - "last_seen": "2025-06-01T22:06:05.098741", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10265, - 51.49272 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.22, - "qmprice": 28.84, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161659379", - "info": { - "identifier": 161659379, - "sqm_ocr": 83.22, - "price": 2400.0, - "price_per_sqm": 28.839221341023794, - "url": "https://www.rightmove.co.uk/properties/161659379", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Balgores", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95722/161659379/95722_HOL250033_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.238474", - "last_seen": "2025-06-01T22:05:50.877806", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.252931, - 51.557056 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.1, - "qmprice": 36.97, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161659457", - "info": { - "identifier": 161659457, - "sqm_ocr": 54.1, - "price": 2000.0, - "price_per_sqm": 36.96857670979667, - "url": "https://www.rightmove.co.uk/properties/161659457", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161659457/55101_1319230_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.696351", - "last_seen": "2025-06-01T22:06:05.672645", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.040968, - 51.506947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.2, - "qmprice": 59.45, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161659757", - "info": { - "identifier": 161659757, - "sqm_ocr": 49.2, - "price": 2925.0, - "price_per_sqm": 59.45121951219512, - "url": "https://www.rightmove.co.uk/properties/161659757", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161659757/48101_1325508_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.534004", - "last_seen": "2025-06-01T22:06:09.045824", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01126, - 51.486683 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.6, - "qmprice": 36.09, - "rooms": 3, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/161660174", - "info": { - "identifier": 161660174, - "sqm_ocr": 95.6, - "price": 3450.0, - "price_per_sqm": 36.08786610878661, - "url": "https://www.rightmove.co.uk/properties/161660174", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58000/161660174/58000_KEO240255_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.496646", - "last_seen": "2025-06-01T22:06:01.688869", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20579, - 51.42275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.9, - "qmprice": 31.62, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161660369", - "info": { - "identifier": 161660369, - "sqm_ocr": 75.9, - "price": 2400.0, - "price_per_sqm": 31.620553359683793, - "url": "https://www.rightmove.co.uk/properties/161660369", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Surrey Quays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60474/161660369/60474_000004380c_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.380693", - "last_seen": "2025-06-01T22:05:46.305004", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00205, - 51.48754 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161660411", - "info": { - "identifier": 161660411, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161660411", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3305/161660411/3305_000908600_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.823688", - "last_seen": "2025-06-01T22:05:43.717697", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11266, - 51.37802 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.3, - "qmprice": 50.54, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161660492", - "info": { - "identifier": 161660492, - "sqm_ocr": 65.3, - "price": 3300.0, - "price_per_sqm": 50.535987748851454, - "url": "https://www.rightmove.co.uk/properties/161660492", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6073/161660492/6073_33868027_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.533816", - "last_seen": "2025-06-01T22:05:54.271093", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095674, - 51.521336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.8, - "qmprice": 50.76, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161660831", - "info": { - "identifier": 161660831, - "sqm_ocr": 78.8, - "price": 4000.0, - "price_per_sqm": 50.76142131979696, - "url": "https://www.rightmove.co.uk/properties/161660831", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Austin Homes London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105559/161660831/105559_7c8bd43a-716f-4a33-943d-309cf7bf8fda_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.686753", - "last_seen": "2025-06-01T22:05:53.370195", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096832, - 51.52986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.8, - "qmprice": 50.13, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161660981", - "info": { - "identifier": 161660981, - "sqm_ocr": 79.8, - "price": 4000.0, - "price_per_sqm": 50.12531328320802, - "url": "https://www.rightmove.co.uk/properties/161660981", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161660981/87187_58515_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.260039", - "last_seen": "2025-06-01T22:05:48.739082", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187815, - 51.476746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161660987", - "info": { - "identifier": 161660987, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161660987", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57095/161660987/57095_P297415_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.007576", - "last_seen": "2025-06-01T22:06:13.325770", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22142, - 51.45634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.3, - "qmprice": 26.92, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161661092", - "info": { - "identifier": 161661092, - "sqm_ocr": 100.3, - "price": 2700.0, - "price_per_sqm": 26.91924227318046, - "url": "https://www.rightmove.co.uk/properties/161661092", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Godfrey And Barr", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36729/161661092/36729_4226_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.416838", - "last_seen": "2025-06-01T22:05:39.166391", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222411, - 51.621113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161661398", - "info": { - "identifier": 161661398, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161661398", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "C James & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5256/161661398/5256_33868090_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.281494", - "last_seen": "2025-06-01T22:06:01.106699", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200632, - 51.414783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.17, - "qmprice": 26.62, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161661452", - "info": { - "identifier": 161661452, - "sqm_ocr": 105.17, - "price": 2800.0, - "price_per_sqm": 26.62356185223923, - "url": "https://www.rightmove.co.uk/properties/161661452", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/161661452/48994_CNL180053_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.145303", - "last_seen": "2025-06-01T22:06:02.542710", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02452, - 51.508457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161661779", - "info": { - "identifier": 161661779, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161661779", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Districts London", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245744/161661779/245744_33868116_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.404146", - "last_seen": "2025-06-01T22:06:02.403492", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005858, - 51.512722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161661824", - "info": { - "identifier": 161661824, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161661824", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Key Property Consultants", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/161k/160727/161661824/160727_2266_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.009348", - "last_seen": "2025-06-01T22:05:59.051571", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102264, - 51.4661 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 25.32, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161661896", - "info": { - "identifier": 161661896, - "sqm_ocr": 79.0, - "price": 2000.0, - "price_per_sqm": 25.31645569620253, - "url": "https://www.rightmove.co.uk/properties/161661896", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "360 Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81348/161661896/81348_33868125_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.824307", - "last_seen": "2025-06-01T22:06:00.688592", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01598, - 51.43378 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.4, - "qmprice": 36.86, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161661911", - "info": { - "identifier": 161661911, - "sqm_ocr": 81.4, - "price": 3000.0, - "price_per_sqm": 36.85503685503685, - "url": "https://www.rightmove.co.uk/properties/161661911", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95629/161661911/95629_KEC250948_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.380289", - "last_seen": "2025-06-01T22:06:01.233325", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229616, - 51.411373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.9, - "qmprice": 63.61, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161662223", - "info": { - "identifier": 161662223, - "sqm_ocr": 57.9, - "price": 3683.0, - "price_per_sqm": 63.60967184801382, - "url": "https://www.rightmove.co.uk/properties/161662223", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/161662223/275489_05092024-CN1219_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/09/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.017595, - 51.50975 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.5, - "qmprice": 54.62, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161662319", - "info": { - "identifier": 161662319, - "sqm_ocr": 59.5, - "price": 3250.0, - "price_per_sqm": 54.621848739495796, - "url": "https://www.rightmove.co.uk/properties/161662319", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50701/161662319/50701_33868173_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.254640", - "last_seen": "2025-06-01T22:05:58.044568", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182708, - 51.4924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3601.0, - "url": "https://www.rightmove.co.uk/properties/161662343", - "info": { - "identifier": 161662343, - "sqm_ocr": null, - "price": 3601.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161662343", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "UKmate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263912/161662343/263912_ukmate_agent_1746699312_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.949715", - "last_seen": "2025-06-01T22:05:49.103446", - "price": 3601.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224222, - 51.502525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161662556", - "info": { - "identifier": 161662556, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161662556", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Key Property Consultants", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/161k/160727/161662556/160727_2267_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.856479", - "last_seen": "2025-06-01T22:05:59.534062", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102264, - 51.4661 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161663435", - "info": { - "identifier": 161663435, - "sqm_ocr": null, - "price": 2925.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161663435", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Global 32 (UK) Property Management Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/256k/255182/161663435/255182_P0020525_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.778526", - "last_seen": "2025-06-01T22:06:06.302744", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09745, - 51.49171 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161663489", - "info": { - "identifier": 161663489, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161663489", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Curtis And Parker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278867/161663489/278867_33867902_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.941375", - "last_seen": "2025-06-01T22:05:49.076260", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.239299, - 51.493473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161663543", - "info": { - "identifier": 161663543, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161663543", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Anisten Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50556/161663543/50556_102614001947_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.063316", - "last_seen": "2025-06-01T22:05:38.215914", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.13929, - 51.53907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 139.1, - "qmprice": 21.57, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161663777", - "info": { - "identifier": 161663777, - "sqm_ocr": 139.1, - "price": 3000.0, - "price_per_sqm": 21.567217828900073, - "url": "https://www.rightmove.co.uk/properties/161663777", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Allday & Miller", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/226k/225662/161663777/225662_33868249_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.433261", - "last_seen": "2025-06-01T22:05:51.649278", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.383038, - 51.526035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.1, - "qmprice": 47.16, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161664137", - "info": { - "identifier": 161664137, - "sqm_ocr": 72.1, - "price": 3400.0, - "price_per_sqm": 47.156726768377254, - "url": "https://www.rightmove.co.uk/properties/161664137", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43742/161664137/43742_P300252_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.907213", - "last_seen": "2025-06-01T22:06:15.713382", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12716, - 51.49444 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161664182", - "info": { - "identifier": 161664182, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161664182", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Robert Parish", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/24k/23507/161664182/23507_penrith_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.296629", - "last_seen": "2025-06-01T22:05:51.031069", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.23875, - 51.60277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.4, - "qmprice": 31.25, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161664236", - "info": { - "identifier": 161664236, - "sqm_ocr": 70.4, - "price": 2200.0, - "price_per_sqm": 31.249999999999996, - "url": "https://www.rightmove.co.uk/properties/161664236", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107903/161664236/107903_P300238_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.536892", - "last_seen": "2025-06-01T22:05:40.229030", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26165, - 51.59453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161664341", - "info": { - "identifier": 161664341, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161664341", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Regency Estate Group Ltd", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286280/161664341/286280_REG250075_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.491961", - "last_seen": "2025-06-01T22:06:13.073113", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134725, - 51.482086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.3, - "qmprice": 42.54, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/161664440", - "info": { - "identifier": 161664440, - "sqm_ocr": 71.3, - "price": 3033.0, - "price_per_sqm": 42.53856942496494, - "url": "https://www.rightmove.co.uk/properties/161664440", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Pomp Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117175/161664440/117175_33671449_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "04/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.172508", - "last_seen": "2025-06-01T22:05:58.345352", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192049, - 51.493176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.0, - "qmprice": 33.72, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161664743", - "info": { - "identifier": 161664743, - "sqm_ocr": 86.0, - "price": 2900.0, - "price_per_sqm": 33.72093023255814, - "url": "https://www.rightmove.co.uk/properties/161664743", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Pedder", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82748/161664743/82748_33868295_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.986906", - "last_seen": "2025-06-01T22:06:04.930698", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095705, - 51.45352 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.9, - "qmprice": 26.7, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161664896", - "info": { - "identifier": 161664896, - "sqm_ocr": 74.9, - "price": 2000.0, - "price_per_sqm": 26.702269692923895, - "url": "https://www.rightmove.co.uk/properties/161664896", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "B Bailey Property Management Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3074/161664896/3074_1029_194672_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.018641", - "last_seen": "2025-06-01T22:06:11.718394", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01754, - 51.55463 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 37.65, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161665382", - "info": { - "identifier": 161665382, - "sqm_ocr": 85.0, - "price": 3200.0, - "price_per_sqm": 37.64705882352941, - "url": "https://www.rightmove.co.uk/properties/161665382", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/161665382/44537_HEA181715_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.280851", - "last_seen": "2025-06-01T22:06:05.178647", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079476, - 51.500282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 29.5, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/161665550", - "info": { - "identifier": 161665550, - "sqm_ocr": 80.5, - "price": 2375.0, - "price_per_sqm": 29.503105590062113, - "url": "https://www.rightmove.co.uk/properties/161665550", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Homes Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162716/161665550/162716_3125_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.750021", - "last_seen": "2025-06-01T22:05:49.210971", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228478, - 51.508522 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.6, - "qmprice": 29.21, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161665592", - "info": { - "identifier": 161665592, - "sqm_ocr": 85.6, - "price": 2500.0, - "price_per_sqm": 29.205607476635517, - "url": "https://www.rightmove.co.uk/properties/161665592", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/161665592/108947_1325493_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.867194", - "last_seen": "2025-06-01T22:05:50.730143", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.337265, - 51.592407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.7, - "qmprice": 30.6, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161665604", - "info": { - "identifier": 161665604, - "sqm_ocr": 81.7, - "price": 2500.0, - "price_per_sqm": 30.599755201958384, - "url": "https://www.rightmove.co.uk/properties/161665604", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/161665604/57272_1325532_IMG_09_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.814261", - "last_seen": "2025-06-01T22:05:58.950643", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30695, - 51.40933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 35.71, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161665682", - "info": { - "identifier": 161665682, - "sqm_ocr": 91.0, - "price": 3250.0, - "price_per_sqm": 35.714285714285715, - "url": "https://www.rightmove.co.uk/properties/161665682", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "HAUZOO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/244k/243260/161665682/243260_L108532_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.574888", - "last_seen": "2025-06-01T22:06:06.182803", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068165, - 51.501312 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.42, - "qmprice": 42.47, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161665751", - "info": { - "identifier": 161665751, - "sqm_ocr": 82.42, - "price": 3500.0, - "price_per_sqm": 42.46542101431691, - "url": "https://www.rightmove.co.uk/properties/161665751", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/161665751/15966_1325519_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.729952", - "last_seen": "2025-06-01T22:06:13.875700", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14814, - 51.48042 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.4, - "qmprice": 30.23, - "rooms": 2, - "total_price": 2340.0, - "url": "https://www.rightmove.co.uk/properties/161666045", - "info": { - "identifier": 161666045, - "sqm_ocr": 77.4, - "price": 2340.0, - "price_per_sqm": 30.23255813953488, - "url": "https://www.rightmove.co.uk/properties/161666045", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143039/161666045/143039_CEI230510_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.237036", - "last_seen": "2025-06-01T22:05:57.271246", - "price": 2340 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026804, - 51.46103 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161666399", - "info": { - "identifier": 161666399, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161666399", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Praedium", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289004/161666399/289004_Oval_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.374986", - "last_seen": "2025-06-01T22:05:59.832053", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11756, - 51.48961 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161666492", - "info": { - "identifier": 161666492, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161666492", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Cranbrook Lettings & Sales", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/237k/236963/161666492/236963_cranbrook_1586869455_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.992766", - "last_seen": "2025-06-01T22:06:03.794119", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.128357, - 51.581154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.7, - "qmprice": 40.8, - "rooms": 2, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/161666513", - "info": { - "identifier": 161666513, - "sqm_ocr": 58.7, - "price": 2395.0, - "price_per_sqm": 40.80068143100511, - "url": "https://www.rightmove.co.uk/properties/161666513", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191213/161666513/191213_KCK240086_L_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.984377", - "last_seen": "2025-06-01T22:05:55.098058", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267246, - 51.50477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.3, - "qmprice": 61.26, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161666603", - "info": { - "identifier": 161666603, - "sqm_ocr": 65.3, - "price": 4000.0, - "price_per_sqm": 61.25574272588055, - "url": "https://www.rightmove.co.uk/properties/161666603", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44645/161666603/44645_HEA252631_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.820331", - "last_seen": "2025-06-01T22:05:48.241779", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181906, - 51.473488 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.71, - "qmprice": 39.11, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161666663", - "info": { - "identifier": 161666663, - "sqm_ocr": 76.71, - "price": 3000.0, - "price_per_sqm": 39.10833007430583, - "url": "https://www.rightmove.co.uk/properties/161666663", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/161666663/96392_HEA161917_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.593093", - "last_seen": "2025-06-01T22:06:15.877523", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184613, - 51.53475 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.3, - "qmprice": 41.73, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161667455", - "info": { - "identifier": 161667455, - "sqm_ocr": 62.3, - "price": 2600.0, - "price_per_sqm": 41.733547351524884, - "url": "https://www.rightmove.co.uk/properties/161667455", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/161667455/84827_33868477_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.332363", - "last_seen": "2025-06-01T22:05:48.915929", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208633, - 51.486195 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161667623", - "info": { - "identifier": 161667623, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161667623", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219908/161667623/219908_1049_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.937002", - "last_seen": "2025-06-01T22:05:51.730331", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.367533, - 51.488476 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.5, - "qmprice": 44.11, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161667878", - "info": { - "identifier": 161667878, - "sqm_ocr": 83.5, - "price": 3683.0, - "price_per_sqm": 44.10778443113772, - "url": "https://www.rightmove.co.uk/properties/161667878", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63083/161667878/63083_MRQ012596088_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.178498", - "last_seen": "2025-06-01T22:06:16.077424", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145203, - 51.518223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.6, - "qmprice": 61.71, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161667959", - "info": { - "identifier": 161667959, - "sqm_ocr": 48.6, - "price": 2999.0, - "price_per_sqm": 61.70781893004115, - "url": "https://www.rightmove.co.uk/properties/161667959", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161667959/17888_29589_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.870163", - "last_seen": "2025-06-01T22:06:15.644460", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16186, - 51.5235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.6, - "qmprice": 35.02, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/161668004", - "info": { - "identifier": 161668004, - "sqm_ocr": 65.6, - "price": 2297.0, - "price_per_sqm": 35.015243902439025, - "url": "https://www.rightmove.co.uk/properties/161668004", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/161668004/191255_33868515_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.539368", - "last_seen": "2025-06-01T20:19:58.062735", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035955, - 51.51275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161668040", - "info": { - "identifier": 161668040, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161668040", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Steed Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285482/161668040/285482_R210278_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.322470", - "last_seen": "2025-06-01T22:05:51.060731", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.173313, - 51.584618 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161668358", - "info": { - "identifier": 161668358, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161668358", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/161668358/249692_RL4624_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.514793", - "last_seen": "2025-06-01T22:05:48.619725", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.233968, - 51.510567 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.7, - "qmprice": 65.39, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161668808", - "info": { - "identifier": 161668808, - "sqm_ocr": 49.7, - "price": 3250.0, - "price_per_sqm": 65.3923541247485, - "url": "https://www.rightmove.co.uk/properties/161668808", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161668808/96668_217560701082024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.409728", - "last_seen": "2025-06-01T22:06:01.278880", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184546, - 51.41522 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 46.9, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161668811", - "info": { - "identifier": 161668811, - "sqm_ocr": 69.3, - "price": 3250.0, - "price_per_sqm": 46.8975468975469, - "url": "https://www.rightmove.co.uk/properties/161668811", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161668811/96668_217560801082024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.408562", - "last_seen": "2025-06-01T22:06:01.265617", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183895, - 51.41723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.8, - "qmprice": 36.17, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/161668898", - "info": { - "identifier": 161668898, - "sqm_ocr": 82.8, - "price": 2995.0, - "price_per_sqm": 36.171497584541065, - "url": "https://www.rightmove.co.uk/properties/161668898", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84848/161668898/84848_33868578_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.344411", - "last_seen": "2025-06-01T22:06:04.416033", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.350562, - 51.437008 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.21, - "qmprice": 45.74, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161669117", - "info": { - "identifier": 161669117, - "sqm_ocr": 61.21, - "price": 2800.0, - "price_per_sqm": 45.74415945107008, - "url": "https://www.rightmove.co.uk/properties/161669117", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161669117/87187_71514_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.441377", - "last_seen": "2025-06-01T20:19:57.441377", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067583, - 51.52367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 32.47, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161669213", - "info": { - "identifier": 161669213, - "sqm_ocr": 69.3, - "price": 2250.0, - "price_per_sqm": 32.46753246753247, - "url": "https://www.rightmove.co.uk/properties/161669213", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161669213/43310_CWL240303_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.631254", - "last_seen": "2025-06-01T22:06:10.631254", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.001029, - 51.509743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.21, - "qmprice": 43.35, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161669225", - "info": { - "identifier": 161669225, - "sqm_ocr": 69.21, - "price": 3000.0, - "price_per_sqm": 43.346337234503686, - "url": "https://www.rightmove.co.uk/properties/161669225", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/146k/145463/161669225/145463_WLS170102_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.128781", - "last_seen": "2025-06-01T22:06:13.531692", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197712, - 51.46226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161669318", - "info": { - "identifier": 161669318, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161669318", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161669318/96668_247280505052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.754617", - "last_seen": "2025-06-01T22:05:49.680344", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.062205, - 51.588852 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/161669441", - "info": { - "identifier": 161669441, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161669441", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161669441/96668_245802421042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.961453", - "last_seen": "2025-06-01T22:05:59.597990", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141222, - 51.45194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161669546", - "info": { - "identifier": 161669546, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161669546", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161669546/96668_247652808052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.644592", - "last_seen": "2025-06-01T22:05:43.384939", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08599, - 51.40347 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161669645", - "info": { - "identifier": 161669645, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161669645", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161669645/96668_247488306052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.012007", - "last_seen": "2025-06-01T22:06:04.147809", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.069152, - 51.604443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.1, - "qmprice": 47.77, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161670047", - "info": { - "identifier": 161670047, - "sqm_ocr": 77.1, - "price": 3683.0, - "price_per_sqm": 47.769130998702984, - "url": "https://www.rightmove.co.uk/properties/161670047", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76478/161670047/76478_CEP240215_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.022525, - 51.500443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161670053", - "info": { - "identifier": 161670053, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161670053", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Golden Eagle International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49332/161670053/49332_635_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.473737", - "last_seen": "2025-06-01T22:05:58.426283", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198271, - 51.509 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.8, - "qmprice": 27.01, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161670434", - "info": { - "identifier": 161670434, - "sqm_ocr": 101.8, - "price": 2750.0, - "price_per_sqm": 27.01375245579568, - "url": "https://www.rightmove.co.uk/properties/161670434", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/161670434/56751_1325535_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.149643", - "last_seen": "2025-06-01T22:05:59.717113", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113834, - 51.460503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 32.31, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161670488", - "info": { - "identifier": 161670488, - "sqm_ocr": 65.0, - "price": 2100.0, - "price_per_sqm": 32.30769230769231, - "url": "https://www.rightmove.co.uk/properties/161670488", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/161670488/130309_1324858_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.580691", - "last_seen": "2025-06-01T22:05:43.695893", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091738, - 51.37782 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161670524", - "info": { - "identifier": 161670524, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161670524", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Grey & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7000/161670524/7000_GRY_GRY_LFSYCL_254_402408012_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.155623", - "last_seen": "2025-06-01T22:05:40.770050", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303163, - 51.56798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.3, - "qmprice": 35.19, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161671088", - "info": { - "identifier": 161671088, - "sqm_ocr": 75.3, - "price": 2650.0, - "price_per_sqm": 35.1925630810093, - "url": "https://www.rightmove.co.uk/properties/161671088", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66768/161671088/66768_1321902_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.610896", - "last_seen": "2025-06-01T22:06:05.496698", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099607, - 51.48212 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 48.13, - "rooms": 2, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/161671601", - "info": { - "identifier": 161671601, - "sqm_ocr": 83.0, - "price": 3995.0, - "price_per_sqm": 48.13253012048193, - "url": "https://www.rightmove.co.uk/properties/161671601", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84806/161671601/84806_33845702_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.597458", - "last_seen": "2025-06-01T22:06:04.793334", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303591, - 51.441757 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161671982", - "info": { - "identifier": 161671982, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161671982", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Xavi & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88636/161671982/88636_434_XAVI_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.116341", - "last_seen": "2025-06-01T22:05:52.078701", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300454, - 51.484814 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161672087", - "info": { - "identifier": 161672087, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161672087", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Nine Elms", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/197k/196106/161672087/196106_000016693b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.060505", - "last_seen": "2025-06-01T22:05:59.098951", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11952, - 51.4945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161672099", - "info": { - "identifier": 161672099, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161672099", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Elkay Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52868/161672099/52868_102387001988_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.222464", - "last_seen": "2025-06-01T22:06:08.238995", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07327, - 51.53031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161672294", - "info": { - "identifier": 161672294, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161672294", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Freder", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269027/161672294/269027_RL0399_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.372736", - "last_seen": "2025-06-01T22:05:43.066278", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127336, - 51.537663 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.0, - "qmprice": 22.48, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161672321", - "info": { - "identifier": 161672321, - "sqm_ocr": 109.0, - "price": 2450.0, - "price_per_sqm": 22.477064220183486, - "url": "https://www.rightmove.co.uk/properties/161672321", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Wembley Park Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80783/161672321/80783_130788_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.202793", - "last_seen": "2025-06-01T22:05:40.831809", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28496, - 51.55827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.3, - "qmprice": 37.35, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161672375", - "info": { - "identifier": 161672375, - "sqm_ocr": 80.3, - "price": 2999.0, - "price_per_sqm": 37.34744707347447, - "url": "https://www.rightmove.co.uk/properties/161672375", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25214/161672375/25214_33868821_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.721036", - "last_seen": "2025-06-01T22:06:02.852346", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.006942, - 51.51302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161672390", - "info": { - "identifier": 161672390, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161672390", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/161672390/181787_181787_822_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.677383", - "last_seen": "2025-06-01T22:06:06.282557", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0684, - 51.50113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.7, - "qmprice": 34.17, - "rooms": 2, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/161672504", - "info": { - "identifier": 161672504, - "sqm_ocr": 109.7, - "price": 3748.0, - "price_per_sqm": 34.16590701914312, - "url": "https://www.rightmove.co.uk/properties/161672504", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77695/161672504/77695_33868429_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.017922", - "last_seen": "2025-06-01T22:05:57.443955", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184989, - 51.485516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161673506", - "info": { - "identifier": 161673506, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161673506", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19059/161673506/19059_7f1ef221-1425-448a-8ba5-d6277644f37d_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.715603", - "last_seen": "2025-06-01T22:05:39.515907", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290349, - 51.620316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161673833", - "info": { - "identifier": 161673833, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161673833", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Property Broker", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61607/161673833/61607_0af352c1-351b-4da3-a43b-0e3f73c68e42_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:56.788951", - "last_seen": "2025-06-01T20:19:56.788951", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005091, - 51.513187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161674121", - "info": { - "identifier": 161674121, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161674121", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Mischa & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64652/161674121/64652_29035200_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.221062", - "last_seen": "2025-06-01T22:05:50.607423", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31181, - 51.60928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161675159", - "info": { - "identifier": 161675159, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161675159", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "SLettings Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282698/161675159/282698_RM_LP_26_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.483270", - "last_seen": "2025-06-01T22:05:39.671491", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279112, - 51.621494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.91, - "qmprice": 36.56, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161676416", - "info": { - "identifier": 161676416, - "sqm_ocr": 62.91, - "price": 2300.0, - "price_per_sqm": 36.56016531553013, - "url": "https://www.rightmove.co.uk/properties/161676416", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161676416/16050_1325580_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.298639", - "last_seen": "2025-06-01T22:06:11.542876", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018124, - 51.520367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161676518", - "info": { - "identifier": 161676518, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161676518", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Letio Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260273/161676518/260273_L206_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.685887", - "last_seen": "2025-06-01T22:05:48.245657", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213491, - 51.487736 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.7, - "qmprice": 42.5, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161676551", - "info": { - "identifier": 161676551, - "sqm_ocr": 64.7, - "price": 2750.0, - "price_per_sqm": 42.503863987635235, - "url": "https://www.rightmove.co.uk/properties/161676551", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111710/161676551/111710_CAL230003_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.625535", - "last_seen": "2025-06-01T22:05:57.175314", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138252, - 51.540405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.4, - "qmprice": 37.69, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/161676572", - "info": { - "identifier": 161676572, - "sqm_ocr": 68.4, - "price": 2578.0, - "price_per_sqm": 37.69005847953216, - "url": "https://www.rightmove.co.uk/properties/161676572", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76478/161676572/76478_CEI241641_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.119625", - "last_seen": "2025-06-01T22:06:08.113521", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02045, - 51.49824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161677121", - "info": { - "identifier": 161677121, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161677121", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Keller Williams Plus", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214967/161677121/214967_RX579714_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.309002", - "last_seen": "2025-06-01T22:05:50.910692", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.248098, - 51.59024 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161677157", - "info": { - "identifier": 161677157, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161677157", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Keller Williams Plus", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214967/161677157/214967_RX579726_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.312222", - "last_seen": "2025-06-01T22:05:50.907006", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.248224, - 51.590244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.02, - "qmprice": 44.18, - "rooms": 2, - "total_price": 2475.0, - "url": "https://www.rightmove.co.uk/properties/161677763", - "info": { - "identifier": 161677763, - "sqm_ocr": 56.02, - "price": 2475.0, - "price_per_sqm": 44.18064976794002, - "url": "https://www.rightmove.co.uk/properties/161677763", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Oaks Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201446/161677763/201446_TUL250158_L_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.476001", - "last_seen": "2025-06-01T22:06:13.056202", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186406, - 51.436253 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3595.0, - "url": "https://www.rightmove.co.uk/properties/161678804", - "info": { - "identifier": 161678804, - "sqm_ocr": null, - "price": 3595.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161678804", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117766/161678804/117766_BBL250009_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.732291", - "last_seen": "2025-06-01T22:06:13.224454", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168058, - 51.47013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.53, - "qmprice": 23.78, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161679272", - "info": { - "identifier": 161679272, - "sqm_ocr": 92.53, - "price": 2200.0, - "price_per_sqm": 23.776072625094564, - "url": "https://www.rightmove.co.uk/properties/161679272", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50939/161679272/50939_P5148E4115_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.342438", - "last_seen": "2025-06-01T22:05:52.218595", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42414, - 51.44225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161679947", - "info": { - "identifier": 161679947, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161679947", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Badgemoor", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288032/161679947/288032_Pembridge_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.966030", - "last_seen": "2025-06-01T22:05:57.884073", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19594, - 51.51459 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161680250", - "info": { - "identifier": 161680250, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161680250", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161680250/96668_247111903052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.955834", - "last_seen": "2025-06-01T22:06:03.826334", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.099888, - 51.60786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.9, - "qmprice": 34.61, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161680472", - "info": { - "identifier": 161680472, - "sqm_ocr": 80.9, - "price": 2800.0, - "price_per_sqm": 34.610630407910996, - "url": "https://www.rightmove.co.uk/properties/161680472", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Urban Spaces", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230633/161680472/230633_PB10858_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.638915", - "last_seen": "2025-06-01T22:06:08.371831", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03613, - 51.52059 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/161680478", - "info": { - "identifier": 161680478, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161680478", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Alwyne Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/127k/126928/161680478/126928_33869259_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.707699", - "last_seen": "2025-06-01T22:05:52.922527", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110451, - 51.545376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.8, - "qmprice": 39.6, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161681027", - "info": { - "identifier": 161681027, - "sqm_ocr": 80.8, - "price": 3200.0, - "price_per_sqm": 39.603960396039604, - "url": "https://www.rightmove.co.uk/properties/161681027", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Compton Reeback", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74510/161681027/74510_33869308_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.504783", - "last_seen": "2025-06-01T22:06:15.313424", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177517, - 51.53181 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161681297", - "info": { - "identifier": 161681297, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161681297", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Capital Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49739/161681297/49739_CPT_CPT_LFSYCL_393_548409608_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.416728", - "last_seen": "2025-06-01T22:05:41.654763", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.036549, - 51.352825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.3, - "qmprice": 39.87, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161681909", - "info": { - "identifier": 161681909, - "sqm_ocr": 90.3, - "price": 3600.0, - "price_per_sqm": 39.8671096345515, - "url": "https://www.rightmove.co.uk/properties/161681909", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/161681909/15957_1324936_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.553523", - "last_seen": "2025-06-01T22:05:55.550438", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175561, - 51.554497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161682233", - "info": { - "identifier": 161682233, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161682233", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/161682233/51286_CLL000021_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.066222", - "last_seen": "2025-06-01T22:05:52.142832", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252839, - 51.4899 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.9, - "qmprice": 30.3, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161682269", - "info": { - "identifier": 161682269, - "sqm_ocr": 75.9, - "price": 2300.0, - "price_per_sqm": 30.3030303030303, - "url": "https://www.rightmove.co.uk/properties/161682269", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57967/161682269/57967_KBS250871_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.480945", - "last_seen": "2025-06-01T22:06:06.450700", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072185, - 51.48593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.6, - "qmprice": 30.27, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161682371", - "info": { - "identifier": 161682371, - "sqm_ocr": 82.6, - "price": 2500.0, - "price_per_sqm": 30.26634382566586, - "url": "https://www.rightmove.co.uk/properties/161682371", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68804/161682371/68804_P299770_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.403542", - "last_seen": "2025-06-01T22:05:41.781929", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01969, - 51.39291 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161682905", - "info": { - "identifier": 161682905, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161682905", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "TrendyBlocks", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/277k/276857/161682905/276857_MONTPELIERS_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.937463", - "last_seen": "2025-06-01T22:06:04.060720", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.1248, - 51.56856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161683118", - "info": { - "identifier": 161683118, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161683118", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161683118/17888_30108_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.938477", - "last_seen": "2025-06-01T22:05:54.070363", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12719, - 51.54983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.3, - "qmprice": 35.17, - "rooms": 3, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/161683430", - "info": { - "identifier": 161683430, - "sqm_ocr": 75.3, - "price": 2648.0, - "price_per_sqm": 35.1660026560425, - "url": "https://www.rightmove.co.uk/properties/161683430", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Next Door Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237989/161683430/237989_1951_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.350532", - "last_seen": "2025-06-01T22:06:06.995102", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099406, - 51.4824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.95, - "qmprice": 35.74, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161683580", - "info": { - "identifier": 161683580, - "sqm_ocr": 83.95, - "price": 3000.0, - "price_per_sqm": 35.735556879094695, - "url": "https://www.rightmove.co.uk/properties/161683580", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "CHAMBR\u00c9", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230147/161683580/230147_251_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.879632", - "last_seen": "2025-06-01T22:06:15.674597", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14124, - 51.493713 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.76, - "qmprice": 31.35, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161683688", - "info": { - "identifier": 161683688, - "sqm_ocr": 71.76, - "price": 2250.0, - "price_per_sqm": 31.354515050167223, - "url": "https://www.rightmove.co.uk/properties/161683688", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/161683688/51286_CLL100208_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.994787", - "last_seen": "2025-06-01T22:05:51.814614", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.268613, - 51.47999 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161683703", - "info": { - "identifier": 161683703, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161683703", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/161683703/52887_33869500_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.826213", - "last_seen": "2025-06-01T22:06:13.240029", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190276, - 51.443203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.1, - "qmprice": 37.62, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161683772", - "info": { - "identifier": 161683772, - "sqm_ocr": 73.1, - "price": 2750.0, - "price_per_sqm": 37.61969904240766, - "url": "https://www.rightmove.co.uk/properties/161683772", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43748/161683772/43748_P300294_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.813789", - "last_seen": "2025-06-01T22:06:04.504203", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29684, - 51.45647 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/161684267", - "info": { - "identifier": 161684267, - "sqm_ocr": null, - "price": 3597.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161684267", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "CHARLES WILLIAM PROPERTY INVESTMENT", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252278/161684267/252278_RL0201270805_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.396778", - "last_seen": "2025-06-01T20:19:59.222070", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057199, - 51.505795 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161684666", - "info": { - "identifier": 161684666, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161684666", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Century 21 Goodmayes", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279887/161684666/279887_R210280_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.507713", - "last_seen": "2025-06-01T22:05:51.456769", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.478812, - 51.52927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161685293", - "info": { - "identifier": 161685293, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161685293", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161685293/96668_247661108052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.113632", - "last_seen": "2025-06-01T22:05:39.069736", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175452, - 51.614967 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.72, - "qmprice": 24.83, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161685371", - "info": { - "identifier": 161685371, - "sqm_ocr": 104.72, - "price": 2600.0, - "price_per_sqm": 24.82811306340718, - "url": "https://www.rightmove.co.uk/properties/161685371", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161685371/96668_247675808052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.430169", - "last_seen": "2025-06-01T22:05:59.918728", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116457, - 51.432846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.84, - "qmprice": 48.23, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161685452", - "info": { - "identifier": 161685452, - "sqm_ocr": 51.84, - "price": 2500.0, - "price_per_sqm": 48.2253086419753, - "url": "https://www.rightmove.co.uk/properties/161685452", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161685452/26207_IUL240176_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.973686", - "last_seen": "2025-06-01T22:05:47.231075", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088588, - 51.55404 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161685473", - "info": { - "identifier": 161685473, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161685473", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Sonia Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181958/161685473/181958_sonia_688209199_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.956753", - "last_seen": "2025-06-01T22:05:50.260792", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.356375, - 51.601837 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161685512", - "info": { - "identifier": 161685512, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161685512", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "CHARLES WILLIAM PROPERTY INVESTMENT", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252278/161685512/252278_RL0527320805_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.792103", - "last_seen": "2025-06-01T22:06:09.721525", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017213, - 51.5009 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.5, - "qmprice": 31.05, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161686049", - "info": { - "identifier": 161686049, - "sqm_ocr": 109.5, - "price": 3400.0, - "price_per_sqm": 31.050228310502284, - "url": "https://www.rightmove.co.uk/properties/161686049", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/161686049/52415_33869626_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.501639", - "last_seen": "2025-06-01T22:05:59.356476", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119805, - 51.431 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 33.97, - "rooms": 2, - "total_price": 2548.0, - "url": "https://www.rightmove.co.uk/properties/161686058", - "info": { - "identifier": 161686058, - "sqm_ocr": 75.0, - "price": 2548.0, - "price_per_sqm": 33.973333333333336, - "url": "https://www.rightmove.co.uk/properties/161686058", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/161686058/136139_2654771_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.355184", - "last_seen": "2025-06-01T22:06:02.428151", - "price": 2548 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.011732, - 51.510612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/161687324", - "info": { - "identifier": 161687324, - "sqm_ocr": null, - "price": 3995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161687324", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Cosway Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9970/161687324/9970_31671816_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.574172", - "last_seen": "2025-06-01T22:05:38.864101", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19802, - 51.607777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 44.1, - "qmprice": 58.96, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161687561", - "info": { - "identifier": 161687561, - "sqm_ocr": 44.1, - "price": 2600.0, - "price_per_sqm": 58.95691609977324, - "url": "https://www.rightmove.co.uk/properties/161687561", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/161687561/98531_1323733_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.918437", - "last_seen": "2025-06-01T22:05:49.033325", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.231528, - 51.5005 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 44.1, - "qmprice": 45.35, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161687570", - "info": { - "identifier": 161687570, - "sqm_ocr": 44.1, - "price": 2000.0, - "price_per_sqm": 45.35147392290249, - "url": "https://www.rightmove.co.uk/properties/161687570", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/161687570/98531_1323734_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.919900", - "last_seen": "2025-06-01T22:05:49.048664", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.231528, - 51.5005 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.3, - "qmprice": 58.2, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/161687624", - "info": { - "identifier": 161687624, - "sqm_ocr": 63.3, - "price": 3684.0, - "price_per_sqm": 58.199052132701425, - "url": "https://www.rightmove.co.uk/properties/161687624", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94246/161687624/94246_1311719_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.028658", - "last_seen": "2025-06-01T22:06:14.974014", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137357, - 51.513428 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161687780", - "info": { - "identifier": 161687780, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161687780", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Willtons Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82281/161687780/82281_Mk93LBH_IMG_00_0000_max_656x437.png", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.157664", - "last_seen": "2025-06-01T22:05:39.022146", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19882, - 51.55869 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.3, - "qmprice": 34.46, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161688092", - "info": { - "identifier": 161688092, - "sqm_ocr": 65.3, - "price": 2250.0, - "price_per_sqm": 34.456355283307815, - "url": "https://www.rightmove.co.uk/properties/161688092", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84818/161688092/84818_33869780_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.291924", - "last_seen": "2025-06-01T22:06:04.840973", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.345172, - 51.440765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.83, - "qmprice": 39.19, - "rooms": 2, - "total_price": 3952.0, - "url": "https://www.rightmove.co.uk/properties/161688410", - "info": { - "identifier": 161688410, - "sqm_ocr": 100.83, - "price": 3952.0, - "price_per_sqm": 39.19468412178915, - "url": "https://www.rightmove.co.uk/properties/161688410", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65439/161688410/65439_NEL250149_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.509161", - "last_seen": "2025-06-01T22:05:48.590994", - "price": 3952 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.226442, - 51.486958 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 52.63, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161689397", - "info": { - "identifier": 161689397, - "sqm_ocr": 57.0, - "price": 3000.0, - "price_per_sqm": 52.63157894736842, - "url": "https://www.rightmove.co.uk/properties/161689397", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Paramount", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62636/161689397/62636_PAR170233_L_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.192771", - "last_seen": "2025-06-01T22:06:11.367278", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074917, - 51.516876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.5, - "qmprice": 20.63, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161690432", - "info": { - "identifier": 161690432, - "sqm_ocr": 111.5, - "price": 2300.0, - "price_per_sqm": 20.62780269058296, - "url": "https://www.rightmove.co.uk/properties/161690432", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50181/161690432/50181_32022943_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.877946", - "last_seen": "2025-06-01T22:05:50.468848", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.339123, - 51.564606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161691401", - "info": { - "identifier": 161691401, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161691401", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/38k/37065/161691401/37065_3de1f9e6-4f11-41cf-a90e-19d394253997_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.764362", - "last_seen": "2025-06-01T22:05:49.671338", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120566, - 51.59909 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 36.52, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161691671", - "info": { - "identifier": 161691671, - "sqm_ocr": 89.0, - "price": 3250.0, - "price_per_sqm": 36.51685393258427, - "url": "https://www.rightmove.co.uk/properties/161691671", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47640/161691671/47640_33850981_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.415545", - "last_seen": "2025-06-01T20:19:57.823135", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07593, - 51.51708 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 54.79, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161692010", - "info": { - "identifier": 161692010, - "sqm_ocr": 73.0, - "price": 4000.0, - "price_per_sqm": 54.794520547945204, - "url": "https://www.rightmove.co.uk/properties/161692010", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58979/161692010/58979_CHQ012566334_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.296033", - "last_seen": "2025-06-01T22:05:58.193357", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177401, - 51.486534 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.33, - "qmprice": 37.2, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161692088", - "info": { - "identifier": 161692088, - "sqm_ocr": 83.33, - "price": 3100.0, - "price_per_sqm": 37.20148805952238, - "url": "https://www.rightmove.co.uk/properties/161692088", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51295/161692088/51295_PTL210297_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.876534", - "last_seen": "2025-06-01T22:05:39.600725", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200575, - 51.57458 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.4, - "qmprice": 61.98, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161692100", - "info": { - "identifier": 161692100, - "sqm_ocr": 48.4, - "price": 3000.0, - "price_per_sqm": 61.98347107438017, - "url": "https://www.rightmove.co.uk/properties/161692100", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons in association with James Pendleton", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279224/161692100/279224_WBL230415_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.079640", - "last_seen": "2025-06-01T22:05:59.150379", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120446, - 51.45419 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161692376", - "info": { - "identifier": 161692376, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161692376", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/161692376/84866_33869987_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.196068", - "last_seen": "2025-06-01T22:05:52.579580", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.274744, - 51.491367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.56, - "qmprice": 36.34, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161692919", - "info": { - "identifier": 161692919, - "sqm_ocr": 82.56, - "price": 3000.0, - "price_per_sqm": 36.33720930232558, - "url": "https://www.rightmove.co.uk/properties/161692919", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68804/161692919/68804_P300305_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.922959", - "last_seen": "2025-06-01T22:06:06.422807", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08159, - 51.45791 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.5, - "qmprice": 46.32, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/161693396", - "info": { - "identifier": 161693396, - "sqm_ocr": 75.5, - "price": 3497.0, - "price_per_sqm": 46.317880794701985, - "url": "https://www.rightmove.co.uk/properties/161693396", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55362/161693396/55362_33841894_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.765264", - "last_seen": "2025-06-01T22:06:15.169626", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174113, - 51.51401 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.5, - "qmprice": 38.79, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161693552", - "info": { - "identifier": 161693552, - "sqm_ocr": 82.5, - "price": 3200.0, - "price_per_sqm": 38.78787878787879, - "url": "https://www.rightmove.co.uk/properties/161693552", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/161693552/15951_1325625_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.852927", - "last_seen": "2025-06-01T22:05:44.636987", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269811, - 51.498432 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.4, - "qmprice": 29.67, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161693558", - "info": { - "identifier": 161693558, - "sqm_ocr": 67.4, - "price": 2000.0, - "price_per_sqm": 29.673590504451035, - "url": "https://www.rightmove.co.uk/properties/161693558", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/161693558/77192_MORAN20_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.212546", - "last_seen": "2025-06-01T22:05:40.886725", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24364, - 51.54867 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 39.47, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161693684", - "info": { - "identifier": 161693684, - "sqm_ocr": 76.0, - "price": 3000.0, - "price_per_sqm": 39.473684210526315, - "url": "https://www.rightmove.co.uk/properties/161693684", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Paramount", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62636/161693684/62636_PAR190213_L_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.532681", - "last_seen": "2025-06-01T22:06:08.997355", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065928, - 51.516026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 60.94, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161693690", - "info": { - "identifier": 161693690, - "sqm_ocr": 64.0, - "price": 3900.0, - "price_per_sqm": 60.9375, - "url": "https://www.rightmove.co.uk/properties/161693690", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/161693690/76585_1325311_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.027475", - "last_seen": "2025-06-01T22:06:14.967071", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1327, - 51.51667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.9, - "qmprice": 32.36, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161693774", - "info": { - "identifier": 161693774, - "sqm_ocr": 64.9, - "price": 2100.0, - "price_per_sqm": 32.357473035439135, - "url": "https://www.rightmove.co.uk/properties/161693774", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/161693774/107533_1325088_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.836596", - "last_seen": "2025-06-01T22:06:00.296163", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.012728, - 51.46512 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161694239", - "info": { - "identifier": 161694239, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161694239", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36789/161694239/36789_HOL210103_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.056383", - "last_seen": "2025-06-01T22:06:10.979199", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018193, - 51.497784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161694332", - "info": { - "identifier": 161694332, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161694332", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57934/161694332/57934_KDN240020_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.134356", - "last_seen": "2025-06-01T22:05:48.355784", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229952, - 51.498768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161694416", - "info": { - "identifier": 161694416, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161694416", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "S Stone Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286994/161694416/286994_ssml_1385956396_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.778405", - "last_seen": "2025-06-01T22:06:06.003900", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05742, - 51.4864 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.1, - "qmprice": 61.3, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/161694551", - "info": { - "identifier": 161694551, - "sqm_ocr": 60.1, - "price": 3684.0, - "price_per_sqm": 61.297836938435935, - "url": "https://www.rightmove.co.uk/properties/161694551", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94246/161694551/94246_1324126_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.739102", - "last_seen": "2025-06-01T22:05:42.745693", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125129, - 51.528362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 44.09, - "rooms": 3, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/161694746", - "info": { - "identifier": 161694746, - "sqm_ocr": 85.0, - "price": 3748.0, - "price_per_sqm": 44.09411764705882, - "url": "https://www.rightmove.co.uk/properties/161694746", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/161694746/29861_33870064_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.930667", - "last_seen": "2025-06-01T22:05:41.135091", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.274761, - 51.55992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161695166", - "info": { - "identifier": 161695166, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161695166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Surrey Quays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60474/161695166/60474_16530805MWGPP_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.959650", - "last_seen": "2025-06-01T22:06:00.588136", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03726, - 51.49117 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 54.79, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161695379", - "info": { - "identifier": 161695379, - "sqm_ocr": 73.0, - "price": 4000.0, - "price_per_sqm": 54.794520547945204, - "url": "https://www.rightmove.co.uk/properties/161695379", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Farrar & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128314/161695379/128314_8065_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.234325", - "last_seen": "2025-06-01T22:05:58.025239", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177401, - 51.486534 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161695490", - "info": { - "identifier": 161695490, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161695490", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Island Homes", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129139/161695490/129139_33870127_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.895020", - "last_seen": "2025-06-01T22:06:08.815586", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022541, - 51.48853 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161695937", - "info": { - "identifier": 161695937, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161695937", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/161695937/176261_102708040868_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/11/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.484165", - "last_seen": "2025-06-01T22:05:49.639274", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11991, - 51.59 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 58.39, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/161695946", - "info": { - "identifier": 161695946, - "sqm_ocr": 59.0, - "price": 3445.0, - "price_per_sqm": 58.389830508474574, - "url": "https://www.rightmove.co.uk/properties/161695946", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247511/161695946/247511_P284767_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.611380", - "last_seen": "2025-06-01T22:05:53.022565", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09782, - 51.53479 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 39.83, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161696093", - "info": { - "identifier": 161696093, - "sqm_ocr": 59.0, - "price": 2350.0, - "price_per_sqm": 39.83050847457627, - "url": "https://www.rightmove.co.uk/properties/161696093", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Latymers Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74302/161696093/74302_LATYM_000148_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.019614", - "last_seen": "2025-06-01T22:05:49.222592", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218985, - 51.493282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 43.2, - "qmprice": 88.77, - "rooms": 3, - "total_price": 3835.0, - "url": "https://www.rightmove.co.uk/properties/161696309", - "info": { - "identifier": 161696309, - "sqm_ocr": 43.2, - "price": 3835.0, - "price_per_sqm": 88.77314814814814, - "url": "https://www.rightmove.co.uk/properties/161696309", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161696309/17888_36490_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.728994", - "last_seen": "2025-06-01T22:05:42.889928", - "price": 3835 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14308, - 51.52806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161697077", - "info": { - "identifier": 161697077, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161697077", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161697077/96668_247698408052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.587071", - "last_seen": "2025-06-01T20:19:58.587071", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021267, - 51.49818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161697473", - "info": { - "identifier": 161697473, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161697473", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13349/161697473/13349_CSC220291_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.015311", - "last_seen": "2025-06-01T22:05:52.404083", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.382266, - 51.44379 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161698016", - "info": { - "identifier": 161698016, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161698016", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/161698016/174452_11722_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.441184", - "last_seen": "2025-06-01T22:05:46.418865", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00616, - 51.50249 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161698523", - "info": { - "identifier": 161698523, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161698523", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Austin Homes London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105559/161698523/105559_c0641f7a-756e-4572-8e69-509ca14732e3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.706523", - "last_seen": "2025-06-01T22:05:56.833282", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09057, - 51.5255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.1, - "qmprice": 22.1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161698616", - "info": { - "identifier": 161698616, - "sqm_ocr": 113.1, - "price": 2500.0, - "price_per_sqm": 22.104332449160037, - "url": "https://www.rightmove.co.uk/properties/161698616", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kearns Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/224k/223367/161698616/223367_WDR250110_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.753147", - "last_seen": "2025-06-01T22:05:51.657725", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.459009, - 51.497437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.36, - "qmprice": 50.25, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/161698655", - "info": { - "identifier": 161698655, - "sqm_ocr": 60.36, - "price": 3033.0, - "price_per_sqm": 50.24850894632207, - "url": "https://www.rightmove.co.uk/properties/161698655", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50969/161698655/50969_P3264B4122_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.194980", - "last_seen": "2025-06-01T22:06:16.095710", - "price": 3423 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11962, - 51.51311 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.8, - "qmprice": 31.32, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161698871", - "info": { - "identifier": 161698871, - "sqm_ocr": 87.8, - "price": 2750.0, - "price_per_sqm": 31.32118451025057, - "url": "https://www.rightmove.co.uk/properties/161698871", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Rampton Baseley", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/151k/150230/161698871/150230_BEL160053_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.178665", - "last_seen": "2025-06-01T22:06:12.368344", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17318, - 51.44958 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.6, - "qmprice": 22.94, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161698955", - "info": { - "identifier": 161698955, - "sqm_ocr": 104.6, - "price": 2400.0, - "price_per_sqm": 22.944550669216063, - "url": "https://www.rightmove.co.uk/properties/161698955", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239978/161698955/239978_KEI250194_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.339946", - "last_seen": "2025-06-01T22:06:00.629060", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052246, - 51.42571 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161699291", - "info": { - "identifier": 161699291, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161699291", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161699291/257522_167WILLOWBROOK-james-TgHC82_IMG_18_0000_max_656x437.png", - "let_date_available": "30/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.140495", - "last_seen": "2025-06-01T22:05:47.898370", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09407, - 51.56926 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 41.23, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161699558", - "info": { - "identifier": 161699558, - "sqm_ocr": 57.0, - "price": 2350.0, - "price_per_sqm": 41.228070175438596, - "url": "https://www.rightmove.co.uk/properties/161699558", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Latymers Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74302/161699558/74302_LATYM_000043_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.630933", - "last_seen": "2025-06-01T22:05:55.960181", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218402, - 51.4935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.4, - "qmprice": 49.6, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161699654", - "info": { - "identifier": 161699654, - "sqm_ocr": 50.4, - "price": 2500.0, - "price_per_sqm": 49.6031746031746, - "url": "https://www.rightmove.co.uk/properties/161699654", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84790/161699654/84790_P300216_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.351763", - "last_seen": "2025-06-01T22:06:12.775442", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17006, - 51.46283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161699669", - "info": { - "identifier": 161699669, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161699669", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/161699669/84878_33867560_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.372698", - "last_seen": "2025-06-01T22:06:01.182044", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191938, - 51.426155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.4, - "qmprice": 37.48, - "rooms": 2, - "total_price": 2301.0, - "url": "https://www.rightmove.co.uk/properties/161699753", - "info": { - "identifier": 161699753, - "sqm_ocr": 61.4, - "price": 2301.0, - "price_per_sqm": 37.47557003257329, - "url": "https://www.rightmove.co.uk/properties/161699753", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Sworn & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48812/161699753/48812_SAC000A16_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.673626", - "last_seen": "2025-06-01T22:05:45.229556", - "price": 2301 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267998, - 51.495464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 56.67, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161699879", - "info": { - "identifier": 161699879, - "sqm_ocr": 60.0, - "price": 3400.0, - "price_per_sqm": 56.666666666666664, - "url": "https://www.rightmove.co.uk/properties/161699879", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77508/161699879/77508_LBL240106_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.386155", - "last_seen": "2025-06-01T22:05:59.861792", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114939, - 51.505676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.96, - "qmprice": 29.43, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161700020", - "info": { - "identifier": 161700020, - "sqm_ocr": 67.96, - "price": 2000.0, - "price_per_sqm": 29.429075927015894, - "url": "https://www.rightmove.co.uk/properties/161700020", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Humphrey and Brand Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71947/161700020/71947_3fd6d2a1-586f-40a2-a209-43cb6cc116a3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.698735", - "last_seen": "2025-06-01T22:05:58.661355", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.291008, - 51.390064 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.16, - "qmprice": 63.33, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161700194", - "info": { - "identifier": 161700194, - "sqm_ocr": 58.16, - "price": 3683.0, - "price_per_sqm": 63.32530949105915, - "url": "https://www.rightmove.co.uk/properties/161700194", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Parkes Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205670/161700194/205670_PEA250139_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.187384", - "last_seen": "2025-06-01T22:06:15.398477", - "price": 3683.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158638, - 51.514553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.6, - "qmprice": 29.89, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161700245", - "info": { - "identifier": 161700245, - "sqm_ocr": 73.6, - "price": 2200.0, - "price_per_sqm": 29.89130434782609, - "url": "https://www.rightmove.co.uk/properties/161700245", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112915/161700245/112915_P300332_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.509978", - "last_seen": "2025-06-01T22:05:46.803995", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00236, - 51.48807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2095.0, - "url": "https://www.rightmove.co.uk/properties/161700368", - "info": { - "identifier": 161700368, - "sqm_ocr": null, - "price": 2095.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161700368", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84797/161700368/84797_33870347_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.254268", - "last_seen": "2025-06-01T22:06:04.317803", - "price": 2095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.379147, - 51.42662 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.7, - "qmprice": 47.74, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161700833", - "info": { - "identifier": 161700833, - "sqm_ocr": 81.7, - "price": 3900.0, - "price_per_sqm": 47.735618115055075, - "url": "https://www.rightmove.co.uk/properties/161700833", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/161700833/15963_1325603_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.147083", - "last_seen": "2025-06-01T22:06:12.154186", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204835, - 51.457886 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.7, - "qmprice": 31.82, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161700836", - "info": { - "identifier": 161700836, - "sqm_ocr": 81.7, - "price": 2600.0, - "price_per_sqm": 31.823745410036718, - "url": "https://www.rightmove.co.uk/properties/161700836", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/161700836/15963_1325614_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.145558", - "last_seen": "2025-06-01T22:06:12.152180", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204835, - 51.457886 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.9, - "qmprice": 39.25, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161700848", - "info": { - "identifier": 161700848, - "sqm_ocr": 101.9, - "price": 4000.0, - "price_per_sqm": 39.25417075564278, - "url": "https://www.rightmove.co.uk/properties/161700848", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161700848/15975_1325646_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.276797", - "last_seen": "2025-06-01T22:06:01.059730", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214168, - 51.423416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3393.0, - "url": "https://www.rightmove.co.uk/properties/161701466", - "info": { - "identifier": 161701466, - "sqm_ocr": null, - "price": 3393.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161701466", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84785/161701466/84785_33717723_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.619126", - "last_seen": "2025-06-01T22:05:44.089795", - "price": 3393 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.257387, - 51.51593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.49, - "qmprice": 38.42, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/161701529", - "info": { - "identifier": 161701529, - "sqm_ocr": 71.49, - "price": 2747.0, - "price_per_sqm": 38.42495453909638, - "url": "https://www.rightmove.co.uk/properties/161701529", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218729/161701529/218729_33870396_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.472443", - "last_seen": "2025-06-01T22:05:53.512572", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128258, - 51.55238 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/161701535", - "info": { - "identifier": 161701535, - "sqm_ocr": null, - "price": 3597.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161701535", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218729/161701535/218729_33870397_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.462381", - "last_seen": "2025-06-01T22:05:53.506224", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118153, - 51.552746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.1, - "qmprice": 34.87, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161701544", - "info": { - "identifier": 161701544, - "sqm_ocr": 63.1, - "price": 2200.0, - "price_per_sqm": 34.865293185419965, - "url": "https://www.rightmove.co.uk/properties/161701544", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238829/161701544/238829_33870399_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.019325", - "last_seen": "2025-06-01T22:06:13.168248", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170867, - 51.427216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 129.0, - "qmprice": 25.19, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161701550", - "info": { - "identifier": 161701550, - "sqm_ocr": 129.0, - "price": 3250.0, - "price_per_sqm": 25.1937984496124, - "url": "https://www.rightmove.co.uk/properties/161701550", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "COZEE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262232/161701550/262232_02373e8f-30ea-4b7f-a9f7-0c1d66df063c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.867167", - "last_seen": "2025-06-01T22:06:09.750547", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01394, - 51.52387 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161701559", - "info": { - "identifier": 161701559, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161701559", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Apple Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151424/161701559/151424_APV1000746_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.02445, - 51.53787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.2, - "qmprice": 33.76, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161701844", - "info": { - "identifier": 161701844, - "sqm_ocr": 62.2, - "price": 2100.0, - "price_per_sqm": 33.762057877813504, - "url": "https://www.rightmove.co.uk/properties/161701844", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Doyle Sales & Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91000/161701844/91000_DOYLE_003522_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.452916", - "last_seen": "2025-06-01T22:05:44.961784", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.326782, - 51.516804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161701988", - "info": { - "identifier": 161701988, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161701988", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84848/161701988/84848_33870414_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.223990", - "last_seen": "2025-06-01T22:06:04.252925", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33392, - 51.453106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.8, - "qmprice": 25.32, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161702048", - "info": { - "identifier": 161702048, - "sqm_ocr": 94.8, - "price": 2400.0, - "price_per_sqm": 25.31645569620253, - "url": "https://www.rightmove.co.uk/properties/161702048", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118042/161702048/118042_33870419_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.535509", - "last_seen": "2025-06-01T22:05:46.847054", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.065614, - 51.486637 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161702210", - "info": { - "identifier": 161702210, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161702210", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112915/161702210/112915_P298268_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.110134", - "last_seen": "2025-06-01T22:05:46.412560", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06565, - 51.48599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 47.62, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161702240", - "info": { - "identifier": 161702240, - "sqm_ocr": 63.0, - "price": 3000.0, - "price_per_sqm": 47.61904761904762, - "url": "https://www.rightmove.co.uk/properties/161702240", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161702240/87187_26775_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.588496", - "last_seen": "2025-06-01T22:05:58.602283", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302437, - 51.414333 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/161702456", - "info": { - "identifier": 161702456, - "sqm_ocr": null, - "price": 2535.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161702456", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161702456/96668_243962203042025_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.813991", - "last_seen": "2025-06-01T22:05:46.641425", - "price": 2445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.067152, - 51.49467 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 34.76, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161702618", - "info": { - "identifier": 161702618, - "sqm_ocr": 82.0, - "price": 2850.0, - "price_per_sqm": 34.75609756097561, - "url": "https://www.rightmove.co.uk/properties/161702618", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249770/161702618/249770_33870434_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.263248", - "last_seen": "2025-06-01T22:05:55.031364", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211549, - 51.61373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161702648", - "info": { - "identifier": 161702648, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161702648", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161702648/96668_247701008052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.171284", - "last_seen": "2025-06-01T22:06:04.535739", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.355799, - 51.44167 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/161702837", - "info": { - "identifier": 161702837, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161702837", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161702837/17888_31673_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.266521", - "last_seen": "2025-06-01T22:05:43.188965", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16621, - 51.55162 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.4, - "qmprice": 61.47, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161702909", - "info": { - "identifier": 161702909, - "sqm_ocr": 56.4, - "price": 3467.0, - "price_per_sqm": 61.47163120567376, - "url": "https://www.rightmove.co.uk/properties/161702909", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/161702909/15981_1324491_IMG_04_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.560026", - "last_seen": "2025-06-01T22:06:13.750858", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146089, - 51.4371 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.4, - "qmprice": 40.78, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161702912", - "info": { - "identifier": 161702912, - "sqm_ocr": 56.4, - "price": 2300.0, - "price_per_sqm": 40.780141843971634, - "url": "https://www.rightmove.co.uk/properties/161702912", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/161702912/15981_1324490_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.568688", - "last_seen": "2025-06-01T22:06:13.755001", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146089, - 51.4371 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.9, - "qmprice": 27.81, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161703065", - "info": { - "identifier": 161703065, - "sqm_ocr": 89.9, - "price": 2500.0, - "price_per_sqm": 27.808676307007783, - "url": "https://www.rightmove.co.uk/properties/161703065", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257069/161703065/257069_33870444_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.719838", - "last_seen": "2025-06-01T22:05:47.112368", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.000217, - 51.48571 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.6, - "qmprice": 54.59, - "rooms": 2, - "total_price": 3308.0, - "url": "https://www.rightmove.co.uk/properties/161703182", - "info": { - "identifier": 161703182, - "sqm_ocr": 60.6, - "price": 3308.0, - "price_per_sqm": 54.587458745874585, - "url": "https://www.rightmove.co.uk/properties/161703182", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/161703182/76585_1325367_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.893102", - "last_seen": "2025-06-01T22:06:15.761577", - "price": 3308.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165343, - 51.517014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/161703413", - "info": { - "identifier": 161703413, - "sqm_ocr": null, - "price": 2395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161703413", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Peter Michael Estates & Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25176/161703413/25176_1661_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.980766", - "last_seen": "2025-06-01T22:05:45.870114", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03786, - 51.66815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 45.14, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161703422", - "info": { - "identifier": 161703422, - "sqm_ocr": 72.0, - "price": 3250.0, - "price_per_sqm": 45.138888888888886, - "url": "https://www.rightmove.co.uk/properties/161703422", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84830/161703422/84830_33870452_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.114241", - "last_seen": "2025-06-01T22:05:58.324923", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202795, - 51.49433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161703509", - "info": { - "identifier": 161703509, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161703509", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Equity Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35516/161703509/35516_CVA205428_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.076180", - "last_seen": "2025-06-01T22:05:45.719114", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.045085, - 51.65645 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161703794", - "info": { - "identifier": 161703794, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161703794", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161703794/96668_247696008052025_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.586000", - "last_seen": "2025-06-01T22:05:43.531436", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150956, - 51.318882 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161703812", - "info": { - "identifier": 161703812, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161703812", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161703812/96668_247732108052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.326905", - "last_seen": "2025-06-01T22:05:44.309452", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276196, - 51.52027 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161704271", - "info": { - "identifier": 161704271, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161704271", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Andrew Purnell & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286856/161704271/286856_33870526_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.444117", - "last_seen": "2025-06-01T22:06:01.611142", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218524, - 51.415653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3141.0, - "url": "https://www.rightmove.co.uk/properties/161704448", - "info": { - "identifier": 161704448, - "sqm_ocr": null, - "price": 3141.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161704448", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191426/161704448/191426_2653697_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.302558", - "last_seen": "2025-06-01T22:06:15.274511", - "price": 3141.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180995, - 51.53482 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.4, - "qmprice": 45.56, - "rooms": 2, - "total_price": 2752.0, - "url": "https://www.rightmove.co.uk/properties/161704532", - "info": { - "identifier": 161704532, - "sqm_ocr": 60.4, - "price": 2752.0, - "price_per_sqm": 45.562913907284766, - "url": "https://www.rightmove.co.uk/properties/161704532", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/161704532/76585_1325675_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.623712", - "last_seen": "2025-06-01T22:06:15.502410", - "price": 2752.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168236, - 51.520702 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.5, - "qmprice": 54.58, - "rooms": 3, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161704553", - "info": { - "identifier": 161704553, - "sqm_ocr": 65.5, - "price": 3575.0, - "price_per_sqm": 54.58015267175573, - "url": "https://www.rightmove.co.uk/properties/161704553", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/161704553/15954_1325674_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.683167", - "last_seen": "2025-06-01T22:05:53.987247", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098907, - 51.538418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161704982", - "info": { - "identifier": 161704982, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161704982", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161704982/96668_245660519042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.705477", - "last_seen": "2025-06-01T22:06:11.696958", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.009922, - 51.624264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161705408", - "info": { - "identifier": 161705408, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161705408", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Real Move Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53891/161705408/53891_RME19932_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.418289", - "last_seen": "2025-06-01T22:06:09.013515", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06892, - 51.52605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 38.1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161705654", - "info": { - "identifier": 161705654, - "sqm_ocr": 84.0, - "price": 3200.0, - "price_per_sqm": 38.095238095238095, - "url": "https://www.rightmove.co.uk/properties/161705654", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156782/161705654/156782_KAE230063_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.340431", - "last_seen": "2025-06-01T22:06:13.356011", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176352, - 51.469833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 30.49, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161705816", - "info": { - "identifier": 161705816, - "sqm_ocr": 82.0, - "price": 2500.0, - "price_per_sqm": 30.48780487804878, - "url": "https://www.rightmove.co.uk/properties/161705816", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Nova Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258446/161705816/258446_33870668_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.649313", - "last_seen": "2025-06-01T22:05:39.446348", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.246851, - 51.5994 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161706668", - "info": { - "identifier": 161706668, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161706668", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161706668/96668_60598209082019_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.219510", - "last_seen": "2025-06-01T22:05:39.891383", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.18973, - 51.47389 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 30.82, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161706677", - "info": { - "identifier": 161706677, - "sqm_ocr": 73.0, - "price": 2250.0, - "price_per_sqm": 30.82191780821918, - "url": "https://www.rightmove.co.uk/properties/161706677", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Brian Cox", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288164/161706677/288164_33870684_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.923767", - "last_seen": "2025-06-01T22:05:50.205994", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.379936, - 51.57924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2245.0, - "url": "https://www.rightmove.co.uk/properties/161706749", - "info": { - "identifier": 161706749, - "sqm_ocr": null, - "price": 2245.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161706749", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/161706749/54730_WLL250213_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.301979", - "last_seen": "2025-06-01T22:05:44.226422", - "price": 2245.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375651, - 51.504913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.4, - "qmprice": 43.86, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161706902", - "info": { - "identifier": 161706902, - "sqm_ocr": 68.4, - "price": 3000.0, - "price_per_sqm": 43.859649122807014, - "url": "https://www.rightmove.co.uk/properties/161706902", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/161706902/101522_1325242_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.452483", - "last_seen": "2025-06-01T22:05:47.729199", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02942, - 51.544815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161708099", - "info": { - "identifier": 161708099, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161708099", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Frestons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259079/161708099/259079_RL6066_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.564708", - "last_seen": "2025-06-01T22:05:38.794836", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177374, - 51.6162 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161710511", - "info": { - "identifier": 161710511, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161710511", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hanland Capital", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282767/161710511/282767_1306Walton_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "28/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.634503", - "last_seen": "2025-06-01T22:06:04.973840", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09745, - 51.49171 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/161711045", - "info": { - "identifier": 161711045, - "sqm_ocr": null, - "price": 3050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161711045", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Hanland Capital", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282767/161711045/282767_606Royalcaptain_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "21/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:08.527865", - "last_seen": "2025-06-01T22:06:08.527865", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008, - 51.50821 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161712386", - "info": { - "identifier": 161712386, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161712386", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Imperial Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85765/161712386/85765_000020479_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.773203", - "last_seen": "2025-06-01T22:05:49.333629", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18483, - 51.4766 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.6, - "qmprice": 43.72, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161712782", - "info": { - "identifier": 161712782, - "sqm_ocr": 68.6, - "price": 2999.0, - "price_per_sqm": 43.717201166180764, - "url": "https://www.rightmove.co.uk/properties/161712782", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/161712782/15960_1321041_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.767704", - "last_seen": "2025-06-01T22:06:15.093681", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168514, - 51.534607 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.4, - "qmprice": 45.14, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161713097", - "info": { - "identifier": 161713097, - "sqm_ocr": 86.4, - "price": 3900.0, - "price_per_sqm": 45.138888888888886, - "url": "https://www.rightmove.co.uk/properties/161713097", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "JC Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275489/161713097/275489_08042025-CN351_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.279913", - "last_seen": "2025-06-01T20:19:58.279913", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017234, - 51.50096 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.61, - "qmprice": 49.62, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161713430", - "info": { - "identifier": 161713430, - "sqm_ocr": 80.61, - "price": 4000.0, - "price_per_sqm": 49.62163503287433, - "url": "https://www.rightmove.co.uk/properties/161713430", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - City", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260405/161713430/260405_000018477b_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.090374", - "last_seen": "2025-06-01T22:05:47.531305", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08975, - 51.52792 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3164.0, - "url": "https://www.rightmove.co.uk/properties/161714180", - "info": { - "identifier": 161714180, - "sqm_ocr": null, - "price": 3164.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161714180", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/161714180/253604_21S0905_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.852388", - "last_seen": "2025-06-01T22:06:07.678352", - "price": 3164.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00768, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161714267", - "info": { - "identifier": 161714267, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161714267", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156527/161714267/156527_P276835_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.549385", - "last_seen": "2025-06-01T22:06:06.242689", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09534, - 51.47675 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.3, - "qmprice": 47.22, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/161714564", - "info": { - "identifier": 161714564, - "sqm_ocr": 80.3, - "price": 3792.0, - "price_per_sqm": 47.222914072229145, - "url": "https://www.rightmove.co.uk/properties/161714564", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Unihood", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289043/161714564/289043_39FairviewHouse_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "18/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.873452", - "last_seen": "2025-06-01T22:05:48.294431", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1848, - 51.47601 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.5, - "qmprice": 26.01, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161714810", - "info": { - "identifier": 161714810, - "sqm_ocr": 86.5, - "price": 2250.0, - "price_per_sqm": 26.01156069364162, - "url": "https://www.rightmove.co.uk/properties/161714810", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Properly", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218600/161714810/218600_30ec7b64-1764-4857-8f07-f63add27c58e_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.629499", - "last_seen": "2025-06-01T22:05:46.203891", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01373, - 51.493465 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161715809", - "info": { - "identifier": 161715809, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161715809", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48330/161715809/48330_BRI250012_L_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.554872", - "last_seen": "2025-06-01T22:06:06.244688", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09579, - 51.4856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161716490", - "info": { - "identifier": 161716490, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161716490", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Kings Group", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12376/161716490/12376_33870902_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.810573", - "last_seen": "2025-06-01T22:05:49.869982", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058403, - 51.60451 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161716493", - "info": { - "identifier": 161716493, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161716493", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/161716493/194222_HRP240661_L_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.562209", - "last_seen": "2025-06-01T22:06:01.402757", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.236065, - 51.396114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.1, - "qmprice": 30.22, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161716514", - "info": { - "identifier": 161716514, - "sqm_ocr": 76.1, - "price": 2300.0, - "price_per_sqm": 30.223390275952696, - "url": "https://www.rightmove.co.uk/properties/161716514", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194036/161716514/194036_HWV250081_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.442626", - "last_seen": "2025-06-01T22:06:01.607578", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192268, - 51.414223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.79, - "qmprice": 32.84, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161716811", - "info": { - "identifier": 161716811, - "sqm_ocr": 121.79, - "price": 4000.0, - "price_per_sqm": 32.84341899991789, - "url": "https://www.rightmove.co.uk/properties/161716811", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89776/161716811/89776_NHL220034_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.126404", - "last_seen": "2025-06-01T22:05:58.309733", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204575, - 51.515533 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161718224", - "info": { - "identifier": 161718224, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161718224", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79825/161718224/79825_P300266_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.047027", - "last_seen": "2025-06-01T22:05:39.064265", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14504, - 51.6145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161718623", - "info": { - "identifier": 161718623, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161718623", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247511/161718623/247511_P284772_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.549565", - "last_seen": "2025-06-01T22:05:54.158790", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09782, - 51.53479 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.7, - "qmprice": 34.35, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161718719", - "info": { - "identifier": 161718719, - "sqm_ocr": 75.7, - "price": 2600.0, - "price_per_sqm": 34.34610303830912, - "url": "https://www.rightmove.co.uk/properties/161718719", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161718719/55101_1325688_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.566241", - "last_seen": "2025-06-01T22:06:06.252598", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068984, - 51.49727 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.79, - "qmprice": 41.42, - "rooms": 2, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/161718731", - "info": { - "identifier": 161718731, - "sqm_ocr": 74.79, - "price": 3098.0, - "price_per_sqm": 41.42265008691001, - "url": "https://www.rightmove.co.uk/properties/161718731", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157817/161718731/157817_2456098_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.693011", - "last_seen": "2025-06-01T22:06:10.693011", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01815, - 51.50002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161718947", - "info": { - "identifier": 161718947, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161718947", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Lords Associates of London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29226/161718947/29226_12665659_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.383421", - "last_seen": "2025-06-01T22:05:51.340615", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.446938, - 51.48224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 129.4, - "qmprice": 23.18, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161718977", - "info": { - "identifier": 161718977, - "sqm_ocr": 129.4, - "price": 3000.0, - "price_per_sqm": 23.1839258114374, - "url": "https://www.rightmove.co.uk/properties/161718977", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Curchods Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13985/161718977/13985_CKT250063_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.621869", - "last_seen": "2025-06-01T22:05:58.676811", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252848, - 51.395256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 31.82, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161719961", - "info": { - "identifier": 161719961, - "sqm_ocr": 88.0, - "price": 2800.0, - "price_per_sqm": 31.818181818181817, - "url": "https://www.rightmove.co.uk/properties/161719961", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39740/161719961/39740_FIN250185_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.861297", - "last_seen": "2025-06-01T22:05:38.752959", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20161, - 51.59778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 30.56, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161720159", - "info": { - "identifier": 161720159, - "sqm_ocr": 72.0, - "price": 2200.0, - "price_per_sqm": 30.555555555555557, - "url": "https://www.rightmove.co.uk/properties/161720159", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kenton", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74731/161720159/74731_KENT_004521_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.284394", - "last_seen": "2025-06-01T22:05:41.680525", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.061527, - 51.408245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161720951", - "info": { - "identifier": 161720951, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161720951", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39741/161720951/39741_33871088_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.363641", - "last_seen": "2025-06-01T22:06:15.346316", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192727, - 51.525974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2680.0, - "url": "https://www.rightmove.co.uk/properties/161721896", - "info": { - "identifier": 161721896, - "sqm_ocr": null, - "price": 2680.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161721896", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Woodrow Morris", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7459/161721896/7459_WOM1001380_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.201245", - "last_seen": "2025-06-01T22:05:50.616016", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33607, - 51.56494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161721917", - "info": { - "identifier": 161721917, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161721917", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/161721917/54730_WLL210147_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.912342", - "last_seen": "2025-06-01T22:05:41.175315", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216452, - 51.52843 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161722052", - "info": { - "identifier": 161722052, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161722052", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Orient Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283391/161722052/283391_1618_ORES_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.118269", - "last_seen": "2025-06-01T22:05:39.155552", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.233909, - 51.592403 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.0, - "qmprice": 29.17, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161722109", - "info": { - "identifier": 161722109, - "sqm_ocr": 120.0, - "price": 3500.0, - "price_per_sqm": 29.166666666666668, - "url": "https://www.rightmove.co.uk/properties/161722109", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Bryan & Keegan", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102278/161722109/102278_BBY150283_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.016308", - "last_seen": "2025-06-01T22:06:00.853321", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023813, - 51.466053 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161723060", - "info": { - "identifier": 161723060, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161723060", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Langford Russell", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/110k/109579/161723060/109579_P276824_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.281282", - "last_seen": "2025-06-01T22:05:41.698258", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0951, - 51.37422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161723141", - "info": { - "identifier": 161723141, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161723141", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Burnet Ware", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83566/161723141/83566_33871219_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.827393", - "last_seen": "2025-06-01T22:05:43.551110", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118068, - 51.34249 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.0, - "qmprice": 30.48, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161723156", - "info": { - "identifier": 161723156, - "sqm_ocr": 105.0, - "price": 3200.0, - "price_per_sqm": 30.476190476190474, - "url": "https://www.rightmove.co.uk/properties/161723156", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/252k/251027/161723156/251027_MWL230108_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.076051", - "last_seen": "2025-06-01T22:05:39.101928", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138921, - 51.624786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 44.37, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161723393", - "info": { - "identifier": 161723393, - "sqm_ocr": 71.0, - "price": 3150.0, - "price_per_sqm": 44.36619718309859, - "url": "https://www.rightmove.co.uk/properties/161723393", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/161723393/77511_SDL240204_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.961515", - "last_seen": "2025-06-01T22:05:56.456954", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087943, - 51.53149 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.72, - "qmprice": 51.29, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161723855", - "info": { - "identifier": 161723855, - "sqm_ocr": 49.72, - "price": 2550.0, - "price_per_sqm": 51.28720836685439, - "url": "https://www.rightmove.co.uk/properties/161723855", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3723/161723855/3723_PHL240106_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.362581", - "last_seen": "2025-06-01T22:06:15.342403", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195613, - 51.52849 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.7, - "qmprice": 43.0, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161723969", - "info": { - "identifier": 161723969, - "sqm_ocr": 90.7, - "price": 3900.0, - "price_per_sqm": 42.998897464167584, - "url": "https://www.rightmove.co.uk/properties/161723969", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55432/161723969/55432_KAV251205_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.553015", - "last_seen": "2025-06-01T22:05:50.016170", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117132, - 51.580074 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161724482", - "info": { - "identifier": 161724482, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161724482", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Havilands", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82874/161724482/82874_33680479_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.965239", - "last_seen": "2025-06-01T22:05:45.443357", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129334, - 51.648952 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.64, - "qmprice": 32.86, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161724491", - "info": { - "identifier": 161724491, - "sqm_ocr": 80.64, - "price": 2650.0, - "price_per_sqm": 32.86210317460318, - "url": "https://www.rightmove.co.uk/properties/161724491", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/161724491/44537_TOL230015_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.291727", - "last_seen": "2025-06-01T22:06:05.063251", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075849, - 51.50188 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.64, - "qmprice": 62.85, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161724494", - "info": { - "identifier": 161724494, - "sqm_ocr": 63.64, - "price": 4000.0, - "price_per_sqm": 62.853551225644246, - "url": "https://www.rightmove.co.uk/properties/161724494", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97525/161724494/97525_NOL170215_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.075206", - "last_seen": "2025-06-01T22:05:57.465645", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195588, - 51.510162 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161724500", - "info": { - "identifier": 161724500, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161724500", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/161724500/77511_SDL190104_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.889289", - "last_seen": "2025-06-01T22:05:47.546297", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.081851, - 51.532913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161724638", - "info": { - "identifier": 161724638, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161724638", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "James Edward", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/165k/164045/161724638/164045_33871310_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.034723", - "last_seen": "2025-06-01T22:05:47.848546", - "price": 3225.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087468, - 51.55917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 31.82, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161724821", - "info": { - "identifier": 161724821, - "sqm_ocr": 66.0, - "price": 2100.0, - "price_per_sqm": 31.818181818181817, - "url": "https://www.rightmove.co.uk/properties/161724821", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Squires Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12569/161724821/12569_33871315_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.890894", - "last_seen": "2025-06-01T22:05:54.076114", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129388, - 51.56675 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 34.87, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161724908", - "info": { - "identifier": 161724908, - "sqm_ocr": 76.0, - "price": 2650.0, - "price_per_sqm": 34.86842105263158, - "url": "https://www.rightmove.co.uk/properties/161724908", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230516/161724908/230516_CCT250658_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.189689", - "last_seen": "2025-06-01T22:06:05.006319", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099388, - 51.48234 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.01, - "qmprice": 37.97, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161725154", - "info": { - "identifier": 161725154, - "sqm_ocr": 79.01, - "price": 3000.0, - "price_per_sqm": 37.96987723073028, - "url": "https://www.rightmove.co.uk/properties/161725154", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/161725154/66771_1325090_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.048568", - "last_seen": "2025-06-01T22:05:58.998722", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123135, - 51.481846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.6, - "qmprice": 32.07, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161725157", - "info": { - "identifier": 161725157, - "sqm_ocr": 68.6, - "price": 2200.0, - "price_per_sqm": 32.06997084548105, - "url": "https://www.rightmove.co.uk/properties/161725157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/161725157/66771_1325681_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.047289", - "last_seen": "2025-06-01T22:05:58.997239", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114041, - 51.47713 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.4, - "qmprice": 37.98, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161725214", - "info": { - "identifier": 161725214, - "sqm_ocr": 72.4, - "price": 2750.0, - "price_per_sqm": 37.98342541436464, - "url": "https://www.rightmove.co.uk/properties/161725214", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84818/161725214/84818_33871343_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.401807", - "last_seen": "2025-06-01T22:06:04.436872", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.350316, - 51.440704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.7, - "qmprice": 31.36, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161725283", - "info": { - "identifier": 161725283, - "sqm_ocr": 87.7, - "price": 2750.0, - "price_per_sqm": 31.356898517673887, - "url": "https://www.rightmove.co.uk/properties/161725283", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43817/161725283/43817_P300171_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.392966", - "last_seen": "2025-06-01T22:06:12.147957", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20997, - 51.45104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2895.0, - "url": "https://www.rightmove.co.uk/properties/161725955", - "info": { - "identifier": 161725955, - "sqm_ocr": null, - "price": 2895.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161725955", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "April", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75126/161725955/75126_APR240005_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.239326", - "last_seen": "2025-06-01T22:06:07.645848", - "price": 2895.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.008004, - 51.539158 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161726498", - "info": { - "identifier": 161726498, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161726498", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Bryan Maher", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222935/161726498/222935_33871433_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.065598", - "last_seen": "2025-06-01T22:05:41.332600", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265606, - 51.56937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.73, - "qmprice": 41.31, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161727122", - "info": { - "identifier": 161727122, - "sqm_ocr": 84.73, - "price": 3500.0, - "price_per_sqm": 41.30768322908061, - "url": "https://www.rightmove.co.uk/properties/161727122", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51316/161727122/51316_LIL250109_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.990729", - "last_seen": "2025-06-01T22:06:16.079318", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188708, - 51.531857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.51, - "qmprice": 41.03, - "rooms": 4, - "total_price": 3796.0, - "url": "https://www.rightmove.co.uk/properties/161727206", - "info": { - "identifier": 161727206, - "sqm_ocr": 92.51, - "price": 3796.0, - "price_per_sqm": 41.0334017944006, - "url": "https://www.rightmove.co.uk/properties/161727206", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "JS Estate Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264161/161727206/264161_549079_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.805331", - "last_seen": "2025-06-01T22:06:06.396914", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042364, - 51.49558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.5, - "qmprice": 42.58, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161727209", - "info": { - "identifier": 161727209, - "sqm_ocr": 86.5, - "price": 3683.0, - "price_per_sqm": 42.578034682080926, - "url": "https://www.rightmove.co.uk/properties/161727209", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89776/161727209/89776_NHL250036_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.810141", - "last_seen": "2025-06-01T22:06:15.649085", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190599, - 51.515076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 34.38, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161727263", - "info": { - "identifier": 161727263, - "sqm_ocr": 64.0, - "price": 2200.0, - "price_per_sqm": 34.375, - "url": "https://www.rightmove.co.uk/properties/161727263", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Farrell Lewis Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267680/161727263/267680_835_FLEW_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.408685", - "last_seen": "2025-06-01T22:05:44.908854", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.250312, - 51.509247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161727800", - "info": { - "identifier": 161727800, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161727800", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80829/161727800/80829_TDL240095_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.231230", - "last_seen": "2025-06-01T22:06:04.284717", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.320697, - 51.42894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.4, - "qmprice": 41.44, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161727815", - "info": { - "identifier": 161727815, - "sqm_ocr": 72.4, - "price": 3000.0, - "price_per_sqm": 41.436464088397784, - "url": "https://www.rightmove.co.uk/properties/161727815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78395/161727815/78395_33592774_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.274806", - "last_seen": "2025-06-01T22:06:08.115489", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075897, - 51.51716 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161728412", - "info": { - "identifier": 161728412, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161728412", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/161728412/80105_9100_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.005878", - "last_seen": "2025-06-01T22:06:14.847225", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187437, - 51.529003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.3, - "qmprice": 61.08, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161728442", - "info": { - "identifier": 161728442, - "sqm_ocr": 57.3, - "price": 3500.0, - "price_per_sqm": 61.082024432809774, - "url": "https://www.rightmove.co.uk/properties/161728442", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112924/161728442/112924_P300365_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.044442", - "last_seen": "2025-06-01T22:06:00.456662", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00826, - 51.46625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161728475", - "info": { - "identifier": 161728475, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161728475", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Aston Square", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274703/161728475/274703_F4PENT_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.999905", - "last_seen": "2025-06-01T22:05:53.104797", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1157, - 51.5314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.2, - "qmprice": 30.25, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/161729099", - "info": { - "identifier": 161729099, - "sqm_ocr": 79.2, - "price": 2396.0, - "price_per_sqm": 30.252525252525253, - "url": "https://www.rightmove.co.uk/properties/161729099", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/161729099/82537_33871594_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.313448", - "last_seen": "2025-06-01T22:06:09.190063", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025955, - 51.49235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161729447", - "info": { - "identifier": 161729447, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161729447", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Mann Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42117/161729447/42117_000908683_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.067260", - "last_seen": "2025-06-01T22:06:13.560606", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16438, - 51.43012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 59.67, - "rooms": 2, - "total_price": 3640.0, - "url": "https://www.rightmove.co.uk/properties/161729576", - "info": { - "identifier": 161729576, - "sqm_ocr": 61.0, - "price": 3640.0, - "price_per_sqm": 59.67213114754098, - "url": "https://www.rightmove.co.uk/properties/161729576", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/161729576/73120_1325727_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.520912", - "last_seen": "2025-06-01T22:05:43.239891", - "price": 3640.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101952, - 51.51338 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.65, - "qmprice": 43.69, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161729771", - "info": { - "identifier": 161729771, - "sqm_ocr": 68.65, - "price": 2999.0, - "price_per_sqm": 43.68536052439912, - "url": "https://www.rightmove.co.uk/properties/161729771", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96151/161729771/96151_CSZ221805_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.835441", - "last_seen": "2025-06-01T22:05:49.358839", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213194, - 51.47857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.9, - "qmprice": 56.93, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161729792", - "info": { - "identifier": 161729792, - "sqm_ocr": 60.9, - "price": 3467.0, - "price_per_sqm": 56.92939244663383, - "url": "https://www.rightmove.co.uk/properties/161729792", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/161729792/15948_1325720_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.816362", - "last_seen": "2025-06-01T22:05:49.533014", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184335, - 51.475033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.6, - "qmprice": 39.5, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161729843", - "info": { - "identifier": 161729843, - "sqm_ocr": 88.6, - "price": 3500.0, - "price_per_sqm": 39.503386004514674, - "url": "https://www.rightmove.co.uk/properties/161729843", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/161729843/149153_1325703_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.800742", - "last_seen": "2025-06-01T22:05:58.940891", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.246863, - 51.3887 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.5, - "qmprice": 23.19, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161729852", - "info": { - "identifier": 161729852, - "sqm_ocr": 103.5, - "price": 2400.0, - "price_per_sqm": 23.18840579710145, - "url": "https://www.rightmove.co.uk/properties/161729852", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/161729852/149153_1325713_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.545583", - "last_seen": "2025-06-01T22:06:01.825221", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220184, - 51.381817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161729897", - "info": { - "identifier": 161729897, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161729897", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Century 21 Goodmayes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279887/161729897/279887_R210265_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.559214", - "last_seen": "2025-06-01T22:06:02.706782", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.059901, - 51.552055 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161730104", - "info": { - "identifier": 161730104, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161730104", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Henry Wiltshire", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256607/161730104/256607_6638_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.267080", - "last_seen": "2025-06-01T22:06:09.344710", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004384, - 51.506237 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.8, - "qmprice": 55.99, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/161730401", - "info": { - "identifier": 161730401, - "sqm_ocr": 53.8, - "price": 3012.0, - "price_per_sqm": 55.985130111524164, - "url": "https://www.rightmove.co.uk/properties/161730401", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Mountgrange Heritage", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32235/161730401/32235_3265_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.358513", - "last_seen": "2025-06-01T22:05:57.610845", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198006, - 51.511322 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.8, - "qmprice": 33.83, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161730455", - "info": { - "identifier": 161730455, - "sqm_ocr": 79.8, - "price": 2700.0, - "price_per_sqm": 33.83458646616541, - "url": "https://www.rightmove.co.uk/properties/161730455", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/161730455/15963_1325429_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.828674", - "last_seen": "2025-06-01T22:06:12.527973", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215805, - 51.458557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161730536", - "info": { - "identifier": 161730536, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161730536", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Rawlinson Gold", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60020/161730536/60020_103186003299_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.907628", - "last_seen": "2025-06-01T22:05:50.501750", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33598, - 51.57942 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 148.3, - "qmprice": 25.29, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161730584", - "info": { - "identifier": 161730584, - "sqm_ocr": 148.3, - "price": 3750.0, - "price_per_sqm": 25.28658125421443, - "url": "https://www.rightmove.co.uk/properties/161730584", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161730584/15975_1325728_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.761890", - "last_seen": "2025-06-01T22:06:01.317987", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22142, - 51.412945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161730725", - "info": { - "identifier": 161730725, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161730725", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78410/161730725/78410_33871693_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.935652", - "last_seen": "2025-06-01T22:06:14.280786", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151824, - 51.470566 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 119.1, - "qmprice": 25.19, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161731073", - "info": { - "identifier": 161731073, - "sqm_ocr": 119.1, - "price": 3000.0, - "price_per_sqm": 25.188916876574307, - "url": "https://www.rightmove.co.uk/properties/161731073", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247508/161731073/247508_P466262_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.922878", - "last_seen": "2025-06-01T22:06:04.065452", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.10511, - 51.60471 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.1, - "qmprice": 56.31, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/161731433", - "info": { - "identifier": 161731433, - "sqm_ocr": 62.1, - "price": 3497.0, - "price_per_sqm": 56.312399355877616, - "url": "https://www.rightmove.co.uk/properties/161731433", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55362/161731433/55362_33871738_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.266452", - "last_seen": "2025-06-01T22:06:15.512680", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178292, - 51.512608 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.95, - "qmprice": 42.49, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161731961", - "info": { - "identifier": 161731961, - "sqm_ocr": 52.95, - "price": 2250.0, - "price_per_sqm": 42.492917847025495, - "url": "https://www.rightmove.co.uk/properties/161731961", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Storeys", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176102/161731961/176102_33871776_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.896406", - "last_seen": "2025-06-01T22:06:06.514240", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087925, - 51.473732 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.5, - "qmprice": 27.09, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161732006", - "info": { - "identifier": 161732006, - "sqm_ocr": 101.5, - "price": 2750.0, - "price_per_sqm": 27.0935960591133, - "url": "https://www.rightmove.co.uk/properties/161732006", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "jdm", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250727/161732006/250727_LGW250016_L_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.448784", - "last_seen": "2025-06-01T22:05:47.056224", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.004048, - 51.485714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.5, - "qmprice": 27.98, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161732087", - "info": { - "identifier": 161732087, - "sqm_ocr": 96.5, - "price": 2700.0, - "price_per_sqm": 27.979274611398964, - "url": "https://www.rightmove.co.uk/properties/161732087", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7189/161732087/7189_33871784_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.082080", - "last_seen": "2025-06-01T22:06:01.035206", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039346, - 51.44977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 32.84, - "rooms": 3, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/161732156", - "info": { - "identifier": 161732156, - "sqm_ocr": 76.0, - "price": 2496.0, - "price_per_sqm": 32.8421052631579, - "url": "https://www.rightmove.co.uk/properties/161732156", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90035/161732156/90035_33871789_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.545054", - "last_seen": "2025-06-01T22:05:51.514014", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.415051, - 51.502007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161732297", - "info": { - "identifier": 161732297, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161732297", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Century 21 Goodmayes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279887/161732297/279887_R210268_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.919006", - "last_seen": "2025-06-01T22:06:02.189825", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.053928, - 51.550457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161732468", - "info": { - "identifier": 161732468, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161732468", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/161732468/176261_102708005139_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.501579", - "last_seen": "2025-06-01T22:05:50.111107", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10942, - 51.58894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161732945", - "info": { - "identifier": 161732945, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161732945", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Petermans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45479/161732945/45479_EDG230130_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.158507", - "last_seen": "2025-06-01T22:05:50.816598", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28027, - 51.60674 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/161733254", - "info": { - "identifier": 161733254, - "sqm_ocr": null, - "price": 2708.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161733254", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161733254/17888_25514_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.477606", - "last_seen": "2025-06-01T22:05:53.870780", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12758, - 51.5475 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161733284", - "info": { - "identifier": 161733284, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161733284", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161733284/43310_HEA200650_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.008182", - "last_seen": "2025-06-01T22:06:11.299898", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038901, - 51.51173 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/161733338", - "info": { - "identifier": 161733338, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161733338", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40512/161733338/40512_33871860_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.526350", - "last_seen": "2025-06-01T22:05:59.247463", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108056, - 51.503582 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.1, - "qmprice": 40.31, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161733617", - "info": { - "identifier": 161733617, - "sqm_ocr": 52.1, - "price": 2100.0, - "price_per_sqm": 40.30710172744722, - "url": "https://www.rightmove.co.uk/properties/161733617", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Rampton Baseley", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/255k/254339/161733617/254339_PGL180018_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.928573", - "last_seen": "2025-06-01T22:06:14.254236", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190708, - 51.44962 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/161733878", - "info": { - "identifier": 161733878, - "sqm_ocr": null, - "price": 2448.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161733878", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161733878/17888_37783_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.676618", - "last_seen": "2025-06-01T22:05:56.915853", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13569, - 51.53261 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161734001", - "info": { - "identifier": 161734001, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161734001", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/161734001/67576_RL0208_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.722338", - "last_seen": "2025-06-01T22:05:41.998870", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.156336, - 51.549973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.53, - "qmprice": 35.17, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161734286", - "info": { - "identifier": 161734286, - "sqm_ocr": 99.53, - "price": 3500.0, - "price_per_sqm": 35.165276800964534, - "url": "https://www.rightmove.co.uk/properties/161734286", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71785/161734286/71785_33871909_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.152418", - "last_seen": "2025-06-01T22:06:00.154896", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13828, - 51.453075 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/161734667", - "info": { - "identifier": 161734667, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161734667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/161734667/78429_LON-376_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.686831", - "last_seen": "2025-06-01T22:06:14.957343", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18979, - 51.52438 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 43.48, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161734958", - "info": { - "identifier": 161734958, - "sqm_ocr": 69.0, - "price": 3000.0, - "price_per_sqm": 43.47826086956522, - "url": "https://www.rightmove.co.uk/properties/161734958", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161734958/253853_1325750_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.306672", - "last_seen": "2025-06-01T22:06:05.162172", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099715, - 51.4927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.8, - "qmprice": 57.58, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161734964", - "info": { - "identifier": 161734964, - "sqm_ocr": 50.8, - "price": 2925.0, - "price_per_sqm": 57.57874015748032, - "url": "https://www.rightmove.co.uk/properties/161734964", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Bentley & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/205k/204560/161734964/204560_166_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.258575", - "last_seen": "2025-06-01T22:05:42.005594", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12892, - 51.533028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.68, - "qmprice": 58.65, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161735123", - "info": { - "identifier": 161735123, - "sqm_ocr": 59.68, - "price": 3500.0, - "price_per_sqm": 58.64611260053619, - "url": "https://www.rightmove.co.uk/properties/161735123", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/161735123/15945_1325653_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.082180", - "last_seen": "2025-06-01T22:06:14.666051", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188313, - 51.511627 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161735801", - "info": { - "identifier": 161735801, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161735801", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Cityrez", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51249/161735801/51249_CITYS_000306_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.416918", - "last_seen": "2025-06-01T22:05:47.006014", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020985, - 51.473602 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 41.85, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161735900", - "info": { - "identifier": 161735900, - "sqm_ocr": 69.9, - "price": 2925.0, - "price_per_sqm": 41.84549356223176, - "url": "https://www.rightmove.co.uk/properties/161735900", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/161735900/281129_090507_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.158961", - "last_seen": "2025-06-01T22:05:39.337558", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22111, - 51.57144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.1, - "qmprice": 35.01, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/161736845", - "info": { - "identifier": 161736845, - "sqm_ocr": 67.1, - "price": 2349.0, - "price_per_sqm": 35.007451564828614, - "url": "https://www.rightmove.co.uk/properties/161736845", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "JS Estate Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264161/161736845/264161_392741_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.554775", - "last_seen": "2025-06-01T22:06:05.601981", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.047865, - 51.491142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3495.0, - "url": "https://www.rightmove.co.uk/properties/161737109", - "info": { - "identifier": 161737109, - "sqm_ocr": null, - "price": 3495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161737109", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Empire Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237251/161737109/237251_102658003172_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.613030", - "last_seen": "2025-06-01T22:05:41.245615", - "price": 3495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21789, - 51.55044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/161737247", - "info": { - "identifier": 161737247, - "sqm_ocr": null, - "price": 2695.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161737247", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Alex Crown Lettings & Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102122/161737247/102122_1930_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.841711", - "last_seen": "2025-06-01T22:05:49.966712", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13901, - 51.57142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161737295", - "info": { - "identifier": 161737295, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161737295", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161737295/96668_243157526032025_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.462342", - "last_seen": "2025-06-01T22:05:47.737733", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089037, - 51.533813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161737526", - "info": { - "identifier": 161737526, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161737526", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "SJW property management limited", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/233k/232853/161737526/232853_31a73a46-13ce-4d8d-af26-92d2aba456ba_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.866742", - "last_seen": "2025-06-01T22:05:56.606872", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222807, - 51.511166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.2, - "qmprice": 36.63, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161737730", - "info": { - "identifier": 161737730, - "sqm_ocr": 109.2, - "price": 4000.0, - "price_per_sqm": 36.63003663003663, - "url": "https://www.rightmove.co.uk/properties/161737730", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212408/161737730/212408_P160747_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.187109", - "last_seen": "2025-06-01T22:06:07.612393", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00814, - 51.54122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161737784", - "info": { - "identifier": 161737784, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161737784", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Swift Real Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275078/161737784/275078_370_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.064808", - "last_seen": "2025-06-01T22:05:50.685898", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.349346, - 51.5766 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161738057", - "info": { - "identifier": 161738057, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161738057", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11488/161738057/11488_0462_FJL046201726_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.105606", - "last_seen": "2025-06-01T22:06:14.591545", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201355, - 51.527275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/161738798", - "info": { - "identifier": 161738798, - "sqm_ocr": null, - "price": 3120.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161738798", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/161738798/49784_36901_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.222152", - "last_seen": "2025-06-01T22:06:07.074831", - "price": 3102 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10159, - 51.50302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.6, - "qmprice": 39.16, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161739281", - "info": { - "identifier": 161739281, - "sqm_ocr": 76.6, - "price": 3000.0, - "price_per_sqm": 39.1644908616188, - "url": "https://www.rightmove.co.uk/properties/161739281", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111325/161739281/111325_KDP250971_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.168802", - "last_seen": "2025-06-01T22:05:38.953522", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19946, - 51.57174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 28.74, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161739323", - "info": { - "identifier": 161739323, - "sqm_ocr": 87.0, - "price": 2500.0, - "price_per_sqm": 28.735632183908045, - "url": "https://www.rightmove.co.uk/properties/161739323", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85706/161739323/85706_KDE240137_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.293127", - "last_seen": "2025-06-01T22:05:43.733296", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073941, - 51.417103 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.74, - "qmprice": 43.1, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/161739371", - "info": { - "identifier": 161739371, - "sqm_ocr": 63.74, - "price": 2747.0, - "price_per_sqm": 43.096956385315345, - "url": "https://www.rightmove.co.uk/properties/161739371", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78265/161739371/78265_CEL240014_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.134606", - "last_seen": "2025-06-01T22:05:58.266177", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183338, - 51.483524 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.4, - "qmprice": 31.55, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161739425", - "info": { - "identifier": 161739425, - "sqm_ocr": 63.4, - "price": 2000.0, - "price_per_sqm": 31.545741324921135, - "url": "https://www.rightmove.co.uk/properties/161739425", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137360/161739425/137360_1322137_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.392153", - "last_seen": "2025-06-01T22:05:41.785799", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034433, - 51.414993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.6, - "qmprice": 35.23, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161739437", - "info": { - "identifier": 161739437, - "sqm_ocr": 59.6, - "price": 2100.0, - "price_per_sqm": 35.23489932885906, - "url": "https://www.rightmove.co.uk/properties/161739437", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137360/161739437/137360_1322141_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.394830", - "last_seen": "2025-06-01T22:05:41.637129", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034433, - 51.414993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.6, - "qmprice": 60.7, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161739755", - "info": { - "identifier": 161739755, - "sqm_ocr": 62.6, - "price": 3800.0, - "price_per_sqm": 60.70287539936102, - "url": "https://www.rightmove.co.uk/properties/161739755", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/161739755/108947_1325770_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.870992", - "last_seen": "2025-06-01T22:05:50.424569", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.341963, - 51.567245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 122.1, - "qmprice": 27.03, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161739926", - "info": { - "identifier": 161739926, - "sqm_ocr": 122.1, - "price": 3300.0, - "price_per_sqm": 27.027027027027028, - "url": "https://www.rightmove.co.uk/properties/161739926", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/161739926/250739_1324541_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.196181", - "last_seen": "2025-06-01T22:05:50.598123", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.287954, - 51.610428 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161740034", - "info": { - "identifier": 161740034, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161740034", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Maxwell Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81507/161740034/81507_33253648_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.986473", - "last_seen": "2025-06-01T22:05:38.567801", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242024, - 51.59614 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.34, - "qmprice": 28.27, - "rooms": 3, - "total_price": 3430.0, - "url": "https://www.rightmove.co.uk/properties/161741009", - "info": { - "identifier": 161741009, - "sqm_ocr": 121.34, - "price": 3430.0, - "price_per_sqm": 28.26767760013186, - "url": "https://www.rightmove.co.uk/properties/161741009", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "ElliotLee", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61517/161741009/61517_9b8013eb-8c87-44b8-a940-cc06b9eb032f_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.825702", - "last_seen": "2025-06-01T22:05:51.437724", - "price": 3430.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.488177, - 51.54061 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161741231", - "info": { - "identifier": 161741231, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161741231", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161741231/96668_247792909052025_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.973562", - "last_seen": "2025-06-01T22:06:05.965212", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095638, - 51.47872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3228.0, - "url": "https://www.rightmove.co.uk/properties/161741669", - "info": { - "identifier": 161741669, - "sqm_ocr": null, - "price": 3228.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161741669", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Messila Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92735/161741669/92735_33755636_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.474479", - "last_seen": "2025-06-01T22:06:14.481303", - "price": 3228 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137558, - 51.499245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161741717", - "info": { - "identifier": 161741717, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161741717", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26204/161741717/26204_33872350_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.075939", - "last_seen": "2025-06-01T22:06:01.280454", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185184, - 51.422737 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.5, - "qmprice": 38.99, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161741744", - "info": { - "identifier": 161741744, - "sqm_ocr": 79.5, - "price": 3100.0, - "price_per_sqm": 38.9937106918239, - "url": "https://www.rightmove.co.uk/properties/161741744", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JTM Homes", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29933/161741744/29933_101464005050_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.400870", - "last_seen": "2025-06-01T22:05:53.366263", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11532, - 51.56151 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161741912", - "info": { - "identifier": 161741912, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161741912", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Comber & Company", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14278/161741912/14278_20624143_7528560l_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.786324", - "last_seen": "2025-06-01T22:05:46.599117", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.053912, - 51.470375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 37.25, - "rooms": 2, - "total_price": 2123.0, - "url": "https://www.rightmove.co.uk/properties/161741957", - "info": { - "identifier": 161741957, - "sqm_ocr": 57.0, - "price": 2123.0, - "price_per_sqm": 37.24561403508772, - "url": "https://www.rightmove.co.uk/properties/161741957", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/161741957/80796_171_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.745830", - "last_seen": "2025-06-01T22:05:59.785829", - "price": 2123 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13753, - 51.4697 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/161742338", - "info": { - "identifier": 161742338, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161742338", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Abacus Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26267/161742338/26267_ABAC_016675_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.281456", - "last_seen": "2025-06-01T22:05:55.021156", - "price": 2730 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196701, - 51.564575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.1, - "qmprice": 35.18, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/161742347", - "info": { - "identifier": 161742347, - "sqm_ocr": 68.1, - "price": 2396.0, - "price_per_sqm": 35.183553597650516, - "url": "https://www.rightmove.co.uk/properties/161742347", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7963/161742347/7963_33872378_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.030602", - "last_seen": "2025-06-01T22:05:54.706655", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.308572, - 51.51154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161742653", - "info": { - "identifier": 161742653, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161742653", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13093/161742653/13093_FIL240026_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.657196", - "last_seen": "2025-06-01T22:05:39.465076", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191166, - 51.593323 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.9, - "qmprice": 46.69, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161743097", - "info": { - "identifier": 161743097, - "sqm_ocr": 58.9, - "price": 2750.0, - "price_per_sqm": 46.6893039049236, - "url": "https://www.rightmove.co.uk/properties/161743097", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57907/161743097/57907_KCM240053_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.825518", - "last_seen": "2025-06-01T22:06:13.013486", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.157641, - 51.464615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161743322", - "info": { - "identifier": 161743322, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161743322", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Birchills", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115933/161743322/115933_f7c0fbe9-d91f-444e-a7f7-7cab4bc99649_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.248892", - "last_seen": "2025-06-01T22:06:03.188499", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0633, - 51.535515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/161743685", - "info": { - "identifier": 161743685, - "sqm_ocr": null, - "price": 3120.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161743685", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/161743685/120463_33872464_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.880842", - "last_seen": "2025-06-01T22:06:16.067492", - "price": 3120 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171481, - 51.53213 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.45, - "qmprice": 37.89, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161743874", - "info": { - "identifier": 161743874, - "sqm_ocr": 84.45, - "price": 3200.0, - "price_per_sqm": 37.89224393132031, - "url": "https://www.rightmove.co.uk/properties/161743874", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51271/161743874/51271_BAL110022_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.546779", - "last_seen": "2025-06-01T22:06:04.341592", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229841, - 51.484165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161744786", - "info": { - "identifier": 161744786, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161744786", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "VNRE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79200/161744786/79200_33872548_IMG_21_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.236937", - "last_seen": "2025-06-01T22:05:45.187953", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290067, - 51.506004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 40.0, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161745071", - "info": { - "identifier": 161745071, - "sqm_ocr": 75.0, - "price": 3000.0, - "price_per_sqm": 40.0, - "url": "https://www.rightmove.co.uk/properties/161745071", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46013/161745071/46013_CAL230122_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.436926", - "last_seen": "2025-06-01T22:05:42.743541", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150651, - 51.546177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3696.0, - "url": "https://www.rightmove.co.uk/properties/161745134", - "info": { - "identifier": 161745134, - "sqm_ocr": null, - "price": 3696.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161745134", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233849/161745134/233849_2691866_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.060611", - "last_seen": "2025-06-01T22:05:48.406937", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23049, - 51.48966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161745476", - "info": { - "identifier": 161745476, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161745476", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/161745476/222842_TCT230038_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.804113", - "last_seen": "2025-06-01T20:19:59.804113", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020133, - 51.499268 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 44.03, - "rooms": 2, - "total_price": 3170.0, - "url": "https://www.rightmove.co.uk/properties/161745521", - "info": { - "identifier": 161745521, - "sqm_ocr": 72.0, - "price": 3170.0, - "price_per_sqm": 44.02777777777778, - "url": "https://www.rightmove.co.uk/properties/161745521", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Get Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57558/161745521/57558_57558_p0193752_SKYL002F_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.168670", - "last_seen": "2025-06-01T22:06:07.605370", - "price": 3170.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01052, - 51.546146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161745623", - "info": { - "identifier": 161745623, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161745623", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Balgores", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10596/161745623/10596_BAL250036_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.064490", - "last_seen": "2025-06-01T22:05:38.212670", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.145058, - 51.56646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.4, - "qmprice": 29.68, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161745749", - "info": { - "identifier": 161745749, - "sqm_ocr": 99.4, - "price": 2950.0, - "price_per_sqm": 29.678068410462775, - "url": "https://www.rightmove.co.uk/properties/161745749", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57979/161745749/57979_KEH251946_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.554219", - "last_seen": "2025-06-01T22:06:13.093050", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139716, - 51.42423 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3315.0, - "url": "https://www.rightmove.co.uk/properties/161745773", - "info": { - "identifier": 161745773, - "sqm_ocr": null, - "price": 3315.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161745773", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Chris Anthony Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/123k/122383/161745773/122383_1399_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.861381", - "last_seen": "2025-06-01T22:05:47.505043", - "price": 3315.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05693, - 51.5568 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/161746016", - "info": { - "identifier": 161746016, - "sqm_ocr": null, - "price": 2708.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161746016", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65872/161746016/65872_CWQ012564469_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.579588", - "last_seen": "2025-06-01T20:19:58.014480", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0271, - 51.502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/161746241", - "info": { - "identifier": 161746241, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161746241", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Spencer Munson Property Services", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35858/161746241/35858_48651_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.297097", - "last_seen": "2025-06-01T22:06:09.194652", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038205, - 51.51082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.3, - "qmprice": 39.31, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161746250", - "info": { - "identifier": 161746250, - "sqm_ocr": 76.3, - "price": 2999.0, - "price_per_sqm": 39.305373525557016, - "url": "https://www.rightmove.co.uk/properties/161746250", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65872/161746250/65872_CWQ012588843_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.324054", - "last_seen": "2025-06-01T22:06:09.160194", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010401, - 51.506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.1, - "qmprice": 55.48, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161746382", - "info": { - "identifier": 161746382, - "sqm_ocr": 72.1, - "price": 4000.0, - "price_per_sqm": 55.47850208044383, - "url": "https://www.rightmove.co.uk/properties/161746382", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Copperstones", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82091/161746382/82091_CR_558_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.039944", - "last_seen": "2025-06-01T22:05:58.975436", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12924, - 51.47883 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.4, - "qmprice": 45.56, - "rooms": 2, - "total_price": 2752.0, - "url": "https://www.rightmove.co.uk/properties/161747210", - "info": { - "identifier": 161747210, - "sqm_ocr": 60.4, - "price": 2752.0, - "price_per_sqm": 45.562913907284766, - "url": "https://www.rightmove.co.uk/properties/161747210", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50933/161747210/50933_P1939G4324_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.135877", - "last_seen": "2025-06-01T22:06:16.112931", - "price": 2751 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16817, - 51.5209 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.4, - "qmprice": 41.37, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/161748524", - "info": { - "identifier": 161748524, - "sqm_ocr": 66.4, - "price": 2747.0, - "price_per_sqm": 41.37048192771084, - "url": "https://www.rightmove.co.uk/properties/161748524", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94643/161748524/94643_33872777_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.390882", - "last_seen": "2025-06-01T22:05:57.520366", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183169, - 51.483593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.7, - "qmprice": 32.13, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161748743", - "info": { - "identifier": 161748743, - "sqm_ocr": 74.7, - "price": 2400.0, - "price_per_sqm": 32.1285140562249, - "url": "https://www.rightmove.co.uk/properties/161748743", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22943/161748743/22943_BNL220092_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.519387", - "last_seen": "2025-06-01T22:05:50.102723", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128591, - 51.60865 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161748812", - "info": { - "identifier": 161748812, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161748812", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83027/161748812/83027_33872793_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.589696", - "last_seen": "2025-06-01T22:06:02.744717", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.006451, - 51.511906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161749112", - "info": { - "identifier": 161749112, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161749112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6769/161749112/6769_GGL170005_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.703468", - "last_seen": "2025-06-01T22:05:39.583687", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198847, - 51.572914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.0, - "qmprice": 29.91, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161749880", - "info": { - "identifier": 161749880, - "sqm_ocr": 107.0, - "price": 3200.0, - "price_per_sqm": 29.906542056074766, - "url": "https://www.rightmove.co.uk/properties/161749880", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Colin Dean Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118630/161749880/118630_33872826_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.648728", - "last_seen": "2025-06-01T22:05:41.189719", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276739, - 51.56138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 119.1, - "qmprice": 29.39, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161750102", - "info": { - "identifier": 161750102, - "sqm_ocr": 119.1, - "price": 3500.0, - "price_per_sqm": 29.387069689336695, - "url": "https://www.rightmove.co.uk/properties/161750102", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Cameron Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36963/161750102/36963_33872830_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.392136", - "last_seen": "2025-06-01T22:05:51.084529", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.488165, - 51.540592 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.29, - "qmprice": 60.86, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161750309", - "info": { - "identifier": 161750309, - "sqm_ocr": 49.29, - "price": 3000.0, - "price_per_sqm": 60.86427267194157, - "url": "https://www.rightmove.co.uk/properties/161750309", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "CHAMBR\u00c9", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230147/161750309/230147_252_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.235595", - "last_seen": "2025-06-01T22:06:16.046290", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139982, - 51.488857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.2, - "qmprice": 35.54, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161750474", - "info": { - "identifier": 161750474, - "sqm_ocr": 80.2, - "price": 2850.0, - "price_per_sqm": 35.53615960099751, - "url": "https://www.rightmove.co.uk/properties/161750474", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41633/161750474/41633_WWL220081_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.598661", - "last_seen": "2025-06-01T22:06:13.795184", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193461, - 51.44655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.7, - "qmprice": 33.11, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161750516", - "info": { - "identifier": 161750516, - "sqm_ocr": 105.7, - "price": 3500.0, - "price_per_sqm": 33.11258278145695, - "url": "https://www.rightmove.co.uk/properties/161750516", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111325/161750516/111325_KDP250969_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.959515", - "last_seen": "2025-06-01T22:05:38.580102", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194411, - 51.583218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.5, - "qmprice": 29.38, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161751035", - "info": { - "identifier": 161751035, - "sqm_ocr": 88.5, - "price": 2600.0, - "price_per_sqm": 29.37853107344633, - "url": "https://www.rightmove.co.uk/properties/161751035", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82086/161751035/82086_1324688_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.137983", - "last_seen": "2025-06-01T22:05:40.824069", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29333, - 51.553734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.8, - "qmprice": 26.94, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161751077", - "info": { - "identifier": 161751077, - "sqm_ocr": 92.8, - "price": 2500.0, - "price_per_sqm": 26.939655172413794, - "url": "https://www.rightmove.co.uk/properties/161751077", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18930/161751077/18930_33872877_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.102902", - "last_seen": "2025-06-01T22:05:53.765777", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137663, - 51.562447 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.8, - "qmprice": 26.28, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161751107", - "info": { - "identifier": 161751107, - "sqm_ocr": 81.8, - "price": 2150.0, - "price_per_sqm": 26.283618581907092, - "url": "https://www.rightmove.co.uk/properties/161751107", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "PMP International", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240842/161751107/240842_33872881_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.078759", - "last_seen": "2025-06-01T22:05:50.706301", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.272702, - 51.60428 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161751116", - "info": { - "identifier": 161751116, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161751116", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Jukes & Co Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285254/161751116/285254_a8997723-0741-4601-b8a0-93fac9a2c678_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.747208", - "last_seen": "2025-06-01T22:05:43.682292", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08485, - 51.39718 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.4, - "qmprice": 58.0, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/161751314", - "info": { - "identifier": 161751314, - "sqm_ocr": 59.4, - "price": 3445.0, - "price_per_sqm": 57.996632996633, - "url": "https://www.rightmove.co.uk/properties/161751314", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/161751314/15945_1325804_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.330438", - "last_seen": "2025-06-01T22:05:57.719294", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205532, - 51.513493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.09, - "qmprice": 26.98, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161751455", - "info": { - "identifier": 161751455, - "sqm_ocr": 100.09, - "price": 2700.0, - "price_per_sqm": 26.975721850334697, - "url": "https://www.rightmove.co.uk/properties/161751455", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161751455/48101_1325802_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.436595", - "last_seen": "2025-06-01T20:19:58.436595", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016541, - 51.512337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 43.33, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161752088", - "info": { - "identifier": 161752088, - "sqm_ocr": 75.0, - "price": 3250.0, - "price_per_sqm": 43.333333333333336, - "url": "https://www.rightmove.co.uk/properties/161752088", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77514/161752088/77514_CWE130054_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.609660", - "last_seen": "2025-06-01T22:06:15.823403", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1657, - 51.5238 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161752124", - "info": { - "identifier": 161752124, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161752124", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Myspace", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274817/161752124/274817_2199_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.827468", - "last_seen": "2025-06-01T22:06:12.059817", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011755, - 51.557594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161752907", - "info": { - "identifier": 161752907, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161752907", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Houst", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170132/161752907/170132_12437_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.110013", - "last_seen": "2025-06-01T22:05:47.393838", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.083681, - 51.5317 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161753630", - "info": { - "identifier": 161753630, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161753630", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Century 21 London Central", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45920/161753630/45920_R208970_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.484135", - "last_seen": "2025-06-01T22:06:06.763047", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099203, - 51.478138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161753765", - "info": { - "identifier": 161753765, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161753765", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161753765/96668_244431007042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.638304", - "last_seen": "2025-06-01T22:06:02.779589", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005635, - 51.51274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161753852", - "info": { - "identifier": 161753852, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161753852", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161753852/96668_245557518042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.750819", - "last_seen": "2025-06-01T22:05:58.587322", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.309839, - 51.39685 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161753876", - "info": { - "identifier": 161753876, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161753876", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161753876/96668_245637419042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.712677", - "last_seen": "2025-06-01T22:06:12.726940", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165273, - 51.426094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161754470", - "info": { - "identifier": 161754470, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161754470", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50969/161754470/50969_P2993F5209_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.783856", - "last_seen": "2025-06-01T22:06:15.634692", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15876, - 51.51454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.3, - "qmprice": 31.98, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161754488", - "info": { - "identifier": 161754488, - "sqm_ocr": 81.3, - "price": 2600.0, - "price_per_sqm": 31.980319803198032, - "url": "https://www.rightmove.co.uk/properties/161754488", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210116/161754488/210116_P300284_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.957039", - "last_seen": "2025-06-01T22:05:42.828796", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18617, - 51.54662 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.89, - "qmprice": 49.84, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161754602", - "info": { - "identifier": 161754602, - "sqm_ocr": 73.89, - "price": 3683.0, - "price_per_sqm": 49.844363242658005, - "url": "https://www.rightmove.co.uk/properties/161754602", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Battersea & Nine Elms Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143171/161754602/143171_33873113_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.094721", - "last_seen": "2025-06-01T22:06:13.272682", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13768, - 51.48148 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/161754779", - "info": { - "identifier": 161754779, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161754779", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50966/161754779/50966_P3249F2306_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.795752", - "last_seen": "2025-06-01T22:05:49.186421", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23215, - 51.5101 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 46.32, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161755400", - "info": { - "identifier": 161755400, - "sqm_ocr": 68.0, - "price": 3150.0, - "price_per_sqm": 46.3235294117647, - "url": "https://www.rightmove.co.uk/properties/161755400", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Andrew Reeves", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58599/161755400/58599_L_6328851_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.566937", - "last_seen": "2025-06-01T22:06:15.864182", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149239, - 51.490772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161755442", - "info": { - "identifier": 161755442, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161755442", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Houst", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170132/161755442/170132_12495_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.724974", - "last_seen": "2025-06-01T22:05:49.378146", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211775, - 51.4812 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161755502", - "info": { - "identifier": 161755502, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161755502", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Lords Associates of London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29226/161755502/29226_10652442_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.788283", - "last_seen": "2025-06-01T22:05:51.383269", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.475875, - 51.541725 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.3, - "qmprice": 39.64, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161755586", - "info": { - "identifier": 161755586, - "sqm_ocr": 88.3, - "price": 3500.0, - "price_per_sqm": 39.637599093997736, - "url": "https://www.rightmove.co.uk/properties/161755586", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43760/161755586/43760_P300352_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.442564", - "last_seen": "2025-06-01T22:05:42.756555", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1571, - 51.55579 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.0, - "qmprice": 42.55, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161755847", - "info": { - "identifier": 161755847, - "sqm_ocr": 94.0, - "price": 4000.0, - "price_per_sqm": 42.5531914893617, - "url": "https://www.rightmove.co.uk/properties/161755847", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Andrew Reeves", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58599/161755847/58599_6329223_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.718435", - "last_seen": "2025-06-01T22:06:15.325962", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133344, - 51.491905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161756204", - "info": { - "identifier": 161756204, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161756204", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "AP Living London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235805/161756204/235805_33873223_IMG_00_0000_max_656x437.png", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.191743", - "last_seen": "2025-06-01T22:05:39.401585", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238214, - 51.595623 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161756327", - "info": { - "identifier": 161756327, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161756327", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19269/161756327/19269_BET240071_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.929651", - "last_seen": "2025-06-01T22:06:08.689665", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056995, - 51.53257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.42, - "qmprice": 32.31, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/161756537", - "info": { - "identifier": 161756537, - "sqm_ocr": 70.42, - "price": 2275.0, - "price_per_sqm": 32.306163021868784, - "url": "https://www.rightmove.co.uk/properties/161756537", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Thomas Michael", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84061/161756537/84061_TML523_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.131597", - "last_seen": "2025-06-01T22:05:58.313891", - "price": 2275 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20699, - 51.49758 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.8, - "qmprice": 38.73, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161756624", - "info": { - "identifier": 161756624, - "sqm_ocr": 56.8, - "price": 2200.0, - "price_per_sqm": 38.732394366197184, - "url": "https://www.rightmove.co.uk/properties/161756624", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161756624/16050_1324264_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.288284", - "last_seen": "2025-06-01T22:06:10.288284", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066256, - 51.514404 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.8, - "qmprice": 57.22, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161756639", - "info": { - "identifier": 161756639, - "sqm_ocr": 56.8, - "price": 3250.0, - "price_per_sqm": 57.218309859154935, - "url": "https://www.rightmove.co.uk/properties/161756639", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161756639/16050_1324265_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.319164", - "last_seen": "2025-06-01T22:06:10.319164", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066256, - 51.514404 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.6, - "qmprice": 37.53, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161756687", - "info": { - "identifier": 161756687, - "sqm_ocr": 86.6, - "price": 3250.0, - "price_per_sqm": 37.52886836027714, - "url": "https://www.rightmove.co.uk/properties/161756687", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/161756687/108515_1325817_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.532042", - "last_seen": "2025-06-01T22:05:57.987646", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191911, - 51.494263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 39.9, - "qmprice": 56.39, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161756711", - "info": { - "identifier": 161756711, - "sqm_ocr": 39.9, - "price": 2250.0, - "price_per_sqm": 56.390977443609025, - "url": "https://www.rightmove.co.uk/properties/161756711", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/161756711/71401_1325821_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.888217", - "last_seen": "2025-06-01T22:05:41.159365", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.226124, - 51.551712 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.1, - "qmprice": 39.24, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161756813", - "info": { - "identifier": 161756813, - "sqm_ocr": 84.1, - "price": 3300.0, - "price_per_sqm": 39.239001189060644, - "url": "https://www.rightmove.co.uk/properties/161756813", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3721/161756813/3721_WIL250275_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.311157", - "last_seen": "2025-06-01T22:06:01.095094", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205253, - 51.42563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161757017", - "info": { - "identifier": 161757017, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161757017", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161757017/96668_247508207052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.268905", - "last_seen": "2025-06-01T22:05:57.087498", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02418, - 51.48501 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161757224", - "info": { - "identifier": 161757224, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161757224", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161757224/96668_247805709052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.727906", - "last_seen": "2025-06-01T20:19:56.940318", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008771, - 51.52418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161757374", - "info": { - "identifier": 161757374, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161757374", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161757374/96668_247829009052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.609334", - "last_seen": "2025-06-01T22:05:39.415696", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217844, - 51.590015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161757425", - "info": { - "identifier": 161757425, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161757425", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161757425/96668_247822909052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.770210", - "last_seen": "2025-06-01T22:05:58.558747", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.309865, - 51.3969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.4, - "qmprice": 29.13, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161757428", - "info": { - "identifier": 161757428, - "sqm_ocr": 94.4, - "price": 2750.0, - "price_per_sqm": 29.131355932203387, - "url": "https://www.rightmove.co.uk/properties/161757428", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "gLocalAgents.co.uk", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176603/161757428/176603_9812_EAF_79815_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.621596", - "last_seen": "2025-06-01T22:05:46.214609", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01321, - 51.48591 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/161757473", - "info": { - "identifier": 161757473, - "sqm_ocr": null, - "price": 3650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161757473", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161757473/96668_221381104092024_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.220170", - "last_seen": "2025-06-01T22:05:42.055675", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148566, - 51.543194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.6, - "qmprice": 39.63, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161757512", - "info": { - "identifier": 161757512, - "sqm_ocr": 65.6, - "price": 2600.0, - "price_per_sqm": 39.63414634146342, - "url": "https://www.rightmove.co.uk/properties/161757512", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/161757512/15966_1325831_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.086768", - "last_seen": "2025-06-01T22:06:13.252284", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155822, - 51.473705 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 44.52, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161758019", - "info": { - "identifier": 161758019, - "sqm_ocr": 73.0, - "price": 3250.0, - "price_per_sqm": 44.52054794520548, - "url": "https://www.rightmove.co.uk/properties/161758019", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/161758019/111056_1324818_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.093890", - "last_seen": "2025-06-01T22:06:11.503034", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053661, - 51.506977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 34.25, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161758046", - "info": { - "identifier": 161758046, - "sqm_ocr": 73.0, - "price": 2500.0, - "price_per_sqm": 34.24657534246575, - "url": "https://www.rightmove.co.uk/properties/161758046", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/161758046/111056_1324817_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.141015", - "last_seen": "2025-06-01T20:19:58.888947", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053661, - 51.506977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161758649", - "info": { - "identifier": 161758649, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161758649", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Dorrington", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281918/161758649/281918_15550_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.037375", - "last_seen": "2025-06-01T22:06:04.862576", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09336, - 51.48616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161759051", - "info": { - "identifier": 161759051, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161759051", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Maple Estate & Letting Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69002/161759051/69002_1519_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.130257", - "last_seen": "2025-06-01T22:05:50.844136", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36432, - 51.5577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.1, - "qmprice": 35.09, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/161759519", - "info": { - "identifier": 161759519, - "sqm_ocr": 64.1, - "price": 2249.0, - "price_per_sqm": 35.08580343213729, - "url": "https://www.rightmove.co.uk/properties/161759519", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39741/161759519/39741_33873462_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.197965", - "last_seen": "2025-06-01T22:06:15.425339", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202044, - 51.53132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161759534", - "info": { - "identifier": 161759534, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161759534", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/161759534/82537_33873464_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.310855", - "last_seen": "2025-06-01T22:06:10.310855", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005102, - 51.50629 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161759801", - "info": { - "identifier": 161759801, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161759801", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/161759801/237116_671_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.376590", - "last_seen": "2025-06-01T22:05:49.753566", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11204, - 51.6057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161759915", - "info": { - "identifier": 161759915, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161759915", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Elkay Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52868/161759915/52868_102387000906_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.464510", - "last_seen": "2025-06-01T20:19:57.444508", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07471, - 51.52902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161759993", - "info": { - "identifier": 161759993, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161759993", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Excel Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99425/161759993/99425_102708042586_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.050953", - "last_seen": "2025-06-01T22:05:43.157374", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18994, - 51.55702 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161760137", - "info": { - "identifier": 161760137, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161760137", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286493/161760137/286493_33873505_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.351663", - "last_seen": "2025-06-01T22:06:05.093605", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.032583, - 51.503227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2834.0, - "url": "https://www.rightmove.co.uk/properties/161761046", - "info": { - "identifier": 161761046, - "sqm_ocr": null, - "price": 2834.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161761046", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40512/161761046/40512_32616561_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.102321", - "last_seen": "2025-06-01T22:06:07.067060", - "price": 2834 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08418, - 51.49905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.6, - "qmprice": 31.25, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161761298", - "info": { - "identifier": 161761298, - "sqm_ocr": 73.6, - "price": 2300.0, - "price_per_sqm": 31.250000000000004, - "url": "https://www.rightmove.co.uk/properties/161761298", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55432/161761298/55432_KAV251362_L_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.490690", - "last_seen": "2025-06-01T22:05:49.613008", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1117, - 51.588993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161761547", - "info": { - "identifier": 161761547, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161761547", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Jorgensen Turner", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73024/161761547/73024_33061646_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.238513", - "last_seen": "2025-06-01T22:05:48.830348", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.226798, - 51.51772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 29.55, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161761583", - "info": { - "identifier": 161761583, - "sqm_ocr": 88.0, - "price": 2600.0, - "price_per_sqm": 29.545454545454547, - "url": "https://www.rightmove.co.uk/properties/161761583", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84815/161761583/84815_33873599_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.647446", - "last_seen": "2025-06-01T22:06:04.570507", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.313259, - 51.41637 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/161761784", - "info": { - "identifier": 161761784, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161761784", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57124/161761784/57124_P214595_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.205978", - "last_seen": "2025-06-01T22:06:07.994790", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03875, - 51.51026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 49.18, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161761829", - "info": { - "identifier": 161761829, - "sqm_ocr": 61.0, - "price": 3000.0, - "price_per_sqm": 49.18032786885246, - "url": "https://www.rightmove.co.uk/properties/161761829", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41334/161761829/41334_06791956_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.429379", - "last_seen": "2025-06-01T22:05:42.291463", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178, - 51.556 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161762201", - "info": { - "identifier": 161762201, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161762201", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/161762201/238769_98043275329847yiu983247983yiy329847_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.709757", - "last_seen": "2025-06-01T22:06:10.709757", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00463, - 51.51265 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.3, - "qmprice": 40.47, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161762606", - "info": { - "identifier": 161762606, - "sqm_ocr": 80.3, - "price": 3250.0, - "price_per_sqm": 40.473225404732254, - "url": "https://www.rightmove.co.uk/properties/161762606", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118693/161762606/118693_33873659_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.025798", - "last_seen": "2025-06-01T22:05:54.403925", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107588, - 51.53753 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161762792", - "info": { - "identifier": 161762792, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161762792", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/161762792/67576_RL1742_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.898795", - "last_seen": "2025-06-01T22:05:41.169007", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.262143, - 51.5749 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.7, - "qmprice": 41.03, - "rooms": 3, - "total_price": 3393.0, - "url": "https://www.rightmove.co.uk/properties/161762804", - "info": { - "identifier": 161762804, - "sqm_ocr": 82.7, - "price": 3393.0, - "price_per_sqm": 41.02781136638452, - "url": "https://www.rightmove.co.uk/properties/161762804", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/161762804/98531_1325861_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.632670", - "last_seen": "2025-06-01T22:05:44.025842", - "price": 3393.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.257109, - 51.51569 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161762912", - "info": { - "identifier": 161762912, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161762912", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/161762912/67576_RL1740_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.356049", - "last_seen": "2025-06-01T22:05:40.592839", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.262143, - 51.5749 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.8, - "qmprice": 29.51, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161762984", - "info": { - "identifier": 161762984, - "sqm_ocr": 89.8, - "price": 2650.0, - "price_per_sqm": 29.510022271714924, - "url": "https://www.rightmove.co.uk/properties/161762984", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/161762984/111050_1325860_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.331740", - "last_seen": "2025-06-01T22:06:12.942516", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165645, - 51.42803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.8, - "qmprice": 47.35, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161763134", - "info": { - "identifier": 161763134, - "sqm_ocr": 71.8, - "price": 3400.0, - "price_per_sqm": 47.353760445682454, - "url": "https://www.rightmove.co.uk/properties/161763134", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/161763134/84889_1325395_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.029921", - "last_seen": "2025-06-01T22:06:15.190433", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127309, - 51.49422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161763446", - "info": { - "identifier": 161763446, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161763446", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dolce Vita", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61818/161763446/61818_85931098_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.961774", - "last_seen": "2025-06-01T22:06:14.968546", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20656, - 51.52697 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/161763488", - "info": { - "identifier": 161763488, - "sqm_ocr": null, - "price": 3358.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161763488", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Dreamview Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85138/161763488/85138_house_hendon_way_london_greater_london_nw2_2ng_3L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.913458", - "last_seen": "2025-06-01T22:05:38.659206", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205717, - 51.565125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.6, - "qmprice": 37.54, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161763698", - "info": { - "identifier": 161763698, - "sqm_ocr": 66.6, - "price": 2500.0, - "price_per_sqm": 37.53753753753754, - "url": "https://www.rightmove.co.uk/properties/161763698", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Sheraton Management Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77739/161763698/77739_4f951042e008576fe957832441db2420f48457dac49571ab_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.847006", - "last_seen": "2025-06-01T22:05:49.379906", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207561, - 51.488186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161763875", - "info": { - "identifier": 161763875, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161763875", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161763875/96668_247831809052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.499700", - "last_seen": "2025-06-01T22:05:46.802261", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015247, - 51.472412 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161763911", - "info": { - "identifier": 161763911, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161763911", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161763911/96668_247713408052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.953845", - "last_seen": "2025-06-01T22:05:38.589271", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197951, - 51.57838 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 51.47, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161764034", - "info": { - "identifier": 161764034, - "sqm_ocr": 68.0, - "price": 3500.0, - "price_per_sqm": 51.470588235294116, - "url": "https://www.rightmove.co.uk/properties/161764034", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80551/161764034/80551_KIL220081_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.418991", - "last_seen": "2025-06-01T22:06:04.655301", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285761, - 51.47587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161764313", - "info": { - "identifier": 161764313, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161764313", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "The Stow Brothers", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267587/161764313/267587_33873744_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.604243", - "last_seen": "2025-06-01T22:06:11.302620", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025045, - 51.53809 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 26.19, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161764427", - "info": { - "identifier": 161764427, - "sqm_ocr": 84.0, - "price": 2200.0, - "price_per_sqm": 26.19047619047619, - "url": "https://www.rightmove.co.uk/properties/161764427", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Net Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43665/161764427/43665_101793001097_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.583503", - "last_seen": "2025-06-01T22:06:02.746510", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.04854, - 51.53179 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.2, - "qmprice": 45.13, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161764697", - "info": { - "identifier": 161764697, - "sqm_ocr": 84.2, - "price": 3800.0, - "price_per_sqm": 45.13064133016627, - "url": "https://www.rightmove.co.uk/properties/161764697", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6073/161764697/6073_33873767_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.550816", - "last_seen": "2025-06-01T22:05:55.376818", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105129, - 51.53102 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.2, - "qmprice": 49.13, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161764730", - "info": { - "identifier": 161764730, - "sqm_ocr": 69.2, - "price": 3400.0, - "price_per_sqm": 49.13294797687861, - "url": "https://www.rightmove.co.uk/properties/161764730", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "PG Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107294/161764730/107294_1275_PGES_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.378676", - "last_seen": "2025-06-01T22:05:53.327424", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103912, - 51.53498 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161765000", - "info": { - "identifier": 161765000, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161765000", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Davis & Gibbs Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213929/161765000/213929_27900171_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.011551", - "last_seen": "2025-06-01T22:06:06.903300", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099666, - 51.478165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161765009", - "info": { - "identifier": 161765009, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161765009", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161765009/281513_LDN200089_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.199644", - "last_seen": "2025-06-01T22:05:46.991310", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026816, - 51.461105 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161765129", - "info": { - "identifier": 161765129, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161765129", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Highwood Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281201/161765129/281201_RL0143_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.857212", - "last_seen": "2025-06-01T22:05:44.785889", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.306545, - 51.5194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.4, - "qmprice": 50.51, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161765519", - "info": { - "identifier": 161765519, - "sqm_ocr": 59.4, - "price": 3000.0, - "price_per_sqm": 50.505050505050505, - "url": "https://www.rightmove.co.uk/properties/161765519", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100426/161765519/100426_1325496_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.373687", - "last_seen": "2025-06-01T22:05:41.769101", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067287, - 51.407925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.76, - "qmprice": 45.09, - "rooms": 2, - "total_price": 3551.0, - "url": "https://www.rightmove.co.uk/properties/161765525", - "info": { - "identifier": 161765525, - "sqm_ocr": 78.76, - "price": 3551.0, - "price_per_sqm": 45.08633824276282, - "url": "https://www.rightmove.co.uk/properties/161765525", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/161765525/73120_1325021_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.040458", - "last_seen": "2025-06-01T22:05:54.443360", - "price": 3551.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094353, - 51.528336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 44.15, - "rooms": 2, - "total_price": 3554.0, - "url": "https://www.rightmove.co.uk/properties/161765534", - "info": { - "identifier": 161765534, - "sqm_ocr": 80.5, - "price": 3554.0, - "price_per_sqm": 44.149068322981364, - "url": "https://www.rightmove.co.uk/properties/161765534", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161765534/48101_1325692_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.010358, - 51.50046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.9, - "qmprice": 34.51, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161765549", - "info": { - "identifier": 161765549, - "sqm_ocr": 115.9, - "price": 4000.0, - "price_per_sqm": 34.51251078515962, - "url": "https://www.rightmove.co.uk/properties/161765549", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "JBrown", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239306/161765549/239306_6685_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.350486", - "last_seen": "2025-06-01T22:05:47.612780", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093601, - 51.570553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.5, - "qmprice": 35.77, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161765597", - "info": { - "identifier": 161765597, - "sqm_ocr": 68.5, - "price": 2450.0, - "price_per_sqm": 35.76642335766423, - "url": "https://www.rightmove.co.uk/properties/161765597", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/161765597/100423_1325869_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.624222", - "last_seen": "2025-06-01T22:06:04.551596", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.329911, - 51.43574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.05, - "qmprice": 60.8, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161765609", - "info": { - "identifier": 161765609, - "sqm_ocr": 46.05, - "price": 2800.0, - "price_per_sqm": 60.80347448425625, - "url": "https://www.rightmove.co.uk/properties/161765609", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/161765609/87812_1325884_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.654863", - "last_seen": "2025-06-01T22:05:39.481193", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197124, - 51.563995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.8, - "qmprice": 31.25, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161765699", - "info": { - "identifier": 161765699, - "sqm_ocr": 76.8, - "price": 2400.0, - "price_per_sqm": 31.25, - "url": "https://www.rightmove.co.uk/properties/161765699", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137369/161765699/137369_1325828_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.745844", - "last_seen": "2025-06-01T22:06:11.930035", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.002125, - 51.607925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.8, - "qmprice": 46.88, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161765702", - "info": { - "identifier": 161765702, - "sqm_ocr": 76.8, - "price": 3600.0, - "price_per_sqm": 46.875, - "url": "https://www.rightmove.co.uk/properties/161765702", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137369/161765702/137369_1325827_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.789900", - "last_seen": "2025-06-01T22:06:11.590568", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.002125, - 51.607925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 30.38, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161765777", - "info": { - "identifier": 161765777, - "sqm_ocr": 79.0, - "price": 2400.0, - "price_per_sqm": 30.379746835443036, - "url": "https://www.rightmove.co.uk/properties/161765777", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 23, - "status": null, - "last_seen": 0, - "agency": "Gordon Lindsay Associates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64253/161765777/64253_L108632_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.239968", - "last_seen": "2025-06-01T22:06:04.289176", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.274039, - 51.464447 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161765924", - "info": { - "identifier": 161765924, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161765924", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161765924/87187_70548_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.735603", - "last_seen": "2025-06-01T22:05:43.038230", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192958, - 51.557175 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.8, - "qmprice": 24.8, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161766698", - "info": { - "identifier": 161766698, - "sqm_ocr": 100.8, - "price": 2500.0, - "price_per_sqm": 24.8015873015873, - "url": "https://www.rightmove.co.uk/properties/161766698", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/256k/255212/161766698/255212_33873165_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.384919", - "last_seen": "2025-06-01T22:06:07.196919", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078873, - 51.461277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161766767", - "info": { - "identifier": 161766767, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161766767", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161766767/87187_71573_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.651710", - "last_seen": "2025-06-01T22:05:39.471622", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.244026, - 51.58139 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.6, - "qmprice": 54.47, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161766803", - "info": { - "identifier": 161766803, - "sqm_ocr": 71.6, - "price": 3900.0, - "price_per_sqm": 54.469273743016764, - "url": "https://www.rightmove.co.uk/properties/161766803", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/161766803/80281_1325098_IMG_06_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.399998", - "last_seen": "2025-06-01T22:06:07.296129", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009749, - 51.54816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161767706", - "info": { - "identifier": 161767706, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161767706", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161767706/96668_168217117042023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.076340", - "last_seen": "2025-06-01T22:06:14.046481", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166416, - 51.47168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.1, - "qmprice": 26.63, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161768813", - "info": { - "identifier": 161768813, - "sqm_ocr": 75.1, - "price": 2000.0, - "price_per_sqm": 26.63115845539281, - "url": "https://www.rightmove.co.uk/properties/161768813", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Paramount", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62636/161768813/62636_PAR200298_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.430867", - "last_seen": "2025-06-01T22:06:06.823986", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04672, - 51.491512 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.4, - "qmprice": 36.78, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161768873", - "info": { - "identifier": 161768873, - "sqm_ocr": 73.4, - "price": 2700.0, - "price_per_sqm": 36.78474114441416, - "url": "https://www.rightmove.co.uk/properties/161768873", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106618/161768873/106618_KDB240020_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.957636", - "last_seen": "2025-06-01T22:06:00.113278", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1271, - 51.46948 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161769155", - "info": { - "identifier": 161769155, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161769155", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161769155/96668_247279805052025_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.679556", - "last_seen": "2025-06-01T22:06:10.679556", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006272, - 51.48754 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161769434", - "info": { - "identifier": 161769434, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161769434", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161769434/96668_247846709052025_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.863370", - "last_seen": "2025-06-01T22:06:03.720110", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.118104, - 51.57599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161769659", - "info": { - "identifier": 161769659, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161769659", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Citydeal Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96880/161769659/96880_RL2674_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.819389", - "last_seen": "2025-06-01T22:05:41.088377", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.286638, - 51.571293 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161769662", - "info": { - "identifier": 161769662, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161769662", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161769662/96668_245338316042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.817280", - "last_seen": "2025-06-01T22:05:53.905886", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116693, - 51.53686 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.51, - "qmprice": 52.34, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161769944", - "info": { - "identifier": 161769944, - "sqm_ocr": 74.51, - "price": 3900.0, - "price_per_sqm": 52.3419675211381, - "url": "https://www.rightmove.co.uk/properties/161769944", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54732/161769944/54732_CLI690948_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.768297", - "last_seen": "2025-06-01T22:05:42.968034", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185164, - 51.537945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.0, - "qmprice": 25.22, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161770094", - "info": { - "identifier": 161770094, - "sqm_ocr": 115.0, - "price": 2900.0, - "price_per_sqm": 25.217391304347824, - "url": "https://www.rightmove.co.uk/properties/161770094", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Holmes Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76556/161770094/76556_HL1029_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.332293", - "last_seen": "2025-06-01T22:05:59.863254", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12875, - 51.43448 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2775.0, - "url": "https://www.rightmove.co.uk/properties/161770262", - "info": { - "identifier": 161770262, - "sqm_ocr": null, - "price": 2775.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161770262", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161770262/96668_247860009052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.547258", - "last_seen": "2025-06-01T22:05:42.484277", - "price": 2775.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166096, - 51.55155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161772872", - "info": { - "identifier": 161772872, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161772872", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161772872/96668_247863009052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.233452", - "last_seen": "2025-06-01T22:06:05.222489", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.083683, - 51.49235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.7, - "qmprice": 32.16, - "rooms": 2, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/161773640", - "info": { - "identifier": 161773640, - "sqm_ocr": 80.7, - "price": 2595.0, - "price_per_sqm": 32.15613382899628, - "url": "https://www.rightmove.co.uk/properties/161773640", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161773640/96668_237603004022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.348037", - "last_seen": "2025-06-01T22:05:40.558052", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.282093, - 51.55984 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.8, - "qmprice": 34.95, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161774600", - "info": { - "identifier": 161774600, - "sqm_ocr": 65.8, - "price": 2300.0, - "price_per_sqm": 34.954407294832826, - "url": "https://www.rightmove.co.uk/properties/161774600", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/161774600/66771_1319845_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.524271", - "last_seen": "2025-06-01T22:05:59.238879", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110673, - 51.4757 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.18, - "qmprice": 60.24, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/161774624", - "info": { - "identifier": 161774624, - "sqm_ocr": 66.18, - "price": 3987.0, - "price_per_sqm": 60.24478694469628, - "url": "https://www.rightmove.co.uk/properties/161774624", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161774624/55101_1322493_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.534038", - "last_seen": "2025-06-01T22:05:59.208309", - "price": 3679.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117811, - 51.502026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161774936", - "info": { - "identifier": 161774936, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161774936", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161774936/96668_229141112112024_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.751933", - "last_seen": "2025-06-01T22:05:44.596360", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269007, - 51.52454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.2, - "qmprice": 37.14, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161775749", - "info": { - "identifier": 161775749, - "sqm_ocr": 90.2, - "price": 3350.0, - "price_per_sqm": 37.13968957871397, - "url": "https://www.rightmove.co.uk/properties/161775749", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winmac Properties", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235265/161775749/235265_WM031_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.507022", - "last_seen": "2025-06-01T22:06:08.829490", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021328, - 51.50712 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.3, - "qmprice": 25.18, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161775875", - "info": { - "identifier": 161775875, - "sqm_ocr": 99.3, - "price": 2500.0, - "price_per_sqm": 25.17623363544814, - "url": "https://www.rightmove.co.uk/properties/161775875", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/161775875/84878_33874130_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.232763", - "last_seen": "2025-06-01T22:06:01.344787", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229317, - 51.408806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 148.0, - "qmprice": 23.65, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161776649", - "info": { - "identifier": 161776649, - "sqm_ocr": 148.0, - "price": 3500.0, - "price_per_sqm": 23.64864864864865, - "url": "https://www.rightmove.co.uk/properties/161776649", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Robsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50427/161776649/50427_2690455_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.425249", - "last_seen": "2025-06-01T22:05:51.613320", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.41408, - 51.61188 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 29.38, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161776790", - "info": { - "identifier": 161776790, - "sqm_ocr": 80.0, - "price": 2350.0, - "price_per_sqm": 29.375, - "url": "https://www.rightmove.co.uk/properties/161776790", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Robsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50427/161776790/50427_2696890_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.828001", - "last_seen": "2025-06-01T22:05:51.460332", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.416, - 51.61065 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.1, - "qmprice": 43.03, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161777630", - "info": { - "identifier": 161777630, - "sqm_ocr": 58.1, - "price": 2500.0, - "price_per_sqm": 43.029259896729776, - "url": "https://www.rightmove.co.uk/properties/161777630", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Sandra Davidson Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13342/161777630/13342_33874215_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.779693", - "last_seen": "2025-06-01T22:06:03.900751", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.10408, - 51.560387 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.3, - "qmprice": 32.1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161777723", - "info": { - "identifier": 161777723, - "sqm_ocr": 62.3, - "price": 2000.0, - "price_per_sqm": 32.102728731942214, - "url": "https://www.rightmove.co.uk/properties/161777723", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/161777723/77192_GRNWAYCRT2BED_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.538739", - "last_seen": "2025-06-01T22:05:50.049805", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09187, - 51.5873 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161778542", - "info": { - "identifier": 161778542, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161778542", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7558/161778542/7558_FIL150024_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.165277", - "last_seen": "2025-06-01T22:05:39.358940", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184905, - 51.611 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161778764", - "info": { - "identifier": 161778764, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161778764", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/155k/154577/161778764/154577_KBZ240170_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.055013", - "last_seen": "2025-06-01T22:06:13.187457", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212898, - 51.445087 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.5, - "qmprice": 27.33, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/161780258", - "info": { - "identifier": 161780258, - "sqm_ocr": 100.5, - "price": 2747.0, - "price_per_sqm": 27.333333333333332, - "url": "https://www.rightmove.co.uk/properties/161780258", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84794/161780258/84794_33874370_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.692348", - "last_seen": "2025-06-01T22:05:56.555101", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217677, - 51.47879 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161781074", - "info": { - "identifier": 161781074, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161781074", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161781074/96668_247895810052025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.322674, - 51.550354 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.5, - "qmprice": 30.77, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161781164", - "info": { - "identifier": 161781164, - "sqm_ocr": 84.5, - "price": 2600.0, - "price_per_sqm": 30.76923076923077, - "url": "https://www.rightmove.co.uk/properties/161781164", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Letio Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260273/161781164/260273_L176_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.286096", - "last_seen": "2025-06-01T22:05:52.196723", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.357024, - 51.477592 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161781194", - "info": { - "identifier": 161781194, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161781194", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "The Property Company", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76256/161781194/76256_LET130001_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.818129", - "last_seen": "2025-06-01T22:05:49.883381", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118384, - 51.581924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161781869", - "info": { - "identifier": 161781869, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161781869", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/161781869/51286_HEA240889_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.948287", - "last_seen": "2025-06-01T22:05:54.633504", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279692, - 51.4896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.9, - "qmprice": 69.64, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/161781926", - "info": { - "identifier": 161781926, - "sqm_ocr": 52.9, - "price": 3684.0, - "price_per_sqm": 69.64083175803403, - "url": "https://www.rightmove.co.uk/properties/161781926", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151658/161781926/151658_1324276_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.756701", - "last_seen": "2025-06-01T22:06:14.937777", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20454, - 51.524807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.9, - "qmprice": 53.25, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161781929", - "info": { - "identifier": 161781929, - "sqm_ocr": 52.9, - "price": 2817.0, - "price_per_sqm": 53.25141776937618, - "url": "https://www.rightmove.co.uk/properties/161781929", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151658/161781929/151658_1324275_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.755359", - "last_seen": "2025-06-01T22:06:14.917241", - "price": 2384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20454, - 51.524807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.2, - "qmprice": 33.25, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161781956", - "info": { - "identifier": 161781956, - "sqm_ocr": 81.2, - "price": 2700.0, - "price_per_sqm": 33.251231527093594, - "url": "https://www.rightmove.co.uk/properties/161781956", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/161781956/100423_1325902_IMG_01_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.106163", - "last_seen": "2025-06-01T22:05:55.112185", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.333989, - 51.475784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.4, - "qmprice": 39.39, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161782100", - "info": { - "identifier": 161782100, - "sqm_ocr": 91.4, - "price": 3600.0, - "price_per_sqm": 39.387308533916844, - "url": "https://www.rightmove.co.uk/properties/161782100", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/161782100/237116_542_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.781502", - "last_seen": "2025-06-01T22:05:53.310117", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10877, - 51.55242 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161782598", - "info": { - "identifier": 161782598, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161782598", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/161782598/228512_33874546_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.863598", - "last_seen": "2025-06-01T22:05:47.501168", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057569, - 51.54284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.2, - "qmprice": 41.06, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161782670", - "info": { - "identifier": 161782670, - "sqm_ocr": 68.2, - "price": 2800.0, - "price_per_sqm": 41.05571847507331, - "url": "https://www.rightmove.co.uk/properties/161782670", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Dimension Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87953/161782670/87953_3261_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.534711", - "last_seen": "2025-06-01T20:19:57.837312", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.046711, - 51.524853 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.26, - "qmprice": 24.27, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161783906", - "info": { - "identifier": 161783906, - "sqm_ocr": 111.26, - "price": 2700.0, - "price_per_sqm": 24.267481574689914, - "url": "https://www.rightmove.co.uk/properties/161783906", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73310/161783906/73310_33874590_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.534869", - "last_seen": "2025-06-01T22:05:51.503403", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.386585, - 51.52159 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161784122", - "info": { - "identifier": 161784122, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161784122", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161784122/96668_247674008052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.060197", - "last_seen": "2025-06-01T22:06:11.487238", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021266, - 51.514744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2175.0, - "url": "https://www.rightmove.co.uk/properties/161784155", - "info": { - "identifier": 161784155, - "sqm_ocr": null, - "price": 2175.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161784155", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161784155/96668_245716620042025_IMG_24_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.670062", - "last_seen": "2025-06-01T22:05:39.527326", - "price": 2175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277223, - 51.62109 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2390.0, - "url": "https://www.rightmove.co.uk/properties/161784170", - "info": { - "identifier": 161784170, - "sqm_ocr": null, - "price": 2390.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161784170", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161784170/96668_247888710052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.432838", - "last_seen": "2025-06-01T22:05:44.946497", - "price": 2390.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290865, - 51.50748 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161784173", - "info": { - "identifier": 161784173, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161784173", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161784173/96668_240489903032025_IMG_23_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.916106", - "last_seen": "2025-06-01T22:06:04.045268", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.104993, - 51.57121 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161784185", - "info": { - "identifier": 161784185, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161784185", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161784185/96668_242926725032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.190933", - "last_seen": "2025-06-01T20:19:59.041119", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.059109, - 51.5305 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.2, - "qmprice": 44.16, - "rooms": 2, - "total_price": 2305.0, - "url": "https://www.rightmove.co.uk/properties/161784224", - "info": { - "identifier": 161784224, - "sqm_ocr": 52.2, - "price": 2305.0, - "price_per_sqm": 44.15708812260536, - "url": "https://www.rightmove.co.uk/properties/161784224", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Olivers Town", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54833/161784224/54833_69323_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.246132", - "last_seen": "2025-06-01T22:05:42.007584", - "price": 2305 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135325, - 51.547874 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161784410", - "info": { - "identifier": 161784410, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161784410", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "William H. Brown Incorporating Porter Glenny", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67257/161784410/67257_P0408J2220_IMG_00_0001_max_656x437.png", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.014804", - "last_seen": "2025-06-01T22:05:38.320989", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.09564, - 51.54013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.6, - "qmprice": 30.53, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161784680", - "info": { - "identifier": 161784680, - "sqm_ocr": 78.6, - "price": 2400.0, - "price_per_sqm": 30.53435114503817, - "url": "https://www.rightmove.co.uk/properties/161784680", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161784680/281513_LDN190013_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.613596", - "last_seen": "2025-06-01T22:05:46.223536", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026749, - 51.462196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161784911", - "info": { - "identifier": 161784911, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161784911", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161784911/281513_LDN180054_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.447177", - "last_seen": "2025-06-01T22:05:47.042771", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.030679, - 51.45726 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161785091", - "info": { - "identifier": 161785091, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161785091", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/161785091/67576_RL1033_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.725367", - "last_seen": "2025-06-01T22:05:54.430811", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131638, - 51.56746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161785115", - "info": { - "identifier": 161785115, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161785115", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/161785115/176261_102708018271_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.021373", - "last_seen": "2025-06-01T22:05:50.157663", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11989, - 51.6115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2675.0, - "url": "https://www.rightmove.co.uk/properties/161785133", - "info": { - "identifier": 161785133, - "sqm_ocr": null, - "price": 2675.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161785133", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "Sincere lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96983/161785133/96983_33874668_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.864689", - "last_seen": "2025-06-01T22:06:12.012961", - "price": 2675.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005884, - 51.567886 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 34.33, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161785289", - "info": { - "identifier": 161785289, - "sqm_ocr": 69.9, - "price": 2400.0, - "price_per_sqm": 34.33476394849785, - "url": "https://www.rightmove.co.uk/properties/161785289", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "John Payne", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48285/161785289/48285_P276858_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.491010", - "last_seen": "2025-06-01T22:05:46.805587", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01602, - 51.48272 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.9, - "qmprice": 37.39, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161785415", - "info": { - "identifier": 161785415, - "sqm_ocr": 78.9, - "price": 2950.0, - "price_per_sqm": 37.38910012674271, - "url": "https://www.rightmove.co.uk/properties/161785415", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161785415/96668_247890710052025_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.944660", - "last_seen": "2025-06-01T22:06:05.858160", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102239, - 51.49615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161785421", - "info": { - "identifier": 161785421, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161785421", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161785421/96668_243315528032025_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.904416", - "last_seen": "2025-06-01T22:05:50.485871", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31789, - 51.62407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161785730", - "info": { - "identifier": 161785730, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161785730", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50674/161785730/50674_P276856_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.010761", - "last_seen": "2025-06-01T22:06:00.840609", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05834, - 51.43827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.9, - "qmprice": 35.44, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161786105", - "info": { - "identifier": 161786105, - "sqm_ocr": 64.9, - "price": 2300.0, - "price_per_sqm": 35.43913713405239, - "url": "https://www.rightmove.co.uk/properties/161786105", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161786105/281513_LDN250035_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.118557", - "last_seen": "2025-06-01T22:05:46.404541", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026503, - 51.461834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161786591", - "info": { - "identifier": 161786591, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161786591", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Humphrey & CO Property Services", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79533/161786591/79533_33874773_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.629045", - "last_seen": "2025-06-01T22:06:11.805376", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020891, - 51.59803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.7, - "qmprice": 44.78, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161786690", - "info": { - "identifier": 161786690, - "sqm_ocr": 73.7, - "price": 3300.0, - "price_per_sqm": 44.776119402985074, - "url": "https://www.rightmove.co.uk/properties/161786690", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/161786690/238265_L92591_IMG_00_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.358917", - "last_seen": "2025-06-01T22:06:01.657223", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218849, - 51.4247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161787026", - "info": { - "identifier": 161787026, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161787026", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161787026/96668_244857611042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.833868", - "last_seen": "2025-06-01T22:05:41.097898", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206985, - 51.54644 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2259.0, - "url": "https://www.rightmove.co.uk/properties/161787683", - "info": { - "identifier": 161787683, - "sqm_ocr": null, - "price": 2259.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161787683", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Native Communities", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272639/161787683/272639_2BEDFFNORTH70_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.590438", - "last_seen": "2025-06-01T22:05:43.525881", - "price": 2259.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092, - 51.37673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2175.0, - "url": "https://www.rightmove.co.uk/properties/161788208", - "info": { - "identifier": 161788208, - "sqm_ocr": null, - "price": 2175.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161788208", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161788208/96668_247790709052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.993180", - "last_seen": "2025-06-01T22:05:40.295876", - "price": 2175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.317245, - 51.554092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.14, - "qmprice": 38.93, - "rooms": 2, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/161788292", - "info": { - "identifier": 161788292, - "sqm_ocr": 73.14, - "price": 2847.0, - "price_per_sqm": 38.9253486464315, - "url": "https://www.rightmove.co.uk/properties/161788292", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 22, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157817/161788292/157817_2700431_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:08.401902", - "last_seen": "2025-06-01T22:06:08.401902", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015406, - 51.497208 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161788436", - "info": { - "identifier": 161788436, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161788436", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161788436/96668_195144912012024_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.469063", - "last_seen": "2025-06-01T22:05:39.573717", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143067, - 51.61778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3813.0, - "url": "https://www.rightmove.co.uk/properties/161789537", - "info": { - "identifier": 161789537, - "sqm_ocr": null, - "price": 3813.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161789537", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/161789537/115768_7845610crsd_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.593790", - "last_seen": "2025-06-01T22:06:06.553264", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10243, - 51.48298 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2199.0, - "url": "https://www.rightmove.co.uk/properties/161789936", - "info": { - "identifier": 161789936, - "sqm_ocr": null, - "price": 2199.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161789936", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161789936/96668_100150414012021_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.092453, - 51.487823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161790002", - "info": { - "identifier": 161790002, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161790002", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161790002/96668_247072702052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.051282", - "last_seen": "2025-06-01T22:05:47.933532", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087757, - 51.53289 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2160.0, - "url": "https://www.rightmove.co.uk/properties/161790011", - "info": { - "identifier": 161790011, - "sqm_ocr": null, - "price": 2160.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161790011", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161790011/96668_247927310052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.599493", - "last_seen": "2025-06-01T22:05:39.792468", - "price": 2160.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247344, - 51.612545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2860.0, - "url": "https://www.rightmove.co.uk/properties/161790350", - "info": { - "identifier": 161790350, - "sqm_ocr": null, - "price": 2860.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161790350", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "SHIDAI PROPERTY MANAGEMENT", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264926/161790350/264926_907CutterLane_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.154995", - "last_seen": "2025-06-01T22:05:46.463436", - "price": 2860 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0074, - 51.50121 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161790995", - "info": { - "identifier": 161790995, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161790995", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Carringtons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/2k/1541/161790995/1541_CAR210228_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.810449", - "last_seen": "2025-06-01T22:05:58.924823", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.274968, - 51.380966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 34.33, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161790998", - "info": { - "identifier": 161790998, - "sqm_ocr": 67.0, - "price": 2300.0, - "price_per_sqm": 34.32835820895522, - "url": "https://www.rightmove.co.uk/properties/161790998", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Carringtons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/2k/1541/161790998/1541_CAR240024_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.976864", - "last_seen": "2025-06-01T22:06:14.139380", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242167, - 51.45262 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.0, - "qmprice": 45.19, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161793911", - "info": { - "identifier": 161793911, - "sqm_ocr": 52.0, - "price": 2350.0, - "price_per_sqm": 45.19230769230769, - "url": "https://www.rightmove.co.uk/properties/161793911", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Proper Local", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/159k/158741/161793911/158741_7495225_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.697900", - "last_seen": "2025-06-01T22:06:10.697900", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065985, - 51.51486 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161794436", - "info": { - "identifier": 161794436, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161794436", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "RR Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/105k/104080/161794436/104080_5-132CR-SH_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.183611", - "last_seen": "2025-06-01T22:05:58.393070", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18736, - 51.49485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 146.8, - "qmprice": 19.07, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161794604", - "info": { - "identifier": 161794604, - "sqm_ocr": 146.8, - "price": 2800.0, - "price_per_sqm": 19.07356948228883, - "url": "https://www.rightmove.co.uk/properties/161794604", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161794604/96668_229900419112024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.143476", - "last_seen": "2025-06-01T22:05:52.321340", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.401696, - 51.445923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2875.0, - "url": "https://www.rightmove.co.uk/properties/161794616", - "info": { - "identifier": 161794616, - "sqm_ocr": null, - "price": 2875.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161794616", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161794616/96668_242437820032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.812995", - "last_seen": "2025-06-01T22:05:53.903751", - "price": 2875.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123119, - 51.548794 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 38.46, - "qmprice": 76.63, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/161794700", - "info": { - "identifier": 161794700, - "sqm_ocr": 38.46, - "price": 2947.0, - "price_per_sqm": 76.6250650026001, - "url": "https://www.rightmove.co.uk/properties/161794700", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "RR Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/105k/104080/161794700/104080_6-132CR-SH_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.391903", - "last_seen": "2025-06-01T22:05:57.509456", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18736, - 51.49485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 44.78, - "qmprice": 65.81, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/161794730", - "info": { - "identifier": 161794730, - "sqm_ocr": 44.78, - "price": 2947.0, - "price_per_sqm": 65.81062974542206, - "url": "https://www.rightmove.co.uk/properties/161794730", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "RR Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/105k/104080/161794730/104080_7-132CR-SH_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.432961", - "last_seen": "2025-06-01T22:05:57.482866", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18736, - 51.49485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/161794787", - "info": { - "identifier": 161794787, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161794787", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Liv International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54583/161794787/54583_LIVH_014856_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.696386", - "last_seen": "2025-06-01T22:05:57.331718", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19648, - 51.558933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161794904", - "info": { - "identifier": 161794904, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161794904", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "RR Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/105k/104080/161794904/104080_11Sull-SH_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.130577", - "last_seen": "2025-06-01T22:05:58.323113", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19489, - 51.49397 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/161794952", - "info": { - "identifier": 161794952, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161794952", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "RR Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/105k/104080/161794952/104080_2-32HRNT-SH_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.101447", - "last_seen": "2025-06-01T22:05:58.367477", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194, - 51.50196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.45, - "qmprice": 58.41, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/161795678", - "info": { - "identifier": 161795678, - "sqm_ocr": 50.45, - "price": 2947.0, - "price_per_sqm": 58.41427155599603, - "url": "https://www.rightmove.co.uk/properties/161795678", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "RR Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/105k/104080/161795678/104080_16-132CR-SH_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.348874", - "last_seen": "2025-06-01T22:05:58.456835", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18736, - 51.49485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161795939", - "info": { - "identifier": 161795939, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161795939", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161795939/96668_247173803052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.363656", - "last_seen": "2025-06-01T22:05:51.300080", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.419559, - 51.48248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161795990", - "info": { - "identifier": 161795990, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161795990", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161795990/96668_247978211052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.427991", - "last_seen": "2025-06-01T22:06:15.203992", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161351, - 51.51562 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161796323", - "info": { - "identifier": 161796323, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161796323", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161796323/96668_170985118052023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.556238", - "last_seen": "2025-06-01T22:06:01.412029", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223279, - 51.408 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.7, - "qmprice": 37.28, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/161796896", - "info": { - "identifier": 161796896, - "sqm_ocr": 63.7, - "price": 2375.0, - "price_per_sqm": 37.28414442700157, - "url": "https://www.rightmove.co.uk/properties/161796896", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161796896/96668_247769809052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.369550", - "last_seen": "2025-06-01T22:05:52.292026", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.315349, - 51.4912 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161797022", - "info": { - "identifier": 161797022, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161797022", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161797022/96668_239503421022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.054917", - "last_seen": "2025-06-01T22:06:13.580515", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221146, - 51.458885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3695.0, - "url": "https://www.rightmove.co.uk/properties/161797088", - "info": { - "identifier": 161797088, - "sqm_ocr": null, - "price": 3695.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161797088", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161797088/96668_247963911052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.353692", - "last_seen": "2025-06-01T22:05:49.095837", - "price": 3695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.234643, - 51.49295 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161797730", - "info": { - "identifier": 161797730, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161797730", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161797730/96668_247974011052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.141600", - "last_seen": "2025-06-01T22:05:38.896804", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.251907, - 51.595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161797751", - "info": { - "identifier": 161797751, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161797751", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161797751/96668_247978111052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:43.985900", - "last_seen": "2025-06-01T17:38:42.289067", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0794, - 51.539616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.6, - "qmprice": 43.73, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161798117", - "info": { - "identifier": 161798117, - "sqm_ocr": 68.6, - "price": 3000.0, - "price_per_sqm": 43.73177842565598, - "url": "https://www.rightmove.co.uk/properties/161798117", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161798117/96668_247986811052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.222221", - "last_seen": "2025-06-01T22:06:15.462875", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168156, - 51.53476 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161798348", - "info": { - "identifier": 161798348, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161798348", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161798348/96668_228557006112024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.484377", - "last_seen": "2025-06-01T22:05:55.446614", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254509, - 51.535316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161798390", - "info": { - "identifier": 161798390, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161798390", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 21, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161798390/96668_247989311052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.022805", - "last_seen": "2025-06-01T22:05:44.517364", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252665, - 51.52621 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2390.0, - "url": "https://www.rightmove.co.uk/properties/161798522", - "info": { - "identifier": 161798522, - "sqm_ocr": null, - "price": 2390.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161798522", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161798522/96668_247609407052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.095072", - "last_seen": "2025-06-01T22:06:07.012572", - "price": 2390.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068868, - 51.49696 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.89, - "qmprice": 51.49, - "rooms": 3, - "total_price": 3290.0, - "url": "https://www.rightmove.co.uk/properties/161798531", - "info": { - "identifier": 161798531, - "sqm_ocr": 63.89, - "price": 3290.0, - "price_per_sqm": 51.49475661292847, - "url": "https://www.rightmove.co.uk/properties/161798531", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161798531/96668_247968911052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.795374", - "last_seen": "2025-06-01T20:19:57.795374", - "price": 3290.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069757, - 51.53083 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161798555", - "info": { - "identifier": 161798555, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161798555", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161798555/96668_247858709052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.036352", - "last_seen": "2025-06-01T22:05:38.334127", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.095359, - 51.53954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.93, - "qmprice": 43.52, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161798669", - "info": { - "identifier": 161798669, - "sqm_ocr": 68.93, - "price": 3000.0, - "price_per_sqm": 43.52241404323226, - "url": "https://www.rightmove.co.uk/properties/161798669", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75166/161798669/75166_WES250050_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.818255", - "last_seen": "2025-06-01T22:06:15.687665", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185578, - 51.511997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161799869", - "info": { - "identifier": 161799869, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161799869", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161799869/96668_226694321102024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.928184", - "last_seen": "2025-06-01T22:05:38.625932", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176208, - 51.609978 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161799887", - "info": { - "identifier": 161799887, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161799887", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161799887/96668_225941014102024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.631715", - "last_seen": "2025-06-01T22:05:46.170890", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.066831, - 51.48405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161801489", - "info": { - "identifier": 161801489, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161801489", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161801489/96668_247292205052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.008560", - "last_seen": "2025-06-01T22:06:05.816514", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064841, - 51.48622 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.2, - "qmprice": 28.67, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161801534", - "info": { - "identifier": 161801534, - "sqm_ocr": 87.2, - "price": 2500.0, - "price_per_sqm": 28.6697247706422, - "url": "https://www.rightmove.co.uk/properties/161801534", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/161801534/130309_1325696_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.696117", - "last_seen": "2025-06-01T22:05:43.726162", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099332, - 51.378918 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3660.0, - "url": "https://www.rightmove.co.uk/properties/161802125", - "info": { - "identifier": 161802125, - "sqm_ocr": null, - "price": 3660.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161802125", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/161802125/78429_LON-256_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.318547", - "last_seen": "2025-06-01T22:06:15.193777", - "price": 3660.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14523, - 51.49302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.94, - "qmprice": 42.88, - "rooms": 2, - "total_price": 3685.0, - "url": "https://www.rightmove.co.uk/properties/161802437", - "info": { - "identifier": 161802437, - "sqm_ocr": 85.94, - "price": 3685.0, - "price_per_sqm": 42.87875261810566, - "url": "https://www.rightmove.co.uk/properties/161802437", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 990.0, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "dfine", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274697/161802437/274697_RX580237_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.252454", - "last_seen": "2025-06-01T22:06:09.011135", - "price": 3685.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069219, - 51.511982 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3231.0, - "url": "https://www.rightmove.co.uk/properties/161802794", - "info": { - "identifier": 161802794, - "sqm_ocr": null, - "price": 3231.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161802794", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/161802794/253604_82H1205_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.00637, - 51.54218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.2, - "qmprice": 36.39, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161803049", - "info": { - "identifier": 161803049, - "sqm_ocr": 63.2, - "price": 2300.0, - "price_per_sqm": 36.392405063291136, - "url": "https://www.rightmove.co.uk/properties/161803049", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "VNRE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79200/161803049/79200_33875076_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.870332", - "last_seen": "2025-06-01T22:05:44.855367", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290067, - 51.506004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.52, - "qmprice": 64.44, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161803442", - "info": { - "identifier": 161803442, - "sqm_ocr": 60.52, - "price": 3900.0, - "price_per_sqm": 64.44150693985459, - "url": "https://www.rightmove.co.uk/properties/161803442", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247910/161803442/247910_67c81d4192b8b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.469292", - "last_seen": "2025-06-01T22:05:57.954663", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178276, - 51.49414 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/161803481", - "info": { - "identifier": 161803481, - "sqm_ocr": null, - "price": 3358.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161803481", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Global House Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74713/161803481/74713_MVlPVEFGWVBydzJqMkpTMHAzd2IvQT09_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.430972", - "last_seen": "2025-06-01T22:06:06.227450", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096321, - 51.491993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161803484", - "info": { - "identifier": 161803484, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161803484", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161803484/96668_248039912052025_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.503617", - "last_seen": "2025-06-01T22:05:57.983490", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19348, - 51.488434 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161803538", - "info": { - "identifier": 161803538, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161803538", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/161803538/136148_2636160_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.606523", - "last_seen": "2025-06-01T22:06:13.901724", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135085, - 51.479763 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161803607", - "info": { - "identifier": 161803607, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161803607", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Urban Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41919/161803607/41919_33064080_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.867329", - "last_seen": "2025-06-01T22:06:12.288600", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177924, - 51.463966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161803823", - "info": { - "identifier": 161803823, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161803823", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51322/161803823/51322_HEA166511_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.556921", - "last_seen": "2025-06-01T22:06:15.992285", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140336, - 51.489983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.6, - "qmprice": 35.7, - "rooms": 2, - "total_price": 2699.0, - "url": "https://www.rightmove.co.uk/properties/161803859", - "info": { - "identifier": 161803859, - "sqm_ocr": 75.6, - "price": 2699.0, - "price_per_sqm": 35.7010582010582, - "url": "https://www.rightmove.co.uk/properties/161803859", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72234/161803859/72234_RWL180162_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.929073", - "last_seen": "2025-06-01T22:06:03.394721", - "price": 2575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026178, - 51.49931 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2968.0, - "url": "https://www.rightmove.co.uk/properties/161804042", - "info": { - "identifier": 161804042, - "sqm_ocr": null, - "price": 2968.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161804042", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Garrett Whitelock", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105305/161804042/105305_101341001989_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.423023", - "last_seen": "2025-06-01T20:19:57.482441", - "price": 2968 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06823, - 51.50481 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3420.0, - "url": "https://www.rightmove.co.uk/properties/161804813", - "info": { - "identifier": 161804813, - "sqm_ocr": null, - "price": 3420.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161804813", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/161804813/80340_a1G4J0000025yHgUAI_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.418678", - "last_seen": "2025-06-01T22:05:49.797085", - "price": 3420.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07286, - 51.58235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161805032", - "info": { - "identifier": 161805032, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161805032", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Daniels", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/25k/24347/161805032/24347_33875237_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.395767", - "last_seen": "2025-06-01T22:05:40.564670", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.278597, - 51.561035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.9, - "qmprice": 48.02, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161805200", - "info": { - "identifier": 161805200, - "sqm_ocr": 47.9, - "price": 2300.0, - "price_per_sqm": 48.01670146137787, - "url": "https://www.rightmove.co.uk/properties/161805200", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22320/161805200/22320_BAL200135_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.947669", - "last_seen": "2025-06-01T22:06:13.413664", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144858, - 51.450066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.8, - "qmprice": 34.51, - "rooms": 2, - "total_price": 2340.0, - "url": "https://www.rightmove.co.uk/properties/161805224", - "info": { - "identifier": 161805224, - "sqm_ocr": 67.8, - "price": 2340.0, - "price_per_sqm": 34.51327433628319, - "url": "https://www.rightmove.co.uk/properties/161805224", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/29k/28238/161805224/28238_CEI241511_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.546553", - "last_seen": "2025-06-01T22:06:10.546553", - "price": 2340 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025783, - 51.5164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.7, - "qmprice": 42.55, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161805344", - "info": { - "identifier": 161805344, - "sqm_ocr": 51.7, - "price": 2200.0, - "price_per_sqm": 42.5531914893617, - "url": "https://www.rightmove.co.uk/properties/161805344", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/161805344/67576_RL0192_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.115519", - "last_seen": "2025-06-01T22:05:42.189474", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149996, - 51.5509 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 44.12, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161805440", - "info": { - "identifier": 161805440, - "sqm_ocr": 68.0, - "price": 3000.0, - "price_per_sqm": 44.11764705882353, - "url": "https://www.rightmove.co.uk/properties/161805440", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Keller Williams Advantage", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205682/161805440/205682_RX580294_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.057831", - "last_seen": "2025-06-01T22:05:57.392470", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182257, - 51.48532 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161806025", - "info": { - "identifier": 161806025, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161806025", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161806025/43310_CWL080277_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.474634", - "last_seen": "2025-06-01T22:06:08.724162", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021317, - 51.507107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.6, - "qmprice": 44.84, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161806028", - "info": { - "identifier": 161806028, - "sqm_ocr": 73.6, - "price": 3300.0, - "price_per_sqm": 44.83695652173913, - "url": "https://www.rightmove.co.uk/properties/161806028", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161806028/43310_CDL240339_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.476306", - "last_seen": "2025-06-01T22:06:08.712029", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013507, - 51.497147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.4, - "qmprice": 44.7, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161806361", - "info": { - "identifier": 161806361, - "sqm_ocr": 60.4, - "price": 2700.0, - "price_per_sqm": 44.70198675496689, - "url": "https://www.rightmove.co.uk/properties/161806361", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82857/161806361/82857_1325584_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.439281", - "last_seen": "2025-06-01T22:06:10.439281", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025481, - 51.530136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 51.43, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/161806613", - "info": { - "identifier": 161806613, - "sqm_ocr": 68.0, - "price": 3497.0, - "price_per_sqm": 51.4264705882353, - "url": "https://www.rightmove.co.uk/properties/161806613", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253316/161806613/253316_NHO140003_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.444745", - "last_seen": "2025-06-01T22:06:15.132682", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19677, - 51.517445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 40.91, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161807030", - "info": { - "identifier": 161807030, - "sqm_ocr": 77.0, - "price": 3150.0, - "price_per_sqm": 40.90909090909091, - "url": "https://www.rightmove.co.uk/properties/161807030", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Hotblack Desiato", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51388/161807030/51388_ISL210130_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.105118", - "last_seen": "2025-06-01T22:05:53.830362", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101254, - 51.546116 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.7, - "qmprice": 49.34, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161807108", - "info": { - "identifier": 161807108, - "sqm_ocr": 52.7, - "price": 2600.0, - "price_per_sqm": 49.33586337760911, - "url": "https://www.rightmove.co.uk/properties/161807108", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/162k/161456/161807108/161456_33875630_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.922875", - "last_seen": "2025-06-01T22:06:14.909620", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150405, - 51.488953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.9, - "qmprice": 47.46, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/161807477", - "info": { - "identifier": 161807477, - "sqm_ocr": 79.9, - "price": 3792.0, - "price_per_sqm": 47.45932415519399, - "url": "https://www.rightmove.co.uk/properties/161807477", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43739/161807477/43739_P300454_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.113671", - "last_seen": "2025-06-01T22:06:15.416552", - "price": 3791.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18004, - 51.51227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.2, - "qmprice": 42.57, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161807561", - "info": { - "identifier": 161807561, - "sqm_ocr": 55.2, - "price": 2350.0, - "price_per_sqm": 42.57246376811594, - "url": "https://www.rightmove.co.uk/properties/161807561", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50683/161807561/50683_P276862_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.831623", - "last_seen": "2025-06-01T22:06:06.630652", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07995, - 51.50042 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161807810", - "info": { - "identifier": 161807810, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161807810", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/161807810/228512_33875692_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.803267", - "last_seen": "2025-06-01T22:05:43.020171", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192469, - 51.546825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.56, - "qmprice": 28.25, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161807960", - "info": { - "identifier": 161807960, - "sqm_ocr": 95.56, - "price": 2700.0, - "price_per_sqm": 28.25449979070741, - "url": "https://www.rightmove.co.uk/properties/161807960", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Hotblack Desiato", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48488/161807960/48488_HIG250143_L_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.091685", - "last_seen": "2025-06-01T22:05:53.804210", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108904, - 51.551258 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161808314", - "info": { - "identifier": 161808314, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161808314", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/161808314/238769_34h34fh43h6fh34acbdb_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.129759", - "last_seen": "2025-06-01T22:05:43.863358", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37587, - 51.50489 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161808356", - "info": { - "identifier": 161808356, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161808356", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85127/161808356/85127_TOL240084_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.471405", - "last_seen": "2025-06-01T22:05:54.770596", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07955, - 51.586285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 34.84, - "rooms": 3, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/161808392", - "info": { - "identifier": 161808392, - "sqm_ocr": 76.0, - "price": 2648.0, - "price_per_sqm": 34.8421052631579, - "url": "https://www.rightmove.co.uk/properties/161808392", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71137/161808392/71137_33875735_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.060112", - "last_seen": "2025-06-01T22:06:06.000461", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099754, - 51.482216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.9, - "qmprice": 39.7, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161808476", - "info": { - "identifier": 161808476, - "sqm_ocr": 52.9, - "price": 2100.0, - "price_per_sqm": 39.69754253308129, - "url": "https://www.rightmove.co.uk/properties/161808476", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68064/161808476/68064_CSV220112_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.292690", - "last_seen": "2025-06-01T22:05:59.242964", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108298, - 51.457745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.3, - "qmprice": 39.42, - "rooms": 3, - "total_price": 3796.0, - "url": "https://www.rightmove.co.uk/properties/161808569", - "info": { - "identifier": 161808569, - "sqm_ocr": 96.3, - "price": 3796.0, - "price_per_sqm": 39.41848390446521, - "url": "https://www.rightmove.co.uk/properties/161808569", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218729/161808569/218729_33875750_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.068794", - "last_seen": "2025-06-01T22:05:54.392024", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124646, - 51.556667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/161808926", - "info": { - "identifier": 161808926, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161808926", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Knight Frank Lettings (ILM)", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33966/161808926/33966_WLQ012548770_IMG_00_0013_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.274893", - "last_seen": "2025-06-01T22:05:44.970077", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.258234, - 51.52193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.2, - "qmprice": 43.21, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/161809247", - "info": { - "identifier": 161809247, - "sqm_ocr": 68.2, - "price": 2947.0, - "price_per_sqm": 43.21114369501466, - "url": "https://www.rightmove.co.uk/properties/161809247", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Chard", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141944/161809247/141944_33875801_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.187420", - "last_seen": "2025-06-01T22:05:48.826246", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184309, - 51.471306 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161809445", - "info": { - "identifier": 161809445, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161809445", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161809445/96668_248058112052025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.740841", - "last_seen": "2025-06-01T22:05:56.600167", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.243393, - 51.517258 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.3, - "qmprice": 44.14, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161809769", - "info": { - "identifier": 161809769, - "sqm_ocr": 62.3, - "price": 2750.0, - "price_per_sqm": 44.14125200642055, - "url": "https://www.rightmove.co.uk/properties/161809769", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Look Property Services Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/9k/8286/161809769/8286_12616003_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:11.077434", - "last_seen": "2025-06-01T22:06:11.077434", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055353, - 51.53385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 138.0, - "qmprice": 14.49, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161810168", - "info": { - "identifier": 161810168, - "sqm_ocr": 138.0, - "price": 2000.0, - "price_per_sqm": 14.492753623188406, - "url": "https://www.rightmove.co.uk/properties/161810168", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46013/161810168/46013_KGL250051_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.088213", - "last_seen": "2025-06-01T22:05:53.801219", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118691, - 51.561977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.0, - "qmprice": 44.55, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161810390", - "info": { - "identifier": 161810390, - "sqm_ocr": 55.0, - "price": 2450.0, - "price_per_sqm": 44.54545454545455, - "url": "https://www.rightmove.co.uk/properties/161810390", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12687/161810390/12687_GER220606_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.150039", - "last_seen": "2025-06-01T22:06:13.226165", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218633, - 51.43973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.4, - "qmprice": 36.02, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161810408", - "info": { - "identifier": 161810408, - "sqm_ocr": 69.4, - "price": 2500.0, - "price_per_sqm": 36.023054755043226, - "url": "https://www.rightmove.co.uk/properties/161810408", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Mile", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53010/161810408/53010_101541007547_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.327954", - "last_seen": "2025-06-01T22:05:40.456636", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22074, - 51.53304 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161810489", - "info": { - "identifier": 161810489, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161810489", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25055/161810489/25055_BOW250287_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.808448", - "last_seen": "2025-06-01T20:19:58.431389", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004038, - 51.493004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.43, - "qmprice": 41.83, - "rooms": 3, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/161810501", - "info": { - "identifier": 161810501, - "sqm_ocr": 94.43, - "price": 3950.0, - "price_per_sqm": 41.82992693000106, - "url": "https://www.rightmove.co.uk/properties/161810501", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117466/161810501/117466_WFL220023_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.719542", - "last_seen": "2025-06-01T22:05:49.444521", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182755, - 51.47387 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.7, - "qmprice": 57.32, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161810840", - "info": { - "identifier": 161810840, - "sqm_ocr": 56.7, - "price": 3250.0, - "price_per_sqm": 57.31922398589065, - "url": "https://www.rightmove.co.uk/properties/161810840", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "John Thorogood", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43346/161810840/43346_28959612_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.075333", - "last_seen": "2025-06-01T22:06:13.127731", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165723, - 51.45607 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.22, - "qmprice": 27.83, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161811059", - "info": { - "identifier": 161811059, - "sqm_ocr": 101.22, - "price": 2817.0, - "price_per_sqm": 27.830468286899823, - "url": "https://www.rightmove.co.uk/properties/161811059", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/161811059/25485_33875913_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.554995", - "last_seen": "2025-06-01T22:05:42.411627", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188322, - 51.541462 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.5, - "qmprice": 35.89, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161811125", - "info": { - "identifier": 161811125, - "sqm_ocr": 78.5, - "price": 2817.0, - "price_per_sqm": 35.88535031847134, - "url": "https://www.rightmove.co.uk/properties/161811125", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84869/161811125/84869_33875920_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.366552", - "last_seen": "2025-06-01T22:06:13.820878", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183432, - 51.465057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161811227", - "info": { - "identifier": 161811227, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161811227", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/161811227/281513_LDN250019_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.698963", - "last_seen": "2025-06-01T22:05:46.557802", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.025435, - 51.467957 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.7, - "qmprice": 57.32, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161811326", - "info": { - "identifier": 161811326, - "sqm_ocr": 56.7, - "price": 3250.0, - "price_per_sqm": 57.31922398589065, - "url": "https://www.rightmove.co.uk/properties/161811326", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/161811326/15954_1324767_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.823774", - "last_seen": "2025-06-01T22:05:54.028039", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090176, - 51.5441 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.52, - "qmprice": 46.5, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161811428", - "info": { - "identifier": 161811428, - "sqm_ocr": 64.52, - "price": 3000.0, - "price_per_sqm": 46.49721016738996, - "url": "https://www.rightmove.co.uk/properties/161811428", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51322/161811428/51322_WEL230097_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.103132", - "last_seen": "2025-06-01T22:06:14.477921", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131163, - 51.495205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.3, - "qmprice": 77.26, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161811440", - "info": { - "identifier": 161811440, - "sqm_ocr": 45.3, - "price": 3500.0, - "price_per_sqm": 77.2626931567329, - "url": "https://www.rightmove.co.uk/properties/161811440", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161811440/253853_1325941_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.362042", - "last_seen": "2025-06-01T22:06:04.970684", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096551, - 51.49672 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.27, - "qmprice": 28.03, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161811797", - "info": { - "identifier": 161811797, - "sqm_ocr": 80.27, - "price": 2250.0, - "price_per_sqm": 28.030397408745486, - "url": "https://www.rightmove.co.uk/properties/161811797", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Jo & Co Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283895/161811797/283895_495a4b5a-1c63-4cc4-a561-3391fe91d3a5_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.072282", - "last_seen": "2025-06-01T22:06:13.744514", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171375, - 51.465622 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161811920", - "info": { - "identifier": 161811920, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161811920", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "LETSiNVEST", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148172/161811920/148172_1896_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.947678", - "last_seen": "2025-06-01T22:05:50.512229", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.310903, - 51.59565 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.4, - "qmprice": 26.09, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161812145", - "info": { - "identifier": 161812145, - "sqm_ocr": 105.4, - "price": 2750.0, - "price_per_sqm": 26.091081593927893, - "url": "https://www.rightmove.co.uk/properties/161812145", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Aspire", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45012/161812145/45012_FRD230008_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.277895", - "last_seen": "2025-06-01T22:06:01.363753", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153918, - 51.41983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 39.62, - "qmprice": 56.79, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161812364", - "info": { - "identifier": 161812364, - "sqm_ocr": 39.62, - "price": 2250.0, - "price_per_sqm": 56.78950025239778, - "url": "https://www.rightmove.co.uk/properties/161812364", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34986/161812364/34986_ISL140147_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.940181", - "last_seen": "2025-06-01T22:05:53.637193", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110987, - 51.53508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.4, - "qmprice": 46.75, - "rooms": 2, - "total_price": 3011.0, - "url": "https://www.rightmove.co.uk/properties/161812409", - "info": { - "identifier": 161812409, - "sqm_ocr": 64.4, - "price": 3011.0, - "price_per_sqm": 46.754658385093165, - "url": "https://www.rightmove.co.uk/properties/161812409", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76478/161812409/76478_CEI241736_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:11.424314", - "last_seen": "2025-06-01T22:06:11.424314", - "price": 3011.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016244, - 51.49951 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161812463", - "info": { - "identifier": 161812463, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161812463", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161812463/96668_248045212052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.056242", - "last_seen": "2025-06-01T22:05:50.695037", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.338693, - 51.59519 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/161812490", - "info": { - "identifier": 161812490, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161812490", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161812490/96668_193366425122023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.368234", - "last_seen": "2025-06-01T22:05:59.981762", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138632, - 51.45189 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2090.0, - "url": "https://www.rightmove.co.uk/properties/161812499", - "info": { - "identifier": 161812499, - "sqm_ocr": null, - "price": 2090.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161812499", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161812499/96668_246911401052025_IMG_06_0001_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.371258", - "last_seen": "2025-06-01T22:05:59.985975", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106475, - 51.44208 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2075.0, - "url": "https://www.rightmove.co.uk/properties/161812526", - "info": { - "identifier": 161812526, - "sqm_ocr": null, - "price": 2075.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161812526", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161812526/96668_248053112052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.241192", - "last_seen": "2025-06-01T22:05:51.783546", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.357884, - 51.47861 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161812670", - "info": { - "identifier": 161812670, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161812670", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "One London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256565/161812670/256565_BRV6658_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.432422", - "last_seen": "2025-06-01T22:05:53.357251", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09625, - 51.52912 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161813372", - "info": { - "identifier": 161813372, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161813372", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6769/161813372/6769_GGL250022_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.575739", - "last_seen": "2025-06-01T22:05:38.816166", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203171, - 51.571346 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161813717", - "info": { - "identifier": 161813717, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161813717", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Ivory Real Estate", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82380/161813717/82380_IVG250096_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.103005", - "last_seen": "2025-06-01T22:06:09.776214", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017595, - 51.50975 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.29, - "qmprice": 26.69, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161813804", - "info": { - "identifier": 161813804, - "sqm_ocr": 84.29, - "price": 2250.0, - "price_per_sqm": 26.69355795468027, - "url": "https://www.rightmove.co.uk/properties/161813804", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Camerons Stiff & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34175/161813804/34175_33876100_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.719567", - "last_seen": "2025-06-01T22:05:40.900978", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224246, - 51.551956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 50.0, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161814119", - "info": { - "identifier": 161814119, - "sqm_ocr": 75.0, - "price": 3750.0, - "price_per_sqm": 50.0, - "url": "https://www.rightmove.co.uk/properties/161814119", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "relocate-me.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33012/161814119/33012_3212_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.011838", - "last_seen": "2025-06-01T22:05:53.658822", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087488, - 51.525105 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161814254", - "info": { - "identifier": 161814254, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161814254", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Brink Riley", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120589/161814254/120589_2627923_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.623428", - "last_seen": "2025-06-01T22:06:12.773083", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21194, - 51.45206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161814311", - "info": { - "identifier": 161814311, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161814311", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194036/161814311/194036_HWV160193_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.525673", - "last_seen": "2025-06-01T22:06:01.100450", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21776, - 51.41818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.23, - "qmprice": 31.24, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161815073", - "info": { - "identifier": 161815073, - "sqm_ocr": 91.23, - "price": 2850.0, - "price_per_sqm": 31.239723775073987, - "url": "https://www.rightmove.co.uk/properties/161815073", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117466/161815073/117466_CLV178883_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.652249", - "last_seen": "2025-06-01T22:05:48.641182", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182559, - 51.472176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3501.0, - "url": "https://www.rightmove.co.uk/properties/161815178", - "info": { - "identifier": 161815178, - "sqm_ocr": null, - "price": 3501.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161815178", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "JS Estate Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264161/161815178/264161_341340_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.624966", - "last_seen": "2025-06-01T22:06:06.343210", - "price": 3501 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04704, - 51.499687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 27.03, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161815430", - "info": { - "identifier": 161815430, - "sqm_ocr": 74.0, - "price": 2000.0, - "price_per_sqm": 27.027027027027028, - "url": "https://www.rightmove.co.uk/properties/161815430", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "The Property Shop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167138/161815430/167138_TPR1001449_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.125218", - "last_seen": "2025-06-01T22:05:50.263075", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28588, - 51.61053 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.98, - "qmprice": 24.18, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161815478", - "info": { - "identifier": 161815478, - "sqm_ocr": 90.98, - "price": 2200.0, - "price_per_sqm": 24.181138711804792, - "url": "https://www.rightmove.co.uk/properties/161815478", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Pollard Machin", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72464/161815478/72464_12652356_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.805104", - "last_seen": "2025-06-01T22:05:43.338034", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074535, - 51.345234 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161815532", - "info": { - "identifier": 161815532, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161815532", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83134/161815532/83134_000494850_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.780700", - "last_seen": "2025-06-01T22:06:03.880415", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.10016, - 51.55992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161815826", - "info": { - "identifier": 161815826, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161815826", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Filey Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271691/161815826/271691_2129693_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.022430", - "last_seen": "2025-06-01T22:05:45.517664", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014933, - 51.668808 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 41.33, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161815949", - "info": { - "identifier": 161815949, - "sqm_ocr": 75.0, - "price": 3100.0, - "price_per_sqm": 41.333333333333336, - "url": "https://www.rightmove.co.uk/properties/161815949", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Imperial Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85765/161815949/85765_000010467b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.705472", - "last_seen": "2025-06-01T22:05:55.195239", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18247, - 51.47301 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.32, - "qmprice": 46.49, - "rooms": 2, - "total_price": 2665.0, - "url": "https://www.rightmove.co.uk/properties/161815979", - "info": { - "identifier": 161815979, - "sqm_ocr": 57.32, - "price": 2665.0, - "price_per_sqm": 46.493370551291, - "url": "https://www.rightmove.co.uk/properties/161815979", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Rose & Co Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83711/161815979/83711_12660132_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.657167", - "last_seen": "2025-06-01T22:05:42.548899", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182076, - 51.5434 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161816021", - "info": { - "identifier": 161816021, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161816021", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Wynn Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224318/161816021/224318_26BurbridgeGardens_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.556090", - "last_seen": "2025-06-01T22:05:51.234459", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.46864, - 51.53986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161816027", - "info": { - "identifier": 161816027, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161816027", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/161816027/54616_DAN190761_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.869018", - "last_seen": "2025-06-01T22:05:53.246114", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118273, - 51.56167 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161816093", - "info": { - "identifier": 161816093, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161816093", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44510/161816093/44510_NHL240142_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.946996", - "last_seen": "2025-06-01T22:06:14.850883", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169584, - 51.516533 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.81, - "qmprice": 30.34, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161816123", - "info": { - "identifier": 161816123, - "sqm_ocr": 75.81, - "price": 2300.0, - "price_per_sqm": 30.339005408257485, - "url": "https://www.rightmove.co.uk/properties/161816123", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Elms Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71927/161816123/71927_33876257_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.338763", - "last_seen": "2025-06-01T22:06:08.002191", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058299, - 51.52663 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.1, - "qmprice": 44.98, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/161816132", - "info": { - "identifier": 161816132, - "sqm_ocr": 71.1, - "price": 3198.0, - "price_per_sqm": 44.9789029535865, - "url": "https://www.rightmove.co.uk/properties/161816132", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233849/161816132/233849_2660667_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.651554", - "last_seen": "2025-06-01T22:05:58.499712", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.304815, - 51.407703 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.64, - "qmprice": 34.03, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161816171", - "info": { - "identifier": 161816171, - "sqm_ocr": 64.64, - "price": 2200.0, - "price_per_sqm": 34.03465346534654, - "url": "https://www.rightmove.co.uk/properties/161816171", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68804/161816171/68804_P300092_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.066608", - "last_seen": "2025-06-01T22:05:59.613054", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09298, - 51.4331 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 41.85, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161816180", - "info": { - "identifier": 161816180, - "sqm_ocr": 69.9, - "price": 2925.0, - "price_per_sqm": 41.84549356223176, - "url": "https://www.rightmove.co.uk/properties/161816180", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/161816180/73120_1324489_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.577830", - "last_seen": "2025-06-01T22:05:53.601686", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094032, - 51.523945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.3, - "qmprice": 54.42, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/161816264", - "info": { - "identifier": 161816264, - "sqm_ocr": 63.3, - "price": 3445.0, - "price_per_sqm": 54.42338072669826, - "url": "https://www.rightmove.co.uk/properties/161816264", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/161816264/76585_1325967_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.772509", - "last_seen": "2025-06-01T22:06:15.231613", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164391, - 51.51523 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.8, - "qmprice": 44.22, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161816327", - "info": { - "identifier": 161816327, - "sqm_ocr": 84.8, - "price": 3750.0, - "price_per_sqm": 44.22169811320755, - "url": "https://www.rightmove.co.uk/properties/161816327", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247511/161816327/247511_P443883_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.891033", - "last_seen": "2025-06-01T22:05:47.953375", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08057, - 51.53011 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.3, - "qmprice": 26.6, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161816435", - "info": { - "identifier": 161816435, - "sqm_ocr": 120.3, - "price": 3200.0, - "price_per_sqm": 26.60016625103907, - "url": "https://www.rightmove.co.uk/properties/161816435", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57275/161816435/57275_1325968_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.206563", - "last_seen": "2025-06-01T22:05:50.660546", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.367422, - 51.584297 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161816558", - "info": { - "identifier": 161816558, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161816558", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Marc and Partners", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201956/161816558/201956_MAY250095_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.512407", - "last_seen": "2025-06-01T22:06:08.625704", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010096, - 51.52118 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.95, - "qmprice": 32.81, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161816576", - "info": { - "identifier": 161816576, - "sqm_ocr": 60.95, - "price": 2000.0, - "price_per_sqm": 32.81378178835111, - "url": "https://www.rightmove.co.uk/properties/161816576", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194036/161816576/194036_HWV230117_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.810585", - "last_seen": "2025-06-01T22:06:12.413328", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212565, - 51.445885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.92, - "qmprice": 41.72, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161816762", - "info": { - "identifier": 161816762, - "sqm_ocr": 59.92, - "price": 2500.0, - "price_per_sqm": 41.72229639519359, - "url": "https://www.rightmove.co.uk/properties/161816762", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/161816762/228512_33876301_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.814649", - "last_seen": "2025-06-01T22:05:42.998308", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116762, - 51.528774 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161816768", - "info": { - "identifier": 161816768, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161816768", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "LDB", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88034/161816768/88034_33876304_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.826424", - "last_seen": "2025-06-01T22:05:49.341290", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207197, - 51.487144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.3, - "qmprice": 31.63, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161816909", - "info": { - "identifier": 161816909, - "sqm_ocr": 123.3, - "price": 3900.0, - "price_per_sqm": 31.630170316301705, - "url": "https://www.rightmove.co.uk/properties/161816909", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/161816909/227810_1325705_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.465842", - "last_seen": "2025-06-01T22:05:46.838026", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.076351, - 51.478462 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 35.81, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161817023", - "info": { - "identifier": 161817023, - "sqm_ocr": 74.0, - "price": 2650.0, - "price_per_sqm": 35.810810810810814, - "url": "https://www.rightmove.co.uk/properties/161817023", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "David Andrew", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93623/161817023/93623_adff4807-ac92-4310-8f89-2ea1328593f6_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.780758", - "last_seen": "2025-06-01T22:05:49.878338", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116402, - 51.588406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.7, - "qmprice": 27.7, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161817098", - "info": { - "identifier": 161817098, - "sqm_ocr": 104.7, - "price": 2900.0, - "price_per_sqm": 27.6981852913085, - "url": "https://www.rightmove.co.uk/properties/161817098", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Wembley", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260423/161817098/260423_000020162_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.116654", - "last_seen": "2025-06-01T22:05:40.922766", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29563, - 51.53909 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161817296", - "info": { - "identifier": 161817296, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161817296", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/161817296/146147_PR252984_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.276640", - "last_seen": "2025-06-01T22:05:55.524106", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.029428, - 51.458492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.09, - "qmprice": 34.21, - "rooms": 3, - "total_price": 3185.0, - "url": "https://www.rightmove.co.uk/properties/161817644", - "info": { - "identifier": 161817644, - "sqm_ocr": 93.09, - "price": 3185.0, - "price_per_sqm": 34.21420131055967, - "url": "https://www.rightmove.co.uk/properties/161817644", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "ML Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45180/161817644/45180_MICLE_002483_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.141347", - "last_seen": "2025-06-01T22:05:42.106836", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185881, - 51.55218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.5, - "qmprice": 37.18, - "rooms": 2, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/161818229", - "info": { - "identifier": 161818229, - "sqm_ocr": 91.5, - "price": 3402.0, - "price_per_sqm": 37.18032786885246, - "url": "https://www.rightmove.co.uk/properties/161818229", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79825/161818229/79825_P300473_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.856752", - "last_seen": "2025-06-01T22:05:50.045876", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1414, - 51.59044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161818490", - "info": { - "identifier": 161818490, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161818490", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/161818490/252785_33876430_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.865658", - "last_seen": "2025-06-01T22:05:47.437663", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076542, - 51.547676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161818760", - "info": { - "identifier": 161818760, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161818760", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/161818760/222842_TCT240510_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.887831", - "last_seen": "2025-06-01T22:05:53.207356", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116151, - 51.548386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2513.0, - "url": "https://www.rightmove.co.uk/properties/161819273", - "info": { - "identifier": 161819273, - "sqm_ocr": null, - "price": 2513.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161819273", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/161819273/105856_278_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.665135", - "last_seen": "2025-06-01T22:06:00.230680", - "price": 2513 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112242, - 51.499336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.1, - "qmprice": 37.19, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161819306", - "info": { - "identifier": 161819306, - "sqm_ocr": 94.1, - "price": 3500.0, - "price_per_sqm": 37.19447396386823, - "url": "https://www.rightmove.co.uk/properties/161819306", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Malixons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38340/161819306/38340_8024ae70-be36-4814-a897-28c628e0a368_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.051176", - "last_seen": "2025-06-01T22:06:13.687930", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170642, - 51.426453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161819429", - "info": { - "identifier": 161819429, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161819429", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/161819429/17418_100415010647_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.591373", - "last_seen": "2025-06-01T22:05:51.168984", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.39359, - 51.57051 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 143.9, - "qmprice": 26.06, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161819543", - "info": { - "identifier": 161819543, - "sqm_ocr": 143.9, - "price": 3750.0, - "price_per_sqm": 26.059763724808896, - "url": "https://www.rightmove.co.uk/properties/161819543", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14614/161819543/14614_GRE150122_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.214042", - "last_seen": "2025-06-01T22:05:46.465488", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.020365, - 51.47472 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161820011", - "info": { - "identifier": 161820011, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161820011", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/161820011/222842_TCT230072_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.922540", - "last_seen": "2025-06-01T22:05:42.322644", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155391, - 51.55073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161820167", - "info": { - "identifier": 161820167, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161820167", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Ambassador Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/221k/220430/161820167/220430_gordon_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.928150", - "last_seen": "2025-06-01T22:06:03.980430", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02149, - 51.57533 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.9, - "qmprice": 23.83, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161820275", - "info": { - "identifier": 161820275, - "sqm_ocr": 125.9, - "price": 3000.0, - "price_per_sqm": 23.828435266084192, - "url": "https://www.rightmove.co.uk/properties/161820275", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/161820275/15969_1325144_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.381269", - "last_seen": "2025-06-01T22:05:44.950951", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.308456, - 51.500137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.9, - "qmprice": 31.77, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161820284", - "info": { - "identifier": 161820284, - "sqm_ocr": 125.9, - "price": 4000.0, - "price_per_sqm": 31.77124702144559, - "url": "https://www.rightmove.co.uk/properties/161820284", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/161820284/15969_1325145_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.388922", - "last_seen": "2025-06-01T22:05:44.965833", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.308456, - 51.500137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 55.82, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/161820386", - "info": { - "identifier": 161820386, - "sqm_ocr": 66.0, - "price": 3684.0, - "price_per_sqm": 55.81818181818182, - "url": "https://www.rightmove.co.uk/properties/161820386", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/161820386/76585_1325945_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.097255", - "last_seen": "2025-06-01T22:06:14.483812", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167041, - 51.52215 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161820401", - "info": { - "identifier": 161820401, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161820401", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Homes With PJ", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267413/161820401/267413_L108730_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.068119", - "last_seen": "2025-06-01T22:06:13.088559", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165188, - 51.427784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161820410", - "info": { - "identifier": 161820410, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161820410", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Homes With PJ", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267413/161820410/267413_L108747_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.057946", - "last_seen": "2025-06-01T22:06:13.082651", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164587, - 51.42736 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.5, - "qmprice": 31.42, - "rooms": 3, - "total_price": 3975.0, - "url": "https://www.rightmove.co.uk/properties/161820503", - "info": { - "identifier": 161820503, - "sqm_ocr": 126.5, - "price": 3975.0, - "price_per_sqm": 31.42292490118577, - "url": "https://www.rightmove.co.uk/properties/161820503", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/161820503/281129_1205-01_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.504452", - "last_seen": "2025-06-01T22:05:39.641334", - "price": 3975.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22083, - 51.57143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 41.85, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161820626", - "info": { - "identifier": 161820626, - "sqm_ocr": 69.9, - "price": 2925.0, - "price_per_sqm": 41.84549356223176, - "url": "https://www.rightmove.co.uk/properties/161820626", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/161820626/281129_M2205-04_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.049959", - "last_seen": "2025-06-01T22:05:39.160597", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22111, - 51.57144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2059.0, - "url": "https://www.rightmove.co.uk/properties/161820638", - "info": { - "identifier": 161820638, - "sqm_ocr": null, - "price": 2059.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161820638", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/161820638/111056_1322968_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.555271", - "last_seen": "2025-06-01T22:06:10.555271", - "price": 2059.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024655, - 51.524 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 41.85, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161820782", - "info": { - "identifier": 161820782, - "sqm_ocr": 69.9, - "price": 2925.0, - "price_per_sqm": 41.84549356223176, - "url": "https://www.rightmove.co.uk/properties/161820782", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/161820782/281129_1205-03_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.722714", - "last_seen": "2025-06-01T22:05:38.665499", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22111, - 51.57144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161820875", - "info": { - "identifier": 161820875, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161820875", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Mischa & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64652/161820875/64652_29048553_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.506296", - "last_seen": "2025-06-01T22:05:40.742116", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299465, - 51.572514 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161820938", - "info": { - "identifier": 161820938, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161820938", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Leonard Leese", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35405/161820938/35405_33876589_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.442216", - "last_seen": "2025-06-01T22:06:05.195042", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093892, - 51.496864 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 132.94, - "qmprice": 26.33, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161821559", - "info": { - "identifier": 161821559, - "sqm_ocr": 132.94, - "price": 3500.0, - "price_per_sqm": 26.32766661651873, - "url": "https://www.rightmove.co.uk/properties/161821559", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51271/161821559/51271_BAR210136_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.167801", - "last_seen": "2025-06-01T22:06:04.497950", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23939, - 51.47941 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.83, - "qmprice": 39.97, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161821562", - "info": { - "identifier": 161821562, - "sqm_ocr": 93.83, - "price": 3750.0, - "price_per_sqm": 39.96589576894384, - "url": "https://www.rightmove.co.uk/properties/161821562", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161821562/26207_IUL160115_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.506269", - "last_seen": "2025-06-01T22:05:53.456308", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095205, - 51.52421 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.2, - "qmprice": 40.7, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/161821580", - "info": { - "identifier": 161821580, - "sqm_ocr": 77.2, - "price": 3142.0, - "price_per_sqm": 40.69948186528497, - "url": "https://www.rightmove.co.uk/properties/161821580", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161821580/26207_IUL130257_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.498038", - "last_seen": "2025-06-01T22:05:53.411987", - "price": 3142.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08711, - 51.54471 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.9, - "qmprice": 27.81, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161821601", - "info": { - "identifier": 161821601, - "sqm_ocr": 80.9, - "price": 2250.0, - "price_per_sqm": 27.812113720642767, - "url": "https://www.rightmove.co.uk/properties/161821601", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/161821601/96392_KYC250168_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.732359", - "last_seen": "2025-06-01T22:05:40.810410", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29287, - 51.554028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/161821727", - "info": { - "identifier": 161821727, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161821727", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/161821727/146147_PR191309_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.487698", - "last_seen": "2025-06-01T22:06:07.477899", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.007856, - 51.541245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.78, - "qmprice": 29.42, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161822117", - "info": { - "identifier": 161822117, - "sqm_ocr": 91.78, - "price": 2700.0, - "price_per_sqm": 29.418173894094572, - "url": "https://www.rightmove.co.uk/properties/161822117", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25214/161822117/25214_33876674_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.283605", - "last_seen": "2025-06-01T22:06:05.033385", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077642, - 51.499466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2873.0, - "url": "https://www.rightmove.co.uk/properties/161822123", - "info": { - "identifier": 161822123, - "sqm_ocr": null, - "price": 2873.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161822123", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/161822123/32793_19396_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.998655", - "last_seen": "2025-06-01T22:05:57.190343", - "price": 2873 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20299, - 51.57359 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.0, - "qmprice": 34.31, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161822168", - "info": { - "identifier": 161822168, - "sqm_ocr": 102.0, - "price": 3500.0, - "price_per_sqm": 34.31372549019608, - "url": "https://www.rightmove.co.uk/properties/161822168", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111325/161822168/111325_KDP250970_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.376350", - "last_seen": "2025-06-01T22:05:56.383156", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199608, - 51.571796 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.0, - "qmprice": 34.0, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161822324", - "info": { - "identifier": 161822324, - "sqm_ocr": 100.0, - "price": 3400.0, - "price_per_sqm": 34.0, - "url": "https://www.rightmove.co.uk/properties/161822324", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13102/161822324/13102_MWL200492_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.518103", - "last_seen": "2025-06-01T22:05:50.132219", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141256, - 51.590446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 27.98, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161822366", - "info": { - "identifier": 161822366, - "sqm_ocr": 82.2, - "price": 2300.0, - "price_per_sqm": 27.980535279805352, - "url": "https://www.rightmove.co.uk/properties/161822366", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43829/161822366/43829_P300491_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.413926", - "last_seen": "2025-06-01T20:19:57.297205", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00892, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 32.85, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161822399", - "info": { - "identifier": 161822399, - "sqm_ocr": 82.2, - "price": 2700.0, - "price_per_sqm": 32.846715328467155, - "url": "https://www.rightmove.co.uk/properties/161822399", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/161822399/95098_P300492_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.767628", - "last_seen": "2025-06-01T20:19:55.871798", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00892, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161822495", - "info": { - "identifier": 161822495, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161822495", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242966/161822495/242966_P138550_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.150908", - "last_seen": "2025-06-01T22:05:39.422311", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2476, - 51.59576 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 32.85, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161822597", - "info": { - "identifier": 161822597, - "sqm_ocr": 82.2, - "price": 2700.0, - "price_per_sqm": 32.846715328467155, - "url": "https://www.rightmove.co.uk/properties/161822597", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/161822597/238841_P300497_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.460968", - "last_seen": "2025-06-01T22:06:08.726769", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00892, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.7, - "qmprice": 36.08, - "rooms": 3, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/161822651", - "info": { - "identifier": 161822651, - "sqm_ocr": 106.7, - "price": 3850.0, - "price_per_sqm": 36.08247422680412, - "url": "https://www.rightmove.co.uk/properties/161822651", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/161822651/238841_P300498_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.185074", - "last_seen": "2025-06-01T22:06:09.868196", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00892, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.4, - "qmprice": 35.5, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161822681", - "info": { - "identifier": 161822681, - "sqm_ocr": 101.4, - "price": 3600.0, - "price_per_sqm": 35.50295857988166, - "url": "https://www.rightmove.co.uk/properties/161822681", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Woolwich", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260435/161822681/260435_000020500_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.225673", - "last_seen": "2025-06-01T22:05:46.473582", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06786, - 51.49026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/161822771", - "info": { - "identifier": 161822771, - "sqm_ocr": null, - "price": 3012.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161822771", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22353/161822771/22353_CSV141706_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.721084", - "last_seen": "2025-06-01T22:06:15.504390", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192494, - 51.5155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.6, - "qmprice": 43.21, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161822798", - "info": { - "identifier": 161822798, - "sqm_ocr": 48.6, - "price": 2100.0, - "price_per_sqm": 43.20987654320987, - "url": "https://www.rightmove.co.uk/properties/161822798", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/161822798/84875_33876732_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.242348", - "last_seen": "2025-06-01T22:05:59.971025", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128066, - 51.457287 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161822852", - "info": { - "identifier": 161822852, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161822852", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242966/161822852/242966_P142425_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.641878", - "last_seen": "2025-06-01T22:05:39.058388", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2473, - 51.59593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161822894", - "info": { - "identifier": 161822894, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161822894", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Brithomes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275363/161822894/275363_000000012052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.270121", - "last_seen": "2025-06-01T22:05:52.204445", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30305, - 51.49082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.7, - "qmprice": 53.61, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161823005", - "info": { - "identifier": 161823005, - "sqm_ocr": 45.7, - "price": 2450.0, - "price_per_sqm": 53.61050328227571, - "url": "https://www.rightmove.co.uk/properties/161823005", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/128k/127549/161823005/127549_P300499_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.260775", - "last_seen": "2025-06-01T22:06:14.181387", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18829, - 51.44243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 33.09, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161824007", - "info": { - "identifier": 161824007, - "sqm_ocr": 68.0, - "price": 2250.0, - "price_per_sqm": 33.088235294117645, - "url": "https://www.rightmove.co.uk/properties/161824007", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Cow & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191477/161824007/191477_COW250121_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.880522", - "last_seen": "2025-06-01T22:06:04.424250", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.351016, - 51.4442 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161824070", - "info": { - "identifier": 161824070, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161824070", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "TrendyBlocks", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/277k/276857/161824070/276857_LEYSTREET_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.870491", - "last_seen": "2025-06-01T22:06:03.874800", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.08054, - 51.56308 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.3, - "qmprice": 42.94, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/161824802", - "info": { - "identifier": 161824802, - "sqm_ocr": 88.3, - "price": 3792.0, - "price_per_sqm": 42.94450736126841, - "url": "https://www.rightmove.co.uk/properties/161824802", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Mcglashans Property Services", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91433/161824802/91433_29049149_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.076381", - "last_seen": "2025-06-01T22:06:14.514334", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162392, - 51.518005 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161825015", - "info": { - "identifier": 161825015, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161825015", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "COZEE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262232/161825015/262232_b492192b-39aa-4348-ae73-5d0b91aa9796_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.448201", - "last_seen": "2025-06-01T22:06:02.152495", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03019, - 51.50171 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.2, - "qmprice": 45.01, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161825174", - "info": { - "identifier": 161825174, - "sqm_ocr": 72.2, - "price": 3250.0, - "price_per_sqm": 45.013850415512465, - "url": "https://www.rightmove.co.uk/properties/161825174", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/161825174/108515_1325996_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.782583", - "last_seen": "2025-06-01T22:05:57.685925", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185787, - 51.485233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.44, - "qmprice": 37.45, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161825222", - "info": { - "identifier": 161825222, - "sqm_ocr": 73.44, - "price": 2750.0, - "price_per_sqm": 37.44553376906318, - "url": "https://www.rightmove.co.uk/properties/161825222", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/161825222/101522_1325993_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.044036", - "last_seen": "2025-06-01T22:05:47.919953", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056823, - 51.543034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.4, - "qmprice": 38.23, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161825228", - "info": { - "identifier": 161825228, - "sqm_ocr": 65.4, - "price": 2500.0, - "price_per_sqm": 38.2262996941896, - "url": "https://www.rightmove.co.uk/properties/161825228", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161825228/48101_1325701_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.506108", - "last_seen": "2025-06-01T20:19:57.622332", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013678, - 51.497646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161825348", - "info": { - "identifier": 161825348, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161825348", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Hamilton Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87784/161825348/87784_102974002800_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.166759", - "last_seen": "2025-06-01T22:05:41.016241", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28678, - 51.57125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.93, - "qmprice": 44.86, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161825714", - "info": { - "identifier": 161825714, - "sqm_ocr": 86.93, - "price": 3900.0, - "price_per_sqm": 44.863683423444144, - "url": "https://www.rightmove.co.uk/properties/161825714", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Goldstone Letting & Management Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206063/161825714/206063_GLD210095_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.794638", - "last_seen": "2025-06-01T20:19:59.316263", - "price": 3813 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01739, - 51.50091 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.55, - "qmprice": 41.34, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161825756", - "info": { - "identifier": 161825756, - "sqm_ocr": 72.55, - "price": 2999.0, - "price_per_sqm": 41.33700895933839, - "url": "https://www.rightmove.co.uk/properties/161825756", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233849/161825756/233849_2639839_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.154127", - "last_seen": "2025-06-01T22:05:52.190472", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30795, - 51.48248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 34.13, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161826227", - "info": { - "identifier": 161826227, - "sqm_ocr": 63.0, - "price": 2150.0, - "price_per_sqm": 34.12698412698413, - "url": "https://www.rightmove.co.uk/properties/161826227", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/161826227/80281_1326001_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.786209", - "last_seen": "2025-06-01T22:06:07.394064", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.002736, - 51.539024 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161826278", - "info": { - "identifier": 161826278, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161826278", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/155k/154961/161826278/154961_33876967_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.774052", - "last_seen": "2025-06-01T22:06:03.859815", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.12672, - 51.57525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 124.3, - "qmprice": 31.38, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161826995", - "info": { - "identifier": 161826995, - "sqm_ocr": 124.3, - "price": 3900.0, - "price_per_sqm": 31.375703942075624, - "url": "https://www.rightmove.co.uk/properties/161826995", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161826995/96668_247968711052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.467963", - "last_seen": "2025-06-01T22:05:42.868661", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195679, - 51.556973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161827112", - "info": { - "identifier": 161827112, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161827112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161827112/96668_248072412052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.392074", - "last_seen": "2025-06-01T22:05:42.792587", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148965, - 51.543495 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2215.0, - "url": "https://www.rightmove.co.uk/properties/161827166", - "info": { - "identifier": 161827166, - "sqm_ocr": null, - "price": 2215.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161827166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161827166/96668_233647401012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.815569", - "last_seen": "2025-06-01T22:05:46.780791", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013013, - 51.496803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 41.0, - "qmprice": 48.83, - "rooms": 2, - "total_price": 2002.0, - "url": "https://www.rightmove.co.uk/properties/161827808", - "info": { - "identifier": 161827808, - "sqm_ocr": 41.0, - "price": 2002.0, - "price_per_sqm": 48.829268292682926, - "url": "https://www.rightmove.co.uk/properties/161827808", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Champions", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45441/161827808/45441_400_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.787800", - "last_seen": "2025-06-01T22:06:09.407948", - "price": 2002 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07548, - 51.52085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 131.15, - "qmprice": 26.69, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161828015", - "info": { - "identifier": 161828015, - "sqm_ocr": 131.15, - "price": 3500.0, - "price_per_sqm": 26.68699961875715, - "url": "https://www.rightmove.co.uk/properties/161828015", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Malixons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38340/161828015/38340_fee44150-326a-4922-9ad6-e34c7d48ef57_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.682108", - "last_seen": "2025-06-01T22:06:12.991563", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166791, - 51.424835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161828159", - "info": { - "identifier": 161828159, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161828159", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/161828159/67576_RL1744_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.610982", - "last_seen": "2025-06-01T22:05:41.324370", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216126, - 51.555935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.13, - "qmprice": 50.64, - "rooms": 2, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/161828213", - "info": { - "identifier": 161828213, - "sqm_ocr": 65.13, - "price": 3298.0, - "price_per_sqm": 50.63718716413327, - "url": "https://www.rightmove.co.uk/properties/161828213", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/161828213/136148_2713134_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.986138", - "last_seen": "2025-06-01T22:06:13.567602", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135314, - 51.480076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 36.88, - "rooms": 2, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/161828510", - "info": { - "identifier": 161828510, - "sqm_ocr": 84.0, - "price": 3098.0, - "price_per_sqm": 36.88095238095238, - "url": "https://www.rightmove.co.uk/properties/161828510", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Glentree Estates Ltd", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/191k/190037/161828510/190037_33877119_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.586613", - "last_seen": "2025-06-01T22:05:38.862275", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199212, - 51.57435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.18, - "qmprice": 49.98, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/161829188", - "info": { - "identifier": 161829188, - "sqm_ocr": 54.18, - "price": 2708.0, - "price_per_sqm": 49.981543004798816, - "url": "https://www.rightmove.co.uk/properties/161829188", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/161829188/29861_33877161_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.529796", - "last_seen": "2025-06-01T22:06:09.358537", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072967, - 51.511456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.9, - "qmprice": 37.69, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161829266", - "info": { - "identifier": 161829266, - "sqm_ocr": 84.9, - "price": 3200.0, - "price_per_sqm": 37.69140164899882, - "url": "https://www.rightmove.co.uk/properties/161829266", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237689/161829266/237689_KEB240114_L_IMG_00_0000_max_656x437.png", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.602268", - "last_seen": "2025-06-01T22:06:15.966276", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214376, - 51.530293 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161829803", - "info": { - "identifier": 161829803, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161829803", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Blackfinch Property Management Ltd", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282167/161829803/282167_704749_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.253252", - "last_seen": "2025-06-01T22:06:15.597190", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191839, - 51.522797 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161830799", - "info": { - "identifier": 161830799, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161830799", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Admiral Property Partnership Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141935/161830799/141935_APP_003866_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.011819", - "last_seen": "2025-06-01T22:05:42.929320", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178963, - 51.551247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161831477", - "info": { - "identifier": 161831477, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161831477", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/161831477/67576_RL1109_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.712798", - "last_seen": "2025-06-01T22:05:38.685610", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20254, - 51.566833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161831540", - "info": { - "identifier": 161831540, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161831540", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/161831540/80105_3621_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.313841", - "last_seen": "2025-06-01T22:06:01.048413", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198295, - 51.42616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.63, - "qmprice": 38.09, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161831597", - "info": { - "identifier": 161831597, - "sqm_ocr": 65.63, - "price": 2500.0, - "price_per_sqm": 38.09233582203261, - "url": "https://www.rightmove.co.uk/properties/161831597", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161831597/16050_1326015_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.244387", - "last_seen": "2025-06-01T22:06:09.986142", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071981, - 51.53002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.63, - "qmprice": 57.14, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161831609", - "info": { - "identifier": 161831609, - "sqm_ocr": 65.63, - "price": 3750.0, - "price_per_sqm": 57.138503733048914, - "url": "https://www.rightmove.co.uk/properties/161831609", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161831609/16050_1326012_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.976689", - "last_seen": "2025-06-01T22:06:09.271559", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071981, - 51.53002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 54.5, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/161831984", - "info": { - "identifier": 161831984, - "sqm_ocr": 66.0, - "price": 3597.0, - "price_per_sqm": 54.5, - "url": "https://www.rightmove.co.uk/properties/161831984", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Champions", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45441/161831984/45441_6363_IMG_08_0001_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.019920", - "last_seen": "2025-06-01T22:06:14.589205", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17144, - 51.51834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/161832470", - "info": { - "identifier": 161832470, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161832470", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Mayfords Estate Agent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226394/161832470/226394_157_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.375847", - "last_seen": "2025-06-01T22:06:10.375847", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0193, - 51.4892 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 42.79, - "rooms": 2, - "total_price": 3295.0, - "url": "https://www.rightmove.co.uk/properties/161832710", - "info": { - "identifier": 161832710, - "sqm_ocr": 77.0, - "price": 3295.0, - "price_per_sqm": 42.79220779220779, - "url": "https://www.rightmove.co.uk/properties/161832710", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "McMahon & Partners", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65019/161832710/65019_441_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.774437", - "last_seen": "2025-06-01T22:06:05.597969", - "price": 3295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099837, - 51.497147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 33.61, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/161832878", - "info": { - "identifier": 161832878, - "sqm_ocr": 69.9, - "price": 2349.0, - "price_per_sqm": 33.60515021459227, - "url": "https://www.rightmove.co.uk/properties/161832878", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96151/161832878/96151_BPL160022_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.748775", - "last_seen": "2025-06-01T22:05:49.446432", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21978, - 51.48512 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/161833529", - "info": { - "identifier": 161833529, - "sqm_ocr": null, - "price": 3650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161833529", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/123k/122989/161833529/122989_YLR210093_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.620385", - "last_seen": "2025-06-01T22:06:04.809698", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277794, - 51.46526 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161833661", - "info": { - "identifier": 161833661, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161833661", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Route Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281087/161833661/281087_14591_008373_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.128890", - "last_seen": "2025-06-01T22:05:47.794198", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07281, - 51.545563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161833880", - "info": { - "identifier": 161833880, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161833880", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Carrington Thorn Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289577/161833880/289577_CBU-98839180_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.922904", - "last_seen": "2025-06-01T22:05:45.606533", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135542, - 51.611816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161834030", - "info": { - "identifier": 161834030, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161834030", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/161834030/222842_TCT240485_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.981918", - "last_seen": "2025-06-01T22:05:59.485185", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116975, - 51.502342 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.98, - "qmprice": 47.03, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161834375", - "info": { - "identifier": 161834375, - "sqm_ocr": 66.98, - "price": 3150.0, - "price_per_sqm": 47.02896386981188, - "url": "https://www.rightmove.co.uk/properties/161834375", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55326/161834375/55326_ISS240064_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.194916", - "last_seen": "2025-06-01T22:05:47.327124", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079568, - 51.534786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.2, - "qmprice": 60.5, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161834426", - "info": { - "identifier": 161834426, - "sqm_ocr": 56.2, - "price": 3400.0, - "price_per_sqm": 60.49822064056939, - "url": "https://www.rightmove.co.uk/properties/161834426", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120061/161834426/120061_SRL250021_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.989371", - "last_seen": "2025-06-01T22:05:55.882111", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076363, - 51.529076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.0, - "qmprice": 32.07, - "rooms": 3, - "total_price": 3207.0, - "url": "https://www.rightmove.co.uk/properties/161834516", - "info": { - "identifier": 161834516, - "sqm_ocr": 100.0, - "price": 3207.0, - "price_per_sqm": 32.07, - "url": "https://www.rightmove.co.uk/properties/161834516", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Cedar Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79883/161834516/79883_1243_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.336362", - "last_seen": "2025-06-01T22:05:40.458526", - "price": 3206 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20168, - 51.54462 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161834663", - "info": { - "identifier": 161834663, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161834663", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161834663/96668_246915001052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.172703, - 51.465115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161834783", - "info": { - "identifier": 161834783, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161834783", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161834783/96668_248038812052025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.854062", - "last_seen": "2025-06-01T22:05:50.034659", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080943, - 51.58682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161834819", - "info": { - "identifier": 161834819, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161834819", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161834819/96668_248082012052025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.966582", - "last_seen": "2025-06-01T17:39:08.112658", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149147, - 51.519123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.76, - "qmprice": 28.49, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161834864", - "info": { - "identifier": 161834864, - "sqm_ocr": 87.76, - "price": 2500.0, - "price_per_sqm": 28.486782133090244, - "url": "https://www.rightmove.co.uk/properties/161834864", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "W J Meade", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38087/161834864/38087_33877518_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.502406", - "last_seen": "2025-06-01T22:06:08.631229", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029155, - 51.520885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.05, - "qmprice": 40.48, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161834870", - "info": { - "identifier": 161834870, - "sqm_ocr": 58.05, - "price": 2350.0, - "price_per_sqm": 40.482342807924205, - "url": "https://www.rightmove.co.uk/properties/161834870", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161834870/96668_240220228022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.796481", - "last_seen": "2025-06-01T22:06:12.452322", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147192, - 51.474014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161835050", - "info": { - "identifier": 161835050, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161835050", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161835050/96668_248113612052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.200572", - "last_seen": "2025-06-01T22:06:05.192892", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095053, - 51.49041 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/161835164", - "info": { - "identifier": 161835164, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161835164", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/161835164/222842_TCT240469_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.514026", - "last_seen": "2025-06-01T22:05:53.469436", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088503, - 51.52558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161835293", - "info": { - "identifier": 161835293, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161835293", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89228/161835293/89228_GRL250067_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.673678", - "last_seen": "2025-06-01T22:05:41.243560", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.292371, - 51.574287 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161835599", - "info": { - "identifier": 161835599, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161835599", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Huttons & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257087/161835599/257087_HLO-79529440_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.343909", - "last_seen": "2025-06-01T22:06:08.000095", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0158, - 51.49682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 43.06, - "rooms": 3, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/161835827", - "info": { - "identifier": 161835827, - "sqm_ocr": 80.0, - "price": 3445.0, - "price_per_sqm": 43.0625, - "url": "https://www.rightmove.co.uk/properties/161835827", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Cedar Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79883/161835827/79883_216_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.347254", - "last_seen": "2025-06-01T22:05:42.729519", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19987, - 51.54666 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.1, - "qmprice": 36.62, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161835878", - "info": { - "identifier": 161835878, - "sqm_ocr": 75.1, - "price": 2750.0, - "price_per_sqm": 36.61784287616511, - "url": "https://www.rightmove.co.uk/properties/161835878", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/161835878/56751_1326032_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.726148", - "last_seen": "2025-06-01T22:05:59.830080", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125615, - 51.44733 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/161835926", - "info": { - "identifier": 161835926, - "sqm_ocr": null, - "price": 2496.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161835926", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90035/161835926/90035_33877592_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.474329", - "last_seen": "2025-06-01T22:05:44.196710", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.253221, - 51.524223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.8, - "qmprice": 23.34, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161836112", - "info": { - "identifier": 161836112, - "sqm_ocr": 117.8, - "price": 2750.0, - "price_per_sqm": 23.3446519524618, - "url": "https://www.rightmove.co.uk/properties/161836112", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Allen Heritage", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7470/161836112/7470_e5b5ff50-70c0-46f5-9678-63dc08928cc0_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.333368", - "last_seen": "2025-06-01T22:05:41.580252", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021102, - 51.373283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.1, - "qmprice": 34.45, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161836121", - "info": { - "identifier": 161836121, - "sqm_ocr": 116.1, - "price": 4000.0, - "price_per_sqm": 34.45305770887166, - "url": "https://www.rightmove.co.uk/properties/161836121", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161836121/16050_1325622_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.287265", - "last_seen": "2025-06-01T22:06:08.920772", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.045711, - 51.522022 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.4, - "qmprice": 39.47, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161836127", - "info": { - "identifier": 161836127, - "sqm_ocr": 68.4, - "price": 2700.0, - "price_per_sqm": 39.473684210526315, - "url": "https://www.rightmove.co.uk/properties/161836127", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161836127/16050_1326013_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.293981", - "last_seen": "2025-06-01T22:06:08.915557", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015453, - 51.52842 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.9, - "qmprice": 34.42, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161836133", - "info": { - "identifier": 161836133, - "sqm_ocr": 79.9, - "price": 2750.0, - "price_per_sqm": 34.4180225281602, - "url": "https://www.rightmove.co.uk/properties/161836133", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/161836133/111050_1326037_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.485310", - "last_seen": "2025-06-01T22:06:01.175359", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171267, - 51.418343 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.8, - "qmprice": 28.36, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161836700", - "info": { - "identifier": 161836700, - "sqm_ocr": 105.8, - "price": 3000.0, - "price_per_sqm": 28.355387523629492, - "url": "https://www.rightmove.co.uk/properties/161836700", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12686/161836700/12686_ERL210026_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.003687", - "last_seen": "2025-06-01T22:05:44.422946", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.301949, - 51.51597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161837693", - "info": { - "identifier": 161837693, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161837693", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Davis & Gibbs Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213929/161837693/213929_24928549_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.120215", - "last_seen": "2025-06-01T22:06:13.793249", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17325, - 51.425564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.73, - "qmprice": 37.33, - "rooms": 2, - "total_price": 3163.0, - "url": "https://www.rightmove.co.uk/properties/161837906", - "info": { - "identifier": 161837906, - "sqm_ocr": 84.73, - "price": 3163.0, - "price_per_sqm": 37.33034344388056, - "url": "https://www.rightmove.co.uk/properties/161837906", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Apartment Property Management and Sales", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270371/161837906/270371_APM230003_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.396649", - "last_seen": "2025-06-01T22:05:46.509146", - "price": 2903 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.007177, - 51.501797 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.4, - "qmprice": 31.51, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161838116", - "info": { - "identifier": 161838116, - "sqm_ocr": 71.4, - "price": 2250.0, - "price_per_sqm": 31.512605042016805, - "url": "https://www.rightmove.co.uk/properties/161838116", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50683/161838116/50683_P276878_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.648026", - "last_seen": "2025-06-01T22:06:06.215745", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08064, - 51.49072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161838284", - "info": { - "identifier": 161838284, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161838284", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Hub Of Homes", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281309/161838284/281309_27673_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.410195", - "last_seen": "2025-06-01T22:06:06.202112", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06741, - 51.44361 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.6, - "qmprice": 38.87, - "rooms": 4, - "total_price": 3133.0, - "url": "https://www.rightmove.co.uk/properties/161838347", - "info": { - "identifier": 161838347, - "sqm_ocr": 80.6, - "price": 3133.0, - "price_per_sqm": 38.87096774193549, - "url": "https://www.rightmove.co.uk/properties/161838347", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "parkinsonfarr", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29643/161838347/29643_530_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.838327", - "last_seen": "2025-06-01T22:05:41.163445", - "price": 3133 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23805, - 51.55137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.9, - "qmprice": 26.91, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161838539", - "info": { - "identifier": 161838539, - "sqm_ocr": 79.9, - "price": 2150.0, - "price_per_sqm": 26.90863579474343, - "url": "https://www.rightmove.co.uk/properties/161838539", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33947/161838539/33947_05041350_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.905099", - "last_seen": "2025-06-01T22:05:52.060076", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.395, - 51.451 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161838650", - "info": { - "identifier": 161838650, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161838650", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83027/161838650/83027_33877765_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.914148", - "last_seen": "2025-06-01T22:06:00.958005", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037739, - 51.49187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161839586", - "info": { - "identifier": 161839586, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161839586", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Metro Village Ltd", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93680/161839586/93680_TOH120300_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.056326", - "last_seen": "2025-06-01T22:06:00.376225", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04401, - 51.488342 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/161840282", - "info": { - "identifier": 161840282, - "sqm_ocr": null, - "price": 2295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161840282", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161840282/96668_248128712052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.824777", - "last_seen": "2025-06-01T22:05:43.575396", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115652, - 51.40713 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/161840501", - "info": { - "identifier": 161840501, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161840501", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65872/161840501/65872_CWQ012587079_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.921421", - "last_seen": "2025-06-01T22:06:09.452838", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038722, - 51.510303 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.5, - "qmprice": 35.93, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161840720", - "info": { - "identifier": 161840720, - "sqm_ocr": 83.5, - "price": 3000.0, - "price_per_sqm": 35.92814371257485, - "url": "https://www.rightmove.co.uk/properties/161840720", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/161840720/15969_1325854_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.771188", - "last_seen": "2025-06-01T22:05:44.746034", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.275409, - 51.5131 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.3, - "qmprice": 39.98, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161840738", - "info": { - "identifier": 161840738, - "sqm_ocr": 81.3, - "price": 3250.0, - "price_per_sqm": 39.97539975399754, - "url": "https://www.rightmove.co.uk/properties/161840738", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/161840738/107533_1325978_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.763014", - "last_seen": "2025-06-01T22:05:46.639054", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.011786, - 51.4861 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 44.1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161840795", - "info": { - "identifier": 161840795, - "sqm_ocr": 68.0, - "price": 2999.0, - "price_per_sqm": 44.10294117647059, - "url": "https://www.rightmove.co.uk/properties/161840795", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/161840795/84833_33877876_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.289461", - "last_seen": "2025-06-01T22:05:49.105754", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214199, - 51.500572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161841032", - "info": { - "identifier": 161841032, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161841032", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "London Homes Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162716/161841032/162716_1406_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.476772", - "last_seen": "2025-06-01T22:05:44.191197", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30278, - 51.51357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 43.77, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161841062", - "info": { - "identifier": 161841062, - "sqm_ocr": 75.4, - "price": 3300.0, - "price_per_sqm": 43.76657824933687, - "url": "https://www.rightmove.co.uk/properties/161841062", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/161841062/174452_5258_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.568623", - "last_seen": "2025-06-01T22:05:46.195712", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0074, - 51.50121 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.5, - "qmprice": 41.74, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161841083", - "info": { - "identifier": 161841083, - "sqm_ocr": 57.5, - "price": 2400.0, - "price_per_sqm": 41.73913043478261, - "url": "https://www.rightmove.co.uk/properties/161841083", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161841083/55101_1326046_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.159082", - "last_seen": "2025-06-01T22:06:05.228555", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074184, - 51.500042 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.1, - "qmprice": 46.14, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/161841095", - "info": { - "identifier": 161841095, - "sqm_ocr": 68.1, - "price": 3142.0, - "price_per_sqm": 46.13803230543319, - "url": "https://www.rightmove.co.uk/properties/161841095", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/161841095/15954_1326062_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.943027", - "last_seen": "2025-06-01T22:05:53.115330", - "price": 3142.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114759, - 51.53895 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.6, - "qmprice": 38.46, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161841197", - "info": { - "identifier": 161841197, - "sqm_ocr": 67.6, - "price": 2600.0, - "price_per_sqm": 38.46153846153847, - "url": "https://www.rightmove.co.uk/properties/161841197", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Christopher Nevill", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9211/161841197/9211_5121ed77-64f7-4a79-a386-e91fe522243d_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.384849", - "last_seen": "2025-06-01T22:05:51.303286", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.478839, - 51.548344 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161841284", - "info": { - "identifier": 161841284, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161841284", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Harmens", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272570/161841284/272570_185_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.028693", - "last_seen": "2025-06-01T22:05:38.274092", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.158634, - 51.533764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.12, - "qmprice": 51.71, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161841299", - "info": { - "identifier": 161841299, - "sqm_ocr": 55.12, - "price": 2850.0, - "price_per_sqm": 51.70537010159652, - "url": "https://www.rightmove.co.uk/properties/161841299", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/161841299/15960_1326044_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.712999", - "last_seen": "2025-06-01T22:06:15.678931", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176359, - 51.535267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.1, - "qmprice": 49.08, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161841332", - "info": { - "identifier": 161841332, - "sqm_ocr": 60.1, - "price": 2950.0, - "price_per_sqm": 49.084858569051576, - "url": "https://www.rightmove.co.uk/properties/161841332", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161841332/87187_40268_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.101511", - "last_seen": "2025-06-01T22:05:54.428330", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107268, - 51.564953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.7, - "qmprice": 23.15, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161841689", - "info": { - "identifier": 161841689, - "sqm_ocr": 90.7, - "price": 2100.0, - "price_per_sqm": 23.15325248070562, - "url": "https://www.rightmove.co.uk/properties/161841689", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86173/161841689/86173_P299650_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.914124", - "last_seen": "2025-06-01T22:05:52.068631", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34644, - 51.45799 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.4, - "qmprice": 35.49, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161841728", - "info": { - "identifier": 161841728, - "sqm_ocr": 63.4, - "price": 2250.0, - "price_per_sqm": 35.488958990536275, - "url": "https://www.rightmove.co.uk/properties/161841728", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Conran Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17519/161841728/17519_LET250077_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.352615", - "last_seen": "2025-06-01T22:05:46.935930", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017412, - 51.48153 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161841821", - "info": { - "identifier": 161841821, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161841821", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/161841821/32793_39402_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.099712", - "last_seen": "2025-06-01T22:05:40.845594", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21435, - 51.54877 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.84, - "qmprice": 34.03, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161842154", - "info": { - "identifier": 161842154, - "sqm_ocr": 102.84, - "price": 3500.0, - "price_per_sqm": 34.033450019447685, - "url": "https://www.rightmove.co.uk/properties/161842154", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80551/161842154/80551_KIL160121_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.183243", - "last_seen": "2025-06-01T22:05:51.942522", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295525, - 51.487835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.2, - "qmprice": 42.94, - "rooms": 3, - "total_price": 3315.0, - "url": "https://www.rightmove.co.uk/properties/161842199", - "info": { - "identifier": 161842199, - "sqm_ocr": 77.2, - "price": 3315.0, - "price_per_sqm": 42.94041450777202, - "url": "https://www.rightmove.co.uk/properties/161842199", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Cedar Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79883/161842199/79883_890_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.128218", - "last_seen": "2025-06-01T22:05:42.153547", - "price": 3315 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2083, - 51.55245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.6, - "qmprice": 35.69, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/161842247", - "info": { - "identifier": 161842247, - "sqm_ocr": 68.6, - "price": 2448.0, - "price_per_sqm": 35.68513119533528, - "url": "https://www.rightmove.co.uk/properties/161842247", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Cedar Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79883/161842247/79883_2539_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.693270", - "last_seen": "2025-06-01T22:05:55.554421", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19199, - 51.54537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.1, - "qmprice": 34.24, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161842295", - "info": { - "identifier": 161842295, - "sqm_ocr": 70.1, - "price": 2400.0, - "price_per_sqm": 34.23680456490728, - "url": "https://www.rightmove.co.uk/properties/161842295", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84803/161842295/84803_33531107_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.165493", - "last_seen": "2025-06-01T22:06:13.255698", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.243048, - 51.452568 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.65, - "qmprice": 30.01, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161842319", - "info": { - "identifier": 161842319, - "sqm_ocr": 66.65, - "price": 2000.0, - "price_per_sqm": 30.007501875468865, - "url": "https://www.rightmove.co.uk/properties/161842319", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44610/161842319/44610_P1333J2425_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.598556", - "last_seen": "2025-06-01T22:05:58.590889", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25444, - 51.39821 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161842727", - "info": { - "identifier": 161842727, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161842727", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161842727/96668_241049107032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.928139", - "last_seen": "2025-06-01T22:05:50.494651", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.331748, - 51.58119 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161842757", - "info": { - "identifier": 161842757, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161842757", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161842757/96668_247958811052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.916033", - "last_seen": "2025-06-01T22:05:47.540598", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.085585, - 51.532433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161842817", - "info": { - "identifier": 161842817, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161842817", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161842817/96668_248123612052025_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.860415", - "last_seen": "2025-06-01T22:06:03.988979", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.066957, - 51.563587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.9, - "qmprice": 45.77, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161842928", - "info": { - "identifier": 161842928, - "sqm_ocr": 63.9, - "price": 2925.0, - "price_per_sqm": 45.774647887323944, - "url": "https://www.rightmove.co.uk/properties/161842928", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76478/161842928/76478_CEI242065_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.423668", - "last_seen": "2025-06-01T22:06:10.181266", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017583, - 51.500305 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.6, - "qmprice": 30.27, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161842955", - "info": { - "identifier": 161842955, - "sqm_ocr": 82.6, - "price": 2500.0, - "price_per_sqm": 30.26634382566586, - "url": "https://www.rightmove.co.uk/properties/161842955", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137360/161842955/137360_1325761_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.376341", - "last_seen": "2025-06-01T22:05:41.647887", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034433, - 51.414993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 29.27, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161842961", - "info": { - "identifier": 161842961, - "sqm_ocr": 82.0, - "price": 2400.0, - "price_per_sqm": 29.26829268292683, - "url": "https://www.rightmove.co.uk/properties/161842961", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137360/161842961/137360_1325764_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.379576", - "last_seen": "2025-06-01T22:05:41.649927", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034433, - 51.414993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.7, - "qmprice": 47.58, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161843219", - "info": { - "identifier": 161843219, - "sqm_ocr": 55.7, - "price": 2650.0, - "price_per_sqm": 47.57630161579892, - "url": "https://www.rightmove.co.uk/properties/161843219", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/161843219/71419_1326075_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.343711", - "last_seen": "2025-06-01T22:05:59.947154", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110136, - 51.42353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.9, - "qmprice": 41.3, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161843330", - "info": { - "identifier": 161843330, - "sqm_ocr": 79.9, - "price": 3300.0, - "price_per_sqm": 41.301627033792236, - "url": "https://www.rightmove.co.uk/properties/161843330", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161843330/16050_1319010_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:05:57.215669", - "last_seen": "2025-06-01T22:06:08.193641", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025051, - 51.5245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.3, - "qmprice": 34.93, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161843348", - "info": { - "identifier": 161843348, - "sqm_ocr": 77.3, - "price": 2700.0, - "price_per_sqm": 34.92884864165589, - "url": "https://www.rightmove.co.uk/properties/161843348", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66768/161843348/66768_1325212_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.298898", - "last_seen": "2025-06-01T22:06:05.000652", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091929, - 51.471485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.5, - "qmprice": 28.07, - "rooms": 3, - "total_price": 3270.0, - "url": "https://www.rightmove.co.uk/properties/161843438", - "info": { - "identifier": 161843438, - "sqm_ocr": 116.5, - "price": 3270.0, - "price_per_sqm": 28.068669527896997, - "url": "https://www.rightmove.co.uk/properties/161843438", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161843438/48101_1325892_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.577353", - "last_seen": "2025-06-01T22:06:02.487213", - "price": 3270.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.033957, - 51.502094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.36, - "qmprice": 37.0, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/161843441", - "info": { - "identifier": 161843441, - "sqm_ocr": 67.36, - "price": 2492.0, - "price_per_sqm": 36.99524940617577, - "url": "https://www.rightmove.co.uk/properties/161843441", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161843441/48101_1326053_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.456371", - "last_seen": "2025-06-01T22:06:09.336851", - "price": 2492.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006606, - 51.506824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161843471", - "info": { - "identifier": 161843471, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161843471", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/125k/124141/161843471/124141_33877986_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.022150", - "last_seen": "2025-06-01T22:06:04.426268", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.274152, - 51.467545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161843633", - "info": { - "identifier": 161843633, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161843633", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161843633/96668_90343619092020_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.316578", - "last_seen": "2025-06-01T22:05:52.258538", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.370812, - 51.466026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161843900", - "info": { - "identifier": 161843900, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161843900", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/190k/189686/161843900/189686_BPL230043_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.853876", - "last_seen": "2025-06-01T22:05:55.167476", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305632, - 51.490284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161844071", - "info": { - "identifier": 161844071, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161844071", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Bells Estate Agent", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270521/161844071/270521_33873354_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.842920", - "last_seen": "2025-06-01T22:06:07.442855", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.002693, - 51.53655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161844143", - "info": { - "identifier": 161844143, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161844143", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Hub Of Homes", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281309/161844143/281309_26984_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.031589", - "last_seen": "2025-06-01T22:05:38.298586", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.16699, - 51.53933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.11, - "qmprice": 26.45, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/161844932", - "info": { - "identifier": 161844932, - "sqm_ocr": 90.11, - "price": 2383.0, - "price_per_sqm": 26.445455554322496, - "url": "https://www.rightmove.co.uk/properties/161844932", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Oakhill", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/141k/140510/161844932/140510_WES170228_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.699377", - "last_seen": "2025-06-01T22:05:55.813004", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209913, - 51.554604 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161846066", - "info": { - "identifier": 161846066, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161846066", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161846066/96668_248156712052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.328282", - "last_seen": "2025-06-01T22:06:10.328282", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035941, - 51.51997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161846114", - "info": { - "identifier": 161846114, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161846114", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12684/161846114/12684_CHL160097_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.230181", - "last_seen": "2025-06-01T22:05:58.214781", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190234, - 51.486797 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.0, - "qmprice": 26.04, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161846450", - "info": { - "identifier": 161846450, - "sqm_ocr": 96.0, - "price": 2500.0, - "price_per_sqm": 26.041666666666668, - "url": "https://www.rightmove.co.uk/properties/161846450", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161846450/96668_248082212052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.974208", - "last_seen": "2025-06-01T22:05:45.906740", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078552, - 51.64694 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.0, - "qmprice": 42.86, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161846453", - "info": { - "identifier": 161846453, - "sqm_ocr": 56.0, - "price": 2400.0, - "price_per_sqm": 42.857142857142854, - "url": "https://www.rightmove.co.uk/properties/161846453", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161846453/96668_23514108052017_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.150966", - "last_seen": "2025-06-01T22:06:00.145352", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105578, - 51.46397 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161846702", - "info": { - "identifier": 161846702, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161846702", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/161846702/48994_CNL230013_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.305214", - "last_seen": "2025-06-01T22:06:07.935691", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009794, - 51.505978 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161848688", - "info": { - "identifier": 161848688, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161848688", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161848688/96668_247339905052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.560022", - "last_seen": "2025-06-01T22:06:06.805141", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098074, - 51.472004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161850494", - "info": { - "identifier": 161850494, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161850494", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Elkay Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52868/161850494/52868_102387000411_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.268052", - "last_seen": "2025-06-01T22:05:47.235879", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07692, - 51.52771 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/161850986", - "info": { - "identifier": 161850986, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161850986", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/161850986/51465_67fd25dbb40f1_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.322626", - "last_seen": "2025-06-01T22:06:01.072436", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201362, - 51.426178 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161851073", - "info": { - "identifier": 161851073, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161851073", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/161851073/252785_33878311_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.378009", - "last_seen": "2025-06-01T22:05:59.372360", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100781, - 51.46557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.5, - "qmprice": 33.72, - "rooms": 2, - "total_price": 2175.0, - "url": "https://www.rightmove.co.uk/properties/161851601", - "info": { - "identifier": 161851601, - "sqm_ocr": 64.5, - "price": 2175.0, - "price_per_sqm": 33.72093023255814, - "url": "https://www.rightmove.co.uk/properties/161851601", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Cosway Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9970/161851601/9970_33878340_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.340814", - "last_seen": "2025-06-01T22:05:55.193315", - "price": 2175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.253353, - 51.6161 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161852222", - "info": { - "identifier": 161852222, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161852222", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11470/161852222/11470_0459_FJL045904079_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.367211", - "last_seen": "2025-06-01T22:06:07.254746", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.007264, - 51.541782 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.0, - "qmprice": 21.03, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161853086", - "info": { - "identifier": 161853086, - "sqm_ocr": 126.0, - "price": 2650.0, - "price_per_sqm": 21.03174603174603, - "url": "https://www.rightmove.co.uk/properties/161853086", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Park Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7512/161853086/7512_11628441_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.247539", - "last_seen": "2025-06-01T22:05:39.944066", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.152724, - 51.44208 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161853284", - "info": { - "identifier": 161853284, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161853284", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Keys & Lee", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5996/161853284/5996_KYS_RMF_LFSYCL_544_73189855_IMG_00_0000_max_656x437.png", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.339463", - "last_seen": "2025-06-01T22:05:51.019046", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.176092, - 51.599422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.9, - "qmprice": 29.64, - "rooms": 3, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/161853344", - "info": { - "identifier": 161853344, - "sqm_ocr": 107.9, - "price": 3198.0, - "price_per_sqm": 29.63855421686747, - "url": "https://www.rightmove.co.uk/properties/161853344", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7963/161853344/7963_33878472_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.532795", - "last_seen": "2025-06-01T22:05:44.101631", - "price": 2994 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.322421, - 51.521057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161853554", - "info": { - "identifier": 161853554, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161853554", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 0.0, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Brown & Brooke", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50974/161853554/50974_BRW_BRW_LFSYCL_323_479347495_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.375777", - "last_seen": "2025-06-01T22:05:46.887490", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0677, - 51.49044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161853770", - "info": { - "identifier": 161853770, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161853770", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Ashton Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/2k/1457/161853770/1457_AEA180287_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.145016, - 51.56645 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161854232", - "info": { - "identifier": 161854232, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161854232", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "ea2", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10387/161854232/10387_33878529_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.546122", - "last_seen": "2025-06-01T20:19:57.637681", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064658, - 51.50738 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161854331", - "info": { - "identifier": 161854331, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161854331", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greater London Properties", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/154k/153329/161854331/153329_GRT_BLM_LFSYCL_253_401322799_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.242085", - "last_seen": "2025-06-01T22:05:49.016838", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217638, - 51.503983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.8, - "qmprice": 23.66, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161854334", - "info": { - "identifier": 161854334, - "sqm_ocr": 126.8, - "price": 3000.0, - "price_per_sqm": 23.659305993690854, - "url": "https://www.rightmove.co.uk/properties/161854334", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7189/161854334/7189_31917033_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.097553", - "last_seen": "2025-06-01T22:06:00.763587", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043056, - 51.447933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.9, - "qmprice": 33.99, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161854718", - "info": { - "identifier": 161854718, - "sqm_ocr": 80.9, - "price": 2750.0, - "price_per_sqm": 33.99258343634116, - "url": "https://www.rightmove.co.uk/properties/161854718", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210116/161854718/210116_P300556_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.545905", - "last_seen": "2025-06-01T22:05:39.830805", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19789, - 51.56029 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 39.29, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161854802", - "info": { - "identifier": 161854802, - "sqm_ocr": 84.0, - "price": 3300.0, - "price_per_sqm": 39.285714285714285, - "url": "https://www.rightmove.co.uk/properties/161854802", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/161854802/56751_1326029_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.752628", - "last_seen": "2025-06-01T22:05:59.872435", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12312, - 51.46888 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.5, - "qmprice": 37.74, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161855165", - "info": { - "identifier": 161855165, - "sqm_ocr": 77.5, - "price": 2925.0, - "price_per_sqm": 37.74193548387097, - "url": "https://www.rightmove.co.uk/properties/161855165", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76478/161855165/76478_CEI243509_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.587232", - "last_seen": "2025-06-01T22:06:08.334693", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015024, - 51.497124 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.8, - "qmprice": 38.77, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161855285", - "info": { - "identifier": 161855285, - "sqm_ocr": 74.8, - "price": 2900.0, - "price_per_sqm": 38.77005347593583, - "url": "https://www.rightmove.co.uk/properties/161855285", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/161855285/174452_16107_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.148602", - "last_seen": "2025-06-01T22:05:46.402226", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00616, - 51.50249 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.5, - "qmprice": 30.72, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161855414", - "info": { - "identifier": 161855414, - "sqm_ocr": 76.5, - "price": 2350.0, - "price_per_sqm": 30.718954248366014, - "url": "https://www.rightmove.co.uk/properties/161855414", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/161855414/48994_LAD191027_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.526772", - "last_seen": "2025-06-01T22:06:07.541546", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.007979, - 51.533817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161855468", - "info": { - "identifier": 161855468, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161855468", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Lanigan Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129385/161855468/129385_123_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.960799", - "last_seen": "2025-06-01T22:06:13.483618", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173435, - 51.47238 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.6, - "qmprice": 26.07, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161855615", - "info": { - "identifier": 161855615, - "sqm_ocr": 126.6, - "price": 3300.0, - "price_per_sqm": 26.066350710900476, - "url": "https://www.rightmove.co.uk/properties/161855615", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/161855615/250739_1326102_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.392463", - "last_seen": "2025-06-01T22:05:38.407161", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276561, - 51.628326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161855921", - "info": { - "identifier": 161855921, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161855921", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94448/161855921/94448_EAL250099_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.817278", - "last_seen": "2025-06-01T22:05:44.827258", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28874, - 51.53206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161856635", - "info": { - "identifier": 161856635, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161856635", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161856635/96668_233430029122024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.525026", - "last_seen": "2025-06-01T22:05:51.546091", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.415737, - 51.5752 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.2, - "qmprice": 37.23, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/161856908", - "info": { - "identifier": 161856908, - "sqm_ocr": 90.2, - "price": 3358.0, - "price_per_sqm": 37.22838137472284, - "url": "https://www.rightmove.co.uk/properties/161856908", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/161856908/65124_CEI200195_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.514304", - "last_seen": "2025-06-01T22:06:06.874405", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096268, - 51.491894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.1, - "qmprice": 36.23, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161856971", - "info": { - "identifier": 161856971, - "sqm_ocr": 62.1, - "price": 2250.0, - "price_per_sqm": 36.231884057971016, - "url": "https://www.rightmove.co.uk/properties/161856971", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Proper Local", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/159k/158741/161856971/158741_10079990_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.435944", - "last_seen": "2025-06-01T20:19:57.490969", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006865, - 51.50679 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161857046", - "info": { - "identifier": 161857046, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161857046", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161857046/96668_243574731032025_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.497708", - "last_seen": "2025-06-01T22:05:42.299489", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201601, - 51.55235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 51.72, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161857070", - "info": { - "identifier": 161857070, - "sqm_ocr": 58.0, - "price": 3000.0, - "price_per_sqm": 51.724137931034484, - "url": "https://www.rightmove.co.uk/properties/161857070", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128629/161857070/128629_KEF230087_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.164916", - "last_seen": "2025-06-01T22:05:57.702181", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195706, - 51.48809 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 122.0, - "qmprice": 29.51, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161857157", - "info": { - "identifier": 161857157, - "sqm_ocr": 122.0, - "price": 3600.0, - "price_per_sqm": 29.508196721311474, - "url": "https://www.rightmove.co.uk/properties/161857157", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/161857157/84878_33878716_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.341696", - "last_seen": "2025-06-01T22:06:01.749567", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224214, - 51.390144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.6, - "qmprice": 31.45, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161857253", - "info": { - "identifier": 161857253, - "sqm_ocr": 63.6, - "price": 2000.0, - "price_per_sqm": 31.446540880503143, - "url": "https://www.rightmove.co.uk/properties/161857253", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/242k/241370/161857253/241370_33878723_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.496875", - "last_seen": "2025-06-01T22:06:06.327098", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.086127, - 51.470383 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161857667", - "info": { - "identifier": 161857667, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161857667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Nicholas James London Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/117k/116041/161857667/116041_12670341_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.838226", - "last_seen": "2025-06-01T22:05:50.200801", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119473, - 51.587368 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.33, - "qmprice": 29.77, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161857691", - "info": { - "identifier": 161857691, - "sqm_ocr": 87.33, - "price": 2600.0, - "price_per_sqm": 29.772128707202565, - "url": "https://www.rightmove.co.uk/properties/161857691", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78395/161857691/78395_33878746_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.360341", - "last_seen": "2025-06-01T22:06:10.179137", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.047564, - 51.514565 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.8, - "qmprice": 26.97, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161857994", - "info": { - "identifier": 161857994, - "sqm_ocr": 103.8, - "price": 2800.0, - "price_per_sqm": 26.97495183044316, - "url": "https://www.rightmove.co.uk/properties/161857994", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/161857994/52415_32984450_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.745075", - "last_seen": "2025-06-01T22:05:59.435738", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131322, - 51.42321 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161858858", - "info": { - "identifier": 161858858, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161858858", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Barrain London Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249296/161858858/249296_33877828_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.676841", - "last_seen": "2025-06-01T22:06:03.043754", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.045421, - 51.518852 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161859122", - "info": { - "identifier": 161859122, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161859122", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "A. C. Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10005/161859122/10005_B3332_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.303144", - "last_seen": "2025-06-01T22:05:50.897092", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.23006, - 51.57866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161859161", - "info": { - "identifier": 161859161, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161859161", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Seymours Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70149/161859161/70149_2631313_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.768808", - "last_seen": "2025-06-01T22:05:58.531443", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30684, - 51.38845 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/161859314", - "info": { - "identifier": 161859314, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161859314", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "ea2", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10387/161859314/10387_33878835_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.770858", - "last_seen": "2025-06-01T20:19:58.291493", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053419, - 51.50709 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 28.41, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161859608", - "info": { - "identifier": 161859608, - "sqm_ocr": 88.0, - "price": 2500.0, - "price_per_sqm": 28.40909090909091, - "url": "https://www.rightmove.co.uk/properties/161859608", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/161859608/221711_2433_EAF_141438_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.839830", - "last_seen": "2025-06-01T22:06:12.348217", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183021, - 51.454727 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/161860145", - "info": { - "identifier": 161860145, - "sqm_ocr": null, - "price": 3298.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161860145", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53537/161860145/53537_CRR250013_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.342945", - "last_seen": "2025-06-01T22:06:15.205567", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13453, - 51.496815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.1, - "qmprice": 38.23, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161860277", - "info": { - "identifier": 161860277, - "sqm_ocr": 98.1, - "price": 3750.0, - "price_per_sqm": 38.226299694189606, - "url": "https://www.rightmove.co.uk/properties/161860277", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/161860277/101522_1325410_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.067545", - "last_seen": "2025-06-01T22:05:47.900398", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.050771, - 51.556446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.4, - "qmprice": 46.77, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/161860292", - "info": { - "identifier": 161860292, - "sqm_ocr": 64.4, - "price": 3012.0, - "price_per_sqm": 46.77018633540372, - "url": "https://www.rightmove.co.uk/properties/161860292", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76478/161860292/76478_CEI242411_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.559292", - "last_seen": "2025-06-01T20:19:57.660732", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016244, - 51.49951 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.76, - "qmprice": 34.28, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161860496", - "info": { - "identifier": 161860496, - "sqm_ocr": 113.76, - "price": 3900.0, - "price_per_sqm": 34.28270042194092, - "url": "https://www.rightmove.co.uk/properties/161860496", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/161860496/71419_1326123_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.671998", - "last_seen": "2025-06-01T22:06:12.602498", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144465, - 51.43032 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 153.4, - "qmprice": 22.82, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161860529", - "info": { - "identifier": 161860529, - "sqm_ocr": 153.4, - "price": 3500.0, - "price_per_sqm": 22.816166883963493, - "url": "https://www.rightmove.co.uk/properties/161860529", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "John Payne", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34397/161860529/34397_P276886_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.894629", - "last_seen": "2025-06-01T22:06:00.345920", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01935, - 51.43904 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161860841", - "info": { - "identifier": 161860841, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161860841", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Fraser & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20990/161860841/20990_BKL170004_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.393921", - "last_seen": "2025-06-01T22:05:42.806428", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139809, - 51.535126 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161861270", - "info": { - "identifier": 161861270, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161861270", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78395/161861270/78395_33878940_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.078623", - "last_seen": "2025-06-01T22:06:09.666794", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077342, - 51.520596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.2, - "qmprice": 39.33, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161861282", - "info": { - "identifier": 161861282, - "sqm_ocr": 71.2, - "price": 2800.0, - "price_per_sqm": 39.32584269662921, - "url": "https://www.rightmove.co.uk/properties/161861282", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84818/161861282/84818_33878944_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.169508", - "last_seen": "2025-06-01T22:06:04.483641", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.335098, - 51.44622 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161861672", - "info": { - "identifier": 161861672, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161861672", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Barrain London Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249296/161861672/249296_33875346_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.473717", - "last_seen": "2025-06-01T22:06:02.097646", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.045421, - 51.518852 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.6, - "qmprice": 37.75, - "rooms": 2, - "total_price": 2401.0, - "url": "https://www.rightmove.co.uk/properties/161861933", - "info": { - "identifier": 161861933, - "sqm_ocr": 63.6, - "price": 2401.0, - "price_per_sqm": 37.75157232704402, - "url": "https://www.rightmove.co.uk/properties/161861933", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/161861933/25485_33878982_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.337961", - "last_seen": "2025-06-01T22:05:42.719229", - "price": 2400 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18882, - 51.540134 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.42, - "qmprice": 31.6, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161861945", - "info": { - "identifier": 161861945, - "sqm_ocr": 104.42, - "price": 3300.0, - "price_per_sqm": 31.603141160697184, - "url": "https://www.rightmove.co.uk/properties/161861945", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Eastbank Studios Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105577/161861945/105577_14GrosvenorPk_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.856599", - "last_seen": "2025-06-01T22:06:11.895218", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01539, - 51.5801 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161862134", - "info": { - "identifier": 161862134, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161862134", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43812/161862134/43812_33878998_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.467908", - "last_seen": "2025-06-01T22:06:06.309128", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068884, - 51.499428 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/161862215", - "info": { - "identifier": 161862215, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161862215", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/161862215/247697_102708029174_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.182173", - "last_seen": "2025-06-01T22:05:47.348977", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06614, - 51.55091 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 50.72, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161862470", - "info": { - "identifier": 161862470, - "sqm_ocr": 69.0, - "price": 3500.0, - "price_per_sqm": 50.72463768115942, - "url": "https://www.rightmove.co.uk/properties/161862470", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57096/161862470/57096_WIG130584_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.750485", - "last_seen": "2025-06-01T22:05:41.370876", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.230991, - 51.53483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161862479", - "info": { - "identifier": 161862479, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161862479", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/161862479/17418_100415005188_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.472715", - "last_seen": "2025-06-01T22:05:51.679106", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.40988, - 51.5915 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.26, - "qmprice": 30.37, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161862506", - "info": { - "identifier": 161862506, - "sqm_ocr": 115.26, - "price": 3500.0, - "price_per_sqm": 30.366128752385908, - "url": "https://www.rightmove.co.uk/properties/161862506", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Jo & Co Property Management", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283895/161862506/283895_031a96fd-8e6c-4f10-8d30-00c8c6513629_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.469106", - "last_seen": "2025-06-01T22:06:01.783826", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232131, - 51.398712 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161863013", - "info": { - "identifier": 161863013, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161863013", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Curtis And Parker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278867/161863013/278867_33879076_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.935644", - "last_seen": "2025-06-01T22:05:52.113866", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.272163, - 51.49298 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.2, - "qmprice": 36.95, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161863556", - "info": { - "identifier": 161863556, - "sqm_ocr": 81.2, - "price": 3000.0, - "price_per_sqm": 36.94581280788177, - "url": "https://www.rightmove.co.uk/properties/161863556", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194036/161863556/194036_HWV250049_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.603952", - "last_seen": "2025-06-01T22:06:01.139714", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20392, - 51.41585 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161864609", - "info": { - "identifier": 161864609, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161864609", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Houghton Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32546/161864609/32546_900379_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.324821", - "last_seen": "2025-06-01T22:06:15.178063", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185156, - 51.536606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 41.94, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161864789", - "info": { - "identifier": 161864789, - "sqm_ocr": 62.0, - "price": 2600.0, - "price_per_sqm": 41.935483870967744, - "url": "https://www.rightmove.co.uk/properties/161864789", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55326/161864789/55326_ISS220011_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.647510", - "last_seen": "2025-06-01T22:05:54.256372", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112664, - 51.532265 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.2, - "qmprice": 33.23, - "rooms": 2, - "total_price": 2665.0, - "url": "https://www.rightmove.co.uk/properties/161864903", - "info": { - "identifier": 161864903, - "sqm_ocr": 80.2, - "price": 2665.0, - "price_per_sqm": 33.22942643391521, - "url": "https://www.rightmove.co.uk/properties/161864903", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Unihood", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289043/161864903/289043_Flat50925IndesconSquare_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.224050", - "last_seen": "2025-06-01T22:06:09.009084", - "price": 2665 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02068, - 51.49809 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161865506", - "info": { - "identifier": 161865506, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161865506", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161865506/96668_248102212052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.086687", - "last_seen": "2025-06-01T22:05:45.837823", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042814, - 51.66035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161865524", - "info": { - "identifier": 161865524, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161865524", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161865524/96668_248096612052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.085617", - "last_seen": "2025-06-01T22:06:13.767361", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217418, - 51.46613 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161865560", - "info": { - "identifier": 161865560, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161865560", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161865560/96668_247639307052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.792534", - "last_seen": "2025-06-01T22:05:59.922691", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115073, - 51.476467 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161865695", - "info": { - "identifier": 161865695, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161865695", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161865695/96668_248206213052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.298693", - "last_seen": "2025-06-01T22:05:47.209898", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.054973, - 51.54544 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161865722", - "info": { - "identifier": 161865722, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161865722", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161865722/96668_214216803072024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.515696", - "last_seen": "2025-06-01T22:05:53.450870", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087974, - 51.5241 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.26, - "qmprice": 40.55, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161865776", - "info": { - "identifier": 161865776, - "sqm_ocr": 54.26, - "price": 2200.0, - "price_per_sqm": 40.54552156284556, - "url": "https://www.rightmove.co.uk/properties/161865776", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/161865776/56751_1315732_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.915035", - "last_seen": "2025-06-01T22:06:05.641074", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099754, - 51.47375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.5, - "qmprice": 35.5, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161865779", - "info": { - "identifier": 161865779, - "sqm_ocr": 84.5, - "price": 3000.0, - "price_per_sqm": 35.50295857988166, - "url": "https://www.rightmove.co.uk/properties/161865779", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/161865779/56751_1326152_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.970656", - "last_seen": "2025-06-01T22:05:59.461771", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117172, - 51.47623 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161865860", - "info": { - "identifier": 161865860, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161865860", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Fortune Property Leasing", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283760/161865860/283760_ARU-785241_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.445713", - "last_seen": "2025-06-01T22:05:51.606634", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.47301, - 51.50665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.9, - "qmprice": 52.8, - "rooms": 2, - "total_price": 3532.0, - "url": "https://www.rightmove.co.uk/properties/161866175", - "info": { - "identifier": 161866175, - "sqm_ocr": 66.9, - "price": 3532.0, - "price_per_sqm": 52.79521674140508, - "url": "https://www.rightmove.co.uk/properties/161866175", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/161866175/73120_1326145_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.537684", - "last_seen": "2025-06-01T22:05:43.281509", - "price": 3532.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098206, - 51.51821 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2873.0, - "url": "https://www.rightmove.co.uk/properties/161866199", - "info": { - "identifier": 161866199, - "sqm_ocr": null, - "price": 2873.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161866199", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90035/161866199/90035_33853176_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.233579", - "last_seen": "2025-06-01T22:05:49.015390", - "price": 2873 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.246976, - 51.512424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.1, - "qmprice": 35.67, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161866316", - "info": { - "identifier": 161866316, - "sqm_ocr": 84.1, - "price": 3000.0, - "price_per_sqm": 35.67181926278241, - "url": "https://www.rightmove.co.uk/properties/161866316", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/161866316/15963_1325838_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.889973", - "last_seen": "2025-06-01T22:06:12.218075", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229403, - 51.462746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.3, - "qmprice": 41.1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161866520", - "info": { - "identifier": 161866520, - "sqm_ocr": 80.3, - "price": 3300.0, - "price_per_sqm": 41.09589041095891, - "url": "https://www.rightmove.co.uk/properties/161866520", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/161866520/98531_1326131_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.759437", - "last_seen": "2025-06-01T22:05:49.436731", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225459, - 51.498707 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.5, - "qmprice": 36.24, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161866562", - "info": { - "identifier": 161866562, - "sqm_ocr": 74.5, - "price": 2700.0, - "price_per_sqm": 36.241610738255034, - "url": "https://www.rightmove.co.uk/properties/161866562", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Alex & Matteo", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233879/161866562/233879_33879257_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.910327", - "last_seen": "2025-06-01T22:06:07.060040", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069949, - 51.498203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.1, - "qmprice": 35.1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161866619", - "info": { - "identifier": 161866619, - "sqm_ocr": 64.1, - "price": 2250.0, - "price_per_sqm": 35.10140405616225, - "url": "https://www.rightmove.co.uk/properties/161866619", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253856/161866619/253856_1326154_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.854751", - "last_seen": "2025-06-01T22:05:43.606708", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126809, - 51.4062 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161866622", - "info": { - "identifier": 161866622, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161866622", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Goldstone Letting & Management Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206063/161866622/206063_GLD240028_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "10/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.531975", - "last_seen": "2025-06-01T22:06:06.354157", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09654, - 51.49287 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161866637", - "info": { - "identifier": 161866637, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161866637", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Michael Charles Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85888/161866637/85888_LGF_40_HUNGERFORD_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.120685", - "last_seen": "2025-06-01T22:05:53.865681", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125355, - 51.550266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161866649", - "info": { - "identifier": 161866649, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161866649", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54922/161866649/54922_NEL150107_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.734753", - "last_seen": "2025-06-01T22:05:59.846662", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136061, - 51.458893 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 32.65, - "rooms": 2, - "total_price": 2253.0, - "url": "https://www.rightmove.co.uk/properties/161866808", - "info": { - "identifier": 161866808, - "sqm_ocr": 69.0, - "price": 2253.0, - "price_per_sqm": 32.65217391304348, - "url": "https://www.rightmove.co.uk/properties/161866808", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Rose & Co Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83711/161866808/83711_5871821_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.642747", - "last_seen": "2025-06-01T22:05:42.502147", - "price": 2253 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17997, - 51.54535 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/161866904", - "info": { - "identifier": 161866904, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161866904", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Chase Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170759/161866904/170759_Rise8_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.314048", - "last_seen": "2025-06-01T22:05:45.157690", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32697, - 51.55348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.7, - "qmprice": 28.96, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161867042", - "info": { - "identifier": 161867042, - "sqm_ocr": 96.7, - "price": 2800.0, - "price_per_sqm": 28.955532574974146, - "url": "https://www.rightmove.co.uk/properties/161867042", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/161867042/111050_1326146_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.117298", - "last_seen": "2025-06-01T22:06:13.163318", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168683, - 51.43044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.1, - "qmprice": 38.98, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161867072", - "info": { - "identifier": 161867072, - "sqm_ocr": 82.1, - "price": 3200.0, - "price_per_sqm": 38.9768574908648, - "url": "https://www.rightmove.co.uk/properties/161867072", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68064/161867072/68064_BRL200033_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.008253", - "last_seen": "2025-06-01T22:05:59.512309", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107511, - 51.46422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.3, - "qmprice": 27.17, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161867096", - "info": { - "identifier": 161867096, - "sqm_ocr": 77.3, - "price": 2100.0, - "price_per_sqm": 27.166882276843467, - "url": "https://www.rightmove.co.uk/properties/161867096", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "All in the postcode...SW19.com", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34619/161867096/34619_11979505_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.253325", - "last_seen": "2025-06-01T22:06:01.293810", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17945, - 51.414196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161867516", - "info": { - "identifier": 161867516, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161867516", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212408/161867516/212408_P160773_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.766875", - "last_seen": "2025-06-01T22:06:07.379670", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00069, - 51.5401 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161867783", - "info": { - "identifier": 161867783, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161867783", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89228/161867783/89228_WCE250106_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.174211", - "last_seen": "2025-06-01T22:05:41.035507", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276708, - 51.561443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161867789", - "info": { - "identifier": 161867789, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161867789", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161867789/96668_240656104032025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.415324", - "last_seen": "2025-06-01T22:05:47.745610", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084698, - 51.52965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.8, - "qmprice": 48.47, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161867933", - "info": { - "identifier": 161867933, - "sqm_ocr": 58.8, - "price": 2850.0, - "price_per_sqm": 48.46938775510204, - "url": "https://www.rightmove.co.uk/properties/161867933", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25214/161867933/25214_33879364_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.153966", - "last_seen": "2025-06-01T22:06:06.043773", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076004, - 51.50226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161868026", - "info": { - "identifier": 161868026, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161868026", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Finchleys", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49962/161868026/49962_30640947_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.707548", - "last_seen": "2025-06-01T22:05:38.694217", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20027, - 51.644917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161868113", - "info": { - "identifier": 161868113, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161868113", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Japan Letting Agency", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258848/161868113/258848_33879375_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.339137", - "last_seen": "2025-06-01T22:05:55.027024", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242376, - 51.577225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.65, - "qmprice": 33.46, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161868248", - "info": { - "identifier": 161868248, - "sqm_ocr": 89.65, - "price": 3000.0, - "price_per_sqm": 33.46346904629113, - "url": "https://www.rightmove.co.uk/properties/161868248", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/221k/220400/161868248/220400_WAL240049_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.469279", - "last_seen": "2025-06-01T22:06:13.217427", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163876, - 51.42673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161868287", - "info": { - "identifier": 161868287, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161868287", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161868287/43310_CWL240217_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.767238", - "last_seen": "2025-06-01T22:06:10.191075", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02531, - 51.50275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.9, - "qmprice": 45.79, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161868296", - "info": { - "identifier": 161868296, - "sqm_ocr": 81.9, - "price": 3750.0, - "price_per_sqm": 45.78754578754578, - "url": "https://www.rightmove.co.uk/properties/161868296", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/105k/104924/161868296/104924_LHL180010_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.874770", - "last_seen": "2025-06-01T22:05:48.976827", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.226575, - 51.51001 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161868332", - "info": { - "identifier": 161868332, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161868332", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Charles Eden", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283832/161868332/283832_33879384_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.282572", - "last_seen": "2025-06-01T22:05:41.764672", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.032958, - 51.40879 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2475.0, - "url": "https://www.rightmove.co.uk/properties/161868356", - "info": { - "identifier": 161868356, - "sqm_ocr": null, - "price": 2475.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161868356", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/277k/276209/161868356/276209_804_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.635157", - "last_seen": "2025-06-01T22:05:51.687073", - "price": 2475.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.420345, - 51.5326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 34.65, - "qmprice": 71.92, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/161868452", - "info": { - "identifier": 161868452, - "sqm_ocr": 34.65, - "price": 2492.0, - "price_per_sqm": 71.91919191919192, - "url": "https://www.rightmove.co.uk/properties/161868452", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32391/161868452/32391_33879395_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.456649", - "last_seen": "2025-06-01T22:05:42.871956", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126063, - 51.52758 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161868752", - "info": { - "identifier": 161868752, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161868752", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Quest London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/274k/273062/161868752/273062_bowspirit_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.618213", - "last_seen": "2025-06-01T20:19:57.898360", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02549, - 51.49691 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.8, - "qmprice": 50.97, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161868848", - "info": { - "identifier": 161868848, - "sqm_ocr": 61.8, - "price": 3150.0, - "price_per_sqm": 50.97087378640777, - "url": "https://www.rightmove.co.uk/properties/161868848", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Mayfords Estate Agent", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226394/161868848/226394_738_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.201235", - "last_seen": "2025-06-01T22:05:48.905945", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184126, - 51.475246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.7, - "qmprice": 33.57, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161868995", - "info": { - "identifier": 161868995, - "sqm_ocr": 111.7, - "price": 3750.0, - "price_per_sqm": 33.572068039391226, - "url": "https://www.rightmove.co.uk/properties/161868995", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Arlington Rouse", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/174k/173180/161868995/173180_173180-21529_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.883038", - "last_seen": "2025-06-01T22:05:53.195773", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105268, - 51.55435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.97, - "qmprice": 37.0, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/161869118", - "info": { - "identifier": 161869118, - "sqm_ocr": 57.97, - "price": 2145.0, - "price_per_sqm": 37.00189753320683, - "url": "https://www.rightmove.co.uk/properties/161869118", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "City Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66707/161869118/66707_33837017_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.025567", - "last_seen": "2025-06-01T22:05:42.952965", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195163, - 51.539948 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.4, - "qmprice": 39.27, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/161869130", - "info": { - "identifier": 161869130, - "sqm_ocr": 53.4, - "price": 2097.0, - "price_per_sqm": 39.26966292134831, - "url": "https://www.rightmove.co.uk/properties/161869130", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/161869130/84866_33879445_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.169270", - "last_seen": "2025-06-01T22:05:51.955540", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.278386, - 51.487938 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/161869343", - "info": { - "identifier": 161869343, - "sqm_ocr": null, - "price": 3597.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161869343", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Quest London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/274k/273062/161869343/273062_210BRUCE_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.790514", - "last_seen": "2025-06-01T22:06:09.019174", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01748, - 51.52546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/161869508", - "info": { - "identifier": 161869508, - "sqm_ocr": null, - "price": 2535.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161869508", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161869508/17888_33685_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.363066", - "last_seen": "2025-06-01T22:05:42.765134", - "price": 2535 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13999, - 51.52971 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.8, - "qmprice": 27.46, - "rooms": 2, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/161869538", - "info": { - "identifier": 161869538, - "sqm_ocr": 112.8, - "price": 3098.0, - "price_per_sqm": 27.4645390070922, - "url": "https://www.rightmove.co.uk/properties/161869538", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55362/161869538/55362_33779573_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.254543", - "last_seen": "2025-06-01T22:06:15.623401", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174079, - 51.514023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161869826", - "info": { - "identifier": 161869826, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161869826", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Paragon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75623/161869826/75623_31Comm2025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.398268", - "last_seen": "2025-06-01T22:05:46.565493", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00606, - 51.48711 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161869931", - "info": { - "identifier": 161869931, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161869931", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/161869931/84878_33879505_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.470213", - "last_seen": "2025-06-01T22:06:01.410050", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203327, - 51.419296 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.1, - "qmprice": 48.44, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161869946", - "info": { - "identifier": 161869946, - "sqm_ocr": 67.1, - "price": 3250.0, - "price_per_sqm": 48.43517138599106, - "url": "https://www.rightmove.co.uk/properties/161869946", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43739/161869946/43739_P300574_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.983573", - "last_seen": "2025-06-01T22:06:15.418413", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17144, - 51.51834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 45.0, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161870198", - "info": { - "identifier": 161870198, - "sqm_ocr": 70.0, - "price": 3150.0, - "price_per_sqm": 45.0, - "url": "https://www.rightmove.co.uk/properties/161870198", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "McMahon & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65019/161870198/65019_391_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.048750", - "last_seen": "2025-06-01T22:06:05.915937", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099054, - 51.497314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.5, - "qmprice": 39.64, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161870216", - "info": { - "identifier": 161870216, - "sqm_ocr": 55.5, - "price": 2200.0, - "price_per_sqm": 39.63963963963964, - "url": "https://www.rightmove.co.uk/properties/161870216", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Peach Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74746/161870216/74746_33879526_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.405195", - "last_seen": "2025-06-01T22:06:08.008073", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069542, - 51.5299 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 31.08, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161870297", - "info": { - "identifier": 161870297, - "sqm_ocr": 74.0, - "price": 2300.0, - "price_per_sqm": 31.08108108108108, - "url": "https://www.rightmove.co.uk/properties/161870297", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49971/161870297/49971_PUT120173_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.417324", - "last_seen": "2025-06-01T22:06:13.430499", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199815, - 51.461765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.6, - "qmprice": 45.71, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/161870324", - "info": { - "identifier": 161870324, - "sqm_ocr": 80.6, - "price": 3684.0, - "price_per_sqm": 45.707196029776675, - "url": "https://www.rightmove.co.uk/properties/161870324", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/161870324/108515_1324015_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.212589", - "last_seen": "2025-06-01T22:05:58.452043", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190016, - 51.492283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.1, - "qmprice": 39.33, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161870327", - "info": { - "identifier": 161870327, - "sqm_ocr": 80.1, - "price": 3150.0, - "price_per_sqm": 39.325842696629216, - "url": "https://www.rightmove.co.uk/properties/161870327", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161870327/253853_1325995_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.681162", - "last_seen": "2025-06-01T22:06:07.096052", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09828, - 51.492386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.0, - "qmprice": 33.18, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/161870537", - "info": { - "identifier": 161870537, - "sqm_ocr": 110.0, - "price": 3650.0, - "price_per_sqm": 33.18181818181818, - "url": "https://www.rightmove.co.uk/properties/161870537", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "McMahon & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65019/161870537/65019_424_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.208776", - "last_seen": "2025-06-01T22:06:05.169237", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09852, - 51.49731 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/161870594", - "info": { - "identifier": 161870594, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161870594", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Citian & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256973/161870594/256973_272397_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:08.236482", - "last_seen": "2025-06-01T22:06:08.236482", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0146, - 51.49879 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 43.9, - "qmprice": 45.56, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161870735", - "info": { - "identifier": 161870735, - "sqm_ocr": 43.9, - "price": 2000.0, - "price_per_sqm": 45.558086560364465, - "url": "https://www.rightmove.co.uk/properties/161870735", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/161870735/57272_1326176_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.695066", - "last_seen": "2025-06-01T22:05:58.853763", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.291428, - 51.42576 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.95, - "qmprice": 49.82, - "rooms": 3, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/161870828", - "info": { - "identifier": 161870828, - "sqm_ocr": 73.95, - "price": 3684.0, - "price_per_sqm": 49.817444219066935, - "url": "https://www.rightmove.co.uk/properties/161870828", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/161870828/15942_1326172_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.462846", - "last_seen": "2025-06-01T22:05:57.963075", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183624, - 51.498722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.3, - "qmprice": 42.02, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161870861", - "info": { - "identifier": 161870861, - "sqm_ocr": 83.3, - "price": 3500.0, - "price_per_sqm": 42.016806722689076, - "url": "https://www.rightmove.co.uk/properties/161870861", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Wapping", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32766/161870861/32766_TKACAEWPSS130525_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.572642", - "last_seen": "2025-06-01T22:06:10.572642", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07281, - 51.51595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.4, - "qmprice": 48.64, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161870939", - "info": { - "identifier": 161870939, - "sqm_ocr": 51.4, - "price": 2500.0, - "price_per_sqm": 48.63813229571985, - "url": "https://www.rightmove.co.uk/properties/161870939", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/161870939/249692_RL4627_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.036194", - "last_seen": "2025-06-01T22:05:42.225151", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18677, - 51.549397 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 137.0, - "qmprice": 23.72, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161870966", - "info": { - "identifier": 161870966, - "sqm_ocr": 137.0, - "price": 3250.0, - "price_per_sqm": 23.722627737226276, - "url": "https://www.rightmove.co.uk/properties/161870966", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247487/161870966/247487_P288690_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.662635", - "last_seen": "2025-06-01T22:05:49.691671", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14073, - 51.57523 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.2, - "qmprice": 39.37, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161871089", - "info": { - "identifier": 161871089, - "sqm_ocr": 76.2, - "price": 3000.0, - "price_per_sqm": 39.37007874015748, - "url": "https://www.rightmove.co.uk/properties/161871089", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/161871089/66771_1325484_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.450005", - "last_seen": "2025-06-01T22:06:06.268916", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.086531, - 51.491074 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161871131", - "info": { - "identifier": 161871131, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161871131", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/161871131/249692_RL4628_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.034358", - "last_seen": "2025-06-01T22:05:42.226997", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137848, - 51.53238 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.3, - "qmprice": 43.4, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161871155", - "info": { - "identifier": 161871155, - "sqm_ocr": 55.3, - "price": 2400.0, - "price_per_sqm": 43.3996383363472, - "url": "https://www.rightmove.co.uk/properties/161871155", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/161871155/71419_1326158_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.393802", - "last_seen": "2025-06-01T22:05:59.338581", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137577, - 51.41505 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 134.98, - "qmprice": 23.71, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161871185", - "info": { - "identifier": 161871185, - "sqm_ocr": 134.98, - "price": 3200.0, - "price_per_sqm": 23.707215883834643, - "url": "https://www.rightmove.co.uk/properties/161871185", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Copperstones", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82091/161871185/82091_CR_97_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.240779", - "last_seen": "2025-06-01T22:06:02.399125", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01535, - 51.50835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.6, - "qmprice": 32.31, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161871233", - "info": { - "identifier": 161871233, - "sqm_ocr": 100.6, - "price": 3250.0, - "price_per_sqm": 32.30616302186879, - "url": "https://www.rightmove.co.uk/properties/161871233", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161871233/15975_1326171_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.325142", - "last_seen": "2025-06-01T22:06:01.070490", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219386, - 51.42311 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.4, - "qmprice": 38.35, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161871236", - "info": { - "identifier": 161871236, - "sqm_ocr": 70.4, - "price": 2700.0, - "price_per_sqm": 38.35227272727273, - "url": "https://www.rightmove.co.uk/properties/161871236", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161871236/15975_1325506_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.323882", - "last_seen": "2025-06-01T22:06:01.068375", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203579, - 51.41911 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.3, - "qmprice": 38.75, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161871347", - "info": { - "identifier": 161871347, - "sqm_ocr": 81.3, - "price": 3150.0, - "price_per_sqm": 38.74538745387454, - "url": "https://www.rightmove.co.uk/properties/161871347", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Strawberry Star", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/165k/164900/161871347/164900_ROD170324_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.850324", - "last_seen": "2025-06-01T22:06:12.738471", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197187, - 51.462147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 42.86, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161871968", - "info": { - "identifier": 161871968, - "sqm_ocr": 77.0, - "price": 3300.0, - "price_per_sqm": 42.857142857142854, - "url": "https://www.rightmove.co.uk/properties/161871968", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "McMahon & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65019/161871968/65019_406_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.343151", - "last_seen": "2025-06-01T22:06:06.142751", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09852, - 51.49731 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.6, - "qmprice": 33.86, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161872046", - "info": { - "identifier": 161872046, - "sqm_ocr": 88.6, - "price": 3000.0, - "price_per_sqm": 33.86004514672686, - "url": "https://www.rightmove.co.uk/properties/161872046", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3305/161872046/3305_000771939_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.694419", - "last_seen": "2025-06-01T22:05:43.615719", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1384, - 51.34219 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.52, - "qmprice": 31.44, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161872616", - "info": { - "identifier": 161872616, - "sqm_ocr": 79.52, - "price": 2500.0, - "price_per_sqm": 31.43863179074447, - "url": "https://www.rightmove.co.uk/properties/161872616", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/161872616/51286_BAL240193_L_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.221999", - "last_seen": "2025-06-01T22:05:48.959094", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252625, - 51.50357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.24, - "qmprice": 36.86, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161872634", - "info": { - "identifier": 161872634, - "sqm_ocr": 92.24, - "price": 3400.0, - "price_per_sqm": 36.86036426712923, - "url": "https://www.rightmove.co.uk/properties/161872634", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51322/161872634/51322_PIM230387_L_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.208876", - "last_seen": "2025-06-01T22:06:15.525664", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134403, - 51.48817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.0, - "qmprice": 36.87, - "rooms": 3, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/161872865", - "info": { - "identifier": 161872865, - "sqm_ocr": 99.0, - "price": 3650.0, - "price_per_sqm": 36.86868686868687, - "url": "https://www.rightmove.co.uk/properties/161872865", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "McMahon & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65019/161872865/65019_338_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.085334", - "last_seen": "2025-06-01T22:06:06.002204", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068618, - 51.491898 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 45.69, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161872952", - "info": { - "identifier": 161872952, - "sqm_ocr": 58.0, - "price": 2650.0, - "price_per_sqm": 45.689655172413794, - "url": "https://www.rightmove.co.uk/properties/161872952", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "McMahon & Partners", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65019/161872952/65019_68_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.693003", - "last_seen": "2025-06-01T22:06:06.807796", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09908, - 51.49693 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.92, - "qmprice": 31.1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161873381", - "info": { - "identifier": 161873381, - "sqm_ocr": 65.92, - "price": 2050.0, - "price_per_sqm": 31.098300970873787, - "url": "https://www.rightmove.co.uk/properties/161873381", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247910/161873381/247910_681258df8a387_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.137225", - "last_seen": "2025-06-01T22:05:52.367615", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.266827, - 51.479782 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.3, - "qmprice": 35.95, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161873417", - "info": { - "identifier": 161873417, - "sqm_ocr": 104.3, - "price": 3750.0, - "price_per_sqm": 35.95397890699904, - "url": "https://www.rightmove.co.uk/properties/161873417", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/161873417/84827_33879723_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.077766", - "last_seen": "2025-06-01T22:05:48.312357", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212182, - 51.49277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.6, - "qmprice": 40.32, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161873657", - "info": { - "identifier": 161873657, - "sqm_ocr": 80.6, - "price": 3250.0, - "price_per_sqm": 40.322580645161295, - "url": "https://www.rightmove.co.uk/properties/161873657", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161873657/96668_44128710092018_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.242299", - "last_seen": "2025-06-01T22:05:45.077894", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269918, - 51.496563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.6, - "qmprice": 41.77, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/161874176", - "info": { - "identifier": 161874176, - "sqm_ocr": 82.6, - "price": 3450.0, - "price_per_sqm": 41.76755447941889, - "url": "https://www.rightmove.co.uk/properties/161874176", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43829/161874176/43829_P291909_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.330225", - "last_seen": "2025-06-01T22:06:07.951511", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06883, - 51.51454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161874992", - "info": { - "identifier": 161874992, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161874992", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Marc and Partners", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201956/161874992/201956_MAY210155_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.509189", - "last_seen": "2025-06-01T22:05:53.281726", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094556, - 51.521633 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161875025", - "info": { - "identifier": 161875025, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161875025", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Stanford Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17402/161875025/17402_28842325_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.136245", - "last_seen": "2025-06-01T22:06:00.695605", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.051143, - 51.44374 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.33, - "qmprice": 38.47, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/161875076", - "info": { - "identifier": 161875076, - "sqm_ocr": 56.33, - "price": 2167.0, - "price_per_sqm": 38.469731936801, - "url": "https://www.rightmove.co.uk/properties/161875076", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/161875076/15957_1326178_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.260813", - "last_seen": "2025-06-01T22:05:42.630949", - "price": 2167.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193186, - 51.543972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161875286", - "info": { - "identifier": 161875286, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161875286", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19059/161875286/19059_6cc92f8c-ac54-4c3b-b41e-f763d18b2951_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.144526", - "last_seen": "2025-06-01T22:05:50.221117", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.309877, - 51.61625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.53, - "qmprice": 49.98, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161875436", - "info": { - "identifier": 161875436, - "sqm_ocr": 71.53, - "price": 3575.0, - "price_per_sqm": 49.979029777715645, - "url": "https://www.rightmove.co.uk/properties/161875436", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hudsons Property", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75559/161875436/75559_CHS160840_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.775210", - "last_seen": "2025-06-01T22:05:43.068215", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137703, - 51.52243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161875688", - "info": { - "identifier": 161875688, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161875688", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Oaklands Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98294/161875688/98294_3coll_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.043329", - "last_seen": "2025-06-01T22:05:48.351988", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23551, - 51.50889 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161875808", - "info": { - "identifier": 161875808, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161875808", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65439/161875808/65439_HOL190175_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.497175", - "last_seen": "2025-06-01T22:05:48.247603", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222258, - 51.51184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.28, - "qmprice": 42.61, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161875979", - "info": { - "identifier": 161875979, - "sqm_ocr": 76.28, - "price": 3250.0, - "price_per_sqm": 42.60618772941793, - "url": "https://www.rightmove.co.uk/properties/161875979", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Orlando Reid", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86327/161875979/86327_32301577_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.711949", - "last_seen": "2025-06-01T22:05:59.637103", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128769, - 51.48031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 38.21, - "rooms": 2, - "total_price": 2675.0, - "url": "https://www.rightmove.co.uk/properties/161876138", - "info": { - "identifier": 161876138, - "sqm_ocr": 70.0, - "price": 2675.0, - "price_per_sqm": 38.214285714285715, - "url": "https://www.rightmove.co.uk/properties/161876138", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "McMahon & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65019/161876138/65019_29_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.569021", - "last_seen": "2025-06-01T22:06:07.123387", - "price": 2675.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100422, - 51.499264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161877065", - "info": { - "identifier": 161877065, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161877065", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/161877065/84827_33879976_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.723766", - "last_seen": "2025-06-01T22:05:55.492550", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204166, - 51.491722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.3, - "qmprice": 30.83, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161877086", - "info": { - "identifier": 161877086, - "sqm_ocr": 97.3, - "price": 3000.0, - "price_per_sqm": 30.832476875642342, - "url": "https://www.rightmove.co.uk/properties/161877086", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/242k/241370/161877086/241370_33879977_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.273377", - "last_seen": "2025-06-01T22:06:04.864291", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080785, - 51.480522 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.16, - "qmprice": 31.26, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161877617", - "info": { - "identifier": 161877617, - "sqm_ocr": 99.16, - "price": 3100.0, - "price_per_sqm": 31.262605889471562, - "url": "https://www.rightmove.co.uk/properties/161877617", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49027/161877617/49027_WAL200008_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.449877", - "last_seen": "2025-06-01T22:06:14.124300", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167546, - 51.44019 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.11, - "qmprice": 36.92, - "rooms": 3, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/161877941", - "info": { - "identifier": 161877941, - "sqm_ocr": 77.11, - "price": 2847.0, - "price_per_sqm": 36.92128128647387, - "url": "https://www.rightmove.co.uk/properties/161877941", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Londonwide Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42321/161877941/42321_LONWI_001591_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.854401", - "last_seen": "2025-06-01T22:06:12.284236", - "price": 2847.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184182, - 51.457783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161877995", - "info": { - "identifier": 161877995, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161877995", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/161877995/194222_HRP230478_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/05/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.326551", - "last_seen": "2025-06-01T22:06:01.076424", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232931, - 51.406055 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 22.47, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161878277", - "info": { - "identifier": 161878277, - "sqm_ocr": 89.0, - "price": 2000.0, - "price_per_sqm": 22.471910112359552, - "url": "https://www.rightmove.co.uk/properties/161878277", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50671/161878277/50671_P276894_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.355341", - "last_seen": "2025-06-01T22:06:00.581289", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01913, - 51.46425 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.27, - "qmprice": 47.91, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161878337", - "info": { - "identifier": 161878337, - "sqm_ocr": 54.27, - "price": 2600.0, - "price_per_sqm": 47.90860512253547, - "url": "https://www.rightmove.co.uk/properties/161878337", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84830/161878337/84830_33880052_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.133641", - "last_seen": "2025-06-01T22:05:58.380639", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194848, - 51.49421 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.9, - "qmprice": 29.76, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161878466", - "info": { - "identifier": 161878466, - "sqm_ocr": 110.9, - "price": 3300.0, - "price_per_sqm": 29.756537421100088, - "url": "https://www.rightmove.co.uk/properties/161878466", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/161878466/65785_33880056_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.704148", - "last_seen": "2025-06-01T22:05:59.804801", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13776, - 51.443092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/161878673", - "info": { - "identifier": 161878673, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161878673", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Elkay Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52868/161878673/52868_102387000331_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.956000", - "last_seen": "2025-06-01T22:05:47.586276", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08924, - 51.53322 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.3, - "qmprice": 25.81, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161878844", - "info": { - "identifier": 161878844, - "sqm_ocr": 114.3, - "price": 2950.0, - "price_per_sqm": 25.809273840769904, - "url": "https://www.rightmove.co.uk/properties/161878844", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Charles Henry Peppiatt Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78489/161878844/78489_16272_AGRN_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.440428", - "last_seen": "2025-06-01T22:05:39.867262", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201884, - 51.645485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161878904", - "info": { - "identifier": 161878904, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161878904", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "London Property Guru", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97850/161878904/97850_RX580989_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.296246", - "last_seen": "2025-06-01T22:05:49.128707", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22251, - 51.51159 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.1, - "qmprice": 37.44, - "rooms": 3, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/161879336", - "info": { - "identifier": 161879336, - "sqm_ocr": 100.1, - "price": 3748.0, - "price_per_sqm": 37.442557442557444, - "url": "https://www.rightmove.co.uk/properties/161879336", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Litchfields", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93337/161879336/93337_6059280_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.232055", - "last_seen": "2025-06-01T22:05:38.911211", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196972, - 51.58091 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.4, - "qmprice": 31.49, - "rooms": 2, - "total_price": 2752.0, - "url": "https://www.rightmove.co.uk/properties/161879432", - "info": { - "identifier": 161879432, - "sqm_ocr": 87.4, - "price": 2752.0, - "price_per_sqm": 31.48741418764302, - "url": "https://www.rightmove.co.uk/properties/161879432", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Lessel", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191471/161879432/191471_33880118_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.082003", - "last_seen": "2025-06-01T22:05:52.431918", - "price": 2751 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.308687, - 51.482273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.0, - "qmprice": 50.0, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161879570", - "info": { - "identifier": 161879570, - "sqm_ocr": 56.0, - "price": 2800.0, - "price_per_sqm": 50.0, - "url": "https://www.rightmove.co.uk/properties/161879570", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Elkay Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52868/161879570/52868_102387002133_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.374101", - "last_seen": "2025-06-01T22:05:47.697190", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08007, - 51.53172 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 34.16, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161879693", - "info": { - "identifier": 161879693, - "sqm_ocr": 80.5, - "price": 2750.0, - "price_per_sqm": 34.161490683229815, - "url": "https://www.rightmove.co.uk/properties/161879693", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57095/161879693/57095_P300609_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.665292", - "last_seen": "2025-06-01T22:06:12.622175", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24076, - 51.4647 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161880005", - "info": { - "identifier": 161880005, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161880005", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Christopher Nevill", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9211/161880005/9211_b920c224-ad75-47c1-aa37-fbf0f26fd494_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.842429", - "last_seen": "2025-06-01T22:05:51.519524", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.478936, - 51.548286 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161880242", - "info": { - "identifier": 161880242, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161880242", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Arlington Rouse", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/174k/173180/161880242/173180_173180-21605_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.868397", - "last_seen": "2025-06-01T22:05:57.733215", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178674, - 51.489567 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.0, - "qmprice": 40.82, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161881289", - "info": { - "identifier": 161881289, - "sqm_ocr": 49.0, - "price": 2000.0, - "price_per_sqm": 40.816326530612244, - "url": "https://www.rightmove.co.uk/properties/161881289", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/193k/192209/161881289/192209_33880231_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.598776", - "last_seen": "2025-06-01T22:05:43.979110", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.255099, - 51.506416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/161881400", - "info": { - "identifier": 161881400, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161881400", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Myspace", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274817/161881400/274817_2119_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.740335", - "last_seen": "2025-06-01T22:05:54.051459", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117248, - 51.540207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.6, - "qmprice": 29.37, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161881820", - "info": { - "identifier": 161881820, - "sqm_ocr": 76.6, - "price": 2250.0, - "price_per_sqm": 29.3733681462141, - "url": "https://www.rightmove.co.uk/properties/161881820", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "James Anderson", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85685/161881820/85685_31558577_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.297007", - "last_seen": "2025-06-01T22:06:04.432489", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.251327, - 51.473404 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.3, - "qmprice": 45.67, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/161881874", - "info": { - "identifier": 161881874, - "sqm_ocr": 50.3, - "price": 2297.0, - "price_per_sqm": 45.666003976143145, - "url": "https://www.rightmove.co.uk/properties/161881874", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33140/161881874/33140_HAM130522_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.498400", - "last_seen": "2025-06-01T22:05:48.225311", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220853, - 51.50157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.1, - "qmprice": 36.45, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161882396", - "info": { - "identifier": 161882396, - "sqm_ocr": 63.1, - "price": 2300.0, - "price_per_sqm": 36.450079239302696, - "url": "https://www.rightmove.co.uk/properties/161882396", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72234/161882396/72234_RWL120002_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.491745", - "last_seen": "2025-06-01T22:06:08.583804", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016174, - 51.51942 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161882648", - "info": { - "identifier": 161882648, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161882648", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/161882648/191744_RL2298_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.525071", - "last_seen": "2025-06-01T22:05:46.545531", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00749, - 51.501286 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.67, - "qmprice": 36.81, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161882765", - "info": { - "identifier": 161882765, - "sqm_ocr": 108.67, - "price": 4000.0, - "price_per_sqm": 36.80868685009662, - "url": "https://www.rightmove.co.uk/properties/161882765", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3721/161882765/3721_WIL220034_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.445668", - "last_seen": "2025-06-01T22:06:01.676621", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.235564, - 51.416096 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161883257", - "info": { - "identifier": 161883257, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161883257", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Century 21 Heritage", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105398/161883257/105398_ZCQ-5294750_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.016056", - "last_seen": "2025-06-01T22:05:38.325822", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.122401, - 51.536953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.2, - "qmprice": 30.3, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161883554", - "info": { - "identifier": 161883554, - "sqm_ocr": 79.2, - "price": 2400.0, - "price_per_sqm": 30.3030303030303, - "url": "https://www.rightmove.co.uk/properties/161883554", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72234/161883554/72234_RWL170182_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.873779", - "last_seen": "2025-06-01T22:06:07.455162", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.012915, - 51.5305 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161883692", - "info": { - "identifier": 161883692, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161883692", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137699/161883692/137699_33880368_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.033502", - "last_seen": "2025-06-01T22:05:50.542563", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.347462, - 51.60463 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161883767", - "info": { - "identifier": 161883767, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161883767", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "William H. Brown Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151466/161883767/151466_P3895F2513_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.096984", - "last_seen": "2025-06-01T22:05:38.346071", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.143, - 51.57263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161883851", - "info": { - "identifier": 161883851, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161883851", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161883851/96668_243038425032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.12095, - 51.336193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161883950", - "info": { - "identifier": 161883950, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161883950", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "JS Estate Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264161/161883950/264161_704842_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.525496", - "last_seen": "2025-06-01T22:06:08.428349", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064779, - 51.50826 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161884034", - "info": { - "identifier": 161884034, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161884034", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161884034/96668_148850706092022_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.336556", - "last_seen": "2025-06-01T22:05:51.014620", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.158207, - 51.57203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/161884109", - "info": { - "identifier": 161884109, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161884109", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161884109/17888_16102_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.973946", - "last_seen": "2025-06-01T22:06:14.696683", - "price": 3293 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1672, - 51.52349 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161884238", - "info": { - "identifier": 161884238, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161884238", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161884238/96668_248221813052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.434567", - "last_seen": "2025-06-01T22:05:40.610226", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269819, - 51.550465 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161884424", - "info": { - "identifier": 161884424, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161884424", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "CARTER & REEVES LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289481/161884424/289481_33870223_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.265270", - "last_seen": "2025-06-01T22:05:42.644737", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13065, - 51.530064 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 39.63, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161884481", - "info": { - "identifier": 161884481, - "sqm_ocr": 82.0, - "price": 3250.0, - "price_per_sqm": 39.63414634146341, - "url": "https://www.rightmove.co.uk/properties/161884481", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52617/161884481/52617_LVE200021_L_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.181425", - "last_seen": "2025-06-01T22:06:15.508033", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182051, - 51.52653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.9, - "qmprice": 40.83, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161884787", - "info": { - "identifier": 161884787, - "sqm_ocr": 64.9, - "price": 2650.0, - "price_per_sqm": 40.83204930662557, - "url": "https://www.rightmove.co.uk/properties/161884787", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85699/161884787/85699_CHI240007_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.897994", - "last_seen": "2025-06-01T22:05:55.074123", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265495, - 51.50181 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.3, - "qmprice": 39.49, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161885099", - "info": { - "identifier": 161885099, - "sqm_ocr": 63.3, - "price": 2500.0, - "price_per_sqm": 39.49447077409163, - "url": "https://www.rightmove.co.uk/properties/161885099", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Wembley Park Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80783/161885099/80783_2667272_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.759986", - "last_seen": "2025-06-01T22:05:41.406551", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28391, - 51.55943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 130.4, - "qmprice": 23.77, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161885141", - "info": { - "identifier": 161885141, - "sqm_ocr": 130.4, - "price": 3100.0, - "price_per_sqm": 23.773006134969325, - "url": "https://www.rightmove.co.uk/properties/161885141", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Pedder", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21476/161885141/21476_33880415_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.536608", - "last_seen": "2025-06-01T22:06:06.373646", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089661, - 51.436234 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161885447", - "info": { - "identifier": 161885447, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161885447", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58000/161885447/58000_KEO240155_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/05/2054", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.390045", - "last_seen": "2025-06-01T22:06:01.539898", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202746, - 51.422592 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.5, - "qmprice": 28.78, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161885654", - "info": { - "identifier": 161885654, - "sqm_ocr": 69.5, - "price": 2000.0, - "price_per_sqm": 28.776978417266186, - "url": "https://www.rightmove.co.uk/properties/161885654", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/161885654/87815_1323396_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.637335", - "last_seen": "2025-06-01T22:05:39.563021", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206884, - 51.655075 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.3, - "qmprice": 57.13, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/161885810", - "info": { - "identifier": 161885810, - "sqm_ocr": 60.3, - "price": 3445.0, - "price_per_sqm": 57.13101160862355, - "url": "https://www.rightmove.co.uk/properties/161885810", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94246/161885810/94246_1325656_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.543030", - "last_seen": "2025-06-01T22:05:42.348969", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116922, - 51.519737 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.2, - "qmprice": 36.16, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161885888", - "info": { - "identifier": 161885888, - "sqm_ocr": 80.2, - "price": 2900.0, - "price_per_sqm": 36.15960099750623, - "url": "https://www.rightmove.co.uk/properties/161885888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/161885888/15975_1325786_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.305988", - "last_seen": "2025-06-01T22:06:01.231187", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220894, - 51.425373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161886077", - "info": { - "identifier": 161886077, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161886077", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Residential Links", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289685/161886077/289685_289685-74769_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.449210", - "last_seen": "2025-06-01T22:06:05.516276", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103254, - 51.483154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.6, - "qmprice": 29.49, - "rooms": 3, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161886341", - "info": { - "identifier": 161886341, - "sqm_ocr": 113.6, - "price": 3350.0, - "price_per_sqm": 29.48943661971831, - "url": "https://www.rightmove.co.uk/properties/161886341", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/145k/144923/161886341/144923_HPQ012504552_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.902974", - "last_seen": "2025-06-01T22:05:40.352331", - "price": 3349 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213386, - 51.546825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 37.8, - "rooms": 2, - "total_price": 3175.0, - "url": "https://www.rightmove.co.uk/properties/161887094", - "info": { - "identifier": 161887094, - "sqm_ocr": 84.0, - "price": 3175.0, - "price_per_sqm": 37.79761904761905, - "url": "https://www.rightmove.co.uk/properties/161887094", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Get Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57558/161887094/57558_57558_p0193752_SKYL018F_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.423061", - "last_seen": "2025-06-01T22:06:07.233970", - "price": 3175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01052, - 51.546146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 132.0, - "qmprice": 30.3, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161887136", - "info": { - "identifier": 161887136, - "sqm_ocr": 132.0, - "price": 4000.0, - "price_per_sqm": 30.303030303030305, - "url": "https://www.rightmove.co.uk/properties/161887136", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98852/161887136/98852_KEL250886_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.574528", - "last_seen": "2025-06-01T22:05:42.407097", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20056, - 51.548443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/161887220", - "info": { - "identifier": 161887220, - "sqm_ocr": null, - "price": 3445.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161887220", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/161887220/96542_ROCH_000125_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.726516", - "last_seen": "2025-06-01T22:05:54.110268", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13992, - 51.559914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 33.07, - "rooms": 2, - "total_price": 2513.0, - "url": "https://www.rightmove.co.uk/properties/161887382", - "info": { - "identifier": 161887382, - "sqm_ocr": 76.0, - "price": 2513.0, - "price_per_sqm": 33.06578947368421, - "url": "https://www.rightmove.co.uk/properties/161887382", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/161887382/80796_823_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.649964", - "last_seen": "2025-06-01T22:05:59.764109", - "price": 2513 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12085, - 51.45965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.29, - "qmprice": 42.6, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161887754", - "info": { - "identifier": 161887754, - "sqm_ocr": 76.29, - "price": 3250.0, - "price_per_sqm": 42.600602962380385, - "url": "https://www.rightmove.co.uk/properties/161887754", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52518/161887754/52518_CWL240005_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.406004", - "last_seen": "2025-06-01T20:19:56.692743", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014933, - 51.49584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.07, - "qmprice": 45.73, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161887814", - "info": { - "identifier": 161887814, - "sqm_ocr": 71.07, - "price": 3250.0, - "price_per_sqm": 45.72956240326439, - "url": "https://www.rightmove.co.uk/properties/161887814", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161887814/26207_PTL220051_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.098328", - "last_seen": "2025-06-01T22:05:53.835574", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090663, - 51.54251 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.8, - "qmprice": 27.67, - "rooms": 3, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/161887832", - "info": { - "identifier": 161887832, - "sqm_ocr": 93.8, - "price": 2595.0, - "price_per_sqm": 27.665245202558637, - "url": "https://www.rightmove.co.uk/properties/161887832", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52713/161887832/52713_33880654_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.648862", - "last_seen": "2025-06-01T22:06:04.634907", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.338032, - 51.432167 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/161887943", - "info": { - "identifier": 161887943, - "sqm_ocr": null, - "price": 2947.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161887943", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/161887943/136139_2499712_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.388137", - "last_seen": "2025-06-01T22:06:08.771967", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004384, - 51.506237 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161888099", - "info": { - "identifier": 161888099, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161888099", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Maple Estate & Letting Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69002/161888099/69002_1096_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.160380", - "last_seen": "2025-06-01T22:05:39.453901", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27848, - 51.61336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161888165", - "info": { - "identifier": 161888165, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161888165", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Robinson Jackson", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/60k/59433/161888165/59433_BAN250112_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.266494", - "last_seen": "2025-06-01T22:05:39.912876", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.138476, - 51.475327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.1, - "qmprice": 50.7, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161888189", - "info": { - "identifier": 161888189, - "sqm_ocr": 64.1, - "price": 3250.0, - "price_per_sqm": 50.70202808112325, - "url": "https://www.rightmove.co.uk/properties/161888189", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - City", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260405/161888189/260405_954758_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.519028", - "last_seen": "2025-06-01T22:05:43.238516", - "price": 3163 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08387, - 51.50984 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.1, - "qmprice": 46.37, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161888333", - "info": { - "identifier": 161888333, - "sqm_ocr": 77.1, - "price": 3575.0, - "price_per_sqm": 46.36835278858626, - "url": "https://www.rightmove.co.uk/properties/161888333", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/161888333/212327_P160573_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.782289", - "last_seen": "2025-06-01T22:06:10.251524", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02268, - 51.50095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161888501", - "info": { - "identifier": 161888501, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161888501", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Pedder", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21476/161888501/21476_33880706_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.648871", - "last_seen": "2025-06-01T22:06:06.533922", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.085588, - 51.44885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161889077", - "info": { - "identifier": 161889077, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161889077", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161889077/87187_47832_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.252719", - "last_seen": "2025-06-01T22:06:14.081283", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130263, - 51.48209 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.72, - "qmprice": 49.29, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161889089", - "info": { - "identifier": 161889089, - "sqm_ocr": 50.72, - "price": 2500.0, - "price_per_sqm": 49.290220820189276, - "url": "https://www.rightmove.co.uk/properties/161889089", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Parkheath", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72719/161889089/72719_33356933_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.745776", - "last_seen": "2025-06-01T22:05:43.124786", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.157815, - 51.553604 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/161889095", - "info": { - "identifier": 161889095, - "sqm_ocr": null, - "price": 2383.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161889095", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/161889095/67576_RL0419_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.506124", - "last_seen": "2025-06-01T22:05:50.146148", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099243, - 51.58999 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.52, - "qmprice": 29.58, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161889290", - "info": { - "identifier": 161889290, - "sqm_ocr": 84.52, - "price": 2500.0, - "price_per_sqm": 29.57879791765263, - "url": "https://www.rightmove.co.uk/properties/161889290", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/161889290/51286_CLL220026_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.501593", - "last_seen": "2025-06-01T22:05:44.158291", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26836, - 51.49811 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/161889320", - "info": { - "identifier": 161889320, - "sqm_ocr": null, - "price": 3445.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161889320", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/161889320/237116_800_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.610355", - "last_seen": "2025-06-01T22:05:55.076564", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13918, - 51.5601 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 143.3, - "qmprice": 24.42, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161889341", - "info": { - "identifier": 161889341, - "sqm_ocr": 143.3, - "price": 3500.0, - "price_per_sqm": 24.424284717376132, - "url": "https://www.rightmove.co.uk/properties/161889341", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Robsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264851/161889341/264851_2713379_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.966174", - "last_seen": "2025-06-01T22:05:50.524453", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.40162, - 51.60488 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/161889416", - "info": { - "identifier": 161889416, - "sqm_ocr": null, - "price": 2383.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161889416", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/161889416/96542_ROCH_001405_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.381446", - "last_seen": "2025-06-01T22:05:57.179091", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100339, - 51.590027 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.13, - "qmprice": 28.8, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161889428", - "info": { - "identifier": 161889428, - "sqm_ocr": 78.13, - "price": 2250.0, - "price_per_sqm": 28.798156917957254, - "url": "https://www.rightmove.co.uk/properties/161889428", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Reeds Rains Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88613/161889428/88613_KEI250041_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.393286", - "last_seen": "2025-06-01T22:06:06.050670", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065789, - 51.494446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.1, - "qmprice": 37.3, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161889515", - "info": { - "identifier": 161889515, - "sqm_ocr": 83.1, - "price": 3100.0, - "price_per_sqm": 37.30445246690734, - "url": "https://www.rightmove.co.uk/properties/161889515", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/161889515/84875_33880769_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.991949", - "last_seen": "2025-06-01T22:06:00.197309", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136692, - 51.468063 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/161889608", - "info": { - "identifier": 161889608, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161889608", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/161889608/237116_1429_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.401388", - "last_seen": "2025-06-01T22:05:42.826510", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13746, - 51.54559 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.4, - "qmprice": 38.75, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161889836", - "info": { - "identifier": 161889836, - "sqm_ocr": 77.4, - "price": 2999.0, - "price_per_sqm": 38.74677002583979, - "url": "https://www.rightmove.co.uk/properties/161889836", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40512/161889836/40512_33880784_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.996741", - "last_seen": "2025-06-01T22:06:05.764964", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09928, - 51.493187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.1, - "qmprice": 42.25, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161890487", - "info": { - "identifier": 161890487, - "sqm_ocr": 78.1, - "price": 3300.0, - "price_per_sqm": 42.25352112676057, - "url": "https://www.rightmove.co.uk/properties/161890487", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66768/161890487/66768_1319518_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.357452", - "last_seen": "2025-06-01T22:06:06.162824", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075897, - 51.465508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161890556", - "info": { - "identifier": 161890556, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161890556", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Steps Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7492/161890556/7492_33880838_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.035096", - "last_seen": "2025-06-01T22:05:38.304056", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.163333, - 51.5456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 130.0, - "qmprice": 25.38, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161890637", - "info": { - "identifier": 161890637, - "sqm_ocr": 130.0, - "price": 3300.0, - "price_per_sqm": 25.384615384615383, - "url": "https://www.rightmove.co.uk/properties/161890637", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Curchods Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13985/161890637/13985_CKT250061_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.786190", - "last_seen": "2025-06-01T22:05:58.521505", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302116, - 51.43019 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.4, - "qmprice": 53.1, - "rooms": 2, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/161890886", - "info": { - "identifier": 161890886, - "sqm_ocr": 56.4, - "price": 2995.0, - "price_per_sqm": 53.10283687943262, - "url": "https://www.rightmove.co.uk/properties/161890886", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54922/161890886/54922_NEL190015_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.568129", - "last_seen": "2025-06-01T22:06:16.003167", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131178, - 51.493786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.0, - "qmprice": 34.3, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161890970", - "info": { - "identifier": 161890970, - "sqm_ocr": 86.0, - "price": 2950.0, - "price_per_sqm": 34.30232558139535, - "url": "https://www.rightmove.co.uk/properties/161890970", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43829/161890970/43829_P300644_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.808870", - "last_seen": "2025-06-01T22:06:10.808870", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07593, - 51.51708 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/161891165", - "info": { - "identifier": 161891165, - "sqm_ocr": null, - "price": 2195.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161891165", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "E", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.773959", - "last_seen": "2025-06-01T22:05:44.774883", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.351101, - 51.5071 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161891267", - "info": { - "identifier": 161891267, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161891267", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/161891267/17418_100415010759_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.087458", - "last_seen": "2025-06-01T22:05:50.318062", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35889, - 51.58828 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161891321", - "info": { - "identifier": 161891321, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161891321", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/161891321/12070_29055055_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.281428", - "last_seen": "2025-06-01T22:05:55.186502", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013824, - 51.492645 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/161891474", - "info": { - "identifier": 161891474, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161891474", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/161891474/84788_33880909_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.120669", - "last_seen": "2025-06-01T22:05:52.508927", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.286627, - 51.488678 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/161891564", - "info": { - "identifier": 161891564, - "sqm_ocr": null, - "price": 2195.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161891564", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219908/161891564/219908_4079_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.073001", - "last_seen": "2025-06-01T22:05:45.341181", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.351101, - 51.5071 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161891666", - "info": { - "identifier": 161891666, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161891666", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Homequarters", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269855/161891666/269855_27334_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.456212", - "last_seen": "2025-06-01T22:05:47.786040", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07717, - 51.52879 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161891780", - "info": { - "identifier": 161891780, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161891780", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Homequarters", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269855/161891780/269855_27339_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.281816", - "last_seen": "2025-06-01T22:05:47.219010", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07717, - 51.52879 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161891834", - "info": { - "identifier": 161891834, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161891834", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fraser & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163088/161891834/163088_BKL120149_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.221983", - "last_seen": "2025-06-01T22:05:46.454008", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021597, - 51.474056 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161891894", - "info": { - "identifier": 161891894, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161891894", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Property Broker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61607/161891894/61607_517e13cf-dae8-4910-85e0-8ff8f6344d83_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.934191", - "last_seen": "2025-06-01T22:06:09.438961", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00242, - 51.51597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.6, - "qmprice": 26.32, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161892017", - "info": { - "identifier": 161892017, - "sqm_ocr": 102.6, - "price": 2700.0, - "price_per_sqm": 26.315789473684212, - "url": "https://www.rightmove.co.uk/properties/161892017", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85699/161892017/85699_CHI230113_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.941135", - "last_seen": "2025-06-01T22:05:52.124444", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.301361, - 51.484665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.61, - "qmprice": 38.25, - "rooms": 3, - "total_price": 2548.0, - "url": "https://www.rightmove.co.uk/properties/161892296", - "info": { - "identifier": 161892296, - "sqm_ocr": 66.61, - "price": 2548.0, - "price_per_sqm": 38.25251463744183, - "url": "https://www.rightmove.co.uk/properties/161892296", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/161892296/25485_33880968_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.323782", - "last_seen": "2025-06-01T22:05:42.692821", - "price": 2548 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192254, - 51.544464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161892437", - "info": { - "identifier": 161892437, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161892437", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/161892437/174452_4846_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.692000", - "last_seen": "2025-06-01T22:05:56.447014", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00797, - 51.50093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.4, - "qmprice": 35.46, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161892458", - "info": { - "identifier": 161892458, - "sqm_ocr": 56.4, - "price": 2000.0, - "price_per_sqm": 35.46099290780142, - "url": "https://www.rightmove.co.uk/properties/161892458", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238748/161892458/238748_CLP240017_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.123209", - "last_seen": "2025-06-01T22:05:59.001777", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129694, - 51.442368 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.6, - "qmprice": 21.63, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161893361", - "info": { - "identifier": 161893361, - "sqm_ocr": 115.6, - "price": 2500.0, - "price_per_sqm": 21.62629757785467, - "url": "https://www.rightmove.co.uk/properties/161893361", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14614/161893361/14614_BLA150394_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.589731", - "last_seen": "2025-06-01T22:05:46.553355", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.020987, - 51.47194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161893511", - "info": { - "identifier": 161893511, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161893511", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Regency Estate Group Ltd", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286280/161893511/286280_REG250058_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.813194", - "last_seen": "2025-06-01T22:06:12.364365", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134725, - 51.482086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161893595", - "info": { - "identifier": 161893595, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161893595", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/161893595/17882_38305_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.422777", - "last_seen": "2025-06-01T22:06:08.077992", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02221, - 51.51933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 35.82, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161893754", - "info": { - "identifier": 161893754, - "sqm_ocr": 67.0, - "price": 2400.0, - "price_per_sqm": 35.82089552238806, - "url": "https://www.rightmove.co.uk/properties/161893754", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/161893754/84875_33881054_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.189907", - "last_seen": "2025-06-01T22:06:00.111553", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122255, - 51.461575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 39.54, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161893760", - "info": { - "identifier": 161893760, - "sqm_ocr": 82.2, - "price": 3250.0, - "price_per_sqm": 39.537712895377126, - "url": "https://www.rightmove.co.uk/properties/161893760", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/161893760/84875_33881055_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.182498", - "last_seen": "2025-06-01T22:06:00.124713", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123668, - 51.462208 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/161893868", - "info": { - "identifier": 161893868, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161893868", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50969/161893868/50969_P0424G5727_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.696099", - "last_seen": "2025-06-01T22:05:59.798117", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11259, - 51.49502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161893991", - "info": { - "identifier": 161893991, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161893991", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112924/161893991/112924_P298610_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.563445", - "last_seen": "2025-06-01T22:05:46.186778", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06565, - 51.48599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 140.1, - "qmprice": 25.7, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161894378", - "info": { - "identifier": 161894378, - "sqm_ocr": 140.1, - "price": 3600.0, - "price_per_sqm": 25.695931477516062, - "url": "https://www.rightmove.co.uk/properties/161894378", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84848/161894378/84848_33881088_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.392778", - "last_seen": "2025-06-01T22:06:04.711909", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.331319, - 51.4368 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.94, - "qmprice": 59.38, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161894453", - "info": { - "identifier": 161894453, - "sqm_ocr": 58.94, - "price": 3500.0, - "price_per_sqm": 59.38242280285036, - "url": "https://www.rightmove.co.uk/properties/161894453", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43428/161894453/43428_FCL220078_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.145957", - "last_seen": "2025-06-01T22:05:58.469961", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190696, - 51.49044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161894519", - "info": { - "identifier": 161894519, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161894519", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11475/161894519/11475_0439_FJL043903355_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:11.266037", - "last_seen": "2025-06-01T22:06:11.266037", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018847, - 51.497925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161894819", - "info": { - "identifier": 161894819, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161894819", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/122k/121090/161894819/121090_0635_HRT063500684_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.266850", - "last_seen": "2025-06-01T22:05:51.044503", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.188906, - 51.535145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161895044", - "info": { - "identifier": 161895044, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161895044", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marc and Partners", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201956/161895044/201956_MAY230335_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.849094", - "last_seen": "2025-06-01T22:05:49.345607", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229236, - 51.50953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.4, - "qmprice": 24.66, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161895053", - "info": { - "identifier": 161895053, - "sqm_ocr": 103.4, - "price": 2550.0, - "price_per_sqm": 24.661508704061895, - "url": "https://www.rightmove.co.uk/properties/161895053", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Andrews Letting and Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34373/161895053/34373_PUR110162_L_IMG_23_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.677153", - "last_seen": "2025-06-01T22:05:43.706120", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15819, - 51.31888 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/161895068", - "info": { - "identifier": 161895068, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161895068", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/161895068/82537_33881113_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.637550", - "last_seen": "2025-06-01T20:19:57.943358", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013973, - 51.486786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/161895176", - "info": { - "identifier": 161895176, - "sqm_ocr": null, - "price": 3358.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161895176", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/161895176/17882_33664_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.577242", - "last_seen": "2025-06-01T22:06:10.577242", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03017, - 51.52873 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/161895308", - "info": { - "identifier": 161895308, - "sqm_ocr": null, - "price": 2648.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161895308", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/161895308/84791_33881121_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.620437", - "last_seen": "2025-06-01T22:05:57.018339", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302832, - 51.52432 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161895440", - "info": { - "identifier": 161895440, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161895440", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Cubitt & West Residential Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82928/161895440/82928_P80967_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.124834", - "last_seen": "2025-06-01T22:06:07.768232", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19567, - 51.3537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 38.79, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161895716", - "info": { - "identifier": 161895716, - "sqm_ocr": 58.0, - "price": 2250.0, - "price_per_sqm": 38.793103448275865, - "url": "https://www.rightmove.co.uk/properties/161895716", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Marcus Reilly", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258875/161895716/258875_MLV-56872957_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.695575", - "last_seen": "2025-06-01T22:06:12.569391", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216465, - 51.46044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2194.0, - "url": "https://www.rightmove.co.uk/properties/161895731", - "info": { - "identifier": 161895731, - "sqm_ocr": null, - "price": 2194.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161895731", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Native Communities", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272639/161895731/272639_2Bed-FF-North1_IMG_04_0000_max_656x437.png", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.766356", - "last_seen": "2025-06-01T22:05:43.369302", - "price": 2194.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092, - 51.37673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.7, - "qmprice": 44.66, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161895737", - "info": { - "identifier": 161895737, - "sqm_ocr": 62.7, - "price": 2800.0, - "price_per_sqm": 44.65709728867623, - "url": "https://www.rightmove.co.uk/properties/161895737", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161895737/55101_1325330_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.112838", - "last_seen": "2025-06-01T22:06:05.256210", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090095, - 51.497128 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.1, - "qmprice": 31.65, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161895749", - "info": { - "identifier": 161895749, - "sqm_ocr": 71.1, - "price": 2250.0, - "price_per_sqm": 31.645569620253166, - "url": "https://www.rightmove.co.uk/properties/161895749", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280928/161895749/280928_KYC240478_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.745314", - "last_seen": "2025-06-01T22:05:38.606309", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247858, - 51.595356 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.9, - "qmprice": 26.58, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161895752", - "info": { - "identifier": 161895752, - "sqm_ocr": 80.9, - "price": 2150.0, - "price_per_sqm": 26.576019777503088, - "url": "https://www.rightmove.co.uk/properties/161895752", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/161895752/96392_KYC250098_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.945173", - "last_seen": "2025-06-01T22:05:40.285637", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29287, - 51.554028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.3, - "qmprice": 28.25, - "rooms": 3, - "total_price": 2975.0, - "url": "https://www.rightmove.co.uk/properties/161895782", - "info": { - "identifier": 161895782, - "sqm_ocr": 105.3, - "price": 2975.0, - "price_per_sqm": 28.25261158594492, - "url": "https://www.rightmove.co.uk/properties/161895782", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/161895782/96392_KYC250100_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.962014", - "last_seen": "2025-06-01T22:05:40.259860", - "price": 2975.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29287, - 51.554028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 41.76, - "rooms": 3, - "total_price": 3090.0, - "url": "https://www.rightmove.co.uk/properties/161895809", - "info": { - "identifier": 161895809, - "sqm_ocr": 74.0, - "price": 3090.0, - "price_per_sqm": 41.75675675675676, - "url": "https://www.rightmove.co.uk/properties/161895809", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280928/161895809/280928_KYC240483_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.318670", - "last_seen": "2025-06-01T22:05:39.035721", - "price": 3090.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247858, - 51.595356 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161895848", - "info": { - "identifier": 161895848, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161895848", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Charlesons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40074/161895848/40074_101903005096_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.789640", - "last_seen": "2025-06-01T22:06:03.940468", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0639, - 51.57801 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.2, - "qmprice": 45.35, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161895872", - "info": { - "identifier": 161895872, - "sqm_ocr": 88.2, - "price": 4000.0, - "price_per_sqm": 45.35147392290249, - "url": "https://www.rightmove.co.uk/properties/161895872", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41343/161895872/41343_06730229_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.442670", - "last_seen": "2025-06-01T22:05:49.815209", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145, - 51.576 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161895920", - "info": { - "identifier": 161895920, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161895920", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112924/161895920/112924_P300651_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.413987", - "last_seen": "2025-06-01T22:05:47.037753", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06535, - 51.48572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.8, - "qmprice": 45.45, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161896001", - "info": { - "identifier": 161896001, - "sqm_ocr": 52.8, - "price": 2400.0, - "price_per_sqm": 45.45454545454546, - "url": "https://www.rightmove.co.uk/properties/161896001", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/161896001/84875_33881161_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.069653", - "last_seen": "2025-06-01T22:05:59.577851", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125026, - 51.46721 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.42, - "qmprice": 52.72, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161896079", - "info": { - "identifier": 161896079, - "sqm_ocr": 47.42, - "price": 2500.0, - "price_per_sqm": 52.720371151412905, - "url": "https://www.rightmove.co.uk/properties/161896079", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/161896079/15948_1326215_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.648782", - "last_seen": "2025-06-01T22:05:48.598834", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214653, - 51.48585 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161896085", - "info": { - "identifier": 161896085, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161896085", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Residential Links", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289685/161896085/289685_289685-74240_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.093513", - "last_seen": "2025-06-01T22:06:09.678983", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024226, - 51.492165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.49, - "qmprice": 40.01, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161896112", - "info": { - "identifier": 161896112, - "sqm_ocr": 62.49, - "price": 2500.0, - "price_per_sqm": 40.006401024163864, - "url": "https://www.rightmove.co.uk/properties/161896112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161896112/16050_1326234_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.853124", - "last_seen": "2025-06-01T20:19:58.423263", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02187, - 51.517414 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2199.0, - "url": "https://www.rightmove.co.uk/properties/161896115", - "info": { - "identifier": 161896115, - "sqm_ocr": null, - "price": 2199.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161896115", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Native Communities", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272639/161896115/272639_2Bed-UF-South5_IMG_01_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.707763", - "last_seen": "2025-06-01T22:05:43.713114", - "price": 2199.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0919, - 51.37634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.49, - "qmprice": 52.01, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161896121", - "info": { - "identifier": 161896121, - "sqm_ocr": 62.49, - "price": 3250.0, - "price_per_sqm": 52.00832133141302, - "url": "https://www.rightmove.co.uk/properties/161896121", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161896121/16050_1326233_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.814414", - "last_seen": "2025-06-01T20:19:58.379200", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02187, - 51.517414 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.4, - "qmprice": 38.42, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/161896220", - "info": { - "identifier": 161896220, - "sqm_ocr": 87.4, - "price": 3358.0, - "price_per_sqm": 38.421052631578945, - "url": "https://www.rightmove.co.uk/properties/161896220", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84830/161896220/84830_33881178_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.495880", - "last_seen": "2025-06-01T22:05:58.488072", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189593, - 51.495083 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3466.0, - "url": "https://www.rightmove.co.uk/properties/161896241", - "info": { - "identifier": 161896241, - "sqm_ocr": null, - "price": 3466.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161896241", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Residential Links", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289685/161896241/289685_289685-74284_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.772216", - "last_seen": "2025-06-01T22:06:06.084249", - "price": 3466.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.046502, - 51.501476 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161896250", - "info": { - "identifier": 161896250, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161896250", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191426/161896250/191426_2575317_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.677055", - "last_seen": "2025-06-01T22:05:39.090984", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204014, - 51.5956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3466.0, - "url": "https://www.rightmove.co.uk/properties/161896283", - "info": { - "identifier": 161896283, - "sqm_ocr": null, - "price": 3466.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161896283", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Residential Links", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289685/161896283/289685_289685-74408_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.315044", - "last_seen": "2025-06-01T22:06:10.315044", - "price": 3466.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026227, - 51.500183 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161896358", - "info": { - "identifier": 161896358, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161896358", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Residential Links", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289685/161896358/289685_289685-74764_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.810258", - "last_seen": "2025-06-01T22:06:06.653273", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101487, - 51.483047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161896448", - "info": { - "identifier": 161896448, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161896448", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Residential Links", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289685/161896448/289685_289685-74768_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "27/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.544356", - "last_seen": "2025-06-01T22:05:59.089970", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118181, - 51.477417 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161896478", - "info": { - "identifier": 161896478, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161896478", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Residential Links", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289685/161896478/289685_289685-74532_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:05:56.855187", - "last_seen": "2025-06-01T22:06:08.127123", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052522, - 51.511 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161896586", - "info": { - "identifier": 161896586, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161896586", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Eden Harper", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67498/161896586/67498_33881192_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.421910", - "last_seen": "2025-06-01T22:06:12.878433", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155517, - 51.473946 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161896628", - "info": { - "identifier": 161896628, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161896628", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hilton & Fox", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237869/161896628/237869_hilton_248529462_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.666599", - "last_seen": "2025-06-01T22:05:41.255877", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290471, - 51.563477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161897018", - "info": { - "identifier": 161897018, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161897018", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Property Broker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61607/161897018/61607_78f44fa7-3f05-4afd-b4cc-87a6c642f87e_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.182576", - "last_seen": "2025-06-01T22:06:09.023144", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.002456, - 51.51598 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161897027", - "info": { - "identifier": 161897027, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161897027", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Property Broker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61607/161897027/61607_ee45b00f-264b-43af-8ff7-7ab6686d715f_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.200748", - "last_seen": "2025-06-01T22:06:08.984223", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.002343, - 51.51587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/161897429", - "info": { - "identifier": 161897429, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161897429", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/161897429/198539_33881235_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:11.327830", - "last_seen": "2025-06-01T22:06:11.327830", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013973, - 51.486786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.3, - "qmprice": 49.72, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161897630", - "info": { - "identifier": 161897630, - "sqm_ocr": 54.3, - "price": 2700.0, - "price_per_sqm": 49.72375690607735, - "url": "https://www.rightmove.co.uk/properties/161897630", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/141k/140183/161897630/140183_QPK170069_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.443129", - "last_seen": "2025-06-01T22:05:40.614717", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201911, - 51.542812 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.5, - "qmprice": 47.37, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161897645", - "info": { - "identifier": 161897645, - "sqm_ocr": 66.5, - "price": 3150.0, - "price_per_sqm": 47.36842105263158, - "url": "https://www.rightmove.co.uk/properties/161897645", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253316/161897645/253316_NHO180188_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.998172", - "last_seen": "2025-06-01T22:05:57.784261", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207796, - 51.51299 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 32.0, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161897753", - "info": { - "identifier": 161897753, - "sqm_ocr": 75.0, - "price": 2400.0, - "price_per_sqm": 32.0, - "url": "https://www.rightmove.co.uk/properties/161897753", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Marc and Partners", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201956/161897753/201956_MAY250097_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.081073", - "last_seen": "2025-06-01T22:06:03.215803", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.009624, - 51.51536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.3, - "qmprice": 33.6, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/161897795", - "info": { - "identifier": 161897795, - "sqm_ocr": 71.3, - "price": 2396.0, - "price_per_sqm": 33.60448807854137, - "url": "https://www.rightmove.co.uk/properties/161897795", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146498/161897795/146498_33881241_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.521325", - "last_seen": "2025-06-01T22:06:06.882502", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099516, - 51.47741 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.5, - "qmprice": 46.24, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/161897933", - "info": { - "identifier": 161897933, - "sqm_ocr": 74.5, - "price": 3445.0, - "price_per_sqm": 46.241610738255034, - "url": "https://www.rightmove.co.uk/properties/161897933", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84869/161897933/84869_33881250_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.594580", - "last_seen": "2025-06-01T22:06:12.771327", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179848, - 51.466682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.54, - "qmprice": 48.15, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/161897936", - "info": { - "identifier": 161897936, - "sqm_ocr": 71.54, - "price": 3445.0, - "price_per_sqm": 48.154878389712046, - "url": "https://www.rightmove.co.uk/properties/161897936", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84869/161897936/84869_33881251_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.596568", - "last_seen": "2025-06-01T22:06:12.769311", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179848, - 51.466682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.6, - "qmprice": 38.24, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161898266", - "info": { - "identifier": 161898266, - "sqm_ocr": 104.6, - "price": 4000.0, - "price_per_sqm": 38.24091778202677, - "url": "https://www.rightmove.co.uk/properties/161898266", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Oliver Jaques", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6843/161898266/6843_d96fb1cb-a140-4cde-aeba-fee459fa9d8e_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.322615", - "last_seen": "2025-06-01T22:06:04.916447", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042594, - 51.49517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.4, - "qmprice": 37.46, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161898386", - "info": { - "identifier": 161898386, - "sqm_ocr": 69.4, - "price": 2600.0, - "price_per_sqm": 37.46397694524495, - "url": "https://www.rightmove.co.uk/properties/161898386", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72056/161898386/72056_33881261_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.526073", - "last_seen": "2025-06-01T22:06:01.079691", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169764, - 51.417778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161898704", - "info": { - "identifier": 161898704, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161898704", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161898704/96668_248141012052025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.663937", - "last_seen": "2025-06-01T22:06:11.820812", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01916, - 51.615685 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161898743", - "info": { - "identifier": 161898743, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161898743", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161898743/96668_248210713052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.790986", - "last_seen": "2025-06-01T22:06:03.942905", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.109217, - 51.57101 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161898827", - "info": { - "identifier": 161898827, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161898827", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161898827/96668_248262613052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.285830", - "last_seen": "2025-06-01T22:06:00.176667", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125092, - 51.46656 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.5, - "qmprice": 39.37, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161898845", - "info": { - "identifier": 161898845, - "sqm_ocr": 63.5, - "price": 2500.0, - "price_per_sqm": 39.37007874015748, - "url": "https://www.rightmove.co.uk/properties/161898845", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161898845/96668_248246813052025_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.303367", - "last_seen": "2025-06-01T22:05:44.688131", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.268924, - 51.502106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161898872", - "info": { - "identifier": 161898872, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161898872", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161898872/96668_246245025042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.020223", - "last_seen": "2025-06-01T22:05:50.713358", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375425, - 51.568115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161899022", - "info": { - "identifier": 161899022, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161899022", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161899022/96668_248268913052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.2798, - 51.3987 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 36.23, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161899100", - "info": { - "identifier": 161899100, - "sqm_ocr": 69.0, - "price": 2500.0, - "price_per_sqm": 36.231884057971016, - "url": "https://www.rightmove.co.uk/properties/161899100", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210101/161899100/210101_P300653_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.496455", - "last_seen": "2025-06-01T22:05:50.194098", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11722, - 51.5887 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161899742", - "info": { - "identifier": 161899742, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161899742", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Peter Michael Estates & Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25176/161899742/25176_1112_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.704941", - "last_seen": "2025-06-01T22:05:38.690797", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1548, - 51.65171 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2499.0, - "url": "https://www.rightmove.co.uk/properties/161899757", - "info": { - "identifier": 161899757, - "sqm_ocr": null, - "price": 2499.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161899757", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161899757/96668_242384619032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.027424", - "last_seen": "2025-06-01T22:05:45.505344", - "price": 2499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069662, - 51.651237 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161900396", - "info": { - "identifier": 161900396, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161900396", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Langhams Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25200/161900396/25200_12559268_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.110801", - "last_seen": "2025-06-01T22:05:52.443891", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3395, - 51.485443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.1, - "qmprice": 37.19, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161900507", - "info": { - "identifier": 161900507, - "sqm_ocr": 94.1, - "price": 3500.0, - "price_per_sqm": 37.19447396386823, - "url": "https://www.rightmove.co.uk/properties/161900507", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61662/161900507/61662_TOL250351_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.060210", - "last_seen": "2025-06-01T22:06:13.818843", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170797, - 51.426823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/161900708", - "info": { - "identifier": 161900708, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161900708", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Peter Michael Estates & Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25176/161900708/25176_331_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.941175", - "last_seen": "2025-06-01T22:05:45.650400", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09271, - 51.62257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.3, - "qmprice": 61.26, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161900873", - "info": { - "identifier": 161900873, - "sqm_ocr": 65.3, - "price": 4000.0, - "price_per_sqm": 61.25574272588055, - "url": "https://www.rightmove.co.uk/properties/161900873", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Agency Group", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79431/161900873/79431_RX579622_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.801633", - "last_seen": "2025-06-01T22:05:49.421429", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182362, - 51.47373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.6, - "qmprice": 38.46, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161900915", - "info": { - "identifier": 161900915, - "sqm_ocr": 67.6, - "price": 2600.0, - "price_per_sqm": 38.46153846153847, - "url": "https://www.rightmove.co.uk/properties/161900915", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84073/161900915/84073_1326266_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.785296", - "last_seen": "2025-06-01T22:05:49.963810", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154082, - 51.5802 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161901182", - "info": { - "identifier": 161901182, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161901182", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/161901182/66771_1326236_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.663598", - "last_seen": "2025-06-01T22:05:59.828194", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122663, - 51.48387 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.2, - "qmprice": 41.67, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161901197", - "info": { - "identifier": 161901197, - "sqm_ocr": 83.2, - "price": 3467.0, - "price_per_sqm": 41.67067307692307, - "url": "https://www.rightmove.co.uk/properties/161901197", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/161901197/66771_1326261_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.680783", - "last_seen": "2025-06-01T22:05:59.835057", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120819, - 51.493694 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.1, - "qmprice": 46.6, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161901230", - "info": { - "identifier": 161901230, - "sqm_ocr": 75.1, - "price": 3500.0, - "price_per_sqm": 46.60452729693742, - "url": "https://www.rightmove.co.uk/properties/161901230", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/161901230/16050_1326260_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.114442", - "last_seen": "2025-06-01T22:06:08.932147", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.054184, - 51.530876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 30.77, - "rooms": 3, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/161901629", - "info": { - "identifier": 161901629, - "sqm_ocr": 81.0, - "price": 2492.0, - "price_per_sqm": 30.765432098765434, - "url": "https://www.rightmove.co.uk/properties/161901629", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Citydeal Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96880/161901629/96880_RL1912_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.808821", - "last_seen": "2025-06-01T22:05:44.867185", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27099, - 51.508167 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 32.54, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161901992", - "info": { - "identifier": 161901992, - "sqm_ocr": 63.0, - "price": 2050.0, - "price_per_sqm": 32.53968253968254, - "url": "https://www.rightmove.co.uk/properties/161901992", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13093/161901992/13093_FIL160097_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.515107", - "last_seen": "2025-06-01T22:05:39.732694", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197649, - 51.604298 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 132.3, - "qmprice": 28.34, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161902400", - "info": { - "identifier": 161902400, - "sqm_ocr": 132.3, - "price": 3750.0, - "price_per_sqm": 28.344671201814055, - "url": "https://www.rightmove.co.uk/properties/161902400", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58003/161902400/58003_KBA252800_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.815720", - "last_seen": "2025-06-01T22:06:12.233857", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18541, - 51.45024 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.9, - "qmprice": 28.95, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161902640", - "info": { - "identifier": 161902640, - "sqm_ocr": 120.9, - "price": 3500.0, - "price_per_sqm": 28.949545078577334, - "url": "https://www.rightmove.co.uk/properties/161902640", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68804/161902640/68804_P300539_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.636200", - "last_seen": "2025-06-01T22:05:43.765348", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06285, - 51.39034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161902697", - "info": { - "identifier": 161902697, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161902697", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "JP Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74564/161902697/74564_170525_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.645941", - "last_seen": "2025-06-01T22:05:54.394734", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12454, - 51.56175 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 148.0, - "qmprice": 18.58, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161903297", - "info": { - "identifier": 161903297, - "sqm_ocr": 148.0, - "price": 2750.0, - "price_per_sqm": 18.58108108108108, - "url": "https://www.rightmove.co.uk/properties/161903297", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Bumblebee", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/193k/192527/161903297/192527_15Rami_137543533_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.553912", - "last_seen": "2025-06-01T22:05:39.648602", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.248992, - 51.6277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.4, - "qmprice": 34.46, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161903795", - "info": { - "identifier": 161903795, - "sqm_ocr": 62.4, - "price": 2150.0, - "price_per_sqm": 34.455128205128204, - "url": "https://www.rightmove.co.uk/properties/161903795", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161903795/48101_1325800_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.010946", - "last_seen": "2025-06-01T22:06:03.407920", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.020763, - 51.504433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.4, - "qmprice": 48.08, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161903798", - "info": { - "identifier": 161903798, - "sqm_ocr": 62.4, - "price": 3000.0, - "price_per_sqm": 48.07692307692308, - "url": "https://www.rightmove.co.uk/properties/161903798", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161903798/48101_1325801_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.009193", - "last_seen": "2025-06-01T22:06:03.409999", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.020763, - 51.504433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161903843", - "info": { - "identifier": 161903843, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161903843", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161903843/96668_119525623082021_IMG_18_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.198270", - "last_seen": "2025-06-01T22:05:49.027591", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209984, - 51.47744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.58, - "qmprice": 48.44, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161903900", - "info": { - "identifier": 161903900, - "sqm_ocr": 71.58, - "price": 3467.0, - "price_per_sqm": 48.4353171276893, - "url": "https://www.rightmove.co.uk/properties/161903900", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/161903900/15942_1326211_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.250897", - "last_seen": "2025-06-01T22:05:57.641683", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183282, - 51.498646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.8, - "qmprice": 29.66, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161904023", - "info": { - "identifier": 161904023, - "sqm_ocr": 70.8, - "price": 2100.0, - "price_per_sqm": 29.661016949152543, - "url": "https://www.rightmove.co.uk/properties/161904023", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Aspire", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45021/161904023/45021_CLM160014_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.609327", - "last_seen": "2025-06-01T22:05:59.777770", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126661, - 51.45847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2730.0, - "url": "https://www.rightmove.co.uk/properties/161904068", - "info": { - "identifier": 161904068, - "sqm_ocr": null, - "price": 2730.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161904068", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/161904068/115768_78manc7685_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.926381", - "last_seen": "2025-06-01T22:06:10.926381", - "price": 2730 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01236, - 51.48742 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161904095", - "info": { - "identifier": 161904095, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161904095", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161904095/96668_246184624042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.170985", - "last_seen": "2025-06-01T22:05:50.646884", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.337999, - 51.596947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 29.52, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161904104", - "info": { - "identifier": 161904104, - "sqm_ocr": 83.0, - "price": 2450.0, - "price_per_sqm": 29.518072289156628, - "url": "https://www.rightmove.co.uk/properties/161904104", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161904104/96668_248311513052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.656111", - "last_seen": "2025-06-01T22:05:38.738893", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238309, - 51.59547 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161904395", - "info": { - "identifier": 161904395, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161904395", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161904395/96668_246683429042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.197436", - "last_seen": "2025-06-01T22:06:10.659832", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04097, - 51.52803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161904446", - "info": { - "identifier": 161904446, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161904446", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161904446/96668_248015911052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.330738", - "last_seen": "2025-06-01T22:06:01.836509", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189695, - 51.428665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 38.19, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161904755", - "info": { - "identifier": 161904755, - "sqm_ocr": 72.0, - "price": 2750.0, - "price_per_sqm": 38.19444444444444, - "url": "https://www.rightmove.co.uk/properties/161904755", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57956/161904755/57956_LAD230159_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.011565", - "last_seen": "2025-06-01T22:05:57.763202", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216118, - 51.52266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161905286", - "info": { - "identifier": 161905286, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161905286", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161905286/96668_248140012052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.996827", - "last_seen": "2025-06-01T22:06:00.503662", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038248, - 51.454433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161906780", - "info": { - "identifier": 161906780, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161906780", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161906780/96668_248265613052025_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.571011", - "last_seen": "2025-06-01T22:06:01.560248", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126935, - 51.3971 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.79, - "qmprice": 40.39, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/161906798", - "info": { - "identifier": 161906798, - "sqm_ocr": 61.79, - "price": 2496.0, - "price_per_sqm": 40.39488590386794, - "url": "https://www.rightmove.co.uk/properties/161906798", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/161906798/105856_213_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.207405", - "last_seen": "2025-06-01T22:06:15.617381", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136589, - 51.49163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161906882", - "info": { - "identifier": 161906882, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161906882", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161906882/96668_246411827042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.696513", - "last_seen": "2025-06-01T22:05:38.619297", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179144, - 51.598457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161906897", - "info": { - "identifier": 161906897, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161906897", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161906897/96668_248311613052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.048607", - "last_seen": "2025-06-01T22:05:38.214534", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.136468, - 51.577812 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 27.78, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161908967", - "info": { - "identifier": 161908967, - "sqm_ocr": 72.0, - "price": 2000.0, - "price_per_sqm": 27.77777777777778, - "url": "https://www.rightmove.co.uk/properties/161908967", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "COZEE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262232/161908967/262232_3c2ca1e7-0f43-4979-993d-7f61b760bfeb_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.372758", - "last_seen": "2025-06-01T22:06:06.154216", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0688, - 51.43333 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3177.0, - "url": "https://www.rightmove.co.uk/properties/161909441", - "info": { - "identifier": 161909441, - "sqm_ocr": null, - "price": 3177.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161909441", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/161909441/253604_67H1405_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.802670", - "last_seen": "2025-06-01T22:06:07.373656", - "price": 3177.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0072, - 51.54164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3145.0, - "url": "https://www.rightmove.co.uk/properties/161909645", - "info": { - "identifier": 161909645, - "sqm_ocr": null, - "price": 3145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161909645", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/161909645/253604_106X1405_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.548700", - "last_seen": "2025-06-01T22:06:07.576627", - "price": 3145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.7, - "qmprice": 38.71, - "rooms": 3, - "total_price": 2969.0, - "url": "https://www.rightmove.co.uk/properties/161909735", - "info": { - "identifier": 161909735, - "sqm_ocr": 76.7, - "price": 2969.0, - "price_per_sqm": 38.70925684485007, - "url": "https://www.rightmove.co.uk/properties/161909735", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161909735/48101_1322637_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.219466", - "last_seen": "2025-06-01T22:06:02.383895", - "price": 2969.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.038443, - 51.500095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161909786", - "info": { - "identifier": 161909786, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161909786", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "LUGUS HOMES", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274007/161909786/274007_33881630_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.660764", - "last_seen": "2025-06-01T22:06:12.545705", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176322, - 51.47041 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.9, - "qmprice": 29.41, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161909924", - "info": { - "identifier": 161909924, - "sqm_ocr": 79.9, - "price": 2350.0, - "price_per_sqm": 29.41176470588235, - "url": "https://www.rightmove.co.uk/properties/161909924", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65794/161909924/65794_33881642_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.182824", - "last_seen": "2025-06-01T22:06:13.155164", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183549, - 51.43571 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.8, - "qmprice": 38.98, - "rooms": 2, - "total_price": 2175.0, - "url": "https://www.rightmove.co.uk/properties/161910239", - "info": { - "identifier": 161910239, - "sqm_ocr": 55.8, - "price": 2175.0, - "price_per_sqm": 38.97849462365592, - "url": "https://www.rightmove.co.uk/properties/161910239", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33101/161910239/33101_SHE230243_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.112776", - "last_seen": "2025-06-01T22:05:56.122769", - "price": 2175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.241537, - 51.502872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.6, - "qmprice": 42.48, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161911001", - "info": { - "identifier": 161911001, - "sqm_ocr": 70.6, - "price": 2999.0, - "price_per_sqm": 42.47875354107649, - "url": "https://www.rightmove.co.uk/properties/161911001", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48695/161911001/48695_33881728_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.656160", - "last_seen": "2025-06-01T22:06:15.875467", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176131, - 51.530205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.0, - "qmprice": 40.42, - "rooms": 2, - "total_price": 2102.0, - "url": "https://www.rightmove.co.uk/properties/161911160", - "info": { - "identifier": 161911160, - "sqm_ocr": 52.0, - "price": 2102.0, - "price_per_sqm": 40.42307692307692, - "url": "https://www.rightmove.co.uk/properties/161911160", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/161911160/80796_152_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.642660", - "last_seen": "2025-06-01T22:05:59.689888", - "price": 2101 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12192, - 51.45731 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161911232", - "info": { - "identifier": 161911232, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161911232", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63329/161911232/63329_P1956D2726_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.843086", - "last_seen": "2025-06-01T22:05:58.817374", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29868, - 51.39517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.4, - "qmprice": 35.49, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161911523", - "info": { - "identifier": 161911523, - "sqm_ocr": 63.4, - "price": 2250.0, - "price_per_sqm": 35.488958990536275, - "url": "https://www.rightmove.co.uk/properties/161911523", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Butler & Stag", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/145k/144140/161911523/144140_33881775_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.673891", - "last_seen": "2025-06-01T20:19:57.920661", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043839, - 51.527115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 29.17, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161912204", - "info": { - "identifier": 161912204, - "sqm_ocr": 72.0, - "price": 2100.0, - "price_per_sqm": 29.166666666666668, - "url": "https://www.rightmove.co.uk/properties/161912204", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "James Anderson", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56088/161912204/56088_32060043_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.294905", - "last_seen": "2025-06-01T22:06:04.795341", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269086, - 51.467255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.7, - "qmprice": 24.48, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161912345", - "info": { - "identifier": 161912345, - "sqm_ocr": 81.7, - "price": 2000.0, - "price_per_sqm": 24.479804161566708, - "url": "https://www.rightmove.co.uk/properties/161912345", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Tuffin & Wren", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63391/161912345/63391_181985_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.815794", - "last_seen": "2025-06-01T22:05:44.898375", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.317901, - 51.508926 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.6, - "qmprice": 30.96, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161912366", - "info": { - "identifier": 161912366, - "sqm_ocr": 85.6, - "price": 2650.0, - "price_per_sqm": 30.957943925233646, - "url": "https://www.rightmove.co.uk/properties/161912366", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "DABORACONWAY", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74791/161912366/74791_29057229_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.036289", - "last_seen": "2025-06-01T22:06:04.031781", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.054161, - 51.603786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.3, - "qmprice": 43.82, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161912600", - "info": { - "identifier": 161912600, - "sqm_ocr": 75.3, - "price": 3300.0, - "price_per_sqm": 43.82470119521913, - "url": "https://www.rightmove.co.uk/properties/161912600", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Property Inside London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270212/161912600/270212_Wiv601_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.854771", - "last_seen": "2025-06-01T20:19:58.257727", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07141, - 51.51494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.4, - "qmprice": 27.42, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161912633", - "info": { - "identifier": 161912633, - "sqm_ocr": 109.4, - "price": 3000.0, - "price_per_sqm": 27.422303473491773, - "url": "https://www.rightmove.co.uk/properties/161912633", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Brookings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181742/161912633/181742_BRO240021_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.777290", - "last_seen": "2025-06-01T20:19:58.162012", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026109, - 51.534565 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.4, - "qmprice": 56.2, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161912765", - "info": { - "identifier": 161912765, - "sqm_ocr": 69.4, - "price": 3900.0, - "price_per_sqm": 56.19596541786743, - "url": "https://www.rightmove.co.uk/properties/161912765", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/161912765/135416_BPS230023_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.841374", - "last_seen": "2025-06-01T22:06:13.470029", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147172, - 51.47912 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.67, - "qmprice": 40.38, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161912804", - "info": { - "identifier": 161912804, - "sqm_ocr": 60.67, - "price": 2450.0, - "price_per_sqm": 40.382396571616944, - "url": "https://www.rightmove.co.uk/properties/161912804", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/161912804/44537_TOL251388_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.782248", - "last_seen": "2025-06-01T22:05:59.988331", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108792, - 51.49385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.2, - "qmprice": 30.79, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161912825", - "info": { - "identifier": 161912825, - "sqm_ocr": 81.2, - "price": 2500.0, - "price_per_sqm": 30.788177339901477, - "url": "https://www.rightmove.co.uk/properties/161912825", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51295/161912825/51295_HEA228849_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.607612", - "last_seen": "2025-06-01T22:05:38.782584", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20025, - 51.563076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161912846", - "info": { - "identifier": 161912846, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161912846", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89504/161912846/89504_000905629_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.721381", - "last_seen": "2025-06-01T22:05:43.405590", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12291, - 51.40508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.48, - "qmprice": 39.6, - "rooms": 2, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/161912849", - "info": { - "identifier": 161912849, - "sqm_ocr": 60.48, - "price": 2395.0, - "price_per_sqm": 39.59986772486773, - "url": "https://www.rightmove.co.uk/properties/161912849", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Goldman Greg Housing Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/226k/225413/161912849/225413_33881870_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.364354", - "last_seen": "2025-06-01T22:05:44.238677", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.268411, - 51.50487 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/161913332", - "info": { - "identifier": 161913332, - "sqm_ocr": null, - "price": 2395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161913332", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Statuum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237224/161913332/237224_758_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.844493", - "last_seen": "2025-06-01T22:06:04.111608", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.082177, - 51.6038 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.8, - "qmprice": 46.73, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161913551", - "info": { - "identifier": 161913551, - "sqm_ocr": 42.8, - "price": 2000.0, - "price_per_sqm": 46.728971962616825, - "url": "https://www.rightmove.co.uk/properties/161913551", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9170/161913551/9170_P261592_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.749296", - "last_seen": "2025-06-01T22:05:58.537250", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29136, - 51.42591 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.7, - "qmprice": 29.99, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161913698", - "info": { - "identifier": 161913698, - "sqm_ocr": 91.7, - "price": 2750.0, - "price_per_sqm": 29.989094874591057, - "url": "https://www.rightmove.co.uk/properties/161913698", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/161913698/52415_33881925_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.045914", - "last_seen": "2025-06-01T22:05:59.506215", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132927, - 51.42426 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.7, - "qmprice": 31.72, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/161913764", - "info": { - "identifier": 161913764, - "sqm_ocr": 78.7, - "price": 2496.0, - "price_per_sqm": 31.715374841168995, - "url": "https://www.rightmove.co.uk/properties/161913764", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Abacus Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26267/161913764/26267_ABAC_014712_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.766046", - "last_seen": "2025-06-01T22:05:41.187853", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219872, - 51.550808 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161913800", - "info": { - "identifier": 161913800, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161913800", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/161913800/181787_181787_1070_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.063002", - "last_seen": "2025-06-01T22:06:07.190016", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0963, - 51.49169 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.3, - "qmprice": 31.65, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161913956", - "info": { - "identifier": 161913956, - "sqm_ocr": 85.3, - "price": 2700.0, - "price_per_sqm": 31.652989449003517, - "url": "https://www.rightmove.co.uk/properties/161913956", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Rampton Baseley", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89369/161913956/89369_BAL200058_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.099016", - "last_seen": "2025-06-01T22:06:13.872971", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166352, - 51.455116 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.8, - "qmprice": 24.29, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161914988", - "info": { - "identifier": 161914988, - "sqm_ocr": 98.8, - "price": 2400.0, - "price_per_sqm": 24.291497975708502, - "url": "https://www.rightmove.co.uk/properties/161914988", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/161914988/84827_33882054_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.521883", - "last_seen": "2025-06-01T22:05:48.735159", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20744, - 51.49186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161915084", - "info": { - "identifier": 161915084, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161915084", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19716/161915084/19716_WPS250005_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.412093", - "last_seen": "2025-06-01T22:06:14.244769", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1698, - 51.425076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.73, - "qmprice": 54.4, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161915156", - "info": { - "identifier": 161915156, - "sqm_ocr": 63.73, - "price": 3467.0, - "price_per_sqm": 54.40138082535698, - "url": "https://www.rightmove.co.uk/properties/161915156", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "The Agency Group", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79431/161915156/79431_RX401254_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.736708", - "last_seen": "2025-06-01T22:05:49.523346", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185143, - 51.474884 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161915183", - "info": { - "identifier": 161915183, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161915183", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/161915183/228512_33882068_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.135640", - "last_seen": "2025-06-01T22:05:39.066089", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242967, - 51.59349 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161915192", - "info": { - "identifier": 161915192, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161915192", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161915192/96668_248231813052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.462693", - "last_seen": "2025-06-01T22:06:13.330440", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.160048, - 51.461372 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 36.62, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161915198", - "info": { - "identifier": 161915198, - "sqm_ocr": 71.0, - "price": 2600.0, - "price_per_sqm": 36.61971830985915, - "url": "https://www.rightmove.co.uk/properties/161915198", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Woolwich", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260435/161915198/260435_000016752p_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.412455", - "last_seen": "2025-06-01T22:05:46.524569", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07137, - 51.49155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161915219", - "info": { - "identifier": 161915219, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161915219", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161915219/96668_247642608052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.327437", - "last_seen": "2025-06-01T22:05:52.317124", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.394058, - 51.450756 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 31.43, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161915714", - "info": { - "identifier": 161915714, - "sqm_ocr": 70.0, - "price": 2200.0, - "price_per_sqm": 31.428571428571427, - "url": "https://www.rightmove.co.uk/properties/161915714", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Aston Rowe", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230534/161915714/230534_33882095_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.894604", - "last_seen": "2025-06-01T22:05:45.010457", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.275859, - 51.504314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161915831", - "info": { - "identifier": 161915831, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161915831", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "SJW property management limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/233k/232853/161915831/232853_c1e030be-9f8f-47cb-9cb2-ef9ad35fc568_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.110859", - "last_seen": "2025-06-01T22:05:56.254766", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.234781, - 51.491962 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.4, - "qmprice": 30.97, - "rooms": 2, - "total_price": 2149.0, - "url": "https://www.rightmove.co.uk/properties/161915843", - "info": { - "identifier": 161915843, - "sqm_ocr": 69.4, - "price": 2149.0, - "price_per_sqm": 30.965417867435157, - "url": "https://www.rightmove.co.uk/properties/161915843", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7963/161915843/7963_33882101_IMG_06_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.609997", - "last_seen": "2025-06-01T22:05:55.936740", - "price": 2149 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297427, - 51.52086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161915900", - "info": { - "identifier": 161915900, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161915900", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CROWN LUXURY HOMES LIMITED", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267257/161915900/267257_33881913_IMG_39_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.187588", - "last_seen": "2025-06-01T22:05:46.314640", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.028853, - 51.458664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/161916008", - "info": { - "identifier": 161916008, - "sqm_ocr": null, - "price": 3878.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161916008", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/161916008/238265_L108922_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.551226", - "last_seen": "2025-06-01T22:06:08.119738", - "price": 3878 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.50723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.83, - "qmprice": 26.73, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161916146", - "info": { - "identifier": 161916146, - "sqm_ocr": 74.83, - "price": 2000.0, - "price_per_sqm": 26.727248429774157, - "url": "https://www.rightmove.co.uk/properties/161916146", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Property Hub", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286352/161916146/286352_103231002727_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/11/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.384096", - "last_seen": "2025-06-01T22:05:40.433374", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31999, - 51.56282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 36.92, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161916866", - "info": { - "identifier": 161916866, - "sqm_ocr": 65.0, - "price": 2400.0, - "price_per_sqm": 36.92307692307692, - "url": "https://www.rightmove.co.uk/properties/161916866", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77490/161916866/77490_GER253723_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.463914", - "last_seen": "2025-06-01T22:05:47.825951", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.044641, - 51.553257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.3, - "qmprice": 22.46, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161917181", - "info": { - "identifier": 161917181, - "sqm_ocr": 111.3, - "price": 2500.0, - "price_per_sqm": 22.461814914645103, - "url": "https://www.rightmove.co.uk/properties/161917181", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Brooks Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49201/161917181/49201_STR180169_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.531381", - "last_seen": "2025-06-01T22:05:59.057510", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118713, - 51.431572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.24, - "qmprice": 36.73, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161917772", - "info": { - "identifier": 161917772, - "sqm_ocr": 76.24, - "price": 2800.0, - "price_per_sqm": 36.72612801678909, - "url": "https://www.rightmove.co.uk/properties/161917772", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Aitch Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/193k/192560/161917772/192560_30322WPL_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.560656", - "last_seen": "2025-06-01T20:19:58.490078", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02611, - 51.54251 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161917940", - "info": { - "identifier": 161917940, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161917940", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/161917940/17418_100415010765_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.192623", - "last_seen": "2025-06-01T22:05:50.675676", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37156, - 51.56508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.2, - "qmprice": 28.22, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161917946", - "info": { - "identifier": 161917946, - "sqm_ocr": 76.2, - "price": 2150.0, - "price_per_sqm": 28.215223097112858, - "url": "https://www.rightmove.co.uk/properties/161917946", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Folio London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97670/161917946/97670_CRE210010_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.813066", - "last_seen": "2025-06-01T22:05:44.896439", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25364, - 51.513954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 35.94, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161918087", - "info": { - "identifier": 161918087, - "sqm_ocr": 64.0, - "price": 2300.0, - "price_per_sqm": 35.9375, - "url": "https://www.rightmove.co.uk/properties/161918087", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209807/161918087/209807_CSC211462_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.148519", - "last_seen": "2025-06-01T22:06:10.117059", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017914, - 51.52081 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.0, - "qmprice": 27.66, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161918270", - "info": { - "identifier": 161918270, - "sqm_ocr": 94.0, - "price": 2600.0, - "price_per_sqm": 27.659574468085108, - "url": "https://www.rightmove.co.uk/properties/161918270", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "LRS Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/274k/273656/161918270/273656_ARU-245443_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.891253", - "last_seen": "2025-06-01T22:05:38.485756", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147531, - 51.59953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.9, - "qmprice": 36.67, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161918288", - "info": { - "identifier": 161918288, - "sqm_ocr": 70.9, - "price": 2600.0, - "price_per_sqm": 36.67136812411847, - "url": "https://www.rightmove.co.uk/properties/161918288", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139424/161918288/139424_100783002908_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.761675", - "last_seen": "2025-06-01T22:06:12.315830", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18336, - 51.46499 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.7, - "qmprice": 48.78, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161918456", - "info": { - "identifier": 161918456, - "sqm_ocr": 69.7, - "price": 3400.0, - "price_per_sqm": 48.78048780487805, - "url": "https://www.rightmove.co.uk/properties/161918456", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Imperial Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85765/161918456/85765_000002871p_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.865314", - "last_seen": "2025-06-01T22:05:49.360565", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18425, - 51.47519 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161918822", - "info": { - "identifier": 161918822, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161918822", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Curtis And Parker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278867/161918822/278867_33714578_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.586415", - "last_seen": "2025-06-01T22:05:48.455445", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191723, - 51.47635 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.13, - "qmprice": 40.47, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161918831", - "info": { - "identifier": 161918831, - "sqm_ocr": 74.13, - "price": 3000.0, - "price_per_sqm": 40.46944556859571, - "url": "https://www.rightmove.co.uk/properties/161918831", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161918831/26207_IUL210027_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.457239", - "last_seen": "2025-06-01T22:05:53.300980", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110891, - 51.553486 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 50.0, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161918834", - "info": { - "identifier": 161918834, - "sqm_ocr": 62.0, - "price": 3100.0, - "price_per_sqm": 50.0, - "url": "https://www.rightmove.co.uk/properties/161918834", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44510/161918834/44510_HYL990006_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.306733", - "last_seen": "2025-06-01T22:06:15.072244", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165809, - 51.51389 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.35, - "qmprice": 62.06, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/161918837", - "info": { - "identifier": 161918837, - "sqm_ocr": 59.35, - "price": 3683.0, - "price_per_sqm": 62.05560235888795, - "url": "https://www.rightmove.co.uk/properties/161918837", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44510/161918837/44510_HYL250040_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.303787", - "last_seen": "2025-06-01T22:06:15.070612", - "price": 3683.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158663, - 51.51455 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.3, - "qmprice": 43.92, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161919038", - "info": { - "identifier": 161919038, - "sqm_ocr": 68.3, - "price": 3000.0, - "price_per_sqm": 43.92386530014642, - "url": "https://www.rightmove.co.uk/properties/161919038", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/161919038/56751_1325365_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.965661", - "last_seen": "2025-06-01T22:05:59.384591", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108774, - 51.4457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.1, - "qmprice": 28.62, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161919041", - "info": { - "identifier": 161919041, - "sqm_ocr": 96.1, - "price": 2750.0, - "price_per_sqm": 28.616024973985432, - "url": "https://www.rightmove.co.uk/properties/161919041", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Finchleys", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49962/161919041/49962_32573638_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.175992", - "last_seen": "2025-06-01T22:05:38.786142", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197715, - 51.603703 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161919104", - "info": { - "identifier": 161919104, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161919104", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/161919104/264878_CAN241205_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.348255", - "last_seen": "2025-06-01T22:05:47.027868", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.063952, - 51.488724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161919911", - "info": { - "identifier": 161919911, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161919911", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "We Can Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/217k/216545/161919911/216545_4cf6b4ce-84a7-4506-a14a-a523362fbfeb_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.263788", - "last_seen": "2025-06-01T22:06:01.269735", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159672, - 51.40937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/161920082", - "info": { - "identifier": 161920082, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161920082", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/161920082/105856_2784_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.921304", - "last_seen": "2025-06-01T22:06:06.054761", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102787, - 51.503384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.0, - "qmprice": 26.78, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161920085", - "info": { - "identifier": 161920085, - "sqm_ocr": 112.0, - "price": 2999.0, - "price_per_sqm": 26.776785714285715, - "url": "https://www.rightmove.co.uk/properties/161920085", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84785/161920085/84785_33882345_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.969385", - "last_seen": "2025-06-01T22:05:44.552338", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.256945, - 51.506332 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161920496", - "info": { - "identifier": 161920496, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161920496", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161920496/43310_MRL160163_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.672493", - "last_seen": "2025-06-01T20:19:57.901597", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02, - 51.5 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161921408", - "info": { - "identifier": 161921408, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161921408", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Surrey Quays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60474/161921408/60474_000011942p_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.890295", - "last_seen": "2025-06-01T22:06:00.673364", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03933, - 51.48995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.5, - "qmprice": 50.31, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161921552", - "info": { - "identifier": 161921552, - "sqm_ocr": 79.5, - "price": 4000.0, - "price_per_sqm": 50.314465408805034, - "url": "https://www.rightmove.co.uk/properties/161921552", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dutch & Dutch", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7616/161921552/7616_WHM250111_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.932931", - "last_seen": "2025-06-01T22:05:42.840967", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190885, - 51.548817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.1, - "qmprice": 28.86, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161921600", - "info": { - "identifier": 161921600, - "sqm_ocr": 90.1, - "price": 2600.0, - "price_per_sqm": 28.856825749167594, - "url": "https://www.rightmove.co.uk/properties/161921600", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/161921600/84875_33882426_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.105039", - "last_seen": "2025-06-01T22:06:00.263794", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130745, - 51.469345 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.7, - "qmprice": 35.66, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161921606", - "info": { - "identifier": 161921606, - "sqm_ocr": 68.7, - "price": 2450.0, - "price_per_sqm": 35.66229985443959, - "url": "https://www.rightmove.co.uk/properties/161921606", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/161921606/84875_33877944_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.087879", - "last_seen": "2025-06-01T22:06:00.266943", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120794, - 51.472412 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.27, - "qmprice": 56.04, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161921780", - "info": { - "identifier": 161921780, - "sqm_ocr": 50.27, - "price": 2817.0, - "price_per_sqm": 56.03739805052715, - "url": "https://www.rightmove.co.uk/properties/161921780", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50933/161921780/50933_P1894J0409_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.584173", - "last_seen": "2025-06-01T22:05:58.283096", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1872, - 51.4845 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.88, - "qmprice": 32.24, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161922062", - "info": { - "identifier": 161922062, - "sqm_ocr": 72.88, - "price": 2350.0, - "price_per_sqm": 32.24478594950604, - "url": "https://www.rightmove.co.uk/properties/161922062", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52448/161922062/52448_32499920_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.802775", - "last_seen": "2025-06-01T22:06:12.259857", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193325, - 51.453094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.7, - "qmprice": 35.01, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161922224", - "info": { - "identifier": 161922224, - "sqm_ocr": 85.7, - "price": 3000.0, - "price_per_sqm": 35.00583430571762, - "url": "https://www.rightmove.co.uk/properties/161922224", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57973/161922224/57973_KEG240187_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.702835", - "last_seen": "2025-06-01T22:06:15.912134", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171727, - 51.523182 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.0, - "qmprice": 27.55, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161922296", - "info": { - "identifier": 161922296, - "sqm_ocr": 98.0, - "price": 2700.0, - "price_per_sqm": 27.551020408163264, - "url": "https://www.rightmove.co.uk/properties/161922296", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111325/161922296/111325_KFX240120_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.537590", - "last_seen": "2025-06-01T22:05:50.147800", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136313, - 51.577343 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161922353", - "info": { - "identifier": 161922353, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161922353", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CITY REALTOR LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/179k/178868/161922353/178868_33882456_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.758833", - "last_seen": "2025-06-01T22:06:10.758833", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029408, - 51.5202 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.02, - "qmprice": 36.35, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161922515", - "info": { - "identifier": 161922515, - "sqm_ocr": 66.02, - "price": 2400.0, - "price_per_sqm": 36.35262041805514, - "url": "https://www.rightmove.co.uk/properties/161922515", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Net Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43665/161922515/43665_101793000947_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.304704", - "last_seen": "2025-06-01T22:06:07.953431", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06182, - 51.51334 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.28, - "qmprice": 47.95, - "rooms": 2, - "total_price": 3466.0, - "url": "https://www.rightmove.co.uk/properties/161922674", - "info": { - "identifier": 161922674, - "sqm_ocr": 72.28, - "price": 3466.0, - "price_per_sqm": 47.95240730492529, - "url": "https://www.rightmove.co.uk/properties/161922674", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48618/161922674/48618_KNI240041_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.642755", - "last_seen": "2025-06-01T22:06:15.975847", - "price": 3466.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16418, - 51.51545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.04, - "qmprice": 35.14, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/161922689", - "info": { - "identifier": 161922689, - "sqm_ocr": 61.04, - "price": 2145.0, - "price_per_sqm": 35.14089121887287, - "url": "https://www.rightmove.co.uk/properties/161922689", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stones Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106225/161922689/106225_BEP250093_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.106126", - "last_seen": "2025-06-01T22:05:39.833038", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178677, - 51.59025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161922773", - "info": { - "identifier": 161922773, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161922773", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84785/161922773/84785_33882496_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.062105", - "last_seen": "2025-06-01T22:05:45.386625", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.274375, - 51.521496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161922851", - "info": { - "identifier": 161922851, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161922851", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/161922851/264404_RX580855_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:11.489265", - "last_seen": "2025-06-01T22:06:11.489265", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029785, - 51.512978 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161922887", - "info": { - "identifier": 161922887, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161922887", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CITY REALTOR LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/179k/178868/161922887/178868_33882509_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/09/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.055344, - 51.511517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161923016", - "info": { - "identifier": 161923016, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161923016", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Andrew Reeves", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58599/161923016/58599_7271088_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.226673", - "last_seen": "2025-06-01T22:06:15.663170", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150055, - 51.492077 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/161923160", - "info": { - "identifier": 161923160, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161923160", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26204/161923160/26204_33882535_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.494862", - "last_seen": "2025-06-01T22:06:01.113300", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207131, - 51.423416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/161923367", - "info": { - "identifier": 161923367, - "sqm_ocr": null, - "price": 3402.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161923367", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/161923367/96542_ROCH_002112_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.880558", - "last_seen": "2025-06-01T22:05:43.042254", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134893, - 51.55376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 35.16, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161923397", - "info": { - "identifier": 161923397, - "sqm_ocr": 91.0, - "price": 3200.0, - "price_per_sqm": 35.16483516483517, - "url": "https://www.rightmove.co.uk/properties/161923397", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Tennison Property", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76430/161923397/76430_704879_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.375186", - "last_seen": "2025-06-01T22:06:01.741606", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22367, - 51.417538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/161923499", - "info": { - "identifier": 161923499, - "sqm_ocr": null, - "price": 3987.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161923499", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/161923499/272819_33805448_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.161483", - "last_seen": "2025-06-01T22:05:48.996290", - "price": 3987.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223229, - 51.4824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161923565", - "info": { - "identifier": 161923565, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161923565", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Target Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74120/161923565/74120_33882553_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.618216", - "last_seen": "2025-06-01T22:05:49.694008", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055914, - 51.602093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.8, - "qmprice": 30.98, - "rooms": 4, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/161923697", - "info": { - "identifier": 161923697, - "sqm_ocr": 117.8, - "price": 3650.0, - "price_per_sqm": 30.984719864176572, - "url": "https://www.rightmove.co.uk/properties/161923697", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84806/161923697/84806_33882566_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.580660", - "last_seen": "2025-06-01T22:06:04.186637", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303113, - 51.443527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161923781", - "info": { - "identifier": 161923781, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161923781", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57961/161923781/57961_KDX252035_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.917194", - "last_seen": "2025-06-01T22:05:55.526018", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126471, - 51.6327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161923874", - "info": { - "identifier": 161923874, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161923874", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/161923874/176261_102708021154_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.979230", - "last_seen": "2025-06-01T22:05:45.929199", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13511, - 51.61381 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/161923934", - "info": { - "identifier": 161923934, - "sqm_ocr": null, - "price": 2695.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161923934", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Alex Crown Lettings & Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102122/161923934/102122_4685_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.820245", - "last_seen": "2025-06-01T22:05:49.990596", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13901, - 51.57142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161924090", - "info": { - "identifier": 161924090, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161924090", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "View Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43275/161924090/43275_4171753_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.423189", - "last_seen": "2025-06-01T22:06:07.098058", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076207, - 51.497223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161924309", - "info": { - "identifier": 161924309, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161924309", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Roundtree Real Estate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46965/161924309/46965_57814_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.367569", - "last_seen": "2025-06-01T22:05:39.030554", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21983, - 51.58505 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161924387", - "info": { - "identifier": 161924387, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161924387", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22281/161924387/22281_PMM240109_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.156293", - "last_seen": "2025-06-01T22:06:13.114808", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214968, - 51.464985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.26, - "qmprice": 20.29, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161924612", - "info": { - "identifier": 161924612, - "sqm_ocr": 118.26, - "price": 2400.0, - "price_per_sqm": 20.294266869609334, - "url": "https://www.rightmove.co.uk/properties/161924612", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Central Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6323/161924612/6323_WAL250234_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.040536", - "last_seen": "2025-06-01T22:06:04.036355", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.088255, - 51.5597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161924621", - "info": { - "identifier": 161924621, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161924621", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14546/161924621/14546_DLL170088_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.035211, - 51.510513 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.5, - "qmprice": 50.35, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161924723", - "info": { - "identifier": 161924723, - "sqm_ocr": 71.5, - "price": 3600.0, - "price_per_sqm": 50.34965034965035, - "url": "https://www.rightmove.co.uk/properties/161924723", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/139k/138215/161924723/138215_100783015799_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.494022", - "last_seen": "2025-06-01T22:05:59.102563", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12055, - 51.49397 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.55, - "qmprice": 47.03, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161924801", - "info": { - "identifier": 161924801, - "sqm_ocr": 76.55, - "price": 3600.0, - "price_per_sqm": 47.028086218158066, - "url": "https://www.rightmove.co.uk/properties/161924801", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Casa Londra", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212255/161924801/212255_2302_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.014893", - "last_seen": "2025-06-01T22:05:57.759241", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.156135, - 51.493107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.4, - "qmprice": 30.08, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161924834", - "info": { - "identifier": 161924834, - "sqm_ocr": 106.4, - "price": 3200.0, - "price_per_sqm": 30.075187969924812, - "url": "https://www.rightmove.co.uk/properties/161924834", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dimension Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87953/161924834/87953_3216_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.914556", - "last_seen": "2025-06-01T22:05:47.461894", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053926, - 51.5631 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.2, - "qmprice": 32.71, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161925326", - "info": { - "identifier": 161925326, - "sqm_ocr": 64.2, - "price": 2100.0, - "price_per_sqm": 32.71028037383177, - "url": "https://www.rightmove.co.uk/properties/161925326", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12814/161925326/12814_HIV250946_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.835358", - "last_seen": "2025-06-01T22:05:40.370050", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.281401, - 51.529186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161925833", - "info": { - "identifier": 161925833, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161925833", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161925833/96668_242293119032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.496763", - "last_seen": "2025-06-01T22:05:44.030102", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.280601, - 51.518997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161925974", - "info": { - "identifier": 161925974, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161925974", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161925974/96668_240184328022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.828547", - "last_seen": "2025-06-01T22:06:07.384832", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013097, - 51.54211 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161926079", - "info": { - "identifier": 161926079, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161926079", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161926079/96668_245892722042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.109469", - "last_seen": "2025-06-01T22:05:50.254884", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.39801, - 51.60029 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161926673", - "info": { - "identifier": 161926673, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161926673", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Wembley", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260423/161926673/260423_000019716o_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.370732", - "last_seen": "2025-06-01T22:05:40.166478", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28429, - 51.54094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.93, - "qmprice": 50.06, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161926757", - "info": { - "identifier": 161926757, - "sqm_ocr": 55.93, - "price": 2800.0, - "price_per_sqm": 50.06257822277848, - "url": "https://www.rightmove.co.uk/properties/161926757", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/161926757/63031_CAL230108_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "03/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.770695", - "last_seen": "2025-06-01T22:05:43.143574", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134265, - 51.54031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.9, - "qmprice": 34.01, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161927105", - "info": { - "identifier": 161927105, - "sqm_ocr": 102.9, - "price": 3500.0, - "price_per_sqm": 34.01360544217687, - "url": "https://www.rightmove.co.uk/properties/161927105", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Stapleton Long", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11065/161927105/11065_33882786_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.632878", - "last_seen": "2025-06-01T22:06:12.576611", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.156073, - 51.469353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161927246", - "info": { - "identifier": 161927246, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161927246", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stones Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91151/161927246/91151_HIL250006_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.107716", - "last_seen": "2025-06-01T22:05:44.483805", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37754, - 51.499374 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/161927516", - "info": { - "identifier": 161927516, - "sqm_ocr": null, - "price": 2195.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161927516", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Affitto Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56291/161927516/56291_AFF2064_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.835413", - "last_seen": "2025-06-01T22:05:44.927588", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.349749, - 51.506664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 47.67, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161927552", - "info": { - "identifier": 161927552, - "sqm_ocr": 75.0, - "price": 3575.0, - "price_per_sqm": 47.666666666666664, - "url": "https://www.rightmove.co.uk/properties/161927552", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Tavistock Bow", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/111k/110768/161927552/110768_101184001320_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.290122", - "last_seen": "2025-06-01T22:06:15.788636", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131631, - 51.51199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.2, - "qmprice": 31.57, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161927705", - "info": { - "identifier": 161927705, - "sqm_ocr": 79.2, - "price": 2500.0, - "price_per_sqm": 31.565656565656564, - "url": "https://www.rightmove.co.uk/properties/161927705", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Gibson Lane", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22316/161927705/22316_33882838_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.116274", - "last_seen": "2025-06-01T22:06:13.054002", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25075, - 51.45356 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.3, - "qmprice": 25.19, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161928146", - "info": { - "identifier": 161928146, - "sqm_ocr": 91.3, - "price": 2300.0, - "price_per_sqm": 25.191675794085434, - "url": "https://www.rightmove.co.uk/properties/161928146", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118051/161928146/118051_33882869_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.080506", - "last_seen": "2025-06-01T22:06:00.755516", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043251, - 51.475525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.6, - "qmprice": 40.32, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161928248", - "info": { - "identifier": 161928248, - "sqm_ocr": 80.6, - "price": 3250.0, - "price_per_sqm": 40.322580645161295, - "url": "https://www.rightmove.co.uk/properties/161928248", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/161928248/15951_1326141_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.407430", - "last_seen": "2025-06-01T22:05:44.200455", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269595, - 51.496532 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.2, - "qmprice": 31.67, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161928254", - "info": { - "identifier": 161928254, - "sqm_ocr": 74.2, - "price": 2350.0, - "price_per_sqm": 31.671159029649594, - "url": "https://www.rightmove.co.uk/properties/161928254", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/161928254/15951_1324733_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.420943", - "last_seen": "2025-06-01T22:05:44.193034", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.270424, - 51.50104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161928302", - "info": { - "identifier": 161928302, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161928302", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/161928302/56751_1326085_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.568687", - "last_seen": "2025-06-01T22:05:58.979722", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102507, - 51.46408 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.2, - "qmprice": 43.19, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161928380", - "info": { - "identifier": 161928380, - "sqm_ocr": 60.2, - "price": 2600.0, - "price_per_sqm": 43.18936877076412, - "url": "https://www.rightmove.co.uk/properties/161928380", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/161928380/15945_1326315_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.486243", - "last_seen": "2025-06-01T22:06:15.315182", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196951, - 51.51766 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.6, - "qmprice": 28.35, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161928392", - "info": { - "identifier": 161928392, - "sqm_ocr": 77.6, - "price": 2200.0, - "price_per_sqm": 28.350515463917528, - "url": "https://www.rightmove.co.uk/properties/161928392", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/161928392/15969_1326330_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.118693", - "last_seen": "2025-06-01T22:05:44.491962", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324978, - 51.51041 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.29, - "qmprice": 27.75, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161928416", - "info": { - "identifier": 161928416, - "sqm_ocr": 79.29, - "price": 2200.0, - "price_per_sqm": 27.74624795056123, - "url": "https://www.rightmove.co.uk/properties/161928416", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/161928416/15969_1326297_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.953754", - "last_seen": "2025-06-01T22:05:43.946491", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375714, - 51.504944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.6, - "qmprice": 41.24, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161928428", - "info": { - "identifier": 161928428, - "sqm_ocr": 77.6, - "price": 3200.0, - "price_per_sqm": 41.23711340206186, - "url": "https://www.rightmove.co.uk/properties/161928428", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/161928428/15969_1326331_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.947167", - "last_seen": "2025-06-01T22:05:44.533443", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324978, - 51.51041 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.4, - "qmprice": 51.17, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161928440", - "info": { - "identifier": 161928440, - "sqm_ocr": 68.4, - "price": 3500.0, - "price_per_sqm": 51.16959064327485, - "url": "https://www.rightmove.co.uk/properties/161928440", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84073/161928440/84073_1322490_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.390244", - "last_seen": "2025-06-01T22:05:49.771877", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140296, - 51.57253 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.38, - "qmprice": 36.36, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161928617", - "info": { - "identifier": 161928617, - "sqm_ocr": 89.38, - "price": 3250.0, - "price_per_sqm": 36.361602148131574, - "url": "https://www.rightmove.co.uk/properties/161928617", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/161928617/108515_1326326_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.522299", - "last_seen": "2025-06-01T22:05:58.129236", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197796, - 51.490047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161928812", - "info": { - "identifier": 161928812, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161928812", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51316/161928812/51316_LIL110138_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.426721", - "last_seen": "2025-06-01T22:06:15.258233", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177529, - 51.521393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161929091", - "info": { - "identifier": 161929091, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161929091", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Stones Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91151/161929091/91151_HIL250007_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.018125", - "last_seen": "2025-06-01T22:05:44.367984", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37754, - 51.499374 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 44.78, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161929568", - "info": { - "identifier": 161929568, - "sqm_ocr": 67.0, - "price": 3000.0, - "price_per_sqm": 44.776119402985074, - "url": "https://www.rightmove.co.uk/properties/161929568", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/201k/200876/161929568/200876_SNE150061_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.717595", - "last_seen": "2025-06-01T22:05:59.198153", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1254, - 51.4863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161929619", - "info": { - "identifier": 161929619, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161929619", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161929619/96668_247439106052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.539567", - "last_seen": "2025-06-01T22:06:06.971415", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.083878, - 51.49946 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/161929691", - "info": { - "identifier": 161929691, - "sqm_ocr": null, - "price": 3050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161929691", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161929691/96668_248361614052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.031310", - "last_seen": "2025-06-01T22:05:48.003847", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058758, - 51.549965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161929775", - "info": { - "identifier": 161929775, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161929775", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "BRITBRICKS", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282746/161929775/282746_brit_1897744975_IMG_12_0001_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.178926", - "last_seen": "2025-06-01T22:05:50.662492", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37459, - 51.56251 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.7, - "qmprice": 29.55, - "rooms": 2, - "total_price": 2296.0, - "url": "https://www.rightmove.co.uk/properties/161930153", - "info": { - "identifier": 161930153, - "sqm_ocr": 77.7, - "price": 2296.0, - "price_per_sqm": 29.54954954954955, - "url": "https://www.rightmove.co.uk/properties/161930153", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "AP Living London", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235805/161930153/235805_33724024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.534122", - "last_seen": "2025-06-01T22:06:02.900203", - "price": 2296.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.073535, - 51.50657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.4, - "qmprice": 41.43, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/161930504", - "info": { - "identifier": 161930504, - "sqm_ocr": 84.4, - "price": 3497.0, - "price_per_sqm": 41.43364928909952, - "url": "https://www.rightmove.co.uk/properties/161930504", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Glentree Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/191k/190037/161930504/190037_33855074_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.451160", - "last_seen": "2025-06-01T22:05:39.809210", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200129, - 51.57484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161930837", - "info": { - "identifier": 161930837, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161930837", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "AJ Dwellings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80172/161930837/80172_PDL_ILFORD425_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.793111", - "last_seen": "2025-06-01T22:06:03.892306", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.077316, - 51.545444 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161930888", - "info": { - "identifier": 161930888, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161930888", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Oaklands Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98294/161930888/98294_adrl_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.641025", - "last_seen": "2025-06-01T22:05:48.515917", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2299, - 51.50863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.0, - "qmprice": 25.64, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161930984", - "info": { - "identifier": 161930984, - "sqm_ocr": 117.0, - "price": 3000.0, - "price_per_sqm": 25.641025641025642, - "url": "https://www.rightmove.co.uk/properties/161930984", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49027/161930984/49027_WFL250007_L_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.376693", - "last_seen": "2025-06-01T22:06:14.010393", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179947, - 51.46083 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161931290", - "info": { - "identifier": 161931290, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161931290", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Connells Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95882/161931290/95882_P5325F5014_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.147150", - "last_seen": "2025-06-01T22:05:50.609772", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33215, - 51.58102 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161931629", - "info": { - "identifier": 161931629, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161931629", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Dayfields", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58157/161931629/58157_112LADY_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.987554", - "last_seen": "2025-06-01T22:05:45.910952", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06947, - 51.65609 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.3, - "qmprice": 35.17, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161931797", - "info": { - "identifier": 161931797, - "sqm_ocr": 85.3, - "price": 3000.0, - "price_per_sqm": 35.16998827667057, - "url": "https://www.rightmove.co.uk/properties/161931797", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/161931797/15957_1326340_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.361603", - "last_seen": "2025-06-01T22:05:42.845963", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191103, - 51.54377 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.2, - "qmprice": 44.84, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161932148", - "info": { - "identifier": 161932148, - "sqm_ocr": 89.2, - "price": 4000.0, - "price_per_sqm": 44.84304932735426, - "url": "https://www.rightmove.co.uk/properties/161932148", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48695/161932148/48695_33883093_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.683050", - "last_seen": "2025-06-01T22:05:42.479462", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170534, - 51.54372 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.2, - "qmprice": 37.23, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161932283", - "info": { - "identifier": 161932283, - "sqm_ocr": 75.2, - "price": 2800.0, - "price_per_sqm": 37.234042553191486, - "url": "https://www.rightmove.co.uk/properties/161932283", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/161932283/15954_1326342_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.773037", - "last_seen": "2025-06-01T22:05:54.107776", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115338, - 51.551117 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.37, - "qmprice": 29.02, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161932310", - "info": { - "identifier": 161932310, - "sqm_ocr": 72.37, - "price": 2100.0, - "price_per_sqm": 29.017548708028187, - "url": "https://www.rightmove.co.uk/properties/161932310", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Elms Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71927/161932310/71927_33883104_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.296909", - "last_seen": "2025-06-01T20:19:57.484170", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043627, - 51.52589 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/161932571", - "info": { - "identifier": 161932571, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161932571", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Stow Brothers", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/115k/114391/161932571/114391_33883123_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.772579", - "last_seen": "2025-06-01T22:06:11.567304", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021388, - 51.58252 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.3, - "qmprice": 51.36, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161932781", - "info": { - "identifier": 161932781, - "sqm_ocr": 62.3, - "price": 3200.0, - "price_per_sqm": 51.364365971107546, - "url": "https://www.rightmove.co.uk/properties/161932781", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99865/161932781/99865_33883137_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.217765", - "last_seen": "2025-06-01T22:06:00.156162", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143382, - 51.453285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.2, - "qmprice": 49.82, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161933249", - "info": { - "identifier": 161933249, - "sqm_ocr": 55.2, - "price": 2750.0, - "price_per_sqm": 49.81884057971014, - "url": "https://www.rightmove.co.uk/properties/161933249", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128629/161933249/128629_KEF250346_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.446708", - "last_seen": "2025-06-01T22:05:57.890625", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188288, - 51.48643 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3710.0, - "url": "https://www.rightmove.co.uk/properties/161933408", - "info": { - "identifier": 161933408, - "sqm_ocr": null, - "price": 3710.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161933408", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161933408/96668_153866201112022_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.190473", - "last_seen": "2025-06-01T22:05:45.262913", - "price": 3710.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30486, - 51.50903 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161933453", - "info": { - "identifier": 161933453, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161933453", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/161933453/252785_33883176_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.022258", - "last_seen": "2025-06-01T22:05:52.672422", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.314234, - 51.4869 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.3, - "qmprice": 38.09, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/161933576", - "info": { - "identifier": 161933576, - "sqm_ocr": 60.3, - "price": 2297.0, - "price_per_sqm": 38.09286898839138, - "url": "https://www.rightmove.co.uk/properties/161933576", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/161933576/80796_520_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.733366", - "last_seen": "2025-06-01T22:05:59.916743", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11281, - 51.46525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 37.68, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/161933831", - "info": { - "identifier": 161933831, - "sqm_ocr": 80.5, - "price": 3033.0, - "price_per_sqm": 37.67701863354037, - "url": "https://www.rightmove.co.uk/properties/161933831", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/161933831/212327_P160872_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.805155", - "last_seen": "2025-06-01T20:19:58.212946", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02484, - 51.50193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.68, - "qmprice": 44.24, - "rooms": 3, - "total_price": 3835.0, - "url": "https://www.rightmove.co.uk/properties/161933867", - "info": { - "identifier": 161933867, - "sqm_ocr": 86.68, - "price": 3835.0, - "price_per_sqm": 44.24319335486848, - "url": "https://www.rightmove.co.uk/properties/161933867", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76478/161933867/76478_CEI242333_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.741752", - "last_seen": "2025-06-01T20:19:58.118258", - "price": 3835 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021164, - 51.49885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161934083", - "info": { - "identifier": 161934083, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161934083", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Michael Naik", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101870/161934083/101870_33883211_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.733735", - "last_seen": "2025-06-01T22:05:54.154397", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098744, - 51.55908 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161934821", - "info": { - "identifier": 161934821, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161934821", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/161934821/252785_33883220_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.569142", - "last_seen": "2025-06-01T22:05:40.709759", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277825, - 51.56166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.6, - "qmprice": 26.46, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161935040", - "info": { - "identifier": 161935040, - "sqm_ocr": 75.6, - "price": 2000.0, - "price_per_sqm": 26.455026455026456, - "url": "https://www.rightmove.co.uk/properties/161935040", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287963/161935040/287963_WPS250006_L_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.309438", - "last_seen": "2025-06-01T22:06:01.355554", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211467, - 51.413902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161935415", - "info": { - "identifier": 161935415, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161935415", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "MCR Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72339/161935415/72339_14May14_IMG_02_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.215705", - "last_seen": "2025-06-01T22:05:51.781478", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.40583, - 51.44739 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.4, - "qmprice": 43.58, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161935856", - "info": { - "identifier": 161935856, - "sqm_ocr": 65.4, - "price": 2850.0, - "price_per_sqm": 43.57798165137614, - "url": "https://www.rightmove.co.uk/properties/161935856", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stones Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106225/161935856/106225_BEP220033_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.029885", - "last_seen": "2025-06-01T22:05:42.161994", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137731, - 51.533478 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161935913", - "info": { - "identifier": 161935913, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161935913", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "MCR Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72339/161935913/72339_16May142025_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.253601", - "last_seen": "2025-06-01T22:05:51.705335", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.40583, - 51.44739 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161936081", - "info": { - "identifier": 161936081, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161936081", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jukes & Co Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285254/161936081/285254_4637925f-32b5-447e-a309-48f9c58019b3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.740503", - "last_seen": "2025-06-01T22:05:43.371239", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0843, - 51.38611 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161936819", - "info": { - "identifier": 161936819, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161936819", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161936819/43310_CWL090416_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.939293", - "last_seen": "2025-06-01T22:06:10.302644", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011557, - 51.50025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.09, - "qmprice": 26.86, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161936825", - "info": { - "identifier": 161936825, - "sqm_ocr": 93.09, - "price": 2500.0, - "price_per_sqm": 26.855731012998174, - "url": "https://www.rightmove.co.uk/properties/161936825", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/161936825/43310_CWL210080_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.706224", - "last_seen": "2025-06-01T22:05:46.569469", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.001007, - 51.48553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.0, - "qmprice": 74.62, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/161936831", - "info": { - "identifier": 161936831, - "sqm_ocr": 45.0, - "price": 3358.0, - "price_per_sqm": 74.62222222222222, - "url": "https://www.rightmove.co.uk/properties/161936831", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/161936831/96392_SVL230459_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.211802", - "last_seen": "2025-06-01T22:06:15.456092", - "price": 3358.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159109, - 51.524227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.68, - "qmprice": 41.08, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161936834", - "info": { - "identifier": 161936834, - "sqm_ocr": 48.68, - "price": 2000.0, - "price_per_sqm": 41.084634346754314, - "url": "https://www.rightmove.co.uk/properties/161936834", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279227/161936834/279227_WLS240357_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.982114", - "last_seen": "2025-06-01T22:06:13.392220", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.152468, - 51.430096 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2095.0, - "url": "https://www.rightmove.co.uk/properties/161936849", - "info": { - "identifier": 161936849, - "sqm_ocr": null, - "price": 2095.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161936849", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Oaklands Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98294/161936849/98294_9fal_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.875518", - "last_seen": "2025-06-01T22:05:44.630209", - "price": 2095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24723, - 51.50772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.2, - "qmprice": 36.04, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161937290", - "info": { - "identifier": 161937290, - "sqm_ocr": 108.2, - "price": 3900.0, - "price_per_sqm": 36.04436229205176, - "url": "https://www.rightmove.co.uk/properties/161937290", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Michael Naik", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101870/161937290/101870_33883332_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.318055", - "last_seen": "2025-06-01T22:05:54.953522", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.085477, - 51.573242 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.7, - "qmprice": 37.04, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161937392", - "info": { - "identifier": 161937392, - "sqm_ocr": 56.7, - "price": 2100.0, - "price_per_sqm": 37.03703703703704, - "url": "https://www.rightmove.co.uk/properties/161937392", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/161937392/54730_WLL210129_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.948809", - "last_seen": "2025-06-01T22:05:44.521298", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29557, - 51.531364 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161937395", - "info": { - "identifier": 161937395, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161937395", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Fortess Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271826/161937395/271826_RL1538_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.362902", - "last_seen": "2025-06-01T22:05:40.725378", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216057, - 51.556 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161937752", - "info": { - "identifier": 161937752, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161937752", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Brian Cox", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288164/161937752/288164_33883172_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.971248", - "last_seen": "2025-06-01T22:05:50.490449", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.331514, - 51.578903 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/161937860", - "info": { - "identifier": 161937860, - "sqm_ocr": null, - "price": 3098.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161937860", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157817/161937860/157817_2636369_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.902718", - "last_seen": "2025-06-01T22:06:11.493352", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019034, - 51.501377 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 34.92, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161938112", - "info": { - "identifier": 161938112, - "sqm_ocr": 63.0, - "price": 2200.0, - "price_per_sqm": 34.92063492063492, - "url": "https://www.rightmove.co.uk/properties/161938112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50304/161938112/50304_33883381_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.110647", - "last_seen": "2025-06-01T22:05:45.378793", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.291047, - 51.5055 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161938205", - "info": { - "identifier": 161938205, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161938205", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dorrington", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281918/161938205/281918_13924_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.556468", - "last_seen": "2025-06-01T22:06:06.520385", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08917, - 51.48663 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.1, - "qmprice": 32.73, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161938334", - "info": { - "identifier": 161938334, - "sqm_ocr": 61.1, - "price": 2000.0, - "price_per_sqm": 32.733224222585925, - "url": "https://www.rightmove.co.uk/properties/161938334", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/161938334/84827_33883403_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.070444", - "last_seen": "2025-06-01T22:05:48.236971", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204393, - 51.490128 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.31, - "qmprice": 38.28, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161938511", - "info": { - "identifier": 161938511, - "sqm_ocr": 65.31, - "price": 2500.0, - "price_per_sqm": 38.278977185729595, - "url": "https://www.rightmove.co.uk/properties/161938511", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Tennison Property", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76430/161938511/76430_704909_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.382827", - "last_seen": "2025-06-01T22:06:01.729162", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212954, - 51.409836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 37.16, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161938616", - "info": { - "identifier": 161938616, - "sqm_ocr": 74.0, - "price": 2750.0, - "price_per_sqm": 37.16216216216216, - "url": "https://www.rightmove.co.uk/properties/161938616", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CROWN LUXURY HOMES LIMITED", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267257/161938616/267257_33883357_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.362395", - "last_seen": "2025-06-01T22:06:07.561958", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.004787, - 51.52688 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/161938634", - "info": { - "identifier": 161938634, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161938634", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108373/161938634/108373_33883431_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.600786", - "last_seen": "2025-06-01T22:05:59.776113", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121349, - 51.492207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.9, - "qmprice": 32.98, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161938661", - "info": { - "identifier": 161938661, - "sqm_ocr": 84.9, - "price": 2800.0, - "price_per_sqm": 32.97997644287397, - "url": "https://www.rightmove.co.uk/properties/161938661", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Peach Properties", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74746/161938661/74746_33883433_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.781284", - "last_seen": "2025-06-01T22:06:10.781284", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043762, - 51.5259 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.8, - "qmprice": 43.84, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/161938694", - "info": { - "identifier": 161938694, - "sqm_ocr": 58.8, - "price": 2578.0, - "price_per_sqm": 43.843537414965986, - "url": "https://www.rightmove.co.uk/properties/161938694", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98852/161938694/98852_KEL230032_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.318703", - "last_seen": "2025-06-01T22:05:42.776506", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195026, - 51.55414 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161939003", - "info": { - "identifier": 161939003, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161939003", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84818/161939003/84818_33883460_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.551953", - "last_seen": "2025-06-01T22:06:04.199882", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35158, - 51.444847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.4, - "qmprice": 40.94, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161939021", - "info": { - "identifier": 161939021, - "sqm_ocr": 68.4, - "price": 2800.0, - "price_per_sqm": 40.93567251461988, - "url": "https://www.rightmove.co.uk/properties/161939021", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22320/161939021/22320_BHL170018_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.870542", - "last_seen": "2025-06-01T22:06:12.097322", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148754, - 51.45 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.8, - "qmprice": 31.73, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161939042", - "info": { - "identifier": 161939042, - "sqm_ocr": 78.8, - "price": 2500.0, - "price_per_sqm": 31.725888324873097, - "url": "https://www.rightmove.co.uk/properties/161939042", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Century 21 Reality", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256667/161939042/256667_R210338_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.056540", - "last_seen": "2025-06-01T22:05:40.752599", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.281644, - 51.52929 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161939768", - "info": { - "identifier": 161939768, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161939768", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Century 21 Heritage", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105398/161939768/105398_SHM-54970261_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.257770", - "last_seen": "2025-06-01T22:06:07.557284", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.009603, - 51.54268 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161939783", - "info": { - "identifier": 161939783, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161939783", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Alexander Charles & Browne", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206588/161939783/206588_29053846_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.052346", - "last_seen": "2025-06-01T22:06:00.738409", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055985, - 51.43171 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161939828", - "info": { - "identifier": 161939828, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161939828", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Move Revolution", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78710/161939828/78710_fb4bf58c-6025-483d-b091-63690e250d0d_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.872608", - "last_seen": "2025-06-01T22:05:43.689367", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120613, - 51.33126 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 32.89, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161940011", - "info": { - "identifier": 161940011, - "sqm_ocr": 76.0, - "price": 2500.0, - "price_per_sqm": 32.89473684210526, - "url": "https://www.rightmove.co.uk/properties/161940011", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Squires Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46983/161940011/46983_33883540_IMG_18_0000_max_656x437.png", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.125301", - "last_seen": "2025-06-01T22:05:39.625064", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209377, - 51.609283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.6, - "qmprice": 35.43, - "rooms": 2, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/161940266", - "info": { - "identifier": 161940266, - "sqm_ocr": 67.6, - "price": 2395.0, - "price_per_sqm": 35.42899408284024, - "url": "https://www.rightmove.co.uk/properties/161940266", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84803/161940266/84803_33883562_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.675742", - "last_seen": "2025-06-01T22:06:04.686384", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252363, - 51.472225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161940299", - "info": { - "identifier": 161940299, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161940299", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Mann Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89483/161940299/89483_000769000_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.144781", - "last_seen": "2025-06-01T22:06:00.869466", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02573, - 51.44458 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/161940347", - "info": { - "identifier": 161940347, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161940347", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Inspired Real Estate", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265778/161940347/265778_L109002_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.970340", - "last_seen": "2025-06-01T22:05:40.156670", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229001, - 51.545612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.5, - "qmprice": 25.32, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161940386", - "info": { - "identifier": 161940386, - "sqm_ocr": 118.5, - "price": 3000.0, - "price_per_sqm": 25.31645569620253, - "url": "https://www.rightmove.co.uk/properties/161940386", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/161940386/54730_WLL250194_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.946837", - "last_seen": "2025-06-01T22:05:38.427084", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.270696, - 51.60503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161940938", - "info": { - "identifier": 161940938, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161940938", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "City and Town Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80802/161940938/80802_topFloorHAverstoca_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.491067", - "last_seen": "2025-06-01T22:05:42.535834", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15521, - 51.54542 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161941328", - "info": { - "identifier": 161941328, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161941328", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161941328/257522_35lavey-richard-RLd9dX_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.149504", - "last_seen": "2025-06-01T22:05:41.070178", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28346, - 51.54053 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161941730", - "info": { - "identifier": 161941730, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161941730", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42912/161941730/42912_PUT250065_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.589070", - "last_seen": "2025-06-01T22:06:04.554816", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.357297, - 51.42637 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.8, - "qmprice": 29.5, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161941811", - "info": { - "identifier": 161941811, - "sqm_ocr": 67.8, - "price": 2000.0, - "price_per_sqm": 29.498525073746315, - "url": "https://www.rightmove.co.uk/properties/161941811", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Truepenny's Property Consultants", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228695/161941811/228695_3852_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.818746", - "last_seen": "2025-06-01T22:05:46.871240", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.036954, - 51.482075 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161942141", - "info": { - "identifier": 161942141, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161942141", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Stonebridge Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214412/161942141/214412_3322_STOB_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.413447", - "last_seen": "2025-06-01T22:06:02.077635", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.074325, - 51.506462 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161942390", - "info": { - "identifier": 161942390, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161942390", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Aston Rowe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230534/161942390/230534_33883699_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.030408", - "last_seen": "2025-06-01T22:05:52.650400", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.270461, - 51.48192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161942660", - "info": { - "identifier": 161942660, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161942660", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161942660/257522_002--grace-RUwfzt_IMG_02_0000_max_656x437.png", - "let_date_available": "01/11/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.522119", - "last_seen": "2025-06-01T22:05:40.669637", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28503, - 51.54101 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161942825", - "info": { - "identifier": 161942825, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161942825", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "Let agreed", - "last_seen": 0, - "agency": "Robinson Jackson", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/60k/59433/161942825/59433_BAN250140_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.178575, - 51.473385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.8, - "qmprice": 33.98, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161942888", - "info": { - "identifier": 161942888, - "sqm_ocr": 61.8, - "price": 2100.0, - "price_per_sqm": 33.980582524271846, - "url": "https://www.rightmove.co.uk/properties/161942888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "andrew scott robertson", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135596/161942888/135596_33883744_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.480130", - "last_seen": "2025-06-01T22:06:01.427834", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212796, - 51.423916 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161943083", - "info": { - "identifier": 161943083, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161943083", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156527/161943083/156527_P276923_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.473907", - "last_seen": "2025-06-01T22:06:06.152097", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09414, - 51.47448 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.9, - "qmprice": 33.39, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161943119", - "info": { - "identifier": 161943119, - "sqm_ocr": 62.9, - "price": 2100.0, - "price_per_sqm": 33.38632750397456, - "url": "https://www.rightmove.co.uk/properties/161943119", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/161943119/87815_1325765_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.140099", - "last_seen": "2025-06-01T22:05:39.513727", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215351, - 51.607674 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161943128", - "info": { - "identifier": 161943128, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161943128", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/161943128/87815_1325694_IMG_00_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.145068", - "last_seen": "2025-06-01T22:05:39.520549", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211472, - 51.613785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.3, - "qmprice": 29.12, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161943131", - "info": { - "identifier": 161943131, - "sqm_ocr": 89.3, - "price": 2600.0, - "price_per_sqm": 29.115341545352745, - "url": "https://www.rightmove.co.uk/properties/161943131", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/161943131/84827_33883770_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.297987", - "last_seen": "2025-06-01T22:05:49.220457", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207379, - 51.48969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161943134", - "info": { - "identifier": 161943134, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161943134", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/161943134/84878_33883771_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.619925", - "last_seen": "2025-06-01T22:06:01.660647", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207552, - 51.41817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.1, - "qmprice": 30.36, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161943140", - "info": { - "identifier": 161943140, - "sqm_ocr": 74.1, - "price": 2250.0, - "price_per_sqm": 30.36437246963563, - "url": "https://www.rightmove.co.uk/properties/161943140", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/161943140/84878_33883772_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.624568", - "last_seen": "2025-06-01T22:06:01.668438", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207395, - 51.41968 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.1, - "qmprice": 33.67, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161943146", - "info": { - "identifier": 161943146, - "sqm_ocr": 89.1, - "price": 3000.0, - "price_per_sqm": 33.670033670033675, - "url": "https://www.rightmove.co.uk/properties/161943146", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/161943146/84878_33883773_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.625808", - "last_seen": "2025-06-01T22:06:01.670570", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202431, - 51.41589 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161943197", - "info": { - "identifier": 161943197, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161943197", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "View Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43275/161943197/43275_12335060_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.664432", - "last_seen": "2025-06-01T22:06:06.745774", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080537, - 51.490788 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161943338", - "info": { - "identifier": 161943338, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161943338", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Falcon Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285041/161943338/285041_WoolmeadAvenue_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.257642", - "last_seen": "2025-06-01T22:05:38.860610", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23979, - 51.5737 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161943536", - "info": { - "identifier": 161943536, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161943536", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161943536/257522_003-grace-RUwfzt_IMG_00_0000_max_656x437.png", - "let_date_available": "01/11/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.063784", - "last_seen": "2025-06-01T22:05:40.947079", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28391, - 51.55943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.9, - "qmprice": 36.0, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161943539", - "info": { - "identifier": 161943539, - "sqm_ocr": 88.9, - "price": 3200.0, - "price_per_sqm": 35.9955005624297, - "url": "https://www.rightmove.co.uk/properties/161943539", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/161943539/56751_1326356_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.593602", - "last_seen": "2025-06-01T22:05:59.770293", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125023, - 51.454063 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.9, - "qmprice": 26.83, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161943722", - "info": { - "identifier": 161943722, - "sqm_ocr": 96.9, - "price": 2600.0, - "price_per_sqm": 26.831785345717233, - "url": "https://www.rightmove.co.uk/properties/161943722", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/161943722/250739_1326360_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.138000", - "last_seen": "2025-06-01T22:05:50.208141", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.296421, - 51.605713 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.2, - "qmprice": 30.59, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161943950", - "info": { - "identifier": 161943950, - "sqm_ocr": 75.2, - "price": 2300.0, - "price_per_sqm": 30.585106382978722, - "url": "https://www.rightmove.co.uk/properties/161943950", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100624/161943950/100624_33883822_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.147407", - "last_seen": "2025-06-01T22:06:00.228285", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119221, - 51.437458 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161944361", - "info": { - "identifier": 161944361, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161944361", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161944361/96668_177469322072023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.760195", - "last_seen": "2025-06-01T22:05:58.526869", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307341, - 51.40853 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161944388", - "info": { - "identifier": 161944388, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161944388", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161944388/96668_248390514052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.174465", - "last_seen": "2025-06-01T22:06:05.084142", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056952, - 51.487453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161944421", - "info": { - "identifier": 161944421, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161944421", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "The Stow Brothers", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267587/161944421/267587_33883855_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.965541", - "last_seen": "2025-06-01T22:05:47.539010", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.033258, - 51.553036 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161944448", - "info": { - "identifier": 161944448, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161944448", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161944448/257522_4GrandUnionAffinityHouse-elvis-Q9PMdh_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.488836", - "last_seen": "2025-06-01T22:05:40.608183", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28429, - 51.54094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.0, - "qmprice": 42.59, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161944478", - "info": { - "identifier": 161944478, - "sqm_ocr": 54.0, - "price": 2300.0, - "price_per_sqm": 42.592592592592595, - "url": "https://www.rightmove.co.uk/properties/161944478", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13102/161944478/13102_MWL230052_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.449788", - "last_seen": "2025-06-01T22:05:49.787764", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154684, - 51.59969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161944604", - "info": { - "identifier": 161944604, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161944604", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Sinclair Hammelton", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/212k/211676/161944604/211676_SHL230245_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.291641", - "last_seen": "2025-06-01T22:05:41.641460", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005018, - 51.370995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.06, - "qmprice": 20.94, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161944745", - "info": { - "identifier": 161944745, - "sqm_ocr": 105.06, - "price": 2200.0, - "price_per_sqm": 20.940415000951837, - "url": "https://www.rightmove.co.uk/properties/161944745", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Moss and Co Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52863/161944745/52863_ZOFF3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.657080", - "last_seen": "2025-06-01T22:06:01.211097", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19515, - 51.42483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161944901", - "info": { - "identifier": 161944901, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161944901", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161944901/257522_33GrandUnionAffinityHouse-elvis-Q9PMdh_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.426582", - "last_seen": "2025-06-01T22:05:40.514319", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28429, - 51.54094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 28.75, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161944916", - "info": { - "identifier": 161944916, - "sqm_ocr": 80.0, - "price": 2300.0, - "price_per_sqm": 28.75, - "url": "https://www.rightmove.co.uk/properties/161944916", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Mayfords Estate Agent", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226394/161944916/226394_mayfords_356435377_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.798638", - "last_seen": "2025-06-01T22:06:02.466531", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.027734, - 51.505276 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161945153", - "info": { - "identifier": 161945153, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161945153", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22943/161945153/22943_BNL250037_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.413987", - "last_seen": "2025-06-01T22:05:49.728029", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113116, - 51.605347 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 42.74, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161945234", - "info": { - "identifier": 161945234, - "sqm_ocr": 62.0, - "price": 2650.0, - "price_per_sqm": 42.74193548387097, - "url": "https://www.rightmove.co.uk/properties/161945234", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156833/161945234/156833_POD012445967_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.069489", - "last_seen": "2025-06-01T22:05:52.592971", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25591, - 51.48267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161945504", - "info": { - "identifier": 161945504, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161945504", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161945504/257522_43GrandUnionAffinityHouse-elvis-Q9PMdh_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.586688", - "last_seen": "2025-06-01T22:05:40.727564", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28429, - 51.54094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161945864", - "info": { - "identifier": 161945864, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161945864", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161945864/257522_42GrandUnionAffinityHouse-elvis-Q9PMdh_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.216633", - "last_seen": "2025-06-01T22:05:41.156656", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28429, - 51.54094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.3, - "qmprice": 34.53, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161945954", - "info": { - "identifier": 161945954, - "sqm_ocr": 75.3, - "price": 2600.0, - "price_per_sqm": 34.52855245683931, - "url": "https://www.rightmove.co.uk/properties/161945954", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/221k/220400/161945954/220400_WAL220158_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.498964", - "last_seen": "2025-06-01T22:06:01.102553", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185726, - 51.431664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2773.0, - "url": "https://www.rightmove.co.uk/properties/161946143", - "info": { - "identifier": 161946143, - "sqm_ocr": null, - "price": 2773.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161946143", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/161946143/49784_33671_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.194595", - "last_seen": "2025-06-01T22:06:05.052137", - "price": 2773 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08652, - 51.49828 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161946350", - "info": { - "identifier": 161946350, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161946350", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50933/161946350/50933_P4795F2014_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.169170", - "last_seen": "2025-06-01T22:05:58.382544", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20152, - 51.49381 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161946524", - "info": { - "identifier": 161946524, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161946524", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212408/161946524/212408_P160883_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.190566", - "last_seen": "2025-06-01T22:06:07.335230", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00774, - 51.53402 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161946707", - "info": { - "identifier": 161946707, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161946707", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 999.0, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Newhome Property Services Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/60k/59676/161946707/59676_406Barnacle_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.871049", - "last_seen": "2025-06-01T22:06:08.911055", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00397, - 51.51599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161946863", - "info": { - "identifier": 161946863, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161946863", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161946863/257522_32GrandUnionAffinityHouse-elvis-Q9PMdh_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.607385", - "last_seen": "2025-06-01T22:05:41.433076", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28429, - 51.54094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/161947043", - "info": { - "identifier": 161947043, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161947043", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/161947043/252785_33884059_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.510581", - "last_seen": "2025-06-01T22:05:50.187168", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055554, - 51.588646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.27, - "qmprice": 43.87, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161947058", - "info": { - "identifier": 161947058, - "sqm_ocr": 59.27, - "price": 2600.0, - "price_per_sqm": 43.8670490973511, - "url": "https://www.rightmove.co.uk/properties/161947058", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "The Bespoke Agent", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/132k/131029/161947058/131029_TBA250106_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.022891", - "last_seen": "2025-06-01T22:05:48.007536", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057088, - 51.55706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/161947079", - "info": { - "identifier": 161947079, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161947079", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161947079/257522_22GrandUnionAffinityHouse-elvis-Q9PMdh_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "21/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.593960", - "last_seen": "2025-06-01T22:05:41.450391", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28429, - 51.54094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.78, - "qmprice": 40.05, - "rooms": 3, - "total_price": 3315.0, - "url": "https://www.rightmove.co.uk/properties/161947256", - "info": { - "identifier": 161947256, - "sqm_ocr": 82.78, - "price": 3315.0, - "price_per_sqm": 40.04590480792462, - "url": "https://www.rightmove.co.uk/properties/161947256", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "The Bespoke Agent", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/132k/131029/161947256/131029_TBA250108_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.226454", - "last_seen": "2025-06-01T22:05:47.237488", - "price": 3315.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057088, - 51.55706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.5, - "qmprice": 30.2, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161947334", - "info": { - "identifier": 161947334, - "sqm_ocr": 74.5, - "price": 2250.0, - "price_per_sqm": 30.201342281879196, - "url": "https://www.rightmove.co.uk/properties/161947334", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "April", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75126/161947334/75126_APR250041_L_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.658869", - "last_seen": "2025-06-01T22:06:11.789932", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012883, - 51.55954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.4, - "qmprice": 36.86, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161947403", - "info": { - "identifier": 161947403, - "sqm_ocr": 81.4, - "price": 3000.0, - "price_per_sqm": 36.85503685503685, - "url": "https://www.rightmove.co.uk/properties/161947403", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Colin Dean Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118630/161947403/118630_33884083_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.042651", - "last_seen": "2025-06-01T22:05:50.669196", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32145, - 51.62507 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.53, - "qmprice": 29.53, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161947502", - "info": { - "identifier": 161947502, - "sqm_ocr": 118.53, - "price": 3500.0, - "price_per_sqm": 29.528389437273265, - "url": "https://www.rightmove.co.uk/properties/161947502", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/161947502/48994_LHL211674_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.082692", - "last_seen": "2025-06-01T22:06:07.475123", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005871, - 51.541294 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.3, - "qmprice": 37.52, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161947667", - "info": { - "identifier": 161947667, - "sqm_ocr": 53.3, - "price": 2000.0, - "price_per_sqm": 37.5234521575985, - "url": "https://www.rightmove.co.uk/properties/161947667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75148/161947667/75148_1326153_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.979631", - "last_seen": "2025-06-01T22:06:00.562667", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013152, - 51.44712 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161947673", - "info": { - "identifier": 161947673, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161947673", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Rosewood Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63096/161947673/63096_Sefton124_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.549446", - "last_seen": "2025-06-01T22:06:12.691597", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2262, - 51.46959 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.2, - "qmprice": 45.15, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161947829", - "info": { - "identifier": 161947829, - "sqm_ocr": 74.2, - "price": 3350.0, - "price_per_sqm": 45.14824797843666, - "url": "https://www.rightmove.co.uk/properties/161947829", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/161947829/15954_1326374_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.499414", - "last_seen": "2025-06-01T22:05:53.325958", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107598, - 51.536407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.5, - "qmprice": 29.15, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161947976", - "info": { - "identifier": 161947976, - "sqm_ocr": 111.5, - "price": 3250.0, - "price_per_sqm": 29.14798206278027, - "url": "https://www.rightmove.co.uk/properties/161947976", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22275/161947976/22275_CSZ221285_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.779440", - "last_seen": "2025-06-01T22:05:49.466337", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206782, - 51.49164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.9, - "qmprice": 34.57, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161947979", - "info": { - "identifier": 161947979, - "sqm_ocr": 96.9, - "price": 3350.0, - "price_per_sqm": 34.571723426212586, - "url": "https://www.rightmove.co.uk/properties/161947979", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/161947979/57272_1326241_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.677289", - "last_seen": "2025-06-01T22:05:58.927810", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293603, - 51.40983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.1, - "qmprice": 66.52, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161947991", - "info": { - "identifier": 161947991, - "sqm_ocr": 45.1, - "price": 3000.0, - "price_per_sqm": 66.51884700665188, - "url": "https://www.rightmove.co.uk/properties/161947991", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/161947991/149153_1320640_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.674742", - "last_seen": "2025-06-01T22:05:58.930611", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.272566, - 51.401184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3670.0, - "url": "https://www.rightmove.co.uk/properties/161948063", - "info": { - "identifier": 161948063, - "sqm_ocr": null, - "price": 3670.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161948063", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/161948063/146147_PR244122_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.905947", - "last_seen": "2025-06-01T22:06:09.000168", - "price": 3670 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022572, - 51.501045 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.0, - "qmprice": 27.14, - "rooms": 4, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161948420", - "info": { - "identifier": 161948420, - "sqm_ocr": 105.0, - "price": 2850.0, - "price_per_sqm": 27.142857142857142, - "url": "https://www.rightmove.co.uk/properties/161948420", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/161948420/80281_1325534_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.923257", - "last_seen": "2025-06-01T22:06:02.654582", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.018901, - 51.52913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161948447", - "info": { - "identifier": 161948447, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161948447", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/161948447/87812_1324863_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.348484", - "last_seen": "2025-06-01T22:05:38.999645", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24779, - 51.595608 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.1, - "qmprice": 32.1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161948645", - "info": { - "identifier": 161948645, - "sqm_ocr": 84.1, - "price": 2700.0, - "price_per_sqm": 32.10463733650416, - "url": "https://www.rightmove.co.uk/properties/161948645", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Bryan & Keegan", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102278/161948645/102278_BBY150282_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.413558", - "last_seen": "2025-06-01T22:06:00.698476", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039841, - 51.451862 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.6, - "qmprice": 50.34, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161948699", - "info": { - "identifier": 161948699, - "sqm_ocr": 59.6, - "price": 3000.0, - "price_per_sqm": 50.335570469798654, - "url": "https://www.rightmove.co.uk/properties/161948699", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/161948699/55101_1325278_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.365416", - "last_seen": "2025-06-01T22:06:06.178807", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088119, - 51.496136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161948768", - "info": { - "identifier": 161948768, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161948768", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Equity Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35516/161948768/35516_EEL250036_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.090811", - "last_seen": "2025-06-01T22:05:45.861124", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042187, - 51.666824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3848.0, - "url": "https://www.rightmove.co.uk/properties/161949128", - "info": { - "identifier": 161949128, - "sqm_ocr": null, - "price": 3848.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161949128", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/161949128/146147_PR191354_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.925003", - "last_seen": "2025-06-01T22:05:53.379878", - "price": 3848 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088289, - 51.527054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 30.12, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161949416", - "info": { - "identifier": 161949416, - "sqm_ocr": 83.0, - "price": 2500.0, - "price_per_sqm": 30.120481927710845, - "url": "https://www.rightmove.co.uk/properties/161949416", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50304/161949416/50304_33884228_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.375170", - "last_seen": "2025-06-01T22:05:44.228438", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312949, - 51.4977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161949455", - "info": { - "identifier": 161949455, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161949455", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161949455/257522_004-grace-RUwfzt_IMG_02_0000_max_656x437.png", - "let_date_available": "01/11/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.849691", - "last_seen": "2025-06-01T22:05:40.350826", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28346, - 51.54053 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161949659", - "info": { - "identifier": 161949659, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161949659", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161949659/257522_005--grace-RUwfzt_IMG_04_0000_max_656x437.png", - "let_date_available": "01/11/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.350926", - "last_seen": "2025-06-01T22:05:40.511879", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28346, - 51.54053 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.0, - "qmprice": 23.01, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161949848", - "info": { - "identifier": 161949848, - "sqm_ocr": 113.0, - "price": 2600.0, - "price_per_sqm": 23.008849557522122, - "url": "https://www.rightmove.co.uk/properties/161949848", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Milestone & Collis", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62311/161949848/62311_33884258_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.641910", - "last_seen": "2025-06-01T22:06:04.657307", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.336898, - 51.426266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.9, - "qmprice": 32.09, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/161949860", - "info": { - "identifier": 161949860, - "sqm_ocr": 70.9, - "price": 2275.0, - "price_per_sqm": 32.08744710860366, - "url": "https://www.rightmove.co.uk/properties/161949860", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49922/161949860/49922_CEH220005_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:11.469925", - "last_seen": "2025-06-01T22:06:11.469925", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021234, - 51.48833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 154.96, - "qmprice": 24.2, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161950688", - "info": { - "identifier": 161950688, - "sqm_ocr": 154.96, - "price": 3750.0, - "price_per_sqm": 24.199793495095506, - "url": "https://www.rightmove.co.uk/properties/161950688", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Tatlers", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/156k/155624/161950688/155624_MUH220371_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.482315", - "last_seen": "2025-06-01T22:05:49.894652", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124483, - 51.600315 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161950856", - "info": { - "identifier": 161950856, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161950856", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161950856/257522_25DunnHouse-elvis-Q9PMdh_IMG_00_0001_max_656x437.png", - "let_date_available": "07/10/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.972066", - "last_seen": "2025-06-01T22:05:40.154947", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27704, - 51.56166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161951288", - "info": { - "identifier": 161951288, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161951288", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Harvey W James", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/224k/223658/161951288/223658_55f1da3a-66a9-41b5-83bb-2bcac78817be_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.354391", - "last_seen": "2025-06-01T22:05:47.030283", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.030608, - 51.458954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161951717", - "info": { - "identifier": 161951717, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161951717", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/161951717/32793_38964_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.453382", - "last_seen": "2025-06-01T22:05:39.810853", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19601, - 51.57501 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161951849", - "info": { - "identifier": 161951849, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161951849", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161951849/96668_247899510052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.157112", - "last_seen": "2025-06-01T22:05:41.086341", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.319888, - 51.56293 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161951936", - "info": { - "identifier": 161951936, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161951936", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161951936/96668_247201504052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.901884", - "last_seen": "2025-06-01T22:05:53.087269", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134735, - 51.57111 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161951960", - "info": { - "identifier": 161951960, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161951960", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161951960/96668_248386214052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.247435, - 51.36857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 38.96, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161952611", - "info": { - "identifier": 161952611, - "sqm_ocr": 77.0, - "price": 3000.0, - "price_per_sqm": 38.96103896103896, - "url": "https://www.rightmove.co.uk/properties/161952611", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161952611/87187_43519_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.731192", - "last_seen": "2025-06-01T22:05:57.053129", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05896, - 51.58836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.81, - "qmprice": 48.74, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161952623", - "info": { - "identifier": 161952623, - "sqm_ocr": 71.81, - "price": 3500.0, - "price_per_sqm": 48.7397298426403, - "url": "https://www.rightmove.co.uk/properties/161952623", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/161952623/15966_1324713_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.798094", - "last_seen": "2025-06-01T22:06:12.249444", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178354, - 51.468674 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.2, - "qmprice": 45.01, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161952719", - "info": { - "identifier": 161952719, - "sqm_ocr": 72.2, - "price": 3250.0, - "price_per_sqm": 45.013850415512465, - "url": "https://www.rightmove.co.uk/properties/161952719", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/161952719/73120_1326401_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.510198", - "last_seen": "2025-06-01T22:05:53.343072", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109902, - 51.529156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.7, - "qmprice": 37.14, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/161952722", - "info": { - "identifier": 161952722, - "sqm_ocr": 81.7, - "price": 3034.0, - "price_per_sqm": 37.135862913096695, - "url": "https://www.rightmove.co.uk/properties/161952722", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/161952722/73120_1323829_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.504881", - "last_seen": "2025-06-01T22:05:53.330870", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098187, - 51.521095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161952815", - "info": { - "identifier": 161952815, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161952815", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Network Agencies", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53310/161952815/53310_berkeleywalk_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.717267", - "last_seen": "2025-06-01T22:05:54.225742", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11446, - 51.56474 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.41, - "qmprice": 43.0, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161952857", - "info": { - "identifier": 161952857, - "sqm_ocr": 74.41, - "price": 3200.0, - "price_per_sqm": 43.00497244993953, - "url": "https://www.rightmove.co.uk/properties/161952857", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55326/161952857/55326_ISS170014_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.690043", - "last_seen": "2025-06-01T22:05:54.296480", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092932, - 51.5441 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 38.74, - "qmprice": 64.53, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161952911", - "info": { - "identifier": 161952911, - "sqm_ocr": 38.74, - "price": 2500.0, - "price_per_sqm": 64.53278265358801, - "url": "https://www.rightmove.co.uk/properties/161952911", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/161952911/66771_1326344_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.396273", - "last_seen": "2025-06-01T22:06:06.320611", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106142, - 51.494007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.2, - "qmprice": 33.23, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161952923", - "info": { - "identifier": 161952923, - "sqm_ocr": 66.2, - "price": 2200.0, - "price_per_sqm": 33.23262839879154, - "url": "https://www.rightmove.co.uk/properties/161952923", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66768/161952923/66768_1326404_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.406548", - "last_seen": "2025-06-01T22:06:06.332855", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063908, - 51.452866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.2, - "qmprice": 31.99, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161952986", - "info": { - "identifier": 161952986, - "sqm_ocr": 67.2, - "price": 2150.0, - "price_per_sqm": 31.994047619047617, - "url": "https://www.rightmove.co.uk/properties/161952986", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/161952986/15951_1322393_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.309605", - "last_seen": "2025-06-01T22:05:52.300510", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.292764, - 51.488285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.2, - "qmprice": 44.64, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161952992", - "info": { - "identifier": 161952992, - "sqm_ocr": 67.2, - "price": 3000.0, - "price_per_sqm": 44.64285714285714, - "url": "https://www.rightmove.co.uk/properties/161952992", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/161952992/15951_1322389_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.314964", - "last_seen": "2025-06-01T22:05:52.313306", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.292764, - 51.488285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.9, - "qmprice": 47.1, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161953058", - "info": { - "identifier": 161953058, - "sqm_ocr": 75.9, - "price": 3575.0, - "price_per_sqm": 47.10144927536231, - "url": "https://www.rightmove.co.uk/properties/161953058", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80905/161953058/80905_BSL210093_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.622068", - "last_seen": "2025-06-01T22:06:16.030133", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131613, - 51.51202 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161953076", - "info": { - "identifier": 161953076, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161953076", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Samuel Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252779/161953076/252779_50867_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.191353", - "last_seen": "2025-06-01T22:06:00.190918", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120224, - 51.43405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.9, - "qmprice": 38.93, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161953088", - "info": { - "identifier": 161953088, - "sqm_ocr": 89.9, - "price": 3500.0, - "price_per_sqm": 38.9321468298109, - "url": "https://www.rightmove.co.uk/properties/161953088", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Fraser & Co", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16917/161953088/16917_CHS140122_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.778086", - "last_seen": "2025-06-01T22:05:49.476155", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224918, - 51.487785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.76, - "qmprice": 51.02, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161953157", - "info": { - "identifier": 161953157, - "sqm_ocr": 60.76, - "price": 3100.0, - "price_per_sqm": 51.02040816326531, - "url": "https://www.rightmove.co.uk/properties/161953157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44510/161953157/44510_HYL080275_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.188811", - "last_seen": "2025-06-01T22:06:15.612884", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181436, - 51.51559 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.04, - "qmprice": 35.14, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/161953307", - "info": { - "identifier": 161953307, - "sqm_ocr": 61.04, - "price": 2145.0, - "price_per_sqm": 35.14089121887287, - "url": "https://www.rightmove.co.uk/properties/161953307", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Heathgate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51753/161953307/51753_83225_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.394304", - "last_seen": "2025-06-01T22:05:39.043301", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178677, - 51.59025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.6, - "qmprice": 38.79, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161953622", - "info": { - "identifier": 161953622, - "sqm_ocr": 69.6, - "price": 2700.0, - "price_per_sqm": 38.793103448275865, - "url": "https://www.rightmove.co.uk/properties/161953622", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/161953622/52887_33884453_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.612542", - "last_seen": "2025-06-01T22:06:01.646761", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203327, - 51.419296 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161953631", - "info": { - "identifier": 161953631, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161953631", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161953631/96668_247983111052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.143703", - "last_seen": "2025-06-01T22:05:39.525024", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196259, - 51.574028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.68, - "qmprice": 50.2, - "rooms": 2, - "total_price": 2745.0, - "url": "https://www.rightmove.co.uk/properties/161953685", - "info": { - "identifier": 161953685, - "sqm_ocr": 54.68, - "price": 2745.0, - "price_per_sqm": 50.201170446232624, - "url": "https://www.rightmove.co.uk/properties/161953685", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161953685/96668_248401314052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.337493", - "last_seen": "2025-06-01T22:05:49.300301", - "price": 2745.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195888, - 51.479862 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.7, - "qmprice": 45.65, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161954153", - "info": { - "identifier": 161954153, - "sqm_ocr": 65.7, - "price": 2999.0, - "price_per_sqm": 45.6468797564688, - "url": "https://www.rightmove.co.uk/properties/161954153", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84830/161954153/84830_33884472_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.178134", - "last_seen": "2025-06-01T22:05:58.378468", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199625, - 51.492546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.8, - "qmprice": 34.6, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161954162", - "info": { - "identifier": 161954162, - "sqm_ocr": 57.8, - "price": 2000.0, - "price_per_sqm": 34.602076124567475, - "url": "https://www.rightmove.co.uk/properties/161954162", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84803/161954162/84803_33884474_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.335757", - "last_seen": "2025-06-01T22:06:04.758344", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.239366, - 51.46544 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.58, - "qmprice": 39.65, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161954294", - "info": { - "identifier": 161954294, - "sqm_ocr": 65.58, - "price": 2600.0, - "price_per_sqm": 39.64623360780726, - "url": "https://www.rightmove.co.uk/properties/161954294", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/161954294/80340_a1G4J00000262r8UAA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.633597", - "last_seen": "2025-06-01T22:05:59.816545", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12724, - 51.47834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.45, - "qmprice": 49.52, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/161954453", - "info": { - "identifier": 161954453, - "sqm_ocr": 63.45, - "price": 3142.0, - "price_per_sqm": 49.51930654058314, - "url": "https://www.rightmove.co.uk/properties/161954453", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "White Estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55629/161954453/55629_33884478_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.441319", - "last_seen": "2025-06-01T22:05:57.896684", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184025, - 51.490303 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161954918", - "info": { - "identifier": 161954918, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161954918", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66768/161954918/66768_1326343_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.160897", - "last_seen": "2025-06-01T22:06:05.829606", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068442, - 51.446358 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 36.21, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161954921", - "info": { - "identifier": 161954921, - "sqm_ocr": 58.0, - "price": 2100.0, - "price_per_sqm": 36.206896551724135, - "url": "https://www.rightmove.co.uk/properties/161954921", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66768/161954921/66768_1324612_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.112101", - "last_seen": "2025-06-01T22:06:05.809665", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077539, - 51.4874 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161955005", - "info": { - "identifier": 161955005, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161955005", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Century 21 Goodmayes", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279887/161955005/279887_R210342_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.919505", - "last_seen": "2025-06-01T22:06:03.791081", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.09766, - 51.55871 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 50.35, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161955149", - "info": { - "identifier": 161955149, - "sqm_ocr": 71.0, - "price": 3575.0, - "price_per_sqm": 50.352112676056336, - "url": "https://www.rightmove.co.uk/properties/161955149", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greater London Properties", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6474/161955149/6474_GRT_SH_LFSYCL_252_40097513_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.418988", - "last_seen": "2025-06-01T22:06:15.233454", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131588, - 51.51202 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161955473", - "info": { - "identifier": 161955473, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161955473", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161955473/96668_247443106052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.979271", - "last_seen": "2025-06-01T22:06:09.092407", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018193, - 51.49778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 34.92, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161955617", - "info": { - "identifier": 161955617, - "sqm_ocr": 63.0, - "price": 2200.0, - "price_per_sqm": 34.92063492063492, - "url": "https://www.rightmove.co.uk/properties/161955617", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Core London Property Advisors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266807/161955617/266807_RX581582_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.998963", - "last_seen": "2025-06-01T22:05:44.333482", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290804, - 51.505943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.56, - "qmprice": 36.39, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161955728", - "info": { - "identifier": 161955728, - "sqm_ocr": 75.56, - "price": 2750.0, - "price_per_sqm": 36.394917946003176, - "url": "https://www.rightmove.co.uk/properties/161955728", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/161955728/238265_L7020_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.156901", - "last_seen": "2025-06-01T22:05:58.400711", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222205, - 51.517185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.15, - "qmprice": 46.9, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161955791", - "info": { - "identifier": 161955791, - "sqm_ocr": 83.15, - "price": 3900.0, - "price_per_sqm": 46.90318701142513, - "url": "https://www.rightmove.co.uk/properties/161955791", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/161955791/97423_CEI241748_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.541199", - "last_seen": "2025-06-01T20:19:57.132073", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06894, - 51.51467 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161956415", - "info": { - "identifier": 161956415, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161956415", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161956415/96668_234600109012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.666042", - "last_seen": "2025-06-01T22:05:58.948203", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.311264, - 51.38687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161956484", - "info": { - "identifier": 161956484, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161956484", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161956484/96668_248428214052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.958967", - "last_seen": "2025-06-01T22:06:07.483543", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.000532, - 51.540157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.3, - "qmprice": 30.41, - "rooms": 2, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/161956619", - "info": { - "identifier": 161956619, - "sqm_ocr": 100.3, - "price": 3050.0, - "price_per_sqm": 30.40877367896311, - "url": "https://www.rightmove.co.uk/properties/161956619", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Akelius Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102505/161956619/102505_40006-27_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.726685", - "last_seen": "2025-06-01T22:06:12.370400", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14925, - 51.45046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 57.63, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161956682", - "info": { - "identifier": 161956682, - "sqm_ocr": 59.0, - "price": 3400.0, - "price_per_sqm": 57.6271186440678, - "url": "https://www.rightmove.co.uk/properties/161956682", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Akelius Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102505/161956682/102505_40013-19_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.516775", - "last_seen": "2025-06-01T22:05:59.071090", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10309, - 51.47733 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/161957186", - "info": { - "identifier": 161957186, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161957186", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Fortess Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271826/161957186/271826_RL0489_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.049589", - "last_seen": "2025-06-01T22:05:53.828011", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121934, - 51.55983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161957249", - "info": { - "identifier": 161957249, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161957249", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Ivy & Stone", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274640/161957249/274640_VYS_VYS_LFSYCL_939_1084421226_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.906048", - "last_seen": "2025-06-01T22:06:03.824091", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.093917, - 51.561687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.94, - "qmprice": 33.76, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161957534", - "info": { - "identifier": 161957534, - "sqm_ocr": 82.94, - "price": 2800.0, - "price_per_sqm": 33.75934410417169, - "url": "https://www.rightmove.co.uk/properties/161957534", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161957534/96668_234798310012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.170885", - "last_seen": "2025-06-01T22:06:00.205313", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100497, - 51.44073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161957552", - "info": { - "identifier": 161957552, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161957552", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161957552/96668_248396214052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.509031", - "last_seen": "2025-06-01T22:05:50.189316", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063719, - 51.596638 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161957753", - "info": { - "identifier": 161957753, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161957753", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Jonathan Arron Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69315/161957753/69315_JOW250080_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.945836", - "last_seen": "2025-06-01T22:06:14.625240", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162587, - 51.525997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161957945", - "info": { - "identifier": 161957945, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161957945", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "VC ESTATES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267989/161957945/267989_YKR-20647971_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.307243", - "last_seen": "2025-06-01T22:05:41.711994", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.057321, - 51.364883 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161958008", - "info": { - "identifier": 161958008, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161958008", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161958008/96668_248419214052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.004821", - "last_seen": "2025-06-01T22:05:38.241943", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.128008, - 51.53442 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161958419", - "info": { - "identifier": 161958419, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161958419", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161958419/96668_248431514052025_IMG_27_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.925016", - "last_seen": "2025-06-01T22:05:57.020385", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162006, - 51.628933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161958437", - "info": { - "identifier": 161958437, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161958437", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161958437/96668_235163114012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.971938", - "last_seen": "2025-06-01T17:39:00.571229", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.082939, - 51.59459 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.0, - "qmprice": 24.82, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/161958620", - "info": { - "identifier": 161958620, - "sqm_ocr": 96.0, - "price": 2383.0, - "price_per_sqm": 24.822916666666668, - "url": "https://www.rightmove.co.uk/properties/161958620", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "AbbeySpring", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285695/161958620/285695_RL03373_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.068669", - "last_seen": "2025-06-01T22:06:03.366045", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.014196, - 51.524895 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161960435", - "info": { - "identifier": 161960435, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161960435", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32895/161960435/32895_SHL250044_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.805889", - "last_seen": "2025-06-01T22:06:12.227041", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212539, - 51.438976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161960597", - "info": { - "identifier": 161960597, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161960597", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161960597/96668_248343214052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.142733", - "last_seen": "2025-06-01T22:05:57.184715", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014904, - 51.478695 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.72, - "qmprice": 32.77, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161960900", - "info": { - "identifier": 161960900, - "sqm_ocr": 71.72, - "price": 2350.0, - "price_per_sqm": 32.766313441160065, - "url": "https://www.rightmove.co.uk/properties/161960900", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/161960900/272819_33884621_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.778111", - "last_seen": "2025-06-01T22:05:49.850501", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112478, - 51.59183 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.1, - "qmprice": 27.52, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161961674", - "info": { - "identifier": 161961674, - "sqm_ocr": 98.1, - "price": 2700.0, - "price_per_sqm": 27.522935779816514, - "url": "https://www.rightmove.co.uk/properties/161961674", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Rockley Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287891/161961674/287891_RollGardens_IMG_29_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.782876", - "last_seen": "2025-06-01T22:06:03.850069", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06593, - 51.57825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.9, - "qmprice": 36.67, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161962247", - "info": { - "identifier": 161962247, - "sqm_ocr": 70.9, - "price": 2600.0, - "price_per_sqm": 36.67136812411847, - "url": "https://www.rightmove.co.uk/properties/161962247", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/161962247/107533_1322740_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.060524", - "last_seen": "2025-06-01T22:06:00.281980", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037849, - 51.49065 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.4, - "qmprice": 63.18, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161962352", - "info": { - "identifier": 161962352, - "sqm_ocr": 55.4, - "price": 3500.0, - "price_per_sqm": 63.17689530685921, - "url": "https://www.rightmove.co.uk/properties/161962352", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/161962352/111050_1326433_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.403451", - "last_seen": "2025-06-01T22:06:13.132403", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143306, - 51.423073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3125.0, - "url": "https://www.rightmove.co.uk/properties/161962418", - "info": { - "identifier": 161962418, - "sqm_ocr": null, - "price": 3125.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161962418", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/161962418/80340_a1G4J000002607PUAQ_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.012435", - "last_seen": "2025-06-01T22:06:03.459619", - "price": 3125.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0339, - 51.50206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 37.5, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161962580", - "info": { - "identifier": 161962580, - "sqm_ocr": 88.0, - "price": 3300.0, - "price_per_sqm": 37.5, - "url": "https://www.rightmove.co.uk/properties/161962580", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237731/161962580/237731_a1GNz0000054KgQMAU_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.835830", - "last_seen": "2025-06-01T22:05:50.051298", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05496, - 51.58901 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.4, - "qmprice": 29.7, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161963108", - "info": { - "identifier": 161963108, - "sqm_ocr": 72.4, - "price": 2150.0, - "price_per_sqm": 29.696132596685082, - "url": "https://www.rightmove.co.uk/properties/161963108", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Docklands Prestige Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101404/161963108/101404_653094_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.931373", - "last_seen": "2025-06-01T22:06:10.185457", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00235, - 51.513115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161963195", - "info": { - "identifier": 161963195, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161963195", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Accommodation.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78006/161963195/78006_3934434877-2025-05-15_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.768640", - "last_seen": "2025-06-01T22:06:11.878218", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.002728, - 51.607586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3204.0, - "url": "https://www.rightmove.co.uk/properties/161963510", - "info": { - "identifier": 161963510, - "sqm_ocr": null, - "price": 3204.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161963510", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/161963510/253604_100H1505_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.085903", - "last_seen": "2025-06-01T22:06:07.695352", - "price": 3204.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00768, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 34.18, - "rooms": 2, - "total_price": 2427.0, - "url": "https://www.rightmove.co.uk/properties/161964065", - "info": { - "identifier": 161964065, - "sqm_ocr": 71.0, - "price": 2427.0, - "price_per_sqm": 34.183098591549296, - "url": "https://www.rightmove.co.uk/properties/161964065", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/161964065/80796_775_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.097724", - "last_seen": "2025-06-01T22:05:59.540550", - "price": 2426 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13329, - 51.47134 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.0, - "qmprice": 29.26, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161964539", - "info": { - "identifier": 161964539, - "sqm_ocr": 94.0, - "price": 2750.0, - "price_per_sqm": 29.25531914893617, - "url": "https://www.rightmove.co.uk/properties/161964539", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12698/161964539/12698_TWL250038_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.946896", - "last_seen": "2025-06-01T22:05:52.085658", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35092, - 51.46165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/161964545", - "info": { - "identifier": 161964545, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161964545", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50074/161964545/50074_P300678_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.646497", - "last_seen": "2025-06-01T22:05:48.507700", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22098, - 51.51173 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161964644", - "info": { - "identifier": 161964644, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161964644", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14614/161964644/14614_BLA250037_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.379052", - "last_seen": "2025-06-01T22:05:46.968027", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.036596, - 51.481926 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3879.0, - "url": "https://www.rightmove.co.uk/properties/161964959", - "info": { - "identifier": 161964959, - "sqm_ocr": null, - "price": 3879.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161964959", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/161964959/272819_33884837_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.209690", - "last_seen": "2025-06-01T22:06:10.078637", - "price": 3879.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027756, - 51.507206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.6, - "qmprice": 31.6, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161965001", - "info": { - "identifier": 161965001, - "sqm_ocr": 88.6, - "price": 2800.0, - "price_per_sqm": 31.60270880361174, - "url": "https://www.rightmove.co.uk/properties/161965001", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35969/161965001/35969_06910674_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.615130", - "last_seen": "2025-06-01T22:05:38.766144", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201, - 51.597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161965190", - "info": { - "identifier": 161965190, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161965190", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Conran Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17516/161965190/17516_CHA250102_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.296375", - "last_seen": "2025-06-01T22:05:46.495695", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.045325, - 51.471622 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161965457", - "info": { - "identifier": 161965457, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161965457", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Conran Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17516/161965457/17516_LET250076_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.770599", - "last_seen": "2025-06-01T22:05:46.785836", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.045325, - 51.471622 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3944.0, - "url": "https://www.rightmove.co.uk/properties/161965583", - "info": { - "identifier": 161965583, - "sqm_ocr": null, - "price": 3944.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161965583", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/161965583/272819_33884896_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.395354", - "last_seen": "2025-06-01T22:06:08.393695", - "price": 3944.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027756, - 51.507206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.6, - "qmprice": 38.88, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161966054", - "info": { - "identifier": 161966054, - "sqm_ocr": 83.6, - "price": 3250.0, - "price_per_sqm": 38.875598086124405, - "url": "https://www.rightmove.co.uk/properties/161966054", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/161966054/84866_33884943_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.739471", - "last_seen": "2025-06-01T22:05:44.625271", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269919, - 51.496563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.5, - "qmprice": 46.71, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161966132", - "info": { - "identifier": 161966132, - "sqm_ocr": 83.5, - "price": 3900.0, - "price_per_sqm": 46.706586826347305, - "url": "https://www.rightmove.co.uk/properties/161966132", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Fraser & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163088/161966132/163088_COL220026_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "24/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.741432", - "last_seen": "2025-06-01T20:19:58.741432", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01739, - 51.50091 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 41.8, - "qmprice": 47.85, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161966372", - "info": { - "identifier": 161966372, - "sqm_ocr": 41.8, - "price": 2000.0, - "price_per_sqm": 47.84688995215311, - "url": "https://www.rightmove.co.uk/properties/161966372", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Carringtons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/2k/1541/161966372/1541_CAR210125_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.615851", - "last_seen": "2025-06-01T22:05:58.574974", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29124, - 51.42597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3965.0, - "url": "https://www.rightmove.co.uk/properties/161966420", - "info": { - "identifier": 161966420, - "sqm_ocr": null, - "price": 3965.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161966420", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/161966420/272819_33884983_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.645894", - "last_seen": "2025-06-01T20:19:57.776886", - "price": 3965.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027756, - 51.507206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.38, - "qmprice": 38.24, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161966591", - "info": { - "identifier": 161966591, - "sqm_ocr": 65.38, - "price": 2500.0, - "price_per_sqm": 38.237993270113186, - "url": "https://www.rightmove.co.uk/properties/161966591", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118693/161966591/118693_33885009_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.080477", - "last_seen": "2025-06-01T22:05:53.885898", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108032, - 51.533707 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.4, - "qmprice": 35.49, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161966681", - "info": { - "identifier": 161966681, - "sqm_ocr": 63.4, - "price": 2250.0, - "price_per_sqm": 35.488958990536275, - "url": "https://www.rightmove.co.uk/properties/161966681", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Conran Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17519/161966681/17519_LET250079_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.544627", - "last_seen": "2025-06-01T22:05:46.162201", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017391, - 51.481518 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.36, - "qmprice": 39.56, - "rooms": 3, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/161967107", - "info": { - "identifier": 161967107, - "sqm_ocr": 90.36, - "price": 3575.0, - "price_per_sqm": 39.56396635679504, - "url": "https://www.rightmove.co.uk/properties/161967107", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cedar Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79883/161967107/79883_3567_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.737322", - "last_seen": "2025-06-01T22:05:43.193880", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20216, - 51.54723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.2, - "qmprice": 46.57, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161967113", - "info": { - "identifier": 161967113, - "sqm_ocr": 61.2, - "price": 2850.0, - "price_per_sqm": 46.56862745098039, - "url": "https://www.rightmove.co.uk/properties/161967113", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84806/161967113/84806_33885075_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.270621", - "last_seen": "2025-06-01T22:06:04.813746", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.294926, - 51.460197 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.8, - "qmprice": 53.44, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/161967296", - "info": { - "identifier": 161967296, - "sqm_ocr": 58.8, - "price": 3142.0, - "price_per_sqm": 53.435374149659864, - "url": "https://www.rightmove.co.uk/properties/161967296", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/161967296/15954_1326335_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.179653", - "last_seen": "2025-06-01T22:05:54.065508", - "price": 3142.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102461, - 51.55869 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161967347", - "info": { - "identifier": 161967347, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161967347", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Choices", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117484/161967347/117484_LND210258_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.436353", - "last_seen": "2025-06-01T22:06:08.284251", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020908, - 51.512928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161967473", - "info": { - "identifier": 161967473, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161967473", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161967473/257522_006-grace-RUwfzt_IMG_00_0000_max_656x437.png", - "let_date_available": "01/11/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.436569", - "last_seen": "2025-06-01T22:05:40.518132", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28346, - 51.54053 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.24, - "qmprice": 34.31, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161967707", - "info": { - "identifier": 161967707, - "sqm_ocr": 85.24, - "price": 2925.0, - "price_per_sqm": 34.31487564523698, - "url": "https://www.rightmove.co.uk/properties/161967707", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Garrett Whitelock", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105305/161967707/105305_101341000032_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.767960", - "last_seen": "2025-06-01T22:06:05.426860", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07854, - 51.49984 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.48, - "qmprice": 28.74, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161967770", - "info": { - "identifier": 161967770, - "sqm_ocr": 90.48, - "price": 2600.0, - "price_per_sqm": 28.735632183908045, - "url": "https://www.rightmove.co.uk/properties/161967770", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49922/161967770/49922_CEL230031_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.104228", - "last_seen": "2025-06-01T22:06:08.895079", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017047, - 51.48689 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161967917", - "info": { - "identifier": 161967917, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161967917", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Property Company", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76256/161967917/76256_LET010098_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.451335", - "last_seen": "2025-06-01T22:05:53.173938", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127754, - 51.564312 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.84, - "qmprice": 29.75, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161969135", - "info": { - "identifier": 161969135, - "sqm_ocr": 100.84, - "price": 3000.0, - "price_per_sqm": 29.750099166997224, - "url": "https://www.rightmove.co.uk/properties/161969135", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/146k/145463/161969135/145463_WLS210008_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.804340", - "last_seen": "2025-06-01T22:06:12.231490", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190884, - 51.458946 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.8, - "qmprice": 35.83, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161970485", - "info": { - "identifier": 161970485, - "sqm_ocr": 62.8, - "price": 2250.0, - "price_per_sqm": 35.82802547770701, - "url": "https://www.rightmove.co.uk/properties/161970485", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60770/161970485/60770_P1389M1121_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.457065", - "last_seen": "2025-06-01T22:05:59.144451", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13312, - 51.47196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161971178", - "info": { - "identifier": 161971178, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161971178", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Gascoigne-Pees Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5145/161971178/5145_000909908_IMG_00_0000_max_656x437.png", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.787915", - "last_seen": "2025-06-01T22:05:58.504060", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27476, - 51.40444 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161971322", - "info": { - "identifier": 161971322, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161971322", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Excel Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99425/161971322/99425_102708042627_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.682590", - "last_seen": "2025-06-01T22:06:15.990140", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20148, - 51.53148 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161971340", - "info": { - "identifier": 161971340, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161971340", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Harry Charles Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14057/161971340/14057_33885349_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.810919", - "last_seen": "2025-06-01T22:05:43.120676", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165799, - 51.549824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.3, - "qmprice": 51.41, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161972030", - "info": { - "identifier": 161972030, - "sqm_ocr": 60.3, - "price": 3100.0, - "price_per_sqm": 51.40961857379768, - "url": "https://www.rightmove.co.uk/properties/161972030", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/161972030/84889_1326402_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.530693", - "last_seen": "2025-06-01T22:06:16.126869", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14526, - 51.492718 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.5, - "qmprice": 49.56, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161972045", - "info": { - "identifier": 161972045, - "sqm_ocr": 56.5, - "price": 2800.0, - "price_per_sqm": 49.557522123893804, - "url": "https://www.rightmove.co.uk/properties/161972045", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/161972045/84889_1326229_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.441864", - "last_seen": "2025-06-01T22:06:15.360083", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129517, - 51.491512 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161972048", - "info": { - "identifier": 161972048, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161972048", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117766/161972048/117766_BBL250040_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.170656", - "last_seen": "2025-06-01T22:06:13.314053", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149006, - 51.47626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.8, - "qmprice": 32.41, - "rooms": 2, - "total_price": 2230.0, - "url": "https://www.rightmove.co.uk/properties/161972201", - "info": { - "identifier": 161972201, - "sqm_ocr": 68.8, - "price": 2230.0, - "price_per_sqm": 32.41279069767442, - "url": "https://www.rightmove.co.uk/properties/161972201", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/161972201/63031_HEA255834_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.137620", - "last_seen": "2025-06-01T22:05:42.022147", - "price": 2230.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132369, - 51.5433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161972216", - "info": { - "identifier": 161972216, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161972216", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68064/161972216/68064_CSZ211066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.450945", - "last_seen": "2025-06-01T22:05:59.157469", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119301, - 51.461098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.2, - "qmprice": 25.58, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161972237", - "info": { - "identifier": 161972237, - "sqm_ocr": 78.2, - "price": 2000.0, - "price_per_sqm": 25.57544757033248, - "url": "https://www.rightmove.co.uk/properties/161972237", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/161972237/250739_1326454_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.105332", - "last_seen": "2025-06-01T22:05:50.256837", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.309636, - 51.6173 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/161972282", - "info": { - "identifier": 161972282, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161972282", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Empire Chase Estate Agent", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.987348", - "last_seen": "2025-06-01T22:05:40.141853", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29683, - 51.56474 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161972360", - "info": { - "identifier": 161972360, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161972360", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Prime Residential Property Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244076/161972360/244076_LND250012_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.017996", - "last_seen": "2025-06-01T22:06:05.595812", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102058, - 51.49596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161972468", - "info": { - "identifier": 161972468, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161972468", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Residential Links", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289685/161972468/289685_289685-70067_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.238138", - "last_seen": "2025-06-01T22:06:00.100832", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10179, - 51.468117 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161972672", - "info": { - "identifier": 161972672, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161972672", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "James Kei London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79893/161972672/79893_RL0412_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.662420", - "last_seen": "2025-06-01T22:05:38.669918", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.249564, - 51.594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161972696", - "info": { - "identifier": 161972696, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161972696", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Romans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156068/161972696/156068_UXC240091_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.548285", - "last_seen": "2025-06-01T22:05:51.193171", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.486, - 51.5388 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161972741", - "info": { - "identifier": 161972741, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161972741", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Poplar HARCA", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272039/161972741/272039_WH606_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.306257", - "last_seen": "2025-06-01T22:06:07.949567", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00174, - 51.51287 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161972777", - "info": { - "identifier": 161972777, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161972777", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Move Inn Estates Iver", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113317/161972777/113317_33885430_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.647895", - "last_seen": "2025-06-01T22:05:44.523373", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375177, - 51.505424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 33.61, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161972837", - "info": { - "identifier": 161972837, - "sqm_ocr": 61.0, - "price": 2050.0, - "price_per_sqm": 33.60655737704918, - "url": "https://www.rightmove.co.uk/properties/161972837", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Oliver Jaques", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6843/161972837/6843_4a9d35e8-d199-4117-8964-56ae4c4c7178_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.143807", - "last_seen": "2025-06-01T22:05:46.122559", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016551, - 51.479313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.2, - "qmprice": 49.24, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161973065", - "info": { - "identifier": 161973065, - "sqm_ocr": 79.2, - "price": 3900.0, - "price_per_sqm": 49.24242424242424, - "url": "https://www.rightmove.co.uk/properties/161973065", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/161973065/212327_P158374_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.360837", - "last_seen": "2025-06-01T22:06:09.546951", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02553, - 51.50266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161973170", - "info": { - "identifier": 161973170, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161973170", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CROWN LUXURY HOMES LIMITED", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267257/161973170/267257_33885459_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.026561", - "last_seen": "2025-06-01T22:05:48.013032", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088976, - 51.57216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2851.0, - "url": "https://www.rightmove.co.uk/properties/161973215", - "info": { - "identifier": 161973215, - "sqm_ocr": null, - "price": 2851.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161973215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "JS Estate Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264161/161973215/264161_704956_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.448498", - "last_seen": "2025-06-01T22:06:06.383053", - "price": 2851 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09745, - 51.49171 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.87, - "qmprice": 29.39, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161973479", - "info": { - "identifier": 161973479, - "sqm_ocr": 91.87, - "price": 2700.0, - "price_per_sqm": 29.38935452269511, - "url": "https://www.rightmove.co.uk/properties/161973479", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/161973479/51286_CLL250145_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.958624", - "last_seen": "2025-06-01T22:05:52.102936", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27193, - 51.492992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.9, - "qmprice": 46.21, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/161974271", - "info": { - "identifier": 161974271, - "sqm_ocr": 64.9, - "price": 2999.0, - "price_per_sqm": 46.209553158705695, - "url": "https://www.rightmove.co.uk/properties/161974271", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50713/161974271/50713_33885504_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.141814", - "last_seen": "2025-06-01T22:05:58.418853", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199393, - 51.512497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161975732", - "info": { - "identifier": 161975732, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161975732", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Harry Harper Sales & Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77918/161975732/77918_33885546_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.800457", - "last_seen": "2025-06-01T22:06:07.752709", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215656, - 51.37195 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161976041", - "info": { - "identifier": 161976041, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161976041", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Move Inn Estates Iver", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113317/161976041/113317_33885556_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.185667", - "last_seen": "2025-06-01T22:05:45.288863", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375177, - 51.505424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161976341", - "info": { - "identifier": 161976341, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161976341", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Next Step Estates (South West) Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/185k/184157/161976341/184157_NEX1001078_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.295193", - "last_seen": "2025-06-01T22:06:01.313769", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158481, - 51.416546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161976620", - "info": { - "identifier": 161976620, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161976620", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Move Inn Estates Iver", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113317/161976620/113317_33885566_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.859791", - "last_seen": "2025-06-01T22:05:44.972061", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375177, - 51.505424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.1, - "qmprice": 50.83, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161976731", - "info": { - "identifier": 161976731, - "sqm_ocr": 54.1, - "price": 2750.0, - "price_per_sqm": 50.83179297597042, - "url": "https://www.rightmove.co.uk/properties/161976731", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Storeys", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176102/161976731/176102_33885572_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.201219", - "last_seen": "2025-06-01T22:05:56.864977", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119018, - 51.52957 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161976761", - "info": { - "identifier": 161976761, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161976761", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161976761/96668_244754810042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.009614", - "last_seen": "2025-06-01T22:05:40.107892", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295771, - 51.55164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161976773", - "info": { - "identifier": 161976773, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161976773", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161976773/96668_244789310042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.385585", - "last_seen": "2025-06-01T22:05:57.417932", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209623, - 51.49859 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161977274", - "info": { - "identifier": 161977274, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161977274", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Gascoigne-Pees Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5145/161977274/5145_000909912_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.809202", - "last_seen": "2025-06-01T22:05:58.775403", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29435, - 51.41903 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161977277", - "info": { - "identifier": 161977277, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161977277", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161977277/96668_247760309052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.087888", - "last_seen": "2025-06-01T22:06:00.779770", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.049555, - 51.43636 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/161977388", - "info": { - "identifier": 161977388, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161977388", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161977388/96668_248228513052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.744416", - "last_seen": "2025-06-01T22:06:11.613678", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.001489, - 51.56673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.8, - "qmprice": 35.91, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161977430", - "info": { - "identifier": 161977430, - "sqm_ocr": 73.8, - "price": 2650.0, - "price_per_sqm": 35.90785907859079, - "url": "https://www.rightmove.co.uk/properties/161977430", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118693/161977430/118693_33885595_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.627304", - "last_seen": "2025-06-01T22:05:53.566050", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118032, - 51.543365 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.7, - "qmprice": 48.71, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161977538", - "info": { - "identifier": 161977538, - "sqm_ocr": 65.7, - "price": 3200.0, - "price_per_sqm": 48.7062404870624, - "url": "https://www.rightmove.co.uk/properties/161977538", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161977538/96668_248447915052025_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.883628", - "last_seen": "2025-06-01T22:06:15.891724", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131698, - 51.49525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161977580", - "info": { - "identifier": 161977580, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161977580", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161977580/96668_248441914052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.368272", - "last_seen": "2025-06-01T22:05:50.042809", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09253, - 51.60256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161977700", - "info": { - "identifier": 161977700, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161977700", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161977700/96668_245901122042025_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.714254", - "last_seen": "2025-06-01T22:05:59.889391", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10806, - 51.480484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 57.38, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161977796", - "info": { - "identifier": 161977796, - "sqm_ocr": 61.0, - "price": 3500.0, - "price_per_sqm": 57.377049180327866, - "url": "https://www.rightmove.co.uk/properties/161977796", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Harvey W James", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/224k/223658/161977796/223658_a7d9fbc8-8386-4353-ba14-1bba9234e451_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.177343", - "last_seen": "2025-06-01T22:05:54.044409", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09479, - 51.528706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161977817", - "info": { - "identifier": 161977817, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161977817", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "UK Investment Property Services", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74980/161977817/74980_RL0142_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.936492", - "last_seen": "2025-06-01T22:05:40.215969", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283875, - 51.559433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.1, - "qmprice": 36.43, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161977847", - "info": { - "identifier": 161977847, - "sqm_ocr": 85.1, - "price": 3100.0, - "price_per_sqm": 36.427732079905994, - "url": "https://www.rightmove.co.uk/properties/161977847", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/161977847/84875_33885613_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.483667", - "last_seen": "2025-06-01T22:05:59.110114", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125026, - 51.46721 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161978426", - "info": { - "identifier": 161978426, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161978426", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Reeds Rains", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46503/161978426/46503_PLA250122_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.165719", - "last_seen": "2025-06-01T22:06:02.415415", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.024117, - 51.522884 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161978429", - "info": { - "identifier": 161978429, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161978429", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Reeds Rains", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46503/161978429/46503_PLA250131_L_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.033603", - "last_seen": "2025-06-01T22:05:38.220501", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.159396, - 51.530876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.5, - "qmprice": 28.99, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161978870", - "info": { - "identifier": 161978870, - "sqm_ocr": 103.5, - "price": 3000.0, - "price_per_sqm": 28.985507246376812, - "url": "https://www.rightmove.co.uk/properties/161978870", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Bryan Maher", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222935/161978870/222935_33885678_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.116546", - "last_seen": "2025-06-01T22:05:39.486093", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.268055, - 51.61018 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161978975", - "info": { - "identifier": 161978975, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161978975", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206645/161978975/206645_33885690_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.096772", - "last_seen": "2025-06-01T22:05:50.275894", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.380069, - 51.581005 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2253.0, - "url": "https://www.rightmove.co.uk/properties/161979038", - "info": { - "identifier": 161979038, - "sqm_ocr": null, - "price": 2253.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161979038", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/161979038/17882_39424_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.826268", - "last_seen": "2025-06-01T22:05:50.019827", - "price": 2253 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1064, - 51.58871 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/161979284", - "info": { - "identifier": 161979284, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161979284", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/161979284/17888_35129_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.629553", - "last_seen": "2025-06-01T22:05:42.366964", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13648, - 51.53793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 41.03, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/161979299", - "info": { - "identifier": 161979299, - "sqm_ocr": 78.0, - "price": 3200.0, - "price_per_sqm": 41.02564102564103, - "url": "https://www.rightmove.co.uk/properties/161979299", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68504/161979299/68504_HKR250032_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.936120", - "last_seen": "2025-06-01T22:05:47.491626", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066067, - 51.55566 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.53, - "qmprice": 36.68, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161979437", - "info": { - "identifier": 161979437, - "sqm_ocr": 54.53, - "price": 2000.0, - "price_per_sqm": 36.677058499908306, - "url": "https://www.rightmove.co.uk/properties/161979437", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "PG Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107294/161979437/107294_685_PGES_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.660963", - "last_seen": "2025-06-01T22:05:53.696467", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11987, - 51.54704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/161979470", - "info": { - "identifier": 161979470, - "sqm_ocr": null, - "price": 2925.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161979470", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120061/161979470/120061_SRL200155_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.480667", - "last_seen": "2025-06-01T22:06:10.480667", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065335, - 51.518257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.6, - "qmprice": 35.39, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161979506", - "info": { - "identifier": 161979506, - "sqm_ocr": 79.6, - "price": 2817.0, - "price_per_sqm": 35.38944723618091, - "url": "https://www.rightmove.co.uk/properties/161979506", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/161979506/212327_P160902_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.684933", - "last_seen": "2025-06-01T22:06:03.169762", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00608, - 51.51382 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/161979968", - "info": { - "identifier": 161979968, - "sqm_ocr": null, - "price": 3597.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161979968", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/161979968/181787_181787_585_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.427959", - "last_seen": "2025-06-01T22:06:06.361686", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07978, - 51.4872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 127.0, - "qmprice": 22.83, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161980256", - "info": { - "identifier": 161980256, - "sqm_ocr": 127.0, - "price": 2900.0, - "price_per_sqm": 22.834645669291337, - "url": "https://www.rightmove.co.uk/properties/161980256", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83027/161980256/83027_33885783_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.090558", - "last_seen": "2025-06-01T22:05:52.532388", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269501, - 51.480564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161980502", - "info": { - "identifier": 161980502, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161980502", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/161980502/51286_HEA731127_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.588552", - "last_seen": "2025-06-01T22:05:56.293015", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.271406, - 51.497158 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 31.75, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161980508", - "info": { - "identifier": 161980508, - "sqm_ocr": 69.3, - "price": 2200.0, - "price_per_sqm": 31.746031746031747, - "url": "https://www.rightmove.co.uk/properties/161980508", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "jdm", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250727/161980508/250727_LGW250061_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.043316", - "last_seen": "2025-06-01T22:06:00.336133", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013729, - 51.471188 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161980784", - "info": { - "identifier": 161980784, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161980784", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cranbrook Lettings & Sales", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/237k/236963/161980784/236963_cranbrook_1873050722_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.827337", - "last_seen": "2025-06-01T22:06:04.167650", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.050093, - 51.58142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.4, - "qmprice": 30.8, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161980937", - "info": { - "identifier": 161980937, - "sqm_ocr": 97.4, - "price": 3000.0, - "price_per_sqm": 30.80082135523614, - "url": "https://www.rightmove.co.uk/properties/161980937", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Williamson Dace Brown", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57296/161980937/57296_1osborne_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.912359", - "last_seen": "2025-06-01T22:06:14.692869", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17709, - 51.52121 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.8, - "qmprice": 22.15, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161981021", - "info": { - "identifier": 161981021, - "sqm_ocr": 94.8, - "price": 2100.0, - "price_per_sqm": 22.151898734177216, - "url": "https://www.rightmove.co.uk/properties/161981021", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Goodwin Ellis Property Services Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80121/161981021/80121_102269001446_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.749972", - "last_seen": "2025-06-01T22:05:46.725674", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06969, - 51.48295 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.9, - "qmprice": 36.15, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161981048", - "info": { - "identifier": 161981048, - "sqm_ocr": 89.9, - "price": 3250.0, - "price_per_sqm": 36.15127919911012, - "url": "https://www.rightmove.co.uk/properties/161981048", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Kerr and Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47967/161981048/47967_KAC1001630_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.772611", - "last_seen": "2025-06-01T22:05:44.852978", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269905, - 51.496395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161981099", - "info": { - "identifier": 161981099, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161981099", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Livermores The Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14149/161981099/14149_33885837_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.287156", - "last_seen": "2025-06-01T22:05:39.993220", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.189871, - 51.451004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161981357", - "info": { - "identifier": 161981357, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161981357", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57916/161981357/57916_KCR251787_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.429268", - "last_seen": "2025-06-01T22:05:46.914509", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017447, - 51.475735 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161981387", - "info": { - "identifier": 161981387, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161981387", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hammonds", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39003/161981387/39003_33885855_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.783833", - "last_seen": "2025-06-01T20:19:58.139550", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029786, - 51.52995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.87, - "qmprice": 45.64, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/161981618", - "info": { - "identifier": 161981618, - "sqm_ocr": 78.87, - "price": 3600.0, - "price_per_sqm": 45.64473183720045, - "url": "https://www.rightmove.co.uk/properties/161981618", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49000/161981618/49000_LHL220852_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.479558", - "last_seen": "2025-06-01T22:06:08.217118", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066049, - 51.508457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3780.0, - "url": "https://www.rightmove.co.uk/properties/161982275", - "info": { - "identifier": 161982275, - "sqm_ocr": null, - "price": 3780.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161982275", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Mayfords Estate Agent", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226394/161982275/226394_223_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.692508", - "last_seen": "2025-06-01T22:05:38.599841", - "price": 3780.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208099, - 51.58544 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.45, - "qmprice": 24.01, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161982410", - "info": { - "identifier": 161982410, - "sqm_ocr": 87.45, - "price": 2100.0, - "price_per_sqm": 24.01372212692967, - "url": "https://www.rightmove.co.uk/properties/161982410", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44610/161982410/44610_P0366L2627_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.318367", - "last_seen": "2025-06-01T22:05:58.600290", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25286, - 51.39423 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/161982752", - "info": { - "identifier": 161982752, - "sqm_ocr": null, - "price": 3597.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161982752", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Property Inside London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270212/161982752/270212_Chronicle17_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.941559", - "last_seen": "2025-06-01T22:05:52.929514", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09687, - 51.52983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.22, - "qmprice": 44.53, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161982866", - "info": { - "identifier": 161982866, - "sqm_ocr": 84.22, - "price": 3750.0, - "price_per_sqm": 44.52624079791023, - "url": "https://www.rightmove.co.uk/properties/161982866", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/161982866/63031_LRL221043_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.597666", - "last_seen": "2025-06-01T22:05:42.329030", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136172, - 51.54086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161982899", - "info": { - "identifier": 161982899, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161982899", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219908/161982899/219908_4091_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.808500", - "last_seen": "2025-06-01T22:06:02.468509", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.072576, - 51.507915 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.45, - "qmprice": 40.19, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/161983196", - "info": { - "identifier": 161983196, - "sqm_ocr": 63.45, - "price": 2550.0, - "price_per_sqm": 40.18912529550827, - "url": "https://www.rightmove.co.uk/properties/161983196", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "London Homes Property Limited", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287264/161983196/287264_ARU-583644_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.655580", - "last_seen": "2025-06-01T20:19:57.786862", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01823, - 51.49831 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161983481", - "info": { - "identifier": 161983481, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161983481", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161983481/96668_241916715032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.492434", - "last_seen": "2025-06-01T22:06:02.672896", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.018604, - 51.516582 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.4, - "qmprice": 27.91, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161983892", - "info": { - "identifier": 161983892, - "sqm_ocr": 82.4, - "price": 2300.0, - "price_per_sqm": 27.912621359223298, - "url": "https://www.rightmove.co.uk/properties/161983892", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/161983892/15969_1326504_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.509595", - "last_seen": "2025-06-01T22:05:44.004627", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.319469, - 51.51954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.8, - "qmprice": 49.41, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/161983979", - "info": { - "identifier": 161983979, - "sqm_ocr": 67.8, - "price": 3350.0, - "price_per_sqm": 49.41002949852508, - "url": "https://www.rightmove.co.uk/properties/161983979", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/161983979/253853_1326502_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.068524", - "last_seen": "2025-06-01T22:06:05.730825", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096318, - 51.491993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.7, - "qmprice": 49.18, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161984009", - "info": { - "identifier": 161984009, - "sqm_ocr": 42.7, - "price": 2100.0, - "price_per_sqm": 49.18032786885246, - "url": "https://www.rightmove.co.uk/properties/161984009", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/161984009/15948_1322126_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.979372", - "last_seen": "2025-06-01T22:05:48.344821", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19893, - 51.48028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.01, - "qmprice": 49.23, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161984195", - "info": { - "identifier": 161984195, - "sqm_ocr": 66.01, - "price": 3250.0, - "price_per_sqm": 49.23496439933343, - "url": "https://www.rightmove.co.uk/properties/161984195", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/161984195/15942_1324193_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.024737", - "last_seen": "2025-06-01T22:05:57.761350", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191124, - 51.495583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.6, - "qmprice": 34.31, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161984276", - "info": { - "identifier": 161984276, - "sqm_ocr": 81.6, - "price": 2800.0, - "price_per_sqm": 34.31372549019608, - "url": "https://www.rightmove.co.uk/properties/161984276", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107902/161984276/107902_SBA180012_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.277120", - "last_seen": "2025-06-01T22:06:00.068484", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116713, - 51.502556 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.09, - "qmprice": 37.1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161984462", - "info": { - "identifier": 161984462, - "sqm_ocr": 70.09, - "price": 2600.0, - "price_per_sqm": 37.095163361392494, - "url": "https://www.rightmove.co.uk/properties/161984462", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/161984462/227810_1326472_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.831030", - "last_seen": "2025-06-01T22:05:46.255842", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06946, - 51.49367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.17, - "qmprice": 25.96, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161984465", - "info": { - "identifier": 161984465, - "sqm_ocr": 100.17, - "price": 2600.0, - "price_per_sqm": 25.955875012478785, - "url": "https://www.rightmove.co.uk/properties/161984465", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/161984465/227810_1326479_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.833489", - "last_seen": "2025-06-01T22:05:46.253432", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.070667, - 51.492844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161984588", - "info": { - "identifier": 161984588, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161984588", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Inner City Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/104k/103850/161984588/103850_griwsjnsja_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.449919", - "last_seen": "2025-06-01T22:06:08.013657", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03547, - 51.52621 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.8, - "qmprice": 55.31, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161984783", - "info": { - "identifier": 161984783, - "sqm_ocr": 67.8, - "price": 3750.0, - "price_per_sqm": 55.309734513274336, - "url": "https://www.rightmove.co.uk/properties/161984783", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stones Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106225/161984783/106225_BEP150302_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.614433", - "last_seen": "2025-06-01T22:06:16.047955", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153576, - 51.52199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.14, - "qmprice": 40.75, - "rooms": 3, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/161984975", - "info": { - "identifier": 161984975, - "sqm_ocr": 66.14, - "price": 2695.0, - "price_per_sqm": 40.74690051406108, - "url": "https://www.rightmove.co.uk/properties/161984975", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/161984975/80340_a1G4J00000262hTUAQ_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.404553", - "last_seen": "2025-06-01T22:05:59.224760", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12724, - 51.47834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161985053", - "info": { - "identifier": 161985053, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161985053", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "LRS Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/274k/273656/161985053/273656_ARU-245432_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.483631", - "last_seen": "2025-06-01T22:05:58.048480", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195498, - 51.495655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 41.76, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/161985074", - "info": { - "identifier": 161985074, - "sqm_ocr": 91.0, - "price": 3800.0, - "price_per_sqm": 41.75824175824176, - "url": "https://www.rightmove.co.uk/properties/161985074", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161985074/26207_IUL130333_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.375584", - "last_seen": "2025-06-01T22:05:47.753849", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093391, - 51.533813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 31.82, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161985137", - "info": { - "identifier": 161985137, - "sqm_ocr": 88.0, - "price": 2800.0, - "price_per_sqm": 31.818181818181817, - "url": "https://www.rightmove.co.uk/properties/161985137", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "SLettings Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282698/161985137/282698_slas_935132126_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.953225", - "last_seen": "2025-06-01T22:05:48.368691", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222831, - 51.50141 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.19, - "qmprice": 52.05, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/161985695", - "info": { - "identifier": 161985695, - "sqm_ocr": 67.19, - "price": 3497.0, - "price_per_sqm": 52.04643548147046, - "url": "https://www.rightmove.co.uk/properties/161985695", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71134/161985695/71134_33886133_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.961365", - "last_seen": "2025-06-01T22:05:56.975523", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096887, - 51.526844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.6, - "qmprice": 33.49, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161985794", - "info": { - "identifier": 161985794, - "sqm_ocr": 83.6, - "price": 2800.0, - "price_per_sqm": 33.49282296650718, - "url": "https://www.rightmove.co.uk/properties/161985794", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22320/161985794/22320_BAT180585_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.071219", - "last_seen": "2025-06-01T22:06:12.910194", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148293, - 51.451725 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/161985956", - "info": { - "identifier": 161985956, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161985956", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94448/161985956/94448_EAL020243_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.584034", - "last_seen": "2025-06-01T22:05:44.730186", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.286634, - 51.508858 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161986148", - "info": { - "identifier": 161986148, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161986148", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75088/161986148/75088_000907400_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.053935", - "last_seen": "2025-06-01T22:05:38.269818", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.14267, - 51.57263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161986157", - "info": { - "identifier": 161986157, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161986157", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75088/161986157/75088_000907522_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.059597", - "last_seen": "2025-06-01T22:05:38.271825", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.14267, - 51.57263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.9, - "qmprice": 51.17, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161986196", - "info": { - "identifier": 161986196, - "sqm_ocr": 46.9, - "price": 2400.0, - "price_per_sqm": 51.1727078891258, - "url": "https://www.rightmove.co.uk/properties/161986196", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dimension Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87953/161986196/87953_3784_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.341309", - "last_seen": "2025-06-01T22:05:47.722099", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.047608, - 51.5606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161986265", - "info": { - "identifier": 161986265, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161986265", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224522/161986265/224522_P460435_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.197419", - "last_seen": "2025-06-01T22:06:02.390532", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.04739, - 51.54782 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.4, - "qmprice": 38.97, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161986586", - "info": { - "identifier": 161986586, - "sqm_ocr": 83.4, - "price": 3250.0, - "price_per_sqm": 38.96882494004796, - "url": "https://www.rightmove.co.uk/properties/161986586", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43802/161986586/43802_P300764_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.103922", - "last_seen": "2025-06-01T22:05:58.476944", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18744, - 51.4819 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.1, - "qmprice": 44.89, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/161986748", - "info": { - "identifier": 161986748, - "sqm_ocr": 89.1, - "price": 4000.0, - "price_per_sqm": 44.89337822671156, - "url": "https://www.rightmove.co.uk/properties/161986748", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157376/161986748/157376_33778287_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.196400", - "last_seen": "2025-06-01T22:05:47.259467", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.083807, - 51.525124 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/161986772", - "info": { - "identifier": 161986772, - "sqm_ocr": null, - "price": 2990.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161986772", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/161986772/115768_westthewest_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.339213", - "last_seen": "2025-06-01T22:06:08.535896", - "price": 2990 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02373, - 51.49085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.9, - "qmprice": 32.25, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/161987099", - "info": { - "identifier": 161987099, - "sqm_ocr": 89.9, - "price": 2899.0, - "price_per_sqm": 32.24694104560623, - "url": "https://www.rightmove.co.uk/properties/161987099", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/161987099/84833_33886234_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.666718", - "last_seen": "2025-06-01T22:05:48.531125", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229698, - 51.501644 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.86, - "qmprice": 38.57, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161987279", - "info": { - "identifier": 161987279, - "sqm_ocr": 51.86, - "price": 2000.0, - "price_per_sqm": 38.565368299267256, - "url": "https://www.rightmove.co.uk/properties/161987279", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Charles Henry Peppiatt Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78489/161987279/78489_2282_AGRN_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.591651", - "last_seen": "2025-06-01T22:06:01.465086", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203529, - 51.418507 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161987303", - "info": { - "identifier": 161987303, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161987303", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35975/161987303/35975_06760554_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.820326", - "last_seen": "2025-06-01T22:05:51.537931", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.417, - 51.615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.1, - "qmprice": 32.01, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161987321", - "info": { - "identifier": 161987321, - "sqm_ocr": 78.1, - "price": 2500.0, - "price_per_sqm": 32.010243277848915, - "url": "https://www.rightmove.co.uk/properties/161987321", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "R L Morris Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105431/161987321/105431_RLM_001384_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.868456", - "last_seen": "2025-06-01T22:06:11.923573", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01502, - 51.56783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/161987597", - "info": { - "identifier": 161987597, - "sqm_ocr": null, - "price": 2899.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161987597", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/161987597/82537_33886272_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.900418", - "last_seen": "2025-06-01T22:06:08.697203", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017933, - 51.499947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 43.85, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/161987630", - "info": { - "identifier": 161987630, - "sqm_ocr": 65.0, - "price": 2850.0, - "price_per_sqm": 43.84615384615385, - "url": "https://www.rightmove.co.uk/properties/161987630", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/161987630/87187_40612_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.658597", - "last_seen": "2025-06-01T20:19:57.799209", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073767, - 51.5289 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.0, - "qmprice": 31.0, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/161987690", - "info": { - "identifier": 161987690, - "sqm_ocr": 100.0, - "price": 3100.0, - "price_per_sqm": 31.0, - "url": "https://www.rightmove.co.uk/properties/161987690", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kallars", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289823/161987690/289823_d3f4df07-7785-4146-be6e-3bd88ec65cd5_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.929379", - "last_seen": "2025-06-01T22:06:00.992615", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.044251, - 51.474014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.2, - "qmprice": 28.67, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161987726", - "info": { - "identifier": 161987726, - "sqm_ocr": 87.2, - "price": 2500.0, - "price_per_sqm": 28.6697247706422, - "url": "https://www.rightmove.co.uk/properties/161987726", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kallars", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289823/161987726/289823_ea276081-4a47-46a3-a823-f538d6487c66_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.380684", - "last_seen": "2025-06-01T22:05:43.595202", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074933, - 51.41799 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.8, - "qmprice": 48.06, - "rooms": 3, - "total_price": 3595.0, - "url": "https://www.rightmove.co.uk/properties/161987960", - "info": { - "identifier": 161987960, - "sqm_ocr": 74.8, - "price": 3595.0, - "price_per_sqm": 48.06149732620321, - "url": "https://www.rightmove.co.uk/properties/161987960", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Property Company", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76256/161987960/76256_LET090166_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.612886", - "last_seen": "2025-06-01T22:05:53.514443", - "price": 3595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114236, - 51.559742 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/161988035", - "info": { - "identifier": 161988035, - "sqm_ocr": null, - "price": 2899.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161988035", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/161988035/198539_33886301_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.115927", - "last_seen": "2025-06-01T22:06:08.870485", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017933, - 51.499947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 43.72, - "qmprice": 60.61, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161988062", - "info": { - "identifier": 161988062, - "sqm_ocr": 43.72, - "price": 2650.0, - "price_per_sqm": 60.612991765782255, - "url": "https://www.rightmove.co.uk/properties/161988062", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/161988062/84889_1326393_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.886672", - "last_seen": "2025-06-01T22:06:14.799908", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139203, - 51.49006 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161988137", - "info": { - "identifier": 161988137, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161988137", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "NEXIS Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272531/161988137/272531_MYR250059_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.384322", - "last_seen": "2025-06-01T22:05:39.031926", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240205, - 51.594673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.2, - "qmprice": 37.16, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161988179", - "info": { - "identifier": 161988179, - "sqm_ocr": 59.2, - "price": 2200.0, - "price_per_sqm": 37.16216216216216, - "url": "https://www.rightmove.co.uk/properties/161988179", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/161988179/107533_1326516_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.876816", - "last_seen": "2025-06-01T22:06:00.655156", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042346, - 51.480495 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161988326", - "info": { - "identifier": 161988326, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161988326", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161988326/257522_007-grace-RUwfzt_IMG_04_0000_max_656x437.png", - "let_date_available": "01/01/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.614777", - "last_seen": "2025-06-01T22:05:41.440175", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28503, - 51.54101 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.34, - "qmprice": 28.47, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161988452", - "info": { - "identifier": 161988452, - "sqm_ocr": 91.34, - "price": 2600.0, - "price_per_sqm": 28.465075541931245, - "url": "https://www.rightmove.co.uk/properties/161988452", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/161988452/48101_1326458_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.017636, - 51.48679 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.0, - "qmprice": 45.85, - "rooms": 4, - "total_price": 3943.0, - "url": "https://www.rightmove.co.uk/properties/161988476", - "info": { - "identifier": 161988476, - "sqm_ocr": 86.0, - "price": 3943.0, - "price_per_sqm": 45.848837209302324, - "url": "https://www.rightmove.co.uk/properties/161988476", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/161988476/80796_524_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.748576", - "last_seen": "2025-06-01T22:05:59.956270", - "price": 3943 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11297, - 51.46121 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.5, - "qmprice": 35.65, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/161988713", - "info": { - "identifier": 161988713, - "sqm_ocr": 57.5, - "price": 2050.0, - "price_per_sqm": 35.65217391304348, - "url": "https://www.rightmove.co.uk/properties/161988713", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Primden Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261275/161988713/261275_14241_001361_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.764394", - "last_seen": "2025-06-01T22:05:54.116242", - "price": 2049 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112969, - 51.5606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.2, - "qmprice": 39.56, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161989241", - "info": { - "identifier": 161989241, - "sqm_ocr": 63.2, - "price": 2500.0, - "price_per_sqm": 39.55696202531645, - "url": "https://www.rightmove.co.uk/properties/161989241", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "R L Morris Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105431/161989241/105431_RLM_001397_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.786218", - "last_seen": "2025-06-01T22:06:11.556355", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01502, - 51.56783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161989274", - "info": { - "identifier": 161989274, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161989274", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Chris Anthony Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.322309", - "last_seen": "2025-06-01T22:05:47.600199", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05693, - 51.5568 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161989346", - "info": { - "identifier": 161989346, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161989346", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/161989346/257522_008--grace-RUwfzt_IMG_03_0000_max_656x437.png", - "let_date_available": "15/01/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.378408", - "last_seen": "2025-06-01T22:05:40.143525", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28503, - 51.54101 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161989427", - "info": { - "identifier": 161989427, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161989427", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CITY REALTOR LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/179k/178868/161989427/178868_33886379_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.065300", - "last_seen": "2025-06-01T22:05:47.949179", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077496, - 51.524837 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.0, - "qmprice": 34.72, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/161989508", - "info": { - "identifier": 161989508, - "sqm_ocr": 108.0, - "price": 3750.0, - "price_per_sqm": 34.72222222222222, - "url": "https://www.rightmove.co.uk/properties/161989508", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Mervyn Smith", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3710/161989508/3710_4fcee6cc-2f12-4418-a512-8942983a79b3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.605025", - "last_seen": "2025-06-01T22:06:04.638720", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312516, - 51.43673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.19, - "qmprice": 43.06, - "rooms": 2, - "total_price": 2075.0, - "url": "https://www.rightmove.co.uk/properties/161989538", - "info": { - "identifier": 161989538, - "sqm_ocr": 48.19, - "price": 2075.0, - "price_per_sqm": 43.05872587673792, - "url": "https://www.rightmove.co.uk/properties/161989538", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44538/161989538/44538_WBL210151_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.682279", - "last_seen": "2025-06-01T22:05:59.860299", - "price": 2075.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126447, - 51.459545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 133.6, - "qmprice": 16.84, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/161990009", - "info": { - "identifier": 161990009, - "sqm_ocr": 133.6, - "price": 2250.0, - "price_per_sqm": 16.84131736526946, - "url": "https://www.rightmove.co.uk/properties/161990009", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118042/161990009/118042_33886419_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.476677", - "last_seen": "2025-06-01T22:05:46.234097", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.047144, - 51.482243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161990027", - "info": { - "identifier": 161990027, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161990027", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Fortess Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271826/161990027/271826_RL1542_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.843007", - "last_seen": "2025-06-01T22:05:40.344408", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224056, - 51.5583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.96, - "qmprice": 30.85, - "rooms": 3, - "total_price": 2251.0, - "url": "https://www.rightmove.co.uk/properties/161990093", - "info": { - "identifier": 161990093, - "sqm_ocr": 72.96, - "price": 2251.0, - "price_per_sqm": 30.852521929824565, - "url": "https://www.rightmove.co.uk/properties/161990093", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Mile", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53010/161990093/53010_101541007985_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.448895", - "last_seen": "2025-06-01T22:05:44.099054", - "price": 2251.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24806, - 51.530575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161990360", - "info": { - "identifier": 161990360, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161990360", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130954/161990360/130954_MP14_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.230482", - "last_seen": "2025-06-01T22:06:10.123103", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0119, - 51.52438 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.7, - "qmprice": 26.29, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/161990744", - "info": { - "identifier": 161990744, - "sqm_ocr": 102.7, - "price": 2700.0, - "price_per_sqm": 26.29016553067186, - "url": "https://www.rightmove.co.uk/properties/161990744", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267767/161990744/267767_CLP230067_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.297593", - "last_seen": "2025-06-01T22:05:41.726066", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024022, - 51.41221 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.9, - "qmprice": 27.3, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/161990801", - "info": { - "identifier": 161990801, - "sqm_ocr": 120.9, - "price": 3300.0, - "price_per_sqm": 27.295285359801486, - "url": "https://www.rightmove.co.uk/properties/161990801", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Mervyn Smith", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3710/161990801/3710_e71866c7-2cb7-451c-898a-40ddae79abb6_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.461465", - "last_seen": "2025-06-01T22:06:04.558754", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.318441, - 51.434345 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.4, - "qmprice": 41.8, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/161990810", - "info": { - "identifier": 161990810, - "sqm_ocr": 63.4, - "price": 2650.0, - "price_per_sqm": 41.798107255520506, - "url": "https://www.rightmove.co.uk/properties/161990810", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48997/161990810/48997_CLI250775_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.727359", - "last_seen": "2025-06-01T22:05:44.633202", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265487, - 51.501812 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161991014", - "info": { - "identifier": 161991014, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161991014", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Rosewood Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63096/161991014/63096_Peabody2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.227931", - "last_seen": "2025-06-01T22:05:48.892270", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22365, - 51.48989 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.42, - "qmprice": 34.63, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161991038", - "info": { - "identifier": 161991038, - "sqm_ocr": 66.42, - "price": 2300.0, - "price_per_sqm": 34.62812405901837, - "url": "https://www.rightmove.co.uk/properties/161991038", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Visum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35298/161991038/35298_50207_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.809820", - "last_seen": "2025-06-01T22:05:53.771451", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130419, - 51.572495 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161991149", - "info": { - "identifier": 161991149, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161991149", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lettings of London Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98582/161991149/98582_BG5G_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.133936", - "last_seen": "2025-06-01T22:05:47.359087", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07834, - 51.55219 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161991155", - "info": { - "identifier": 161991155, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161991155", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lettings of London Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98582/161991155/98582_BG1C_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.137708", - "last_seen": "2025-06-01T22:05:47.354067", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07834, - 51.55219 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.47, - "qmprice": 32.41, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161991221", - "info": { - "identifier": 161991221, - "sqm_ocr": 89.47, - "price": 2900.0, - "price_per_sqm": 32.41309936291494, - "url": "https://www.rightmove.co.uk/properties/161991221", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48997/161991221/48997_CLI250774_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.600548", - "last_seen": "2025-06-01T22:05:55.849794", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265487, - 51.501812 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.7, - "qmprice": 48.01, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161991332", - "info": { - "identifier": 161991332, - "sqm_ocr": 67.7, - "price": 3250.0, - "price_per_sqm": 48.005908419497786, - "url": "https://www.rightmove.co.uk/properties/161991332", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Viewit Real Estate", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266159/161991332/266159_RL0047_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.962793", - "last_seen": "2025-06-01T22:05:59.241082", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127599, - 51.47981 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.6, - "qmprice": 26.43, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161992193", - "info": { - "identifier": 161992193, - "sqm_ocr": 94.6, - "price": 2500.0, - "price_per_sqm": 26.427061310782243, - "url": "https://www.rightmove.co.uk/properties/161992193", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stones Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106225/161992193/106225_BEP250089_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.184384", - "last_seen": "2025-06-01T22:05:39.164778", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20852, - 51.59493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161992451", - "info": { - "identifier": 161992451, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161992451", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Chris Anthony Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/123k/122383/161992451/122383_1404_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.934802", - "last_seen": "2025-06-01T22:05:45.564979", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13577, - 51.6128 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.32, - "qmprice": 41.73, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/161992628", - "info": { - "identifier": 161992628, - "sqm_ocr": 50.32, - "price": 2100.0, - "price_per_sqm": 41.732909379968206, - "url": "https://www.rightmove.co.uk/properties/161992628", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "LDB", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88034/161992628/88034_33886578_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.159492", - "last_seen": "2025-06-01T22:05:49.022509", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220677, - 51.47902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161992985", - "info": { - "identifier": 161992985, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161992985", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Sonia Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181958/161992985/181958_sonia_507300915_IMG_18_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.304058", - "last_seen": "2025-06-01T22:05:41.038800", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.315497, - 51.58268 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.78, - "qmprice": 37.21, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/161993015", - "info": { - "identifier": 161993015, - "sqm_ocr": 57.78, - "price": 2150.0, - "price_per_sqm": 37.210107303565245, - "url": "https://www.rightmove.co.uk/properties/161993015", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49030/161993015/49030_NDL210031_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.534965", - "last_seen": "2025-06-01T22:06:01.388280", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189848, - 51.428394 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 44.22, - "qmprice": 79.15, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/161993030", - "info": { - "identifier": 161993030, - "sqm_ocr": 44.22, - "price": 3500.0, - "price_per_sqm": 79.14970601537766, - "url": "https://www.rightmove.co.uk/properties/161993030", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/161993030/26207_HEA256055_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.009764", - "last_seen": "2025-06-01T22:05:47.594600", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080528, - 51.530144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.11, - "qmprice": 55.19, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161993147", - "info": { - "identifier": 161993147, - "sqm_ocr": 47.11, - "price": 2600.0, - "price_per_sqm": 55.18998089577585, - "url": "https://www.rightmove.co.uk/properties/161993147", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Londonwide Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42321/161993147/42321_LONWI_001593_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.960517", - "last_seen": "2025-06-01T22:06:15.897611", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188393, - 51.524216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.5, - "qmprice": 30.97, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/161993366", - "info": { - "identifier": 161993366, - "sqm_ocr": 77.5, - "price": 2400.0, - "price_per_sqm": 30.967741935483872, - "url": "https://www.rightmove.co.uk/properties/161993366", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "R Whitley & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9236/161993366/9236_33886632_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.809217", - "last_seen": "2025-06-01T22:05:51.531544", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.472871, - 51.50528 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.19, - "qmprice": 58.46, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/161993453", - "info": { - "identifier": 161993453, - "sqm_ocr": 48.19, - "price": 2817.0, - "price_per_sqm": 58.45611122639552, - "url": "https://www.rightmove.co.uk/properties/161993453", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Pearl & Coutts", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54010/161993453/54010_00011327_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.154501", - "last_seen": "2025-06-01T22:05:41.987831", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109586, - 51.521214 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161993489", - "info": { - "identifier": 161993489, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161993489", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lettings of London Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98582/161993489/98582_BG2H_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.254132", - "last_seen": "2025-06-01T22:05:57.277649", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07834, - 51.55219 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.26, - "qmprice": 37.79, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/161993516", - "info": { - "identifier": 161993516, - "sqm_ocr": 80.26, - "price": 3033.0, - "price_per_sqm": 37.789683528532265, - "url": "https://www.rightmove.co.uk/properties/161993516", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Battersea & Nine Elms Estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143171/161993516/143171_33886637_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.231922", - "last_seen": "2025-06-01T22:06:09.603389", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017932, - 51.499947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.22, - "qmprice": 49.0, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161994266", - "info": { - "identifier": 161994266, - "sqm_ocr": 61.22, - "price": 3000.0, - "price_per_sqm": 49.00359359686377, - "url": "https://www.rightmove.co.uk/properties/161994266", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "James Hayes", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239192/161994266/239192_JHA240069_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.549073", - "last_seen": "2025-06-01T22:05:48.654634", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.236338, - 51.504066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161994425", - "info": { - "identifier": 161994425, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161994425", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Romans", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42563/161994425/42563_HTR250040_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.769763", - "last_seen": "2025-06-01T22:05:51.489812", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.458968, - 51.4898 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/161994590", - "info": { - "identifier": 161994590, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161994590", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130954/161994590/130954_306RCC_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.365514", - "last_seen": "2025-06-01T22:06:08.417369", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008, - 51.50821 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.5, - "qmprice": 28.48, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/161994617", - "info": { - "identifier": 161994617, - "sqm_ocr": 82.5, - "price": 2350.0, - "price_per_sqm": 28.484848484848484, - "url": "https://www.rightmove.co.uk/properties/161994617", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Russell Collins", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62074/161994617/62074_102926002481_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.988504", - "last_seen": "2025-06-01T22:05:52.147376", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30267, - 51.49333 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 30.79, - "rooms": 2, - "total_price": 2340.0, - "url": "https://www.rightmove.co.uk/properties/161994806", - "info": { - "identifier": 161994806, - "sqm_ocr": 76.0, - "price": 2340.0, - "price_per_sqm": 30.789473684210527, - "url": "https://www.rightmove.co.uk/properties/161994806", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/161994806/80796_820_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.035977", - "last_seen": "2025-06-01T22:05:59.651594", - "price": 2340 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12085, - 51.45965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.16, - "qmprice": 23.78, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/161995037", - "info": { - "identifier": 161995037, - "sqm_ocr": 126.16, - "price": 3000.0, - "price_per_sqm": 23.779327837666457, - "url": "https://www.rightmove.co.uk/properties/161995037", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "ElliotLee", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61517/161995037/61517_25bc169e-c632-4279-b965-85e4456f8f25_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.743688", - "last_seen": "2025-06-01T22:05:40.808290", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.319479, - 51.566677 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.2, - "qmprice": 41.66, - "rooms": 2, - "total_price": 3466.0, - "url": "https://www.rightmove.co.uk/properties/161995670", - "info": { - "identifier": 161995670, - "sqm_ocr": 83.2, - "price": 3466.0, - "price_per_sqm": 41.65865384615385, - "url": "https://www.rightmove.co.uk/properties/161995670", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 972.0, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Keller Williams Advantage", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205682/161995670/205682_RX581503_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.397138", - "last_seen": "2025-06-01T22:05:59.233769", - "price": 3466.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120278, - 51.493916 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.9, - "qmprice": 41.11, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/161996558", - "info": { - "identifier": 161996558, - "sqm_ocr": 66.9, - "price": 2750.0, - "price_per_sqm": 41.106128550074736, - "url": "https://www.rightmove.co.uk/properties/161996558", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/161996558/96392_SVL240629_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.722220", - "last_seen": "2025-06-01T22:06:15.894738", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174878, - 51.527954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.6, - "qmprice": 19.9, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161996669", - "info": { - "identifier": 161996669, - "sqm_ocr": 125.6, - "price": 2500.0, - "price_per_sqm": 19.904458598726116, - "url": "https://www.rightmove.co.uk/properties/161996669", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Davidson Frost-Wellings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238889/161996669/238889_33886860_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.128785", - "last_seen": "2025-06-01T22:05:50.618869", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.318697, - 51.602528 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/161996798", - "info": { - "identifier": 161996798, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161996798", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161996798/96668_242964525032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.327205", - "last_seen": "2025-06-01T22:05:41.530173", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.080664, - 51.372295 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/161996972", - "info": { - "identifier": 161996972, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161996972", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161996972/96668_193161521122023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.492240", - "last_seen": "2025-06-01T22:05:42.380574", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144128, - 51.540314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161997101", - "info": { - "identifier": 161997101, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161997101", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161997101/96668_217199529072024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.232322", - "last_seen": "2025-06-01T22:05:50.918486", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.219456, - 51.555786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/161997113", - "info": { - "identifier": 161997113, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161997113", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161997113/96668_210310729052024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.949844", - "last_seen": "2025-06-01T22:06:09.235772", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063271, - 51.50898 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/161997176", - "info": { - "identifier": 161997176, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161997176", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161997176/96668_115384705072021_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.443695", - "last_seen": "2025-06-01T22:06:01.283524", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225712, - 51.38565 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/161997242", - "info": { - "identifier": 161997242, - "sqm_ocr": null, - "price": 2295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161997242", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161997242/96668_226500718102024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.017763", - "last_seen": "2025-06-01T22:05:38.332582", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.140906, - 51.55929 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/161997329", - "info": { - "identifier": 161997329, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161997329", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161997329/96668_248487815052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.122626, - 51.58078 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/161997353", - "info": { - "identifier": 161997353, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161997353", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/161997353/96668_248494115052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.308167", - "last_seen": "2025-06-01T22:05:52.315085", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42179, - 51.44059 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161997443", - "info": { - "identifier": 161997443, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161997443", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287963/161997443/287963_WPS250007_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.478435", - "last_seen": "2025-06-01T22:06:01.135633", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19182, - 51.39806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3830.0, - "url": "https://www.rightmove.co.uk/properties/161997515", - "info": { - "identifier": 161997515, - "sqm_ocr": null, - "price": 3830.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161997515", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/161997515/238265_L69037_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.107269", - "last_seen": "2025-06-01T22:05:59.541956", - "price": 3830.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132944, - 51.474255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.6, - "qmprice": 40.32, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/161997815", - "info": { - "identifier": 161997815, - "sqm_ocr": 80.6, - "price": 3250.0, - "price_per_sqm": 40.322580645161295, - "url": "https://www.rightmove.co.uk/properties/161997815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6073/161997815/6073_33886937_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.139960", - "last_seen": "2025-06-01T22:05:54.008221", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10201, - 51.523193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/161997896", - "info": { - "identifier": 161997896, - "sqm_ocr": null, - "price": 2295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161997896", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Rosewood Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63096/161997896/63096_YELDHAMROAD_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.913325", - "last_seen": "2025-06-01T22:05:48.417342", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22172, - 51.48926 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 132.48, - "qmprice": 19.63, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/161998055", - "info": { - "identifier": 161998055, - "sqm_ocr": 132.48, - "price": 2600.0, - "price_per_sqm": 19.625603864734302, - "url": "https://www.rightmove.co.uk/properties/161998055", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Great Newport Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/174k/173780/161998055/173780_81Camberly_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.638780", - "last_seen": "2025-06-01T22:06:01.686164", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23718, - 51.40955 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.7, - "qmprice": 38.68, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161998469", - "info": { - "identifier": 161998469, - "sqm_ocr": 51.7, - "price": 2000.0, - "price_per_sqm": 38.684719535783366, - "url": "https://www.rightmove.co.uk/properties/161998469", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/161998469/101522_1326537_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.366925", - "last_seen": "2025-06-01T22:05:47.739983", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055088, - 51.546207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 29.87, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161998820", - "info": { - "identifier": 161998820, - "sqm_ocr": 77.0, - "price": 2300.0, - "price_per_sqm": 29.87012987012987, - "url": "https://www.rightmove.co.uk/properties/161998820", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Ak247 Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261134/161998820/261134_53Lavey_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.618144", - "last_seen": "2025-06-01T22:05:41.426740", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28346, - 51.54053 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.8, - "qmprice": 32.03, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/161998901", - "info": { - "identifier": 161998901, - "sqm_ocr": 71.8, - "price": 2300.0, - "price_per_sqm": 32.033426183844014, - "url": "https://www.rightmove.co.uk/properties/161998901", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267767/161998901/267767_CLP240034_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/05/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.407485", - "last_seen": "2025-06-01T22:05:41.684392", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024022, - 51.41221 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/161999687", - "info": { - "identifier": 161999687, - "sqm_ocr": null, - "price": 2847.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/161999687", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/161999687/82537_33887104_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.074990", - "last_seen": "2025-06-01T22:06:08.913358", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005102, - 51.50629 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.51, - "qmprice": 34.78, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/161999894", - "info": { - "identifier": 161999894, - "sqm_ocr": 57.51, - "price": 2000.0, - "price_per_sqm": 34.77656059815684, - "url": "https://www.rightmove.co.uk/properties/161999894", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Franklyn James", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9158/161999894/9158_33887123_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.179898", - "last_seen": "2025-06-01T20:19:55.793059", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019128, - 51.517357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162000629", - "info": { - "identifier": 162000629, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162000629", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/162000629/194222_HRP250329_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.502026", - "last_seen": "2025-06-01T22:06:01.702578", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232722, - 51.40597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3701.0, - "url": "https://www.rightmove.co.uk/properties/162000683", - "info": { - "identifier": 162000683, - "sqm_ocr": null, - "price": 3701.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162000683", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162000683/181787_181787_312_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.545573", - "last_seen": "2025-06-01T22:05:59.943067", - "price": 3700 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10999, - 51.49866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162001061", - "info": { - "identifier": 162001061, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162001061", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.543367", - "last_seen": "2025-06-01T22:05:50.065647", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10942, - 51.58894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162001331", - "info": { - "identifier": 162001331, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162001331", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/162001331/54616_DAN180690_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.626029", - "last_seen": "2025-06-01T22:05:54.147732", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123765, - 51.5577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.3, - "qmprice": 27.66, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162001352", - "info": { - "identifier": 162001352, - "sqm_ocr": 72.3, - "price": 2000.0, - "price_per_sqm": 27.662517289073307, - "url": "https://www.rightmove.co.uk/properties/162001352", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "ElliotLee", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61517/162001352/61517_ebc494b0-bf2d-4327-9d8d-a96564852a42_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.976682", - "last_seen": "2025-06-01T22:05:50.778103", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375293, - 51.569836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.19, - "qmprice": 48.84, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162001547", - "info": { - "identifier": 162001547, - "sqm_ocr": 51.19, - "price": 2500.0, - "price_per_sqm": 48.83766360617308, - "url": "https://www.rightmove.co.uk/properties/162001547", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44645/162001547/44645_FWL160178_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.700490", - "last_seen": "2025-06-01T22:05:48.404858", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209345, - 51.481255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162001715", - "info": { - "identifier": 162001715, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162001715", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.687887", - "last_seen": "2025-06-01T22:05:49.684346", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10942, - 51.58894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 29.86, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162002486", - "info": { - "identifier": 162002486, - "sqm_ocr": 72.0, - "price": 2150.0, - "price_per_sqm": 29.86111111111111, - "url": "https://www.rightmove.co.uk/properties/162002486", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Hillyards Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10669/162002486/10669_33887299_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.152257", - "last_seen": "2025-06-01T22:05:45.081057", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.321453, - 51.5115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.65, - "qmprice": 24.38, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162002735", - "info": { - "identifier": 162002735, - "sqm_ocr": 106.65, - "price": 2600.0, - "price_per_sqm": 24.37880918893577, - "url": "https://www.rightmove.co.uk/properties/162002735", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162002735/43310_CWL250207_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.758630", - "last_seen": "2025-06-01T22:05:56.792828", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07, - 51.49 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162002894", - "info": { - "identifier": 162002894, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162002894", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162002894/257522_009-grace-RUwfzt_IMG_02_0000_max_656x437.png", - "let_date_available": "15/01/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.948998", - "last_seen": "2025-06-01T22:05:40.199761", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28503, - 51.54101 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162003002", - "info": { - "identifier": 162003002, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162003002", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162003002/257522_0010-grace-RUwfzt_IMG_02_0000_max_656x437.png", - "let_date_available": "15/01/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.885862", - "last_seen": "2025-06-01T22:05:40.536239", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28503, - 51.54101 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.17, - "qmprice": 25.24, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162003119", - "info": { - "identifier": 162003119, - "sqm_ocr": 87.17, - "price": 2200.0, - "price_per_sqm": 25.23804061030171, - "url": "https://www.rightmove.co.uk/properties/162003119", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14606/162003119/14606_29059252_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.309121", - "last_seen": "2025-06-01T20:19:59.116408", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06311, - 51.508793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162003122", - "info": { - "identifier": 162003122, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162003122", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14606/162003122/14606_29059295_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.229631", - "last_seen": "2025-06-01T22:06:06.926304", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10411, - 51.50627 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.58, - "qmprice": 40.77, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162003125", - "info": { - "identifier": 162003125, - "sqm_ocr": 73.58, - "price": 3000.0, - "price_per_sqm": 40.77194889915738, - "url": "https://www.rightmove.co.uk/properties/162003125", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14606/162003125/14606_29059369_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.081505", - "last_seen": "2025-06-01T22:06:00.131146", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115876, - 51.48676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 27.63, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162003194", - "info": { - "identifier": 162003194, - "sqm_ocr": 76.0, - "price": 2100.0, - "price_per_sqm": 27.63157894736842, - "url": "https://www.rightmove.co.uk/properties/162003194", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14606/162003194/14606_29059704_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.473533", - "last_seen": "2025-06-01T22:05:41.380884", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28367, - 51.540478 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.8, - "qmprice": 32.58, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162003461", - "info": { - "identifier": 162003461, - "sqm_ocr": 79.8, - "price": 2600.0, - "price_per_sqm": 32.581453634085214, - "url": "https://www.rightmove.co.uk/properties/162003461", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14606/162003461/14606_29063909_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.675706", - "last_seen": "2025-06-01T22:06:05.913105", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099156, - 51.49025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.8, - "qmprice": 67.2, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162003818", - "info": { - "identifier": 162003818, - "sqm_ocr": 55.8, - "price": 3750.0, - "price_per_sqm": 67.20430107526882, - "url": "https://www.rightmove.co.uk/properties/162003818", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162003818/98531_1326274_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.172428", - "last_seen": "2025-06-01T22:05:48.261277", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228921, - 51.49562 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.8, - "qmprice": 48.39, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162003827", - "info": { - "identifier": 162003827, - "sqm_ocr": 55.8, - "price": 2700.0, - "price_per_sqm": 48.38709677419355, - "url": "https://www.rightmove.co.uk/properties/162003827", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162003827/98531_1326275_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.179750", - "last_seen": "2025-06-01T22:05:48.259409", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228921, - 51.49562 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.92, - "qmprice": 26.0, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162003830", - "info": { - "identifier": 162003830, - "sqm_ocr": 76.92, - "price": 2000.0, - "price_per_sqm": 26.001040041601662, - "url": "https://www.rightmove.co.uk/properties/162003830", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11351/162003830/11351_29058978_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.402074", - "last_seen": "2025-06-01T22:06:05.103208", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039317, - 51.50706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 151.11, - "qmprice": 23.08, - "rooms": 3, - "total_price": 3488.0, - "url": "https://www.rightmove.co.uk/properties/162003833", - "info": { - "identifier": 162003833, - "sqm_ocr": 151.11, - "price": 3488.0, - "price_per_sqm": 23.082522665607833, - "url": "https://www.rightmove.co.uk/properties/162003833", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11351/162003833/11351_29059000_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.403630", - "last_seen": "2025-06-01T22:06:05.100990", - "price": 3488.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.033191, - 51.50018 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 34.15, - "rooms": 2, - "total_price": 2015.0, - "url": "https://www.rightmove.co.uk/properties/162003848", - "info": { - "identifier": 162003848, - "sqm_ocr": 59.0, - "price": 2015.0, - "price_per_sqm": 34.152542372881356, - "url": "https://www.rightmove.co.uk/properties/162003848", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11351/162003848/11351_29059423_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.730298", - "last_seen": "2025-06-01T22:05:46.120527", - "price": 2015 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017398, - 51.48153 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.74, - "qmprice": 46.11, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162003881", - "info": { - "identifier": 162003881, - "sqm_ocr": 86.74, - "price": 4000.0, - "price_per_sqm": 46.11482591653217, - "url": "https://www.rightmove.co.uk/properties/162003881", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11351/162003881/11351_29059744_IMG_24_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.452967", - "last_seen": "2025-06-01T22:06:05.027394", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042737, - 51.49316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.0, - "qmprice": 32.69, - "rooms": 3, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162003908", - "info": { - "identifier": 162003908, - "sqm_ocr": 116.0, - "price": 3792.0, - "price_per_sqm": 32.689655172413794, - "url": "https://www.rightmove.co.uk/properties/162003908", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11351/162003908/11351_29059902_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.867395", - "last_seen": "2025-06-01T22:06:05.732856", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043556, - 51.499603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.6, - "qmprice": 32.53, - "rooms": 3, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/162003911", - "info": { - "identifier": 162003911, - "sqm_ocr": 96.6, - "price": 3142.0, - "price_per_sqm": 32.52587991718427, - "url": "https://www.rightmove.co.uk/properties/162003911", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11351/162003911/11351_29059951_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.882501", - "last_seen": "2025-06-01T22:06:05.726629", - "price": 3142.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.033044, - 51.50082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.27, - "qmprice": 26.24, - "rooms": 2, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/162003914", - "info": { - "identifier": 162003914, - "sqm_ocr": 91.27, - "price": 2395.0, - "price_per_sqm": 26.240823929001863, - "url": "https://www.rightmove.co.uk/properties/162003914", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11351/162003914/11351_29059962_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.210264", - "last_seen": "2025-06-01T22:06:02.552270", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.019408, - 51.508446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.09, - "qmprice": 25.6, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162003929", - "info": { - "identifier": 162003929, - "sqm_ocr": 121.09, - "price": 3100.0, - "price_per_sqm": 25.600792798744735, - "url": "https://www.rightmove.co.uk/properties/162003929", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11351/162003929/11351_29061038_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.112735", - "last_seen": "2025-06-01T22:06:09.551167", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028288, - 51.5132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.77, - "qmprice": 38.7, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162003944", - "info": { - "identifier": 162003944, - "sqm_ocr": 69.77, - "price": 2700.0, - "price_per_sqm": 38.698581052028096, - "url": "https://www.rightmove.co.uk/properties/162003944", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11351/162003944/11351_29064012_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.004914", - "last_seen": "2025-06-01T22:06:00.613425", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037663, - 51.491905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.8, - "qmprice": 50.81, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162003986", - "info": { - "identifier": 162003986, - "sqm_ocr": 67.8, - "price": 3445.0, - "price_per_sqm": 50.81120943952803, - "url": "https://www.rightmove.co.uk/properties/162003986", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94246/162003986/94246_1326349_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.061103", - "last_seen": "2025-06-01T22:05:42.294428", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112169, - 51.519657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162004118", - "info": { - "identifier": 162004118, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162004118", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Infinity Property Solutions", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111497/162004118/111497_28848277_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.848135", - "last_seen": "2025-06-01T22:05:40.590595", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26811, - 51.5538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.01, - "qmprice": 31.7, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162004124", - "info": { - "identifier": 162004124, - "sqm_ocr": 82.01, - "price": 2600.0, - "price_per_sqm": 31.703450798683086, - "url": "https://www.rightmove.co.uk/properties/162004124", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162004124/48101_1326539_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.109471", - "last_seen": "2025-06-01T22:06:09.555581", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026622, - 51.498154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.58, - "qmprice": 45.7, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162004193", - "info": { - "identifier": 162004193, - "sqm_ocr": 76.58, - "price": 3500.0, - "price_per_sqm": 45.703839122486286, - "url": "https://www.rightmove.co.uk/properties/162004193", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162004193/55101_1326575_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.076025", - "last_seen": "2025-06-01T22:06:05.530247", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039764, - 51.49504 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2080.0, - "url": "https://www.rightmove.co.uk/properties/162004433", - "info": { - "identifier": 162004433, - "sqm_ocr": null, - "price": 2080.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162004433", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RICE RESI LTD", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286781/162004433/286781_33887416_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.163972", - "last_seen": "2025-06-01T22:05:44.224508", - "price": 2080.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.388048, - 51.507004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162004784", - "info": { - "identifier": 162004784, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162004784", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "No 8 Real Estate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285965/162004784/285965_2713559_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.627746", - "last_seen": "2025-06-01T22:05:49.527188", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22859, - 51.49422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.44, - "qmprice": 36.27, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162004850", - "info": { - "identifier": 162004850, - "sqm_ocr": 74.44, - "price": 2700.0, - "price_per_sqm": 36.27082213863515, - "url": "https://www.rightmove.co.uk/properties/162004850", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JTM Homes", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29933/162004850/29933_101464003623_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.736508", - "last_seen": "2025-06-01T22:05:53.894694", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12718, - 51.55361 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.9, - "qmprice": 31.9, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162004997", - "info": { - "identifier": 162004997, - "sqm_ocr": 90.9, - "price": 2900.0, - "price_per_sqm": 31.9031903190319, - "url": "https://www.rightmove.co.uk/properties/162004997", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85699/162004997/85699_CHI240008_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.709329", - "last_seen": "2025-06-01T22:05:43.990470", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265495, - 51.50181 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162005156", - "info": { - "identifier": 162005156, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162005156", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47640/162005156/47640_33887478_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.308499", - "last_seen": "2025-06-01T22:05:47.240446", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07846, - 51.53223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162005201", - "info": { - "identifier": 162005201, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162005201", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162005201/257522_0011-grace-RUwfzt_IMG_02_0000_max_656x437.png", - "let_date_available": "04/12/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.240261", - "last_seen": "2025-06-01T22:05:40.689122", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28391, - 51.55943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162005462", - "info": { - "identifier": 162005462, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162005462", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162005462/257522_0012grace-RUwfzt_IMG_03_0000_max_656x437.png", - "let_date_available": "04/12/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.364314", - "last_seen": "2025-06-01T22:05:40.841824", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28391, - 51.55943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.4, - "qmprice": 53.72, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162005492", - "info": { - "identifier": 162005492, - "sqm_ocr": 48.4, - "price": 2600.0, - "price_per_sqm": 53.719008264462815, - "url": "https://www.rightmove.co.uk/properties/162005492", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/162005492/84827_33887515_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.520336", - "last_seen": "2025-06-01T22:05:48.939540", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206273, - 51.49146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162005537", - "info": { - "identifier": 162005537, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162005537", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162005537/257522_0013-grace-RUwfzt_IMG_04_0000_max_656x437.png", - "let_date_available": "04/12/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.642801", - "last_seen": "2025-06-01T22:05:41.170823", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28391, - 51.55943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162005690", - "info": { - "identifier": 162005690, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162005690", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162005690/257522_0014-grace-RUwfzt_IMG_07_0000_max_656x437.png", - "let_date_available": "04/12/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.182079", - "last_seen": "2025-06-01T22:05:40.065822", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28391, - 51.55943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162005714", - "info": { - "identifier": 162005714, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162005714", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "One Move Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206921/162005714/206921_2cf5d017-93d5-489b-94a4-7f6eb36cc8af_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.241753", - "last_seen": "2025-06-01T22:06:09.354637", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013382, - 51.50007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162005804", - "info": { - "identifier": 162005804, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162005804", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Milestone & Collis", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62311/162005804/62311_33887530_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.243009", - "last_seen": "2025-06-01T22:06:04.751336", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.329576, - 51.445274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162005810", - "info": { - "identifier": 162005810, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162005810", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162005810/257522_0015-grace-RUwfzt_IMG_06_0000_max_656x437.png", - "let_date_available": "04/12/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.546248", - "last_seen": "2025-06-01T22:05:41.290188", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28391, - 51.55943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162005867", - "info": { - "identifier": 162005867, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162005867", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162005867/257522_0016-grace-RUwfzt_IMG_06_0000_max_656x437.png", - "let_date_available": "04/12/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.493477", - "last_seen": "2025-06-01T22:05:41.350607", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28391, - 51.55943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162005936", - "info": { - "identifier": 162005936, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162005936", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162005936/257522_017-grace-RUwfzt_IMG_05_0000_max_656x437.png", - "let_date_available": "04/12/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.780664", - "last_seen": "2025-06-01T22:05:41.014220", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28391, - 51.55943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 33.33, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162006011", - "info": { - "identifier": 162006011, - "sqm_ocr": 81.0, - "price": 2700.0, - "price_per_sqm": 33.333333333333336, - "url": "https://www.rightmove.co.uk/properties/162006011", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Curchods Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13985/162006011/13985_CKT250073_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.650474", - "last_seen": "2025-06-01T22:05:58.906514", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295169, - 51.410854 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162006023", - "info": { - "identifier": 162006023, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162006023", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162006023/257522_0017-grace-RUwfzt_IMG_02_0000_max_656x437.png", - "let_date_available": "04/12/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.525747", - "last_seen": "2025-06-01T22:05:41.299721", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28391, - 51.55943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162006050", - "info": { - "identifier": 162006050, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162006050", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162006050/257522_0018-grace-RUwfzt_IMG_02_0000_max_656x437.png", - "let_date_available": "04/12/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.500722", - "last_seen": "2025-06-01T22:05:41.330489", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28391, - 51.55943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.5, - "qmprice": 52.17, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162006092", - "info": { - "identifier": 162006092, - "sqm_ocr": 57.5, - "price": 3000.0, - "price_per_sqm": 52.17391304347826, - "url": "https://www.rightmove.co.uk/properties/162006092", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47640/162006092/47640_33887561_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.163560", - "last_seen": "2025-06-01T20:19:59.602803", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075967, - 51.516567 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162006101", - "info": { - "identifier": 162006101, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162006101", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162006101/257522_0019-grace-RUwfzt_IMG_07_0000_max_656x437.png", - "let_date_available": "04/12/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.310584", - "last_seen": "2025-06-01T22:05:40.974135", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28391, - 51.55943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.49, - "qmprice": 27.22, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162006266", - "info": { - "identifier": 162006266, - "sqm_ocr": 84.49, - "price": 2300.0, - "price_per_sqm": 27.222156468221094, - "url": "https://www.rightmove.co.uk/properties/162006266", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "London Homes Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162716/162006266/162716_230_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.758483", - "last_seen": "2025-06-01T22:05:44.138215", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31931, - 51.519768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.68, - "qmprice": 36.2, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162006329", - "info": { - "identifier": 162006329, - "sqm_ocr": 67.68, - "price": 2450.0, - "price_per_sqm": 36.19976359338061, - "url": "https://www.rightmove.co.uk/properties/162006329", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49000/162006329/49000_CNL250131_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:39.804483", - "last_seen": "2025-06-01T22:06:09.947789", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.044117, - 51.510117 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.1, - "qmprice": 48.13, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162006602", - "info": { - "identifier": 162006602, - "sqm_ocr": 83.1, - "price": 4000.0, - "price_per_sqm": 48.13477737665464, - "url": "https://www.rightmove.co.uk/properties/162006602", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Pearl & Chance", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267452/162006602/267452_ece09fcb-d39b-443b-abe0-badeea37585a_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.538910", - "last_seen": "2025-06-01T22:05:39.467285", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196974, - 51.565063 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.6, - "qmprice": 29.57, - "rooms": 2, - "total_price": 2058.0, - "url": "https://www.rightmove.co.uk/properties/162006953", - "info": { - "identifier": 162006953, - "sqm_ocr": 69.6, - "price": 2058.0, - "price_per_sqm": 29.56896551724138, - "url": "https://www.rightmove.co.uk/properties/162006953", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Daniel Rose Residential Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33048/162006953/33048_DRR_000644_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.359317", - "last_seen": "2025-06-01T22:05:39.720800", - "price": 2058 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180962, - 51.58537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.6, - "qmprice": 32.51, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162007547", - "info": { - "identifier": 162007547, - "sqm_ocr": 64.6, - "price": 2100.0, - "price_per_sqm": 32.5077399380805, - "url": "https://www.rightmove.co.uk/properties/162007547", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/162007547/107533_1326580_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.028355", - "last_seen": "2025-06-01T22:06:00.298227", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020618, - 51.471474 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162007604", - "info": { - "identifier": 162007604, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162007604", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/162007604/32793_15937_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.492277", - "last_seen": "2025-06-01T22:05:41.352646", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21745, - 51.55079 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.6, - "qmprice": 35.89, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162007664", - "info": { - "identifier": 162007664, - "sqm_ocr": 83.6, - "price": 3000.0, - "price_per_sqm": 35.885167464114836, - "url": "https://www.rightmove.co.uk/properties/162007664", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "One Move Group", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206921/162007664/206921_01e6056d-8624-4245-a680-24cbd4619e28_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.091662", - "last_seen": "2025-06-01T20:19:59.700181", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008344, - 51.508553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 43.29, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162007682", - "info": { - "identifier": 162007682, - "sqm_ocr": 69.3, - "price": 3000.0, - "price_per_sqm": 43.29004329004329, - "url": "https://www.rightmove.co.uk/properties/162007682", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22320/162007682/22320_BHL080121_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.074269", - "last_seen": "2025-06-01T22:06:14.242979", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15367, - 51.45292 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 31.58, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162007691", - "info": { - "identifier": 162007691, - "sqm_ocr": 76.0, - "price": 2400.0, - "price_per_sqm": 31.57894736842105, - "url": "https://www.rightmove.co.uk/properties/162007691", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137360/162007691/137360_1326445_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.258206", - "last_seen": "2025-06-01T22:05:41.779537", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.11429, - 51.38737 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.86, - "qmprice": 33.1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162007715", - "info": { - "identifier": 162007715, - "sqm_ocr": 120.86, - "price": 4000.0, - "price_per_sqm": 33.09614429918914, - "url": "https://www.rightmove.co.uk/properties/162007715", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69659/162007715/69659_SJL240023_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.350686", - "last_seen": "2025-06-01T22:06:04.648385", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.261007, - 51.46603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.8, - "qmprice": 43.86, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162007718", - "info": { - "identifier": 162007718, - "sqm_ocr": 79.8, - "price": 3500.0, - "price_per_sqm": 43.85964912280702, - "url": "https://www.rightmove.co.uk/properties/162007718", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/162007718/135416_BPL230041_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.437604", - "last_seen": "2025-06-01T22:06:13.709874", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155646, - 51.473972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.5, - "qmprice": 42.81, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162007877", - "info": { - "identifier": 162007877, - "sqm_ocr": 83.5, - "price": 3575.0, - "price_per_sqm": 42.81437125748503, - "url": "https://www.rightmove.co.uk/properties/162007877", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32391/162007877/32391_33887668_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.268259", - "last_seen": "2025-06-01T22:05:42.009731", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124959, - 51.527546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162007910", - "info": { - "identifier": 162007910, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162007910", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22320/162007910/22320_BHL130090_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.498320", - "last_seen": "2025-06-01T22:06:13.170689", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14874, - 51.45 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.5, - "qmprice": 22.44, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162007943", - "info": { - "identifier": 162007943, - "sqm_ocr": 102.5, - "price": 2300.0, - "price_per_sqm": 22.4390243902439, - "url": "https://www.rightmove.co.uk/properties/162007943", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117907/162007943/117907_33887673_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.533090", - "last_seen": "2025-06-01T22:05:51.287983", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.461629, - 51.52798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162008045", - "info": { - "identifier": 162008045, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162008045", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Goodfellows", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/9k/8972/162008045/8972_GMO160322_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.497806", - "last_seen": "2025-06-01T22:06:01.126349", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21998, - 51.38202 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.3, - "qmprice": 31.98, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162008120", - "info": { - "identifier": 162008120, - "sqm_ocr": 81.3, - "price": 2600.0, - "price_per_sqm": 31.980319803198032, - "url": "https://www.rightmove.co.uk/properties/162008120", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12684/162008120/12684_BLO050254_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.914952", - "last_seen": "2025-06-01T22:05:48.631405", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218571, - 51.502457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162008156", - "info": { - "identifier": 162008156, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162008156", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "eddisonwhite", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20183/162008156/20183_33887690_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.446963", - "last_seen": "2025-06-01T22:06:01.299935", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172728, - 51.41146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162008231", - "info": { - "identifier": 162008231, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162008231", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Ivory Real Estate", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82380/162008231/82380_IVG250098_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.596604", - "last_seen": "2025-06-01T20:19:58.596604", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017234, - 51.50096 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162008237", - "info": { - "identifier": 162008237, - "sqm_ocr": null, - "price": 3445.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162008237", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Landstones", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221669/162008237/221669_RL2006R_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.393942", - "last_seen": "2025-06-01T22:05:58.301528", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197822, - 51.51355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/162008462", - "info": { - "identifier": 162008462, - "sqm_ocr": null, - "price": 2708.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162008462", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17882/162008462/17882_39732_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.495417", - "last_seen": "2025-06-01T22:06:09.162469", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05386, - 51.51744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.2, - "qmprice": 33.24, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162008690", - "info": { - "identifier": 162008690, - "sqm_ocr": 75.2, - "price": 2500.0, - "price_per_sqm": 33.244680851063826, - "url": "https://www.rightmove.co.uk/properties/162008690", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71785/162008690/71785_33887721_IMG_04_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.459664", - "last_seen": "2025-06-01T22:05:59.164600", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146403, - 51.452778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162008696", - "info": { - "identifier": 162008696, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162008696", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202016/162008696/202016_33887722_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.512006", - "last_seen": "2025-06-01T22:05:43.997786", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.326737, - 51.514023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.0, - "qmprice": 38.28, - "rooms": 3, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162008702", - "info": { - "identifier": 162008702, - "sqm_ocr": 90.0, - "price": 3445.0, - "price_per_sqm": 38.27777777777778, - "url": "https://www.rightmove.co.uk/properties/162008702", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Cedar Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79883/162008702/79883_493_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.689969", - "last_seen": "2025-06-01T22:05:43.072104", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20207, - 51.55307 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162008834", - "info": { - "identifier": 162008834, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162008834", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219908/162008834/219908_4094_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.130893", - "last_seen": "2025-06-01T22:05:52.262975", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.362399, - 51.4606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.6, - "qmprice": 45.01, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/162008867", - "info": { - "identifier": 162008867, - "sqm_ocr": 74.6, - "price": 3358.0, - "price_per_sqm": 45.01340482573727, - "url": "https://www.rightmove.co.uk/properties/162008867", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32391/162008867/32391_33887733_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.769215", - "last_seen": "2025-06-01T22:05:53.861213", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12008, - 51.535088 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162008963", - "info": { - "identifier": 162008963, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162008963", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84845/162008963/84845_33887739_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.614028", - "last_seen": "2025-06-01T22:06:04.347615", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.316569, - 51.414413 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.6, - "qmprice": 32.4, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162009032", - "info": { - "identifier": 162009032, - "sqm_ocr": 92.6, - "price": 3000.0, - "price_per_sqm": 32.39740820734342, - "url": "https://www.rightmove.co.uk/properties/162009032", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93044/162009032/93044_33887744_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.404181", - "last_seen": "2025-06-01T22:06:04.623383", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229129, - 51.48269 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.9, - "qmprice": 39.2, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162009038", - "info": { - "identifier": 162009038, - "sqm_ocr": 82.9, - "price": 3250.0, - "price_per_sqm": 39.20386007237635, - "url": "https://www.rightmove.co.uk/properties/162009038", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54922/162009038/54922_NEL250253_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.479513", - "last_seen": "2025-06-01T22:06:13.631414", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13416, - 51.48046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162009047", - "info": { - "identifier": 162009047, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162009047", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162009047/96668_246770530042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.120584", - "last_seen": "2025-06-01T22:05:47.732906", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07987, - 51.528347 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 144.7, - "qmprice": 27.61, - "rooms": 3, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/162009398", - "info": { - "identifier": 162009398, - "sqm_ocr": 144.7, - "price": 3995.0, - "price_per_sqm": 27.608845888044232, - "url": "https://www.rightmove.co.uk/properties/162009398", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84815/162009398/84815_33887755_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.549843", - "last_seen": "2025-06-01T22:06:04.690158", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.348976, - 51.432495 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.0, - "qmprice": 40.32, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162009743", - "info": { - "identifier": 162009743, - "sqm_ocr": 93.0, - "price": 3750.0, - "price_per_sqm": 40.32258064516129, - "url": "https://www.rightmove.co.uk/properties/162009743", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/127k/126934/162009743/126934_6825a01b22466_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.631006", - "last_seen": "2025-06-01T22:06:13.016822", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164101, - 51.47223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.25, - "qmprice": 49.23, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162009758", - "info": { - "identifier": 162009758, - "sqm_ocr": 81.25, - "price": 4000.0, - "price_per_sqm": 49.23076923076923, - "url": "https://www.rightmove.co.uk/properties/162009758", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162009758/48101_1326585_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.184132", - "last_seen": "2025-06-01T22:06:09.416680", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022841, - 51.507298 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 36.23, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162009764", - "info": { - "identifier": 162009764, - "sqm_ocr": 69.0, - "price": 2500.0, - "price_per_sqm": 36.231884057971016, - "url": "https://www.rightmove.co.uk/properties/162009764", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162009764/48101_1325922_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.198615", - "last_seen": "2025-06-01T22:06:09.389534", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025868, - 51.500595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2125.0, - "url": "https://www.rightmove.co.uk/properties/162009782", - "info": { - "identifier": 162009782, - "sqm_ocr": null, - "price": 2125.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162009782", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/162009782/15969_1326613_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.451585", - "last_seen": "2025-06-01T22:05:44.338782", - "price": 2125.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375442, - 51.505184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.76, - "qmprice": 50.99, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162009827", - "info": { - "identifier": 162009827, - "sqm_ocr": 62.76, - "price": 3200.0, - "price_per_sqm": 50.98789037603569, - "url": "https://www.rightmove.co.uk/properties/162009827", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/162009827/15954_1326598_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.632637", - "last_seen": "2025-06-01T22:05:54.134851", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115241, - 51.533215 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.8, - "qmprice": 51.9, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162009848", - "info": { - "identifier": 162009848, - "sqm_ocr": 57.8, - "price": 3000.0, - "price_per_sqm": 51.90311418685121, - "url": "https://www.rightmove.co.uk/properties/162009848", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162009848/16050_1326091_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.993072", - "last_seen": "2025-06-01T22:05:47.893819", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079121, - 51.527187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.4, - "qmprice": 42.02, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162009851", - "info": { - "identifier": 162009851, - "sqm_ocr": 71.4, - "price": 3000.0, - "price_per_sqm": 42.016806722689076, - "url": "https://www.rightmove.co.uk/properties/162009851", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162009851/16050_1326090_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.985512", - "last_seen": "2025-06-01T22:05:47.904640", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079121, - 51.527187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.5, - "qmprice": 53.1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162009854", - "info": { - "identifier": 162009854, - "sqm_ocr": 56.5, - "price": 3000.0, - "price_per_sqm": 53.097345132743364, - "url": "https://www.rightmove.co.uk/properties/162009854", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162009854/16050_1326083_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.982076", - "last_seen": "2025-06-01T22:05:47.909944", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079121, - 51.527187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162010166", - "info": { - "identifier": 162010166, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162010166", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162010166/96668_248523915052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.822010", - "last_seen": "2025-06-01T22:05:53.440813", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118276, - 51.564816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162010184", - "info": { - "identifier": 162010184, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162010184", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162010184/96668_241835214032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.013299", - "last_seen": "2025-06-01T22:05:45.659075", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058868, - 51.617645 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162010187", - "info": { - "identifier": 162010187, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162010187", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162010187/96668_248531515052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.998404", - "last_seen": "2025-06-01T22:06:00.622663", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038207, - 51.491035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3744.0, - "url": "https://www.rightmove.co.uk/properties/162010196", - "info": { - "identifier": 162010196, - "sqm_ocr": null, - "price": 3744.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162010196", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162010196/96668_248537415052025_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.032836", - "last_seen": "2025-06-01T22:05:42.362154", - "price": 3744 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195214, - 51.557922 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/162010595", - "info": { - "identifier": 162010595, - "sqm_ocr": null, - "price": 3198.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162010595", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56271/162010595/56271_SKL160016_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.535030", - "last_seen": "2025-06-01T22:05:57.409118", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179802, - 51.49248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162010745", - "info": { - "identifier": 162010745, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162010745", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/162010745/67576_RL1713_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.216126, - 51.555935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 128.0, - "qmprice": 19.53, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162010925", - "info": { - "identifier": 162010925, - "sqm_ocr": 128.0, - "price": 2500.0, - "price_per_sqm": 19.53125, - "url": "https://www.rightmove.co.uk/properties/162010925", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Baker and Chase", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/110k/109898/162010925/109898_33887903_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.005306", - "last_seen": "2025-06-01T22:05:45.497817", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064415, - 51.647697 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162012683", - "info": { - "identifier": 162012683, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162012683", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162012683/96668_248542315052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.558259", - "last_seen": "2025-06-01T22:05:50.040357", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153017, - 51.578285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162012695", - "info": { - "identifier": 162012695, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162012695", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162012695/96668_248547615052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.516736", - "last_seen": "2025-06-01T22:05:39.509563", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.246905, - 51.60515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 48.53, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162012773", - "info": { - "identifier": 162012773, - "sqm_ocr": 68.0, - "price": 3300.0, - "price_per_sqm": 48.529411764705884, - "url": "https://www.rightmove.co.uk/properties/162012773", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14543/162012773/14543_CIT170050_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.029881", - "last_seen": "2025-06-01T22:05:53.013489", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099658, - 51.521038 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162012776", - "info": { - "identifier": 162012776, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162012776", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14543/162012776/14543_CIT180148_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.031073", - "last_seen": "2025-06-01T22:05:53.011616", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105243, - 51.52119 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/162012821", - "info": { - "identifier": 162012821, - "sqm_ocr": null, - "price": 2747.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162012821", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hanover", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7411/162012821/7411_HNV250491_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.616637", - "last_seen": "2025-06-01T22:05:38.973171", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197, - 51.56047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162013007", - "info": { - "identifier": 162013007, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162013007", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269888/162013007/269888_NEW250296_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.146244", - "last_seen": "2025-06-01T22:06:00.657310", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.044594, - 51.47048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162013058", - "info": { - "identifier": 162013058, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162013058", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "PropertyLoop", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222287/162013058/222287_31gexWDZ_IMG_00_0000_max_656x437.png", - "let_date_available": "16/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.142233", - "last_seen": "2025-06-01T22:05:47.529620", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0811, - 51.53119 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162013094", - "info": { - "identifier": 162013094, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162013094", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162013094/96668_248556215052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.111141", - "last_seen": "2025-06-01T22:06:09.548924", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073472, - 51.52956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/162013196", - "info": { - "identifier": 162013196, - "sqm_ocr": null, - "price": 2195.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162013196", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Affitto Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56291/162013196/56291_AFF1663_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.150954", - "last_seen": "2025-06-01T22:05:45.089830", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.349749, - 51.506664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.15, - "qmprice": 48.01, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162013268", - "info": { - "identifier": 162013268, - "sqm_ocr": 79.15, - "price": 3800.0, - "price_per_sqm": 48.010107391029685, - "url": "https://www.rightmove.co.uk/properties/162013268", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/162013268/48994_CNL240163_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.477084", - "last_seen": "2025-06-01T22:06:10.409489", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022708, - 51.50101 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/162015092", - "info": { - "identifier": 162015092, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162015092", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85699/162015092/85699_SHL250050_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.478277", - "last_seen": "2025-06-01T22:05:49.035245", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.233958, - 51.49391 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162015122", - "info": { - "identifier": 162015122, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162015122", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267758/162015122/267758_SHL250057_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.145906", - "last_seen": "2025-06-01T22:05:59.339965", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093343, - 51.429314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162015128", - "info": { - "identifier": 162015128, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162015128", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3719/162015128/3719_SHL250061_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.762739", - "last_seen": "2025-06-01T22:05:48.419372", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218624, - 51.478336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.1, - "qmprice": 39.24, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162015146", - "info": { - "identifier": 162015146, - "sqm_ocr": 84.1, - "price": 3300.0, - "price_per_sqm": 39.239001189060644, - "url": "https://www.rightmove.co.uk/properties/162015146", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3721/162015146/3721_SHL250078_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.332211", - "last_seen": "2025-06-01T22:06:01.195595", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205253, - 51.42563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162017330", - "info": { - "identifier": 162017330, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162017330", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Surrey Quays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60474/162017330/60474_000001345b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.939651", - "last_seen": "2025-06-01T22:06:00.819187", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01481, - 51.46759 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.06, - "qmprice": 36.12, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162017942", - "info": { - "identifier": 162017942, - "sqm_ocr": 83.06, - "price": 3000.0, - "price_per_sqm": 36.11846857693234, - "url": "https://www.rightmove.co.uk/properties/162017942", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162017942/48101_1326193_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.649152", - "last_seen": "2025-06-01T22:06:01.918547", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.070838, - 51.49982 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.1, - "qmprice": 43.87, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162018845", - "info": { - "identifier": 162018845, - "sqm_ocr": 66.1, - "price": 2900.0, - "price_per_sqm": 43.872919818456886, - "url": "https://www.rightmove.co.uk/properties/162018845", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Daniel Cobb", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58939/162018845/58939_6715f3bb-1e29-4d51-b778-1212fa3b831b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.789236", - "last_seen": "2025-06-01T22:05:59.694331", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112784, - 51.500072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3213.0, - "url": "https://www.rightmove.co.uk/properties/162018896", - "info": { - "identifier": 162018896, - "sqm_ocr": null, - "price": 3213.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162018896", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162018896/253604_44H1605_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.056855", - "last_seen": "2025-06-01T22:06:07.559515", - "price": 3213.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00768, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.85, - "qmprice": 35.0, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162019034", - "info": { - "identifier": 162019034, - "sqm_ocr": 62.85, - "price": 2200.0, - "price_per_sqm": 35.003977724741446, - "url": "https://www.rightmove.co.uk/properties/162019034", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162019034/48101_1326622_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.761088", - "last_seen": "2025-06-01T22:06:02.751210", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012448, - 51.512047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.78, - "qmprice": 40.18, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162019043", - "info": { - "identifier": 162019043, - "sqm_ocr": 49.78, - "price": 2000.0, - "price_per_sqm": 40.17677782241864, - "url": "https://www.rightmove.co.uk/properties/162019043", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162019043/48101_1323057_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.796049", - "last_seen": "2025-06-01T22:06:02.754493", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012023, - 51.512737 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162019169", - "info": { - "identifier": 162019169, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162019169", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Excel Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99425/162019169/99425_102708036689_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.433197", - "last_seen": "2025-06-01T22:05:38.778961", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18457, - 51.60856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.2, - "qmprice": 30.52, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162019454", - "info": { - "identifier": 162019454, - "sqm_ocr": 85.2, - "price": 2600.0, - "price_per_sqm": 30.516431924882628, - "url": "https://www.rightmove.co.uk/properties/162019454", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "John Payne", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149843/162019454/149843_P276929_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.252370", - "last_seen": "2025-06-01T22:05:47.034315", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00814, - 51.4851 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162019916", - "info": { - "identifier": 162019916, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162019916", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "David Conway & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6116/162019916/6116_66_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:43.999564", - "last_seen": "2025-06-01T22:05:38.342527", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.14199, - 51.56285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.8, - "qmprice": 22.5, - "rooms": 4, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162020447", - "info": { - "identifier": 162020447, - "sqm_ocr": 117.8, - "price": 2650.0, - "price_per_sqm": 22.495755517826826, - "url": "https://www.rightmove.co.uk/properties/162020447", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Alan de Maid", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3276/162020447/3276_000625326_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.299053", - "last_seen": "2025-06-01T22:05:41.676515", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.08211, - 51.37616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.8, - "qmprice": 34.54, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162021293", - "info": { - "identifier": 162021293, - "sqm_ocr": 60.8, - "price": 2100.0, - "price_per_sqm": 34.53947368421053, - "url": "https://www.rightmove.co.uk/properties/162021293", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "jdm", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250727/162021293/250727_LGW250063_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.780592", - "last_seen": "2025-06-01T22:05:55.641362", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.04559, - 51.47257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.3, - "qmprice": 30.74, - "rooms": 3, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/162021320", - "info": { - "identifier": 162021320, - "sqm_ocr": 94.3, - "price": 2899.0, - "price_per_sqm": 30.742311770943797, - "url": "https://www.rightmove.co.uk/properties/162021320", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146498/162021320/146498_33732762_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.013988", - "last_seen": "2025-06-01T22:06:05.578981", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102602, - 51.484596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162021323", - "info": { - "identifier": 162021323, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162021323", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Horton and Garton", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60200/162021323/60200_29063058_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.991375", - "last_seen": "2025-06-01T22:05:48.485913", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.227538, - 51.49913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.8, - "qmprice": 36.62, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162022316", - "info": { - "identifier": 162022316, - "sqm_ocr": 62.8, - "price": 2300.0, - "price_per_sqm": 36.62420382165605, - "url": "https://www.rightmove.co.uk/properties/162022316", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Tates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32769/162022316/32769_33697468_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.450884", - "last_seen": "2025-06-01T22:05:57.497122", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211535, - 51.50056 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.9, - "qmprice": 36.72, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162022376", - "info": { - "identifier": 162022376, - "sqm_ocr": 74.9, - "price": 2750.0, - "price_per_sqm": 36.71562082777036, - "url": "https://www.rightmove.co.uk/properties/162022376", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30575/162022376/30575_05311879_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.607194", - "last_seen": "2025-06-01T22:06:04.296211", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302004, - 51.454388 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162022400", - "info": { - "identifier": 162022400, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162022400", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43760/162022400/43760_P300715_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.643285", - "last_seen": "2025-06-01T22:05:38.913541", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19763, - 51.56326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.3, - "qmprice": 30.96, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162022622", - "info": { - "identifier": 162022622, - "sqm_ocr": 74.3, - "price": 2300.0, - "price_per_sqm": 30.955585464333783, - "url": "https://www.rightmove.co.uk/properties/162022622", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "jdm", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250727/162022622/250727_LGW250064_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.130462", - "last_seen": "2025-06-01T22:05:46.586787", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.04559, - 51.47257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.5, - "qmprice": 54.67, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/162022967", - "info": { - "identifier": 162022967, - "sqm_ocr": 58.5, - "price": 3198.0, - "price_per_sqm": 54.666666666666664, - "url": "https://www.rightmove.co.uk/properties/162022967", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113191/162022967/113191_33888297_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.242233", - "last_seen": "2025-06-01T22:05:47.561809", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056181, - 51.5361 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162023201", - "info": { - "identifier": 162023201, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162023201", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Move Inn Estates Iver", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113317/162023201/113317_33888308_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.967495", - "last_seen": "2025-06-01T22:05:52.602648", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.38413, - 51.48648 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162023216", - "info": { - "identifier": 162023216, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162023216", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Excel Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99425/162023216/99425_102708042642_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.309714", - "last_seen": "2025-06-01T22:05:39.798275", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19425, - 51.56114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.94, - "qmprice": 61.87, - "rooms": 2, - "total_price": 2904.0, - "url": "https://www.rightmove.co.uk/properties/162023321", - "info": { - "identifier": 162023321, - "sqm_ocr": 46.94, - "price": 2904.0, - "price_per_sqm": 61.86621218576907, - "url": "https://www.rightmove.co.uk/properties/162023321", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/162023321/76585_1326431_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.751049", - "last_seen": "2025-06-01T22:06:15.630764", - "price": 2904.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141189, - 51.522316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.1, - "qmprice": 51.22, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162023384", - "info": { - "identifier": 162023384, - "sqm_ocr": 78.1, - "price": 4000.0, - "price_per_sqm": 51.216389244558265, - "url": "https://www.rightmove.co.uk/properties/162023384", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/162023384/73120_1326631_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.840876", - "last_seen": "2025-06-01T22:05:42.861306", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108528, - 51.52093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 128.29, - "qmprice": 25.72, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162023405", - "info": { - "identifier": 162023405, - "sqm_ocr": 128.29, - "price": 3300.0, - "price_per_sqm": 25.722971392937875, - "url": "https://www.rightmove.co.uk/properties/162023405", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6355/162023405/6355_ENF250052_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.007879", - "last_seen": "2025-06-01T22:05:45.482379", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125021, - 51.65084 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162023762", - "info": { - "identifier": 162023762, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162023762", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Jayson Russell", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43502/162023762/43502_33888347_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.159644", - "last_seen": "2025-06-01T22:05:39.131437", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221102, - 51.589767 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162023900", - "info": { - "identifier": 162023900, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162023900", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Jayson Russell", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43502/162023900/43502_33888352_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.043905", - "last_seen": "2025-06-01T22:05:38.462771", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238335, - 51.6018 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.3, - "qmprice": 32.34, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162023960", - "info": { - "identifier": 162023960, - "sqm_ocr": 77.3, - "price": 2500.0, - "price_per_sqm": 32.34152652005175, - "url": "https://www.rightmove.co.uk/properties/162023960", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/162023960/108947_1325965_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.176171", - "last_seen": "2025-06-01T22:05:50.217980", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.323445, - 51.584705 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.66, - "qmprice": 43.92, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/162024017", - "info": { - "identifier": 162024017, - "sqm_ocr": 61.66, - "price": 2708.0, - "price_per_sqm": 43.918261433668505, - "url": "https://www.rightmove.co.uk/properties/162024017", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58979/162024017/58979_CHQ012562796_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.147507", - "last_seen": "2025-06-01T22:05:58.230864", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180727, - 51.486275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 29.41, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162024077", - "info": { - "identifier": 162024077, - "sqm_ocr": 85.0, - "price": 2500.0, - "price_per_sqm": 29.41176470588235, - "url": "https://www.rightmove.co.uk/properties/162024077", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12685/162024077/12685_CSC224000_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.632624", - "last_seen": "2025-06-01T22:05:43.407567", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12107, - 51.333374 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162024833", - "info": { - "identifier": 162024833, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162024833", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Real Move Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53891/162024833/53891_RME23749837594643576_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.785279", - "last_seen": "2025-06-01T22:06:04.177343", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07617, - 51.5813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.1, - "qmprice": 59.38, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162025184", - "info": { - "identifier": 162025184, - "sqm_ocr": 42.1, - "price": 2500.0, - "price_per_sqm": 59.38242280285036, - "url": "https://www.rightmove.co.uk/properties/162025184", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/162025184/264326_Y80564_1_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.629633", - "last_seen": "2025-06-01T22:06:15.777913", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162774, - 51.515003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.8, - "qmprice": 31.34, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162025541", - "info": { - "identifier": 162025541, - "sqm_ocr": 71.8, - "price": 2250.0, - "price_per_sqm": 31.337047353760447, - "url": "https://www.rightmove.co.uk/properties/162025541", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47660/162025541/47660_33888434_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.129188", - "last_seen": "2025-06-01T22:05:39.175619", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145047, - 51.61414 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.0, - "qmprice": 35.26, - "rooms": 4, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/162025877", - "info": { - "identifier": 162025877, - "sqm_ocr": 102.0, - "price": 3597.0, - "price_per_sqm": 35.26470588235294, - "url": "https://www.rightmove.co.uk/properties/162025877", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71137/162025877/71137_33888443_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.186732", - "last_seen": "2025-06-01T22:06:05.644025", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093026, - 51.481056 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.0, - "qmprice": 29.09, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162026267", - "info": { - "identifier": 162026267, - "sqm_ocr": 110.0, - "price": 3200.0, - "price_per_sqm": 29.09090909090909, - "url": "https://www.rightmove.co.uk/properties/162026267", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/162026267/52887_33888456_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.381657", - "last_seen": "2025-06-01T22:06:01.627884", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19363, - 51.42118 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 119.3, - "qmprice": 20.12, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162027143", - "info": { - "identifier": 162027143, - "sqm_ocr": 119.3, - "price": 2400.0, - "price_per_sqm": 20.1173512154233, - "url": "https://www.rightmove.co.uk/properties/162027143", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "John Payne", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102821/162027143/102821_P276955_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.540241", - "last_seen": "2025-06-01T22:05:46.308412", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.04006, - 51.46773 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 34.33, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162027587", - "info": { - "identifier": 162027587, - "sqm_ocr": 67.0, - "price": 2300.0, - "price_per_sqm": 34.32835820895522, - "url": "https://www.rightmove.co.uk/properties/162027587", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Squires Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46983/162027587/46983_33888498_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.195502", - "last_seen": "2025-06-01T22:05:38.978963", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21985, - 51.616795 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.9, - "qmprice": 23.28, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162027992", - "info": { - "identifier": 162027992, - "sqm_ocr": 85.9, - "price": 2000.0, - "price_per_sqm": 23.28288707799767, - "url": "https://www.rightmove.co.uk/properties/162027992", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "John Payne", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/190k/189056/162027992/189056_P276574_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.747432", - "last_seen": "2025-06-01T22:05:57.074577", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06863, - 51.47244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162029609", - "info": { - "identifier": 162029609, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162029609", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Move Inn Estates Iver", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113317/162029609/113317_33888553_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.239304", - "last_seen": "2025-06-01T22:05:44.942803", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375454, - 51.50579 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2860.0, - "url": "https://www.rightmove.co.uk/properties/162029759", - "info": { - "identifier": 162029759, - "sqm_ocr": null, - "price": 2860.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162029759", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162029759/238769_NA080977_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.091223", - "last_seen": "2025-06-01T22:05:56.596398", - "price": 2860.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24039, - 51.57676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162029816", - "info": { - "identifier": 162029816, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162029816", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50683/162029816/50683_P276956_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.990660", - "last_seen": "2025-06-01T22:06:05.593773", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07693, - 51.49686 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.0, - "qmprice": 40.42, - "rooms": 2, - "total_price": 2102.0, - "url": "https://www.rightmove.co.uk/properties/162030143", - "info": { - "identifier": 162030143, - "sqm_ocr": 52.0, - "price": 2102.0, - "price_per_sqm": 40.42307692307692, - "url": "https://www.rightmove.co.uk/properties/162030143", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Cedar Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79883/162030143/79883_50_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.083807", - "last_seen": "2025-06-01T22:05:40.201617", - "price": 2101 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20624, - 51.54244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.2, - "qmprice": 71.14, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162030884", - "info": { - "identifier": 162030884, - "sqm_ocr": 49.2, - "price": 3500.0, - "price_per_sqm": 71.13821138211382, - "url": "https://www.rightmove.co.uk/properties/162030884", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/162030884/51465_6822fe175c02c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.098517", - "last_seen": "2025-06-01T22:06:14.192137", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199033, - 51.451763 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162031583", - "info": { - "identifier": 162031583, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162031583", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/162031583/249692_RL4629_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.420419", - "last_seen": "2025-06-01T22:06:15.466205", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140554, - 51.487457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.8, - "qmprice": 29.41, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162031703", - "info": { - "identifier": 162031703, - "sqm_ocr": 74.8, - "price": 2200.0, - "price_per_sqm": 29.411764705882355, - "url": "https://www.rightmove.co.uk/properties/162031703", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "John Payne", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102821/162031703/102821_P276957_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.725500", - "last_seen": "2025-06-01T22:05:46.119007", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02412, - 51.485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.8, - "qmprice": 41.79, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162031781", - "info": { - "identifier": 162031781, - "sqm_ocr": 65.8, - "price": 2750.0, - "price_per_sqm": 41.79331306990882, - "url": "https://www.rightmove.co.uk/properties/162031781", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71785/162031781/71785_33888606_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.709456", - "last_seen": "2025-06-01T22:05:59.011276", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1404, - 51.455177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 29.55, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162031889", - "info": { - "identifier": 162031889, - "sqm_ocr": 88.0, - "price": 2600.0, - "price_per_sqm": 29.545454545454547, - "url": "https://www.rightmove.co.uk/properties/162031889", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50304/162031889/50304_33888612_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.486959", - "last_seen": "2025-06-01T22:05:44.268118", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.328263, - 51.5123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162032222", - "info": { - "identifier": 162032222, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162032222", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CITY REALTOR LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/179k/178868/162032222/178868_33888625_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.504926", - "last_seen": "2025-06-01T22:06:10.739360", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043108, - 51.518894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.78, - "qmprice": 36.77, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162032315", - "info": { - "identifier": 162032315, - "sqm_ocr": 108.78, - "price": 4000.0, - "price_per_sqm": 36.77146534289391, - "url": "https://www.rightmove.co.uk/properties/162032315", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52518/162032315/52518_CWL210087_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.130610", - "last_seen": "2025-06-01T22:06:08.943739", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019957, - 51.49918 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 27.47, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162032429", - "info": { - "identifier": 162032429, - "sqm_ocr": 91.0, - "price": 2500.0, - "price_per_sqm": 27.47252747252747, - "url": "https://www.rightmove.co.uk/properties/162032429", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50304/162032429/50304_33888640_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.846479", - "last_seen": "2025-06-01T22:05:44.527291", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293693, - 51.5118 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.3, - "qmprice": 47.26, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162032441", - "info": { - "identifier": 162032441, - "sqm_ocr": 60.3, - "price": 2850.0, - "price_per_sqm": 47.2636815920398, - "url": "https://www.rightmove.co.uk/properties/162032441", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64127/162032441/64127_1325871_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.440860", - "last_seen": "2025-06-01T22:05:42.518805", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130923, - 51.549847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.3, - "qmprice": 36.54, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/162032450", - "info": { - "identifier": 162032450, - "sqm_ocr": 68.3, - "price": 2496.0, - "price_per_sqm": 36.54465592972182, - "url": "https://www.rightmove.co.uk/properties/162032450", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64127/162032450/64127_1326134_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.451340", - "last_seen": "2025-06-01T22:05:42.504436", - "price": 2496.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14847, - 51.544292 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.8, - "qmprice": 35.54, - "rooms": 2, - "total_price": 2552.0, - "url": "https://www.rightmove.co.uk/properties/162032681", - "info": { - "identifier": 162032681, - "sqm_ocr": 71.8, - "price": 2552.0, - "price_per_sqm": 35.543175487465184, - "url": "https://www.rightmove.co.uk/properties/162032681", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/162032681/97423_CEI240698_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.417383", - "last_seen": "2025-06-01T22:05:49.873997", - "price": 2552 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133845, - 51.59168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.1, - "qmprice": 25.52, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162032795", - "info": { - "identifier": 162032795, - "sqm_ocr": 92.1, - "price": 2350.0, - "price_per_sqm": 25.515743756786105, - "url": "https://www.rightmove.co.uk/properties/162032795", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Century 21 Royale", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/180k/179552/162032795/179552_R210352_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.684485", - "last_seen": "2025-06-01T22:05:58.830101", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.296634, - 51.403465 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 35.38, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162032831", - "info": { - "identifier": 162032831, - "sqm_ocr": 65.0, - "price": 2300.0, - "price_per_sqm": 35.38461538461539, - "url": "https://www.rightmove.co.uk/properties/162032831", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Squires Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46983/162032831/46983_33888671_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.024363", - "last_seen": "2025-06-01T22:05:38.518576", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232363, - 51.6209 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.55, - "qmprice": 37.02, - "rooms": 2, - "total_price": 2575.0, - "url": "https://www.rightmove.co.uk/properties/162032843", - "info": { - "identifier": 162032843, - "sqm_ocr": 69.55, - "price": 2575.0, - "price_per_sqm": 37.02372393961179, - "url": "https://www.rightmove.co.uk/properties/162032843", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14606/162032843/14606_29059711_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.381045", - "last_seen": "2025-06-01T22:06:05.122919", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072523, - 51.502018 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.95, - "qmprice": 32.49, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162032891", - "info": { - "identifier": 162032891, - "sqm_ocr": 116.95, - "price": 3800.0, - "price_per_sqm": 32.492518170158185, - "url": "https://www.rightmove.co.uk/properties/162032891", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Castles Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257138/162032891/257138_2713573_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.379960", - "last_seen": "2025-06-01T22:05:57.173571", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0677, - 51.54806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162033359", - "info": { - "identifier": 162033359, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162033359", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/162033359/101522_1326507_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.945777", - "last_seen": "2025-06-01T22:06:10.628008", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.046944, - 51.526558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.1, - "qmprice": 31.34, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/162033566", - "info": { - "identifier": 162033566, - "sqm_ocr": 70.1, - "price": 2197.0, - "price_per_sqm": 31.34094151212554, - "url": "https://www.rightmove.co.uk/properties/162033566", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/162033566/84791_33888699_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.828283", - "last_seen": "2025-06-01T22:05:54.922015", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.291357, - 51.515778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.1, - "qmprice": 53.6, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/162033722", - "info": { - "identifier": 162033722, - "sqm_ocr": 68.1, - "price": 3650.0, - "price_per_sqm": 53.59765051395008, - "url": "https://www.rightmove.co.uk/properties/162033722", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162033722/26207_HEA732236_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.571652", - "last_seen": "2025-06-01T22:05:54.329383", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092571, - 51.536896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 45.93, - "rooms": 3, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162033731", - "info": { - "identifier": 162033731, - "sqm_ocr": 75.0, - "price": 3445.0, - "price_per_sqm": 45.93333333333333, - "url": "https://www.rightmove.co.uk/properties/162033731", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46013/162033731/46013_HEA744247_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.556468", - "last_seen": "2025-06-01T22:05:54.343774", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139164, - 51.560123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162033743", - "info": { - "identifier": 162033743, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162033743", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/141k/140183/162033743/140183_CSG160369_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.481488", - "last_seen": "2025-06-01T22:05:41.375716", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.239319, - 51.535366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.5, - "qmprice": 47.62, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162034568", - "info": { - "identifier": 162034568, - "sqm_ocr": 73.5, - "price": 3500.0, - "price_per_sqm": 47.61904761904762, - "url": "https://www.rightmove.co.uk/properties/162034568", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lyons London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/153k/152984/162034568/152984_LYON2_000262_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.178040", - "last_seen": "2025-06-01T22:05:59.370083", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106986, - 51.50193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.3, - "qmprice": 32.07, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162034616", - "info": { - "identifier": 162034616, - "sqm_ocr": 87.3, - "price": 2800.0, - "price_per_sqm": 32.07331042382589, - "url": "https://www.rightmove.co.uk/properties/162034616", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "April", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75126/162034616/75126_APR250052_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.844410", - "last_seen": "2025-06-01T22:06:11.573644", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.000769, - 51.562157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3501.0, - "url": "https://www.rightmove.co.uk/properties/162034622", - "info": { - "identifier": 162034622, - "sqm_ocr": null, - "price": 3501.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162034622", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Prime London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/110k/109135/162034622/109135_33855078_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.644205", - "last_seen": "2025-06-01T22:05:59.085194", - "price": 3501 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124534, - 51.4824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.9, - "qmprice": 37.11, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162034949", - "info": { - "identifier": 162034949, - "sqm_ocr": 53.9, - "price": 2000.0, - "price_per_sqm": 37.10575139146568, - "url": "https://www.rightmove.co.uk/properties/162034949", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Aston Rowe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230534/162034949/230534_33888808_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.884247", - "last_seen": "2025-06-01T22:05:44.797025", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25535, - 51.5064 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162034994", - "info": { - "identifier": 162034994, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162034994", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278060/162034994/278060_KBS250185_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.563560", - "last_seen": "2025-06-01T22:05:39.413828", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.246224, - 51.60493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 47.79, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162035219", - "info": { - "identifier": 162035219, - "sqm_ocr": 68.0, - "price": 3250.0, - "price_per_sqm": 47.794117647058826, - "url": "https://www.rightmove.co.uk/properties/162035219", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Tate Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111214/162035219/111214_MAR17_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.651053", - "last_seen": "2025-06-01T22:05:48.390092", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21367, - 51.47789 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162035252", - "info": { - "identifier": 162035252, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162035252", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "All in the postcode...SW19.com", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34619/162035252/34619_7700466_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.364035", - "last_seen": "2025-06-01T22:06:01.173305", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19177, - 51.41374 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.9, - "qmprice": 29.62, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162035366", - "info": { - "identifier": 162035366, - "sqm_ocr": 70.9, - "price": 2100.0, - "price_per_sqm": 29.619181946403383, - "url": "https://www.rightmove.co.uk/properties/162035366", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Camerons Stiff & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34175/162035366/34175_29415443_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.222804", - "last_seen": "2025-06-01T22:05:40.699661", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22863, - 51.548172 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162035399", - "info": { - "identifier": 162035399, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162035399", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162035399/96668_244401907042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.936277", - "last_seen": "2025-06-01T22:06:09.764754", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056175, - 51.51595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162035639", - "info": { - "identifier": 162035639, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162035639", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162035639/96668_244605709042025_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.090670", - "last_seen": "2025-06-01T22:06:03.123732", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.014456, - 51.518875 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.14, - "qmprice": 41.4, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162035765", - "info": { - "identifier": 162035765, - "sqm_ocr": 53.14, - "price": 2200.0, - "price_per_sqm": 41.40007527286413, - "url": "https://www.rightmove.co.uk/properties/162035765", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162035765/96668_248045412052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.556693", - "last_seen": "2025-06-01T22:06:02.186051", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.027025, - 51.5044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162036011", - "info": { - "identifier": 162036011, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162036011", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162036011/96668_248579416052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.728924", - "last_seen": "2025-06-01T22:05:43.467605", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024386, - 51.35408 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162036026", - "info": { - "identifier": 162036026, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162036026", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/162036026/191255_33888873_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.063358", - "last_seen": "2025-06-01T22:06:09.589540", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06918, - 51.50618 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.7, - "qmprice": 40.39, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162036068", - "info": { - "identifier": 162036068, - "sqm_ocr": 55.7, - "price": 2250.0, - "price_per_sqm": 40.394973070017954, - "url": "https://www.rightmove.co.uk/properties/162036068", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/162036068/67576_RL0046_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.046352", - "last_seen": "2025-06-01T22:05:42.340947", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150076, - 51.550976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.4, - "qmprice": 45.14, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162036077", - "info": { - "identifier": 162036077, - "sqm_ocr": 86.4, - "price": 3900.0, - "price_per_sqm": 45.138888888888886, - "url": "https://www.rightmove.co.uk/properties/162036077", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Austin Homes London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105559/162036077/105559_96440463-2657-4698-8a3d-b6bbad7cd832_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.172400", - "last_seen": "2025-06-01T22:05:47.459587", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089644, - 51.52798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162036164", - "info": { - "identifier": 162036164, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162036164", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/162036164/63031_HEA224435_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.705640", - "last_seen": "2025-06-01T22:05:43.056433", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134301, - 51.53591 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/162036212", - "info": { - "identifier": 162036212, - "sqm_ocr": null, - "price": 2295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162036212", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Brink Riley", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120589/162036212/120589_2674363_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.570783", - "last_seen": "2025-06-01T22:06:02.772614", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.076684, - 51.50545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 40.12, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162036239", - "info": { - "identifier": 162036239, - "sqm_ocr": 81.0, - "price": 3250.0, - "price_per_sqm": 40.123456790123456, - "url": "https://www.rightmove.co.uk/properties/162036239", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13325/162036239/13325_CHL240047_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.938686", - "last_seen": "2025-06-01T22:05:44.694781", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269396, - 51.496754 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162036551", - "info": { - "identifier": 162036551, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162036551", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107680/162036551/107680_33888914_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.935060", - "last_seen": "2025-06-01T22:06:03.706724", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0782, - 51.551994 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2075.0, - "url": "https://www.rightmove.co.uk/properties/162036806", - "info": { - "identifier": 162036806, - "sqm_ocr": null, - "price": 2075.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162036806", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Sincere lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96983/162036806/96983_33888935_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.410403", - "last_seen": "2025-06-01T22:05:40.300530", - "price": 2075.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212904, - 51.551857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162036977", - "info": { - "identifier": 162036977, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162036977", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99755/162036977/99755_2592369_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.833046", - "last_seen": "2025-06-01T22:06:15.223340", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170193, - 51.525333 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162037133", - "info": { - "identifier": 162037133, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162037133", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Your Move Sales & Lettings", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81876/162037133/81876_WLT230283_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.711952", - "last_seen": "2025-06-01T22:06:11.809533", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027079, - 51.58766 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.28, - "qmprice": 44.96, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162037157", - "info": { - "identifier": 162037157, - "sqm_ocr": 72.28, - "price": 3250.0, - "price_per_sqm": 44.96402877697842, - "url": "https://www.rightmove.co.uk/properties/162037157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/162037157/15966_1325772_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.531777", - "last_seen": "2025-06-01T22:06:13.125582", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151509, - 51.470688 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162037385", - "info": { - "identifier": 162037385, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162037385", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44870/162037385/44870_33888978_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.143947", - "last_seen": "2025-06-01T22:05:39.149355", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232889, - 51.60127 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162037475", - "info": { - "identifier": 162037475, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162037475", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marc and Partners", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201956/162037475/201956_MAY240316_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.169475", - "last_seen": "2025-06-01T22:05:59.362634", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12494, - 51.48194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.4, - "qmprice": 37.62, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162037532", - "info": { - "identifier": 162037532, - "sqm_ocr": 86.4, - "price": 3250.0, - "price_per_sqm": 37.61574074074074, - "url": "https://www.rightmove.co.uk/properties/162037532", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68802/162037532/68802_KDA250982_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.655736", - "last_seen": "2025-06-01T22:05:59.077590", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139441, - 51.45048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.6, - "qmprice": 33.27, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/162037577", - "info": { - "identifier": 162037577, - "sqm_ocr": 67.6, - "price": 2249.0, - "price_per_sqm": 33.269230769230774, - "url": "https://www.rightmove.co.uk/properties/162037577", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/249k/248528/162037577/248528_33888991_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.319468", - "last_seen": "2025-06-01T22:05:56.291509", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299731, - 51.490387 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162037865", - "info": { - "identifier": 162037865, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162037865", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/162037865/253853_1326597_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.703213", - "last_seen": "2025-06-01T22:06:06.347397", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09922, - 51.49605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 149.1, - "qmprice": 23.47, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162037895", - "info": { - "identifier": 162037895, - "sqm_ocr": 149.1, - "price": 3500.0, - "price_per_sqm": 23.474178403755868, - "url": "https://www.rightmove.co.uk/properties/162037895", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/162037895/87812_1325774_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.565994", - "last_seen": "2025-06-01T22:05:39.412074", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203366, - 51.571087 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.8, - "qmprice": 50.04, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/162037901", - "info": { - "identifier": 162037901, - "sqm_ocr": 49.8, - "price": 2492.0, - "price_per_sqm": 50.040160642570285, - "url": "https://www.rightmove.co.uk/properties/162037901", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Cedar Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79883/162037901/79883_688_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.704055", - "last_seen": "2025-06-01T22:05:42.180094", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18467, - 51.55164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.5, - "qmprice": 44.87, - "rooms": 2, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/162038111", - "info": { - "identifier": 162038111, - "sqm_ocr": 56.5, - "price": 2535.0, - "price_per_sqm": 44.86725663716814, - "url": "https://www.rightmove.co.uk/properties/162038111", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/162038111/65124_CEE240892_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.054863", - "last_seen": "2025-06-01T22:06:05.351834", - "price": 2535 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100229, - 51.49108 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.0, - "qmprice": 28.46, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162038123", - "info": { - "identifier": 162038123, - "sqm_ocr": 123.0, - "price": 3500.0, - "price_per_sqm": 28.45528455284553, - "url": "https://www.rightmove.co.uk/properties/162038123", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162038123/87187_63099_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.166708", - "last_seen": "2025-06-01T22:05:46.227721", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.029229, - 51.46018 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.06, - "qmprice": 29.61, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162038306", - "info": { - "identifier": 162038306, - "sqm_ocr": 81.06, - "price": 2400.0, - "price_per_sqm": 29.607698001480383, - "url": "https://www.rightmove.co.uk/properties/162038306", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Net Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43665/162038306/43665_101793000948_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.415197", - "last_seen": "2025-06-01T22:06:09.912281", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06182, - 51.51334 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3857.0, - "url": "https://www.rightmove.co.uk/properties/162038657", - "info": { - "identifier": 162038657, - "sqm_ocr": null, - "price": 3857.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162038657", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "CHAMPS PROPERTY", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287132/162038657/287132_champs_1345752610_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.615502", - "last_seen": "2025-06-01T22:05:59.121417", - "price": 3856 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114479, - 51.4863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.0, - "qmprice": 29.28, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162038696", - "info": { - "identifier": 162038696, - "sqm_ocr": 111.0, - "price": 3250.0, - "price_per_sqm": 29.27927927927928, - "url": "https://www.rightmove.co.uk/properties/162038696", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Bloom Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/184k/183764/162038696/183764_BLR250006_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.066921", - "last_seen": "2025-06-01T22:05:38.446648", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240302, - 51.64411 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162038840", - "info": { - "identifier": 162038840, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162038840", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Michael Charles Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85888/162038840/85888_michael_647165881_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.638726", - "last_seen": "2025-06-01T22:05:54.141412", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123409, - 51.553078 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.6, - "qmprice": 41.35, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162038996", - "info": { - "identifier": 162038996, - "sqm_ocr": 78.6, - "price": 3250.0, - "price_per_sqm": 41.348600508905854, - "url": "https://www.rightmove.co.uk/properties/162038996", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/162038996/65124_CEI242116_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.398117", - "last_seen": "2025-06-01T22:06:06.317387", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097479, - 51.491787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.5, - "qmprice": 36.07, - "rooms": 2, - "total_price": 3553.0, - "url": "https://www.rightmove.co.uk/properties/162039281", - "info": { - "identifier": 162039281, - "sqm_ocr": 98.5, - "price": 3553.0, - "price_per_sqm": 36.07106598984772, - "url": "https://www.rightmove.co.uk/properties/162039281", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Unihood", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289043/162039281/289043_71TryonHouse_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.622937", - "last_seen": "2025-06-01T22:05:58.565668", - "price": 3553 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30351, - 51.40846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.3, - "qmprice": 45.45, - "rooms": 2, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/162039410", - "info": { - "identifier": 162039410, - "sqm_ocr": 48.3, - "price": 2195.0, - "price_per_sqm": 45.44513457556936, - "url": "https://www.rightmove.co.uk/properties/162039410", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48330/162039410/48330_BRI250018_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.436106", - "last_seen": "2025-06-01T22:05:59.390998", - "price": 2075.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126307, - 51.459732 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.3, - "qmprice": 48.39, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162039596", - "info": { - "identifier": 162039596, - "sqm_ocr": 71.3, - "price": 3450.0, - "price_per_sqm": 48.38709677419355, - "url": "https://www.rightmove.co.uk/properties/162039596", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Unihood", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289043/162039596/289043_84TryonHouse_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "17/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.626275", - "last_seen": "2025-06-01T22:05:58.947000", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30351, - 51.40846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 131.7, - "qmprice": 28.85, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162039809", - "info": { - "identifier": 162039809, - "sqm_ocr": 131.7, - "price": 3800.0, - "price_per_sqm": 28.853454821564164, - "url": "https://www.rightmove.co.uk/properties/162039809", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Wellington Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288956/162039809/288956_33889179_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.172013", - "last_seen": "2025-06-01T22:05:39.010212", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206129, - 51.566723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162040199", - "info": { - "identifier": 162040199, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162040199", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Fyfe McDade Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93194/162040199/93194_BLL000BAE_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.339591", - "last_seen": "2025-06-01T22:05:42.062524", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124384, - 51.526054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162040343", - "info": { - "identifier": 162040343, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162040343", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162040343/96668_219001114082024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.976255", - "last_seen": "2025-06-01T22:05:41.062006", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.319512, - 51.56114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162040355", - "info": { - "identifier": 162040355, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162040355", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162040355/96668_109467128042021_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.561038", - "last_seen": "2025-06-01T22:05:45.141993", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.287169, - 51.514565 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162040406", - "info": { - "identifier": 162040406, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162040406", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stamfords", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18209/162040406/18209_33874571_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.949707", - "last_seen": "2025-06-01T22:05:52.652562", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.362185, - 51.470325 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162040451", - "info": { - "identifier": 162040451, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162040451", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162040451/96668_240928606032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.004814", - "last_seen": "2025-06-01T22:06:00.271073", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131011, - 51.453506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.2, - "qmprice": 39.84, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162040466", - "info": { - "identifier": 162040466, - "sqm_ocr": 50.2, - "price": 2000.0, - "price_per_sqm": 39.8406374501992, - "url": "https://www.rightmove.co.uk/properties/162040466", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Douglas Pryce", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227717/162040466/227717_33889224_IMG_06_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.015048", - "last_seen": "2025-06-01T22:06:10.093665", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004227, - 51.48993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.98, - "qmprice": 37.73, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162040478", - "info": { - "identifier": 162040478, - "sqm_ocr": 56.98, - "price": 2150.0, - "price_per_sqm": 37.732537732537736, - "url": "https://www.rightmove.co.uk/properties/162040478", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Camerons Stiff & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34175/162040478/34175_33889227_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.417361", - "last_seen": "2025-06-01T22:05:40.776591", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222469, - 51.549545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162040628", - "info": { - "identifier": 162040628, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162040628", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162040628/96668_243862902042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.274786", - "last_seen": "2025-06-01T22:05:39.907097", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.143191, - 51.487144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162040700", - "info": { - "identifier": 162040700, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162040700", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162040700/96668_248583816052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.542470", - "last_seen": "2025-06-01T22:06:13.118747", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188215, - 51.46248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 31.06, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162040745", - "info": { - "identifier": 162040745, - "sqm_ocr": 80.5, - "price": 2500.0, - "price_per_sqm": 31.055900621118013, - "url": "https://www.rightmove.co.uk/properties/162040745", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "James Anderson", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85685/162040745/85685_32302396_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.458716", - "last_seen": "2025-06-01T22:06:04.461757", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.236359, - 51.481018 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.8, - "qmprice": 29.42, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162041051", - "info": { - "identifier": 162041051, - "sqm_ocr": 84.8, - "price": 2495.0, - "price_per_sqm": 29.422169811320757, - "url": "https://www.rightmove.co.uk/properties/162041051", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84800/162041051/84800_33889268_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.660898", - "last_seen": "2025-06-01T22:05:58.884496", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29382, - 51.40166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162041297", - "info": { - "identifier": 162041297, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162041297", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Filey Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271697/162041297/271697_2713527_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.925343", - "last_seen": "2025-06-01T22:05:45.501209", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04336, - 51.65799 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162041582", - "info": { - "identifier": 162041582, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162041582", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Jayson Russell", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43502/162041582/43502_33889304_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.266063", - "last_seen": "2025-06-01T22:05:39.850464", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21141, - 51.5888 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 53.85, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162041708", - "info": { - "identifier": 162041708, - "sqm_ocr": 65.0, - "price": 3500.0, - "price_per_sqm": 53.84615384615385, - "url": "https://www.rightmove.co.uk/properties/162041708", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/162041708/84889_1324250_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.565308", - "last_seen": "2025-06-01T22:06:14.831918", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141892, - 51.48557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 36.15, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162041711", - "info": { - "identifier": 162041711, - "sqm_ocr": 65.0, - "price": 2350.0, - "price_per_sqm": 36.15384615384615, - "url": "https://www.rightmove.co.uk/properties/162041711", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/162041711/84889_1324260_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.747302", - "last_seen": "2025-06-01T22:06:14.810289", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141892, - 51.48557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.44, - "qmprice": 30.49, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162041822", - "info": { - "identifier": 162041822, - "sqm_ocr": 75.44, - "price": 2300.0, - "price_per_sqm": 30.48780487804878, - "url": "https://www.rightmove.co.uk/properties/162041822", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 124.0, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Presidential Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80874/162041822/80874_RX581332_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.729757", - "last_seen": "2025-06-01T22:06:07.437473", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004969, - 51.535168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.0, - "qmprice": 31.25, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162041837", - "info": { - "identifier": 162041837, - "sqm_ocr": 96.0, - "price": 3000.0, - "price_per_sqm": 31.25, - "url": "https://www.rightmove.co.uk/properties/162041837", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162041837/98531_1323833_IMG_19_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.365026", - "last_seen": "2025-06-01T22:05:48.639151", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242971, - 51.51236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.22, - "qmprice": 29.68, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162041864", - "info": { - "identifier": 162041864, - "sqm_ocr": 84.22, - "price": 2500.0, - "price_per_sqm": 29.684160531940158, - "url": "https://www.rightmove.co.uk/properties/162041864", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84073/162041864/84073_1326672_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.613667", - "last_seen": "2025-06-01T22:05:49.808008", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106851, - 51.57281 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.7, - "qmprice": 40.71, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162041870", - "info": { - "identifier": 162041870, - "sqm_ocr": 73.7, - "price": 3000.0, - "price_per_sqm": 40.70556309362279, - "url": "https://www.rightmove.co.uk/properties/162041870", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84073/162041870/84073_1326681_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.620192", - "last_seen": "2025-06-01T22:05:49.803896", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121005, - 51.58686 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162041882", - "info": { - "identifier": 162041882, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162041882", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Holland Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36516/162041882/36516_1249_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.194387", - "last_seen": "2025-06-01T22:06:02.571836", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.009624, - 51.51536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.6, - "qmprice": 39.16, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162041918", - "info": { - "identifier": 162041918, - "sqm_ocr": 76.6, - "price": 3000.0, - "price_per_sqm": 39.1644908616188, - "url": "https://www.rightmove.co.uk/properties/162041918", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/162041918/15951_1326436_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.228689", - "last_seen": "2025-06-01T22:05:52.222136", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.251612, - 51.4914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.4, - "qmprice": 34.03, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162042263", - "info": { - "identifier": 162042263, - "sqm_ocr": 76.4, - "price": 2600.0, - "price_per_sqm": 34.031413612565444, - "url": "https://www.rightmove.co.uk/properties/162042263", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162042263/48101_1314460_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.824779", - "last_seen": "2025-06-01T22:06:10.324960", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.033571, - 51.512432 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.0, - "qmprice": 43.4, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162042293", - "info": { - "identifier": 162042293, - "sqm_ocr": 53.0, - "price": 2300.0, - "price_per_sqm": 43.39622641509434, - "url": "https://www.rightmove.co.uk/properties/162042293", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/162042293/66771_1326400_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.397654", - "last_seen": "2025-06-01T22:05:59.730434", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122861, - 51.475197 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.1, - "qmprice": 64.54, - "rooms": 2, - "total_price": 3879.0, - "url": "https://www.rightmove.co.uk/properties/162042317", - "info": { - "identifier": 162042317, - "sqm_ocr": 60.1, - "price": 3879.0, - "price_per_sqm": 64.5424292845258, - "url": "https://www.rightmove.co.uk/properties/162042317", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/162042317/108515_1323091_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.154807", - "last_seen": "2025-06-01T22:05:58.216772", - "price": 3879.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198723, - 51.493896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.23, - "qmprice": 45.13, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162042347", - "info": { - "identifier": 162042347, - "sqm_ocr": 74.23, - "price": 3350.0, - "price_per_sqm": 45.13000134716422, - "url": "https://www.rightmove.co.uk/properties/162042347", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73228/162042347/73228_NLL040008_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.588636", - "last_seen": "2025-06-01T20:19:56.350159", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076473, - 51.51888 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 36.18, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162042446", - "info": { - "identifier": 162042446, - "sqm_ocr": 76.0, - "price": 2750.0, - "price_per_sqm": 36.18421052631579, - "url": "https://www.rightmove.co.uk/properties/162042446", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Tate Partnership", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55372/162042446/55372_101593001688_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.748242", - "last_seen": "2025-06-01T22:05:56.991922", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2702, - 51.49466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.5, - "qmprice": 39.02, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162042764", - "info": { - "identifier": 162042764, - "sqm_ocr": 61.5, - "price": 2400.0, - "price_per_sqm": 39.02439024390244, - "url": "https://www.rightmove.co.uk/properties/162042764", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Folio London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97670/162042764/97670_SHE210087_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.146433", - "last_seen": "2025-06-01T22:06:07.590106", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006589, - 51.535168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162042920", - "info": { - "identifier": 162042920, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162042920", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Statuum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237224/162042920/237224_763_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.427436", - "last_seen": "2025-06-01T22:05:47.602419", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.054811, - 51.5614 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.7, - "qmprice": 51.83, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162043292", - "info": { - "identifier": 162043292, - "sqm_ocr": 62.7, - "price": 3250.0, - "price_per_sqm": 51.8341307814992, - "url": "https://www.rightmove.co.uk/properties/162043292", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Rosewood Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63096/162043292/63096_HorntonStreet528_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.380853", - "last_seen": "2025-06-01T22:05:58.066298", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19361, - 51.50197 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.06, - "qmprice": 27.51, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162043328", - "info": { - "identifier": 162043328, - "sqm_ocr": 89.06, - "price": 2450.0, - "price_per_sqm": 27.509544127554456, - "url": "https://www.rightmove.co.uk/properties/162043328", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Folio London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97670/162043328/97670_BMT210056_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.539914", - "last_seen": "2025-06-01T22:05:54.400753", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125906, - 51.55557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2345.0, - "url": "https://www.rightmove.co.uk/properties/162043634", - "info": { - "identifier": 162043634, - "sqm_ocr": null, - "price": 2345.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162043634", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Folio London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97670/162043634/97670_SHE210196_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.203840", - "last_seen": "2025-06-01T22:06:07.398285", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006625, - 51.535007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.24, - "qmprice": 41.01, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162043766", - "info": { - "identifier": 162043766, - "sqm_ocr": 79.24, - "price": 3250.0, - "price_per_sqm": 41.01463907117618, - "url": "https://www.rightmove.co.uk/properties/162043766", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Brian Thomas Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6123/162043766/6123_4876438765734574623475667454576784786487_IMG_21_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.004339", - "last_seen": "2025-06-01T22:05:47.896086", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07221, - 51.5574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 35.71, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162044138", - "info": { - "identifier": 162044138, - "sqm_ocr": 70.0, - "price": 2500.0, - "price_per_sqm": 35.714285714285715, - "url": "https://www.rightmove.co.uk/properties/162044138", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287963/162044138/287963_WHR170343_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.340350", - "last_seen": "2025-06-01T22:06:01.204899", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218415, - 51.41663 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162044261", - "info": { - "identifier": 162044261, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162044261", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162044261/26207_HEA224471_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.421117", - "last_seen": "2025-06-01T22:05:55.131881", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088189, - 51.535805 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/162044630", - "info": { - "identifier": 162044630, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162044630", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/162044630/84791_33889483_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.753541", - "last_seen": "2025-06-01T22:05:44.114941", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.304996, - 51.520473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162044696", - "info": { - "identifier": 162044696, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162044696", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Daniels", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13501/162044696/13501_33889490_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.069916", - "last_seen": "2025-06-01T22:05:40.218230", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.315625, - 51.567192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 25.27, - "rooms": 3, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162045164", - "info": { - "identifier": 162045164, - "sqm_ocr": 83.0, - "price": 2097.0, - "price_per_sqm": 25.265060240963855, - "url": "https://www.rightmove.co.uk/properties/162045164", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266774/162045164/266774_33889514_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.379711", - "last_seen": "2025-06-01T22:05:40.825804", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25325, - 51.543274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 32.79, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162045248", - "info": { - "identifier": 162045248, - "sqm_ocr": 61.0, - "price": 2000.0, - "price_per_sqm": 32.78688524590164, - "url": "https://www.rightmove.co.uk/properties/162045248", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "W J Meade", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38087/162045248/38087_33889517_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.590793", - "last_seen": "2025-06-01T20:19:56.355769", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020224, - 51.52877 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.62, - "qmprice": 30.26, - "rooms": 2, - "total_price": 2470.0, - "url": "https://www.rightmove.co.uk/properties/162045902", - "info": { - "identifier": 162045902, - "sqm_ocr": 81.62, - "price": 2470.0, - "price_per_sqm": 30.26219063954913, - "url": "https://www.rightmove.co.uk/properties/162045902", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49922/162045902/49922_CEI244189_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.400703", - "last_seen": "2025-06-01T22:06:07.957391", - "price": 2470.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004898, - 51.492893 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162046808", - "info": { - "identifier": 162046808, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162046808", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162046808/87187_71774_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.780745", - "last_seen": "2025-06-01T22:05:49.310821", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184709, - 51.476204 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.7, - "qmprice": 38.13, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162047375", - "info": { - "identifier": 162047375, - "sqm_ocr": 57.7, - "price": 2200.0, - "price_per_sqm": 38.128249566724435, - "url": "https://www.rightmove.co.uk/properties/162047375", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57991/162047375/57991_KEJ251283_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.267674", - "last_seen": "2025-06-01T22:06:01.803301", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158891, - 51.417084 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.7, - "qmprice": 36.93, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162049082", - "info": { - "identifier": 162049082, - "sqm_ocr": 94.7, - "price": 3497.0, - "price_per_sqm": 36.92713833157339, - "url": "https://www.rightmove.co.uk/properties/162049082", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/162049082/84833_33889736_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.097932", - "last_seen": "2025-06-01T22:05:48.921723", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229122, - 51.504047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162049331", - "info": { - "identifier": 162049331, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162049331", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Alliance London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77148/162049331/77148_2002584_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.248490", - "last_seen": "2025-06-01T22:06:08.432151", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.033803, - 51.5137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.3, - "qmprice": 28.47, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/162049673", - "info": { - "identifier": 162049673, - "sqm_ocr": 98.3, - "price": 2799.0, - "price_per_sqm": 28.474059003051885, - "url": "https://www.rightmove.co.uk/properties/162049673", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50343/162049673/50343_33879515_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.332604", - "last_seen": "2025-06-01T22:05:40.958690", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217369, - 51.53109 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162049895", - "info": { - "identifier": 162049895, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162049895", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co, Docklands & City", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47285/162049895/47285_DCL240217_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.141492", - "last_seen": "2025-06-01T22:05:53.611391", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119216, - 51.531704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.3, - "qmprice": 29.15, - "rooms": 2, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/162050324", - "info": { - "identifier": 162050324, - "sqm_ocr": 75.3, - "price": 2195.0, - "price_per_sqm": 29.150066401062418, - "url": "https://www.rightmove.co.uk/properties/162050324", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84815/162050324/84815_33889815_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.469289", - "last_seen": "2025-06-01T22:06:04.455828", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.337056, - 51.42673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162050471", - "info": { - "identifier": 162050471, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162050471", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Alliance London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77148/162050471/77148_2002445_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.276683", - "last_seen": "2025-06-01T20:19:59.267149", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037919, - 51.5125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.2, - "qmprice": 46.26, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162050633", - "info": { - "identifier": 162050633, - "sqm_ocr": 56.2, - "price": 2600.0, - "price_per_sqm": 46.263345195729535, - "url": "https://www.rightmove.co.uk/properties/162050633", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43763/162050633/43763_P300849_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.905814", - "last_seen": "2025-06-01T22:05:47.314120", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04719, - 51.54197 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.3, - "qmprice": 36.88, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162051155", - "info": { - "identifier": 162051155, - "sqm_ocr": 58.3, - "price": 2150.0, - "price_per_sqm": 36.87821612349914, - "url": "https://www.rightmove.co.uk/properties/162051155", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Frestons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259079/162051155/259079_RL6078_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.837878", - "last_seen": "2025-06-01T22:06:01.024135", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052017, - 51.479458 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.2, - "qmprice": 42.12, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/162051737", - "info": { - "identifier": 162051737, - "sqm_ocr": 61.2, - "price": 2578.0, - "price_per_sqm": 42.124183006535944, - "url": "https://www.rightmove.co.uk/properties/162051737", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76478/162051737/76478_CEI242404_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.500716", - "last_seen": "2025-06-01T22:06:09.109993", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017536, - 51.496647 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 138.2, - "qmprice": 25.33, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162052877", - "info": { - "identifier": 162052877, - "sqm_ocr": 138.2, - "price": 3500.0, - "price_per_sqm": 25.325615050651233, - "url": "https://www.rightmove.co.uk/properties/162052877", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64571/162052877/64571_33889929_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.641154", - "last_seen": "2025-06-01T22:05:40.447094", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23361, - 51.561264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.5, - "qmprice": 22.7, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162052898", - "info": { - "identifier": 162052898, - "sqm_ocr": 92.5, - "price": 2100.0, - "price_per_sqm": 22.7027027027027, - "url": "https://www.rightmove.co.uk/properties/162052898", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OC Homes", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71060/162052898/71060_33889931_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.504237", - "last_seen": "2025-06-01T22:06:09.119134", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010626, - 51.5097 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.08, - "qmprice": 56.46, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162053945", - "info": { - "identifier": 162053945, - "sqm_ocr": 69.08, - "price": 3900.0, - "price_per_sqm": 56.45628257093225, - "url": "https://www.rightmove.co.uk/properties/162053945", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/162053945/73120_1326711_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.727746", - "last_seen": "2025-06-01T22:05:53.939353", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094353, - 51.528336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.87, - "qmprice": 34.92, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162054005", - "info": { - "identifier": 162054005, - "sqm_ocr": 65.87, - "price": 2300.0, - "price_per_sqm": 34.91726127220282, - "url": "https://www.rightmove.co.uk/properties/162054005", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57118/162054005/57118_P214622_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.041256", - "last_seen": "2025-06-01T22:06:00.203284", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11546, - 51.49875 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162054074", - "info": { - "identifier": 162054074, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162054074", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Property Hub", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286352/162054074/286352_103231003283_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.423221", - "last_seen": "2025-06-01T22:05:40.768063", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29452, - 51.54564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2359.0, - "url": "https://www.rightmove.co.uk/properties/162054263", - "info": { - "identifier": 162054263, - "sqm_ocr": null, - "price": 2359.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162054263", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Wembley Park Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80783/162054263/80783_2538568_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.089670", - "last_seen": "2025-06-01T22:05:40.191830", - "price": 2359.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276363, - 51.558353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 133.8, - "qmprice": 28.4, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162055247", - "info": { - "identifier": 162055247, - "sqm_ocr": 133.8, - "price": 3800.0, - "price_per_sqm": 28.40059790732436, - "url": "https://www.rightmove.co.uk/properties/162055247", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107903/162055247/107903_P300417_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.037248", - "last_seen": "2025-06-01T22:05:50.652977", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34546, - 51.61246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2058.0, - "url": "https://www.rightmove.co.uk/properties/162055265", - "info": { - "identifier": 162055265, - "sqm_ocr": null, - "price": 2058.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162055265", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Habitat", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96380/162055265/96380_RL5920_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.896645", - "last_seen": "2025-06-01T22:05:42.834709", - "price": 2058 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18695, - 51.538963 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2303.0, - "url": "https://www.rightmove.co.uk/properties/162055337", - "info": { - "identifier": 162055337, - "sqm_ocr": null, - "price": 2303.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162055337", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Wembley Park Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80783/162055337/80783_2546688_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.276363, - 51.558353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2095.0, - "url": "https://www.rightmove.co.uk/properties/162055412", - "info": { - "identifier": 162055412, - "sqm_ocr": null, - "price": 2095.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162055412", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Castle Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245579/162055412/245579_2907_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.880963", - "last_seen": "2025-06-01T22:05:44.495967", - "price": 2095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24723, - 51.50772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3779.0, - "url": "https://www.rightmove.co.uk/properties/162055907", - "info": { - "identifier": 162055907, - "sqm_ocr": null, - "price": 3779.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162055907", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Way of Life", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259979/162055907/259979_EVER-YzViM2JmNmQtOGJlNy00NTZhLWFiODYtOWRkNjQ0Y2I2ZmQzLTk=_IMG_39_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.640789", - "last_seen": "2025-06-01T22:05:49.773609", - "price": 3498.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061882, - 51.590843 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.4, - "qmprice": 23.13, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162055991", - "info": { - "identifier": 162055991, - "sqm_ocr": 112.4, - "price": 2600.0, - "price_per_sqm": 23.131672597864767, - "url": "https://www.rightmove.co.uk/properties/162055991", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249770/162055991/249770_33890092_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.725666", - "last_seen": "2025-06-01T22:05:38.789785", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220684, - 51.611687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.78, - "qmprice": 33.44, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162056018", - "info": { - "identifier": 162056018, - "sqm_ocr": 65.78, - "price": 2200.0, - "price_per_sqm": 33.44481605351171, - "url": "https://www.rightmove.co.uk/properties/162056018", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/38k/37065/162056018/37065_87a42841-3b4d-483c-844a-dd18efdce262_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.039183", - "last_seen": "2025-06-01T22:05:38.467969", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175437, - 51.604538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.48, - "qmprice": 39.68, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162056339", - "info": { - "identifier": 162056339, - "sqm_ocr": 60.48, - "price": 2400.0, - "price_per_sqm": 39.682539682539684, - "url": "https://www.rightmove.co.uk/properties/162056339", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120061/162056339/120061_SRL250015_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.553615", - "last_seen": "2025-06-01T22:06:10.747006", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07223, - 51.51668 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162056561", - "info": { - "identifier": 162056561, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162056561", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Romans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156068/162056561/156068_UXC240032_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.831928", - "last_seen": "2025-06-01T22:05:51.323363", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.4626, - 51.5475 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162057086", - "info": { - "identifier": 162057086, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162057086", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84845/162057086/84845_33890137_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.319944", - "last_seen": "2025-06-01T22:06:04.678166", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.327398, - 51.427376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162057782", - "info": { - "identifier": 162057782, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162057782", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Harris and Company", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52827/162057782/52827_33653903_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.954378", - "last_seen": "2025-06-01T22:05:40.620950", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206873, - 51.544052 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3540.0, - "url": "https://www.rightmove.co.uk/properties/162057839", - "info": { - "identifier": 162057839, - "sqm_ocr": null, - "price": 3540.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162057839", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/162057839/77197_VCT_VCT_LFSYCL_465_633404302_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.579452", - "last_seen": "2025-06-01T22:05:54.332276", - "price": 3540.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094119, - 51.52866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162058082", - "info": { - "identifier": 162058082, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162058082", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Wilson Hawkins", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286241/162058082/286241_2690d73b-a611-47ad-bf5c-81902746ab42_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.926579", - "last_seen": "2025-06-01T22:05:50.842254", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34107, - 51.57814 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.9, - "qmprice": 37.37, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162058157", - "info": { - "identifier": 162058157, - "sqm_ocr": 66.9, - "price": 2500.0, - "price_per_sqm": 37.369207772795214, - "url": "https://www.rightmove.co.uk/properties/162058157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Portland Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139901/162058157/139901_33890195_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.558615", - "last_seen": "2025-06-01T22:05:39.429014", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209126, - 51.559776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.8, - "qmprice": 44.42, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162058373", - "info": { - "identifier": 162058373, - "sqm_ocr": 78.8, - "price": 3500.0, - "price_per_sqm": 44.41624365482234, - "url": "https://www.rightmove.co.uk/properties/162058373", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/162058373/77197_VCT_VCT_LFSYCL_465_633154710_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.806764", - "last_seen": "2025-06-01T22:05:53.474337", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094119, - 51.52866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162058772", - "info": { - "identifier": 162058772, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162058772", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84785/162058772/84785_33890222_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.769604", - "last_seen": "2025-06-01T22:05:56.539945", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26419, - 51.52029 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 48.15, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162058838", - "info": { - "identifier": 162058838, - "sqm_ocr": 81.0, - "price": 3900.0, - "price_per_sqm": 48.148148148148145, - "url": "https://www.rightmove.co.uk/properties/162058838", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51411/162058838/51411_5150_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.280477", - "last_seen": "2025-06-01T22:05:57.729628", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181593, - 51.485565 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162058982", - "info": { - "identifier": 162058982, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162058982", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/162058982/77197_VCT_VCT_LFSYCL_465_633215521_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.590892", - "last_seen": "2025-06-01T22:05:54.258829", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094119, - 51.52866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162059186", - "info": { - "identifier": 162059186, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162059186", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/162059186/252785_33890244_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.462768", - "last_seen": "2025-06-01T22:05:50.155658", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056069, - 51.58778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162059219", - "info": { - "identifier": 162059219, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162059219", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25055/162059219/25055_BOW250035_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.859590", - "last_seen": "2025-06-01T22:06:10.655087", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.036741, - 51.51842 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3895.0, - "url": "https://www.rightmove.co.uk/properties/162059420", - "info": { - "identifier": 162059420, - "sqm_ocr": null, - "price": 3895.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162059420", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/162059420/77197_VCT_VCT_LFSYCL_465_633257440_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.129231", - "last_seen": "2025-06-01T22:05:53.625219", - "price": 3895.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094119, - 51.52866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.5, - "qmprice": 47.38, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/162059558", - "info": { - "identifier": 162059558, - "sqm_ocr": 67.5, - "price": 3198.0, - "price_per_sqm": 47.37777777777778, - "url": "https://www.rightmove.co.uk/properties/162059558", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dutch & Dutch", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7616/162059558/7616_WHM250119_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.181382", - "last_seen": "2025-06-01T22:05:43.009450", - "price": 3198.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199141, - 51.552948 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.15, - "qmprice": 47.85, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162059762", - "info": { - "identifier": 162059762, - "sqm_ocr": 73.15, - "price": 3500.0, - "price_per_sqm": 47.846889952153106, - "url": "https://www.rightmove.co.uk/properties/162059762", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44645/162059762/44645_HEA731523_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.848059", - "last_seen": "2025-06-01T22:05:49.204212", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182244, - 51.4732 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.19, - "qmprice": 33.12, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/162059774", - "info": { - "identifier": 162059774, - "sqm_ocr": 107.19, - "price": 3550.0, - "price_per_sqm": 33.11876107845881, - "url": "https://www.rightmove.co.uk/properties/162059774", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51322/162059774/51322_WEL230172_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.675861", - "last_seen": "2025-06-01T22:06:15.756969", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133598, - 51.486378 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.9, - "qmprice": 46.54, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162059957", - "info": { - "identifier": 162059957, - "sqm_ocr": 70.9, - "price": 3300.0, - "price_per_sqm": 46.5444287729196, - "url": "https://www.rightmove.co.uk/properties/162059957", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/162059957/73120_1326719_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.828718", - "last_seen": "2025-06-01T22:05:53.394020", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094353, - 51.528336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.42, - "qmprice": 43.52, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162059966", - "info": { - "identifier": 162059966, - "sqm_ocr": 80.42, - "price": 3500.0, - "price_per_sqm": 43.5215120616762, - "url": "https://www.rightmove.co.uk/properties/162059966", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/162059966/73120_1326731_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.840076", - "last_seen": "2025-06-01T22:05:53.377558", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094353, - 51.528336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.98, - "qmprice": 36.85, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162060014", - "info": { - "identifier": 162060014, - "sqm_ocr": 94.98, - "price": 3500.0, - "price_per_sqm": 36.84986312907981, - "url": "https://www.rightmove.co.uk/properties/162060014", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/162060014/77192_F9-289_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.518518", - "last_seen": "2025-06-01T22:05:41.326322", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20042, - 51.5437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162060032", - "info": { - "identifier": 162060032, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162060032", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266774/162060032/266774_33890282_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.502254", - "last_seen": "2025-06-01T22:05:41.354740", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252795, - 51.544113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 38.6, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162060038", - "info": { - "identifier": 162060038, - "sqm_ocr": 57.0, - "price": 2200.0, - "price_per_sqm": 38.59649122807018, - "url": "https://www.rightmove.co.uk/properties/162060038", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25055/162060038/25055_BOW010445_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.255938", - "last_seen": "2025-06-01T20:19:59.408527", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027945, - 51.52819 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162060044", - "info": { - "identifier": 162060044, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162060044", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/162060044/77197_VCT_VCT_LFSYCL_465_633127579_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.574221", - "last_seen": "2025-06-01T22:05:54.334657", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094016, - 51.52824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.73, - "qmprice": 35.05, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162060062", - "info": { - "identifier": 162060062, - "sqm_ocr": 82.73, - "price": 2900.0, - "price_per_sqm": 35.05378943551311, - "url": "https://www.rightmove.co.uk/properties/162060062", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/162060062/107533_1326736_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.239436", - "last_seen": "2025-06-01T22:05:47.059737", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024507, - 51.4811 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162060092", - "info": { - "identifier": 162060092, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162060092", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/162060092/252785_33890287_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.445381", - "last_seen": "2025-06-01T22:05:50.190899", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0562, - 51.587784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.3, - "qmprice": 35.99, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162060326", - "info": { - "identifier": 162060326, - "sqm_ocr": 90.3, - "price": 3250.0, - "price_per_sqm": 35.991140642303435, - "url": "https://www.rightmove.co.uk/properties/162060326", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/162060326/149153_1326366_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.479021", - "last_seen": "2025-06-01T22:06:07.813299", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192522, - 51.358147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.91, - "qmprice": 41.44, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162060332", - "info": { - "identifier": 162060332, - "sqm_ocr": 57.91, - "price": 2400.0, - "price_per_sqm": 41.44361940942843, - "url": "https://www.rightmove.co.uk/properties/162060332", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162060332/15963_1326742_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.116258", - "last_seen": "2025-06-01T22:06:13.176698", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200575, - 51.451653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 51.45, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/162060347", - "info": { - "identifier": 162060347, - "sqm_ocr": 69.0, - "price": 3550.0, - "price_per_sqm": 51.44927536231884, - "url": "https://www.rightmove.co.uk/properties/162060347", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/162060347/16023_1326715_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.585529", - "last_seen": "2025-06-01T22:05:57.818631", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.156568, - 51.494118 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 138.0, - "qmprice": 21.38, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162060407", - "info": { - "identifier": 162060407, - "sqm_ocr": 138.0, - "price": 2950.0, - "price_per_sqm": 21.3768115942029, - "url": "https://www.rightmove.co.uk/properties/162060407", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79459/162060407/79459_GER250163_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.225342", - "last_seen": "2025-06-01T22:05:52.564942", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.351254, - 51.461918 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.6, - "qmprice": 31.39, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162060440", - "info": { - "identifier": 162060440, - "sqm_ocr": 87.6, - "price": 2750.0, - "price_per_sqm": 31.392694063926943, - "url": "https://www.rightmove.co.uk/properties/162060440", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25055/162060440/25055_BOW250147_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.561809", - "last_seen": "2025-06-01T22:06:11.234783", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034356, - 51.51457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.8, - "qmprice": 50.0, - "rooms": 3, - "total_price": 3640.0, - "url": "https://www.rightmove.co.uk/properties/162060698", - "info": { - "identifier": 162060698, - "sqm_ocr": 72.8, - "price": 3640.0, - "price_per_sqm": 50.0, - "url": "https://www.rightmove.co.uk/properties/162060698", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/162060698/84889_1326724_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.587872", - "last_seen": "2025-06-01T22:06:15.036316", - "price": 3640.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147903, - 51.49005 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 32.63, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/162060701", - "info": { - "identifier": 162060701, - "sqm_ocr": 79.0, - "price": 2578.0, - "price_per_sqm": 32.63291139240506, - "url": "https://www.rightmove.co.uk/properties/162060701", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65872/162060701/65872_CWQ012545018_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.172085", - "last_seen": "2025-06-01T22:06:08.349867", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00957, - 51.5047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.2, - "qmprice": 34.15, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162060875", - "info": { - "identifier": 162060875, - "sqm_ocr": 73.2, - "price": 2500.0, - "price_per_sqm": 34.15300546448087, - "url": "https://www.rightmove.co.uk/properties/162060875", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/162060875/227810_1326596_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.541600", - "last_seen": "2025-06-01T22:05:46.293369", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.071394, - 51.49155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.8, - "qmprice": 37.42, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162060980", - "info": { - "identifier": 162060980, - "sqm_ocr": 60.8, - "price": 2275.0, - "price_per_sqm": 37.41776315789474, - "url": "https://www.rightmove.co.uk/properties/162060980", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/162060980/111056_1326654_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.271906", - "last_seen": "2025-06-01T20:19:59.319592", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.046542, - 51.511364 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162061106", - "info": { - "identifier": 162061106, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162061106", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "The London Broker", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174521/162061106/174521_FES240016_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.360786", - "last_seen": "2025-06-01T22:06:06.865670", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084651, - 51.48139 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.1, - "qmprice": 32.49, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162061199", - "info": { - "identifier": 162061199, - "sqm_ocr": 83.1, - "price": 2700.0, - "price_per_sqm": 32.49097472924188, - "url": "https://www.rightmove.co.uk/properties/162061199", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Japan Services Rent", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94576/162061199/94576_RL0239_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.086882", - "last_seen": "2025-06-01T22:05:45.223081", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.286251, - 51.517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.5, - "qmprice": 36.36, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162061283", - "info": { - "identifier": 162061283, - "sqm_ocr": 71.5, - "price": 2600.0, - "price_per_sqm": 36.36363636363637, - "url": "https://www.rightmove.co.uk/properties/162061283", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/162061283/84866_33890363_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.129330", - "last_seen": "2025-06-01T22:05:52.274450", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.250596, - 51.494022 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 36.48, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162061328", - "info": { - "identifier": 162061328, - "sqm_ocr": 82.2, - "price": 2999.0, - "price_per_sqm": 36.48418491484185, - "url": "https://www.rightmove.co.uk/properties/162061328", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "AMBER & CO (MGMT)", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282725/162061328/282725_5_AMBE_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.727732", - "last_seen": "2025-06-01T22:05:48.399441", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24196, - 51.50275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162061565", - "info": { - "identifier": 162061565, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162061565", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162061565/96668_246467127042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.495420", - "last_seen": "2025-06-01T17:39:04.990193", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022157, - 51.54016 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.54, - "qmprice": 52.32, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162062171", - "info": { - "identifier": 162062171, - "sqm_ocr": 74.54, - "price": 3900.0, - "price_per_sqm": 52.320901529380194, - "url": "https://www.rightmove.co.uk/properties/162062171", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "LDB", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88034/162062171/88034_33890425_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.951409", - "last_seen": "2025-06-01T22:05:48.509722", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21685, - 51.48706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162062333", - "info": { - "identifier": 162062333, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162062333", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47825/162062333/47825_DUL130225_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.594997", - "last_seen": "2025-06-01T22:06:06.199929", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073606, - 51.454147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 37.67, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162062336", - "info": { - "identifier": 162062336, - "sqm_ocr": 73.0, - "price": 2750.0, - "price_per_sqm": 37.67123287671233, - "url": "https://www.rightmove.co.uk/properties/162062336", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Pinnacle Housing Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212189/162062336/212189_3140_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.579273", - "last_seen": "2025-06-01T22:06:13.416135", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18015, - 51.46636 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.8, - "qmprice": 26.86, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162062501", - "info": { - "identifier": 162062501, - "sqm_ocr": 96.8, - "price": 2600.0, - "price_per_sqm": 26.859504132231407, - "url": "https://www.rightmove.co.uk/properties/162062501", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224513/162062501/224513_P390640_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.587839", - "last_seen": "2025-06-01T22:06:02.113660", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02066, - 51.50781 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162062504", - "info": { - "identifier": 162062504, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162062504", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Inner City Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/104k/103850/162062504/103850_deverauxx_IMG_19_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.751732", - "last_seen": "2025-06-01T22:05:56.748356", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06718, - 51.49441 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162062576", - "info": { - "identifier": 162062576, - "sqm_ocr": null, - "price": 2925.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162062576", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/143k/142382/162062576/142382_ALQ012564070_IMG_00_0007_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.544002", - "last_seen": "2025-06-01T22:06:07.945053", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065202, - 51.51811 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162063098", - "info": { - "identifier": 162063098, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162063098", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/162063098/209042_CHU_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.714761", - "last_seen": "2025-06-01T22:06:15.715391", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195372, - 51.516712 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.42, - "qmprice": 31.24, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162063167", - "info": { - "identifier": 162063167, - "sqm_ocr": 78.42, - "price": 2450.0, - "price_per_sqm": 31.24203009436368, - "url": "https://www.rightmove.co.uk/properties/162063167", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/162063167/80340_a1G4J0000026093UAA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.134254", - "last_seen": "2025-06-01T22:05:51.838136", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28512, - 51.48876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3315.0, - "url": "https://www.rightmove.co.uk/properties/162063173", - "info": { - "identifier": 162063173, - "sqm_ocr": null, - "price": 3315.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162063173", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25055/162063173/25055_BOW250045_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.129336", - "last_seen": "2025-06-01T22:06:08.647104", - "price": 3315.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015087, - 51.497704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162063482", - "info": { - "identifier": 162063482, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162063482", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Huddletons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57234/162063482/57234_33890529_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.511498", - "last_seen": "2025-06-01T22:05:42.655874", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141981, - 51.53763 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.68, - "qmprice": 55.39, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162063731", - "info": { - "identifier": 162063731, - "sqm_ocr": 58.68, - "price": 3250.0, - "price_per_sqm": 55.385139740967965, - "url": "https://www.rightmove.co.uk/properties/162063731", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Battersea & Nine Elms Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143171/162063731/143171_33890547_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.152733", - "last_seen": "2025-06-01T22:06:09.380551", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018045, - 51.50029 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 48.52, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162064004", - "info": { - "identifier": 162064004, - "sqm_ocr": 71.0, - "price": 3445.0, - "price_per_sqm": 48.521126760563384, - "url": "https://www.rightmove.co.uk/properties/162064004", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51295/162064004/51295_HAL250048_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.719086", - "last_seen": "2025-06-01T22:05:43.046283", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194549, - 51.551838 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 37.32, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162064016", - "info": { - "identifier": 162064016, - "sqm_ocr": 71.0, - "price": 2650.0, - "price_per_sqm": 37.32394366197183, - "url": "https://www.rightmove.co.uk/properties/162064016", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51295/162064016/51295_HEA732636_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.714309", - "last_seen": "2025-06-01T22:05:43.052295", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194549, - 51.551838 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162065597", - "info": { - "identifier": 162065597, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162065597", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Choices", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117484/162065597/117484_LND170369_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.603504", - "last_seen": "2025-06-01T22:05:46.406670", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.072856, - 51.491283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162065747", - "info": { - "identifier": 162065747, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162065747", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162065747/96668_242069017032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.455426", - "last_seen": "2025-06-01T22:06:13.711889", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158558, - 51.42996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162065774", - "info": { - "identifier": 162065774, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162065774", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162065774/96668_111249218052021_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.107960", - "last_seen": "2025-06-01T22:05:52.319149", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.248727, - 51.495502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162065864", - "info": { - "identifier": 162065864, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162065864", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162065864/96668_248585616052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.460202", - "last_seen": "2025-06-01T22:05:42.042997", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151678, - 51.551147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.0, - "qmprice": 27.22, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162065984", - "info": { - "identifier": 162065984, - "sqm_ocr": 90.0, - "price": 2450.0, - "price_per_sqm": 27.22222222222222, - "url": "https://www.rightmove.co.uk/properties/162065984", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162065984/96668_248599416052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.441092", - "last_seen": "2025-06-01T22:06:01.298695", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169437, - 51.409176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.0, - "qmprice": 26.6, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162066029", - "info": { - "identifier": 162066029, - "sqm_ocr": 94.0, - "price": 2500.0, - "price_per_sqm": 26.595744680851062, - "url": "https://www.rightmove.co.uk/properties/162066029", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50249/162066029/50249_RCL250008_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.413924", - "last_seen": "2025-06-01T22:05:51.182808", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.421837, - 51.606655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162066107", - "info": { - "identifier": 162066107, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162066107", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162066107/96668_248471615052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:37.975998", - "last_seen": "2025-06-01T22:06:09.901320", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00519, - 51.5062 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162066254", - "info": { - "identifier": 162066254, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162066254", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162066254/96668_248607916052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.756544", - "last_seen": "2025-06-01T22:05:50.069375", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.081668, - 51.58124 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.7, - "qmprice": 33.86, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162066332", - "info": { - "identifier": 162066332, - "sqm_ocr": 82.7, - "price": 2800.0, - "price_per_sqm": 33.85731559854897, - "url": "https://www.rightmove.co.uk/properties/162066332", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/162066332/15966_1325890_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.052211", - "last_seen": "2025-06-01T22:06:13.340443", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185635, - 51.464046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.8, - "qmprice": 35.62, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162066374", - "info": { - "identifier": 162066374, - "sqm_ocr": 75.8, - "price": 2700.0, - "price_per_sqm": 35.62005277044855, - "url": "https://www.rightmove.co.uk/properties/162066374", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162066374/96668_220495027082024_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.891971", - "last_seen": "2025-06-01T22:06:06.175710", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102492, - 51.483204 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162066401", - "info": { - "identifier": 162066401, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162066401", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162066401/96668_248595116052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.231055", - "last_seen": "2025-06-01T22:05:59.924747", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131565, - 51.46523 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162066440", - "info": { - "identifier": 162066440, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162066440", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dorrington", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281918/162066440/281918_15573_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.534009", - "last_seen": "2025-06-01T22:06:06.657528", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09076, - 51.48639 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.9, - "qmprice": 27.81, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162066467", - "info": { - "identifier": 162066467, - "sqm_ocr": 89.9, - "price": 2500.0, - "price_per_sqm": 27.808676307007783, - "url": "https://www.rightmove.co.uk/properties/162066467", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85699/162066467/85699_CHI230136_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.203626", - "last_seen": "2025-06-01T22:05:44.992661", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265084, - 51.50087 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.8, - "qmprice": 52.91, - "rooms": 2, - "total_price": 3852.0, - "url": "https://www.rightmove.co.uk/properties/162066704", - "info": { - "identifier": 162066704, - "sqm_ocr": 72.8, - "price": 3852.0, - "price_per_sqm": 52.91208791208791, - "url": "https://www.rightmove.co.uk/properties/162066704", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/162066704/15954_1326739_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.401000", - "last_seen": "2025-06-01T20:19:58.965292", - "price": 3852.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071258, - 51.515186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162066752", - "info": { - "identifier": 162066752, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162066752", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "CROWN HOME BUYING AND LETTING", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218051/162066752/218051_RL0920_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.197776", - "last_seen": "2025-06-01T22:06:14.070569", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148429, - 51.479465 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.33, - "qmprice": 53.88, - "rooms": 2, - "total_price": 3466.0, - "url": "https://www.rightmove.co.uk/properties/162066851", - "info": { - "identifier": 162066851, - "sqm_ocr": 64.33, - "price": 3466.0, - "price_per_sqm": 53.87843929737292, - "url": "https://www.rightmove.co.uk/properties/162066851", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111863/162066851/111863_WSL150105_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.433545", - "last_seen": "2025-06-01T22:06:15.545528", - "price": 3466.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128244, - 51.49649 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162067271", - "info": { - "identifier": 162067271, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162067271", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Century 21 Goodmayes", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279887/162067271/279887_R209985_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.060869", - "last_seen": "2025-06-01T22:06:03.951208", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.096444, - 51.567543 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.8, - "qmprice": 37.62, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162067337", - "info": { - "identifier": 162067337, - "sqm_ocr": 63.8, - "price": 2400.0, - "price_per_sqm": 37.61755485893417, - "url": "https://www.rightmove.co.uk/properties/162067337", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75148/162067337/75148_1326738_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.604972", - "last_seen": "2025-06-01T22:05:46.394284", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026288, - 51.458393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162067343", - "info": { - "identifier": 162067343, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162067343", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "About The Stay", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287366/162067343/287366_P16_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.755512", - "last_seen": "2025-06-01T22:06:12.501059", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13203, - 51.48103 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.7, - "qmprice": 37.29, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162067349", - "info": { - "identifier": 162067349, - "sqm_ocr": 65.7, - "price": 2450.0, - "price_per_sqm": 37.29071537290715, - "url": "https://www.rightmove.co.uk/properties/162067349", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "About The Stay", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287366/162067349/287366_P25_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.447299", - "last_seen": "2025-06-01T22:06:07.930782", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01496, - 51.52371 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162067427", - "info": { - "identifier": 162067427, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162067427", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/162067427/87812_1325112_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.283132", - "last_seen": "2025-06-01T22:05:39.835576", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.250357, - 51.59335 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/162067610", - "info": { - "identifier": 162067610, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162067610", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/162067610/111056_1325670_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.223107", - "last_seen": "2025-06-01T22:06:02.271992", - "price": 2167.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.037291, - 51.501873 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162067757", - "info": { - "identifier": 162067757, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162067757", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Truepenny's Property Consultants", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228695/162067757/228695_3649_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.503510", - "last_seen": "2025-06-01T22:05:46.422377", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.024801, - 51.482464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.1, - "qmprice": 40.86, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162067880", - "info": { - "identifier": 162067880, - "sqm_ocr": 88.1, - "price": 3600.0, - "price_per_sqm": 40.862656072644725, - "url": "https://www.rightmove.co.uk/properties/162067880", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/162067880/73120_1326756_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.623427", - "last_seen": "2025-06-01T22:05:54.163960", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094353, - 51.528336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.77, - "qmprice": 43.88, - "rooms": 2, - "total_price": 3895.0, - "url": "https://www.rightmove.co.uk/properties/162067907", - "info": { - "identifier": 162067907, - "sqm_ocr": 88.77, - "price": 3895.0, - "price_per_sqm": 43.87743607074462, - "url": "https://www.rightmove.co.uk/properties/162067907", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/162067907/73120_1326752_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.454440", - "last_seen": "2025-06-01T22:05:53.705612", - "price": 3895.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094353, - 51.528336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162068384", - "info": { - "identifier": 162068384, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162068384", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "The Stow Brothers", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267587/162068384/267587_33890774_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.507876", - "last_seen": "2025-06-01T22:06:07.917117", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024119, - 51.539165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 32.41, - "rooms": 2, - "total_price": 2625.0, - "url": "https://www.rightmove.co.uk/properties/162068774", - "info": { - "identifier": 162068774, - "sqm_ocr": 81.0, - "price": 2625.0, - "price_per_sqm": 32.407407407407405, - "url": "https://www.rightmove.co.uk/properties/162068774", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237731/162068774/237731_a1GNz0000054MDZMA2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.636870", - "last_seen": "2025-06-01T22:05:49.642941", - "price": 2625.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05496, - 51.58901 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162069059", - "info": { - "identifier": 162069059, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162069059", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Charlesons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40074/162069059/40074_101903005147_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.877652", - "last_seen": "2025-06-01T22:06:03.904131", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06175, - 51.58165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2499.0, - "url": "https://www.rightmove.co.uk/properties/162069116", - "info": { - "identifier": 162069116, - "sqm_ocr": null, - "price": 2499.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162069116", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "SW Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60378/162069116/60378_5426_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.085390", - "last_seen": "2025-06-01T22:05:49.493125", - "price": 2499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199128, - 51.486366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 41.55, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162069407", - "info": { - "identifier": 162069407, - "sqm_ocr": 73.0, - "price": 3033.0, - "price_per_sqm": 41.54794520547945, - "url": "https://www.rightmove.co.uk/properties/162069407", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/162069407/65124_CEE170053_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.374644", - "last_seen": "2025-06-01T22:06:05.096429", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095878, - 51.492256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162069635", - "info": { - "identifier": 162069635, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162069635", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113803/162069635/113803_SID240222_L_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.231333", - "last_seen": "2025-06-01T22:05:40.003347", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.106664, - 51.429367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.1, - "qmprice": 44.02, - "rooms": 2, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/162069812", - "info": { - "identifier": 162069812, - "sqm_ocr": 88.1, - "price": 3878.0, - "price_per_sqm": 44.01816118047673, - "url": "https://www.rightmove.co.uk/properties/162069812", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43763/162069812/43763_P300885_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.015433", - "last_seen": "2025-06-01T22:05:47.351798", - "price": 3878 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08975, - 51.52792 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 39.77, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162069977", - "info": { - "identifier": 162069977, - "sqm_ocr": 88.0, - "price": 3500.0, - "price_per_sqm": 39.77272727272727, - "url": "https://www.rightmove.co.uk/properties/162069977", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "John Brown Mark Youll", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71165/162069977/71165_L109171_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.866495", - "last_seen": "2025-06-01T22:05:43.510489", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121127, - 51.302464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.0, - "qmprice": 23.15, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162069995", - "info": { - "identifier": 162069995, - "sqm_ocr": 108.0, - "price": 2500.0, - "price_per_sqm": 23.14814814814815, - "url": "https://www.rightmove.co.uk/properties/162069995", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "John Brown Mark Youll", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71165/162069995/71165_L109141_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.871340", - "last_seen": "2025-06-01T22:05:43.503666", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108476, - 51.295444 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.87, - "qmprice": 30.17, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162070046", - "info": { - "identifier": 162070046, - "sqm_ocr": 82.87, - "price": 2500.0, - "price_per_sqm": 30.167732593218293, - "url": "https://www.rightmove.co.uk/properties/162070046", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44538/162070046/44538_JBA100007_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.868911", - "last_seen": "2025-06-01T22:06:13.970829", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167859, - 51.46169 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 41.18, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162070049", - "info": { - "identifier": 162070049, - "sqm_ocr": 85.0, - "price": 3500.0, - "price_per_sqm": 41.1764705882353, - "url": "https://www.rightmove.co.uk/properties/162070049", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/162070049/44537_TOL251441_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.289554", - "last_seen": "2025-06-01T22:06:06.813533", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079476, - 51.500282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162070205", - "info": { - "identifier": 162070205, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162070205", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Orient Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283391/162070205/283391_1622_ORES_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.466556", - "last_seen": "2025-06-01T22:05:39.594497", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198922, - 51.582348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.6, - "qmprice": 31.61, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162070340", - "info": { - "identifier": 162070340, - "sqm_ocr": 69.6, - "price": 2200.0, - "price_per_sqm": 31.60919540229885, - "url": "https://www.rightmove.co.uk/properties/162070340", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 149.0, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Teddy", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257156/162070340/257156_RX581935_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.320953", - "last_seen": "2025-06-01T22:05:55.953303", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.327994, - 51.466152 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.2, - "qmprice": 33.24, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162070364", - "info": { - "identifier": 162070364, - "sqm_ocr": 75.2, - "price": 2500.0, - "price_per_sqm": 33.244680851063826, - "url": "https://www.rightmove.co.uk/properties/162070364", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257069/162070364/257069_33890896_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.777941", - "last_seen": "2025-06-01T22:05:55.497293", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.001002, - 51.48723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.92, - "qmprice": 33.19, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162070457", - "info": { - "identifier": 162070457, - "sqm_ocr": 97.92, - "price": 3250.0, - "price_per_sqm": 33.19035947712418, - "url": "https://www.rightmove.co.uk/properties/162070457", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "LK Lettings Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/235k/234137/162070457/234137_RL0574_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.217811", - "last_seen": "2025-06-01T22:05:47.293739", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088994, - 51.5284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162070631", - "info": { - "identifier": 162070631, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162070631", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Folio London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97670/162070631/97670_SHE210098_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.140779", - "last_seen": "2025-06-01T22:06:07.594153", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006589, - 51.535168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162070922", - "info": { - "identifier": 162070922, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162070922", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/162070922/17418_100415010600_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.121055", - "last_seen": "2025-06-01T22:05:50.853992", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37706, - 51.56066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162070937", - "info": { - "identifier": 162070937, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162070937", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Goldschmidt & Howland", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73968/162070937/73968_2291340_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.936855", - "last_seen": "2025-06-01T22:05:39.171690", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20322, - 51.57135 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.3, - "qmprice": 45.58, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162070973", - "info": { - "identifier": 162070973, - "sqm_ocr": 71.3, - "price": 3250.0, - "price_per_sqm": 45.5820476858345, - "url": "https://www.rightmove.co.uk/properties/162070973", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "tlc Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18984/162070973/18984_ERL130669_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.389702", - "last_seen": "2025-06-01T22:05:58.311893", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191835, - 51.489933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162070988", - "info": { - "identifier": 162070988, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162070988", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dorrington", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281918/162070988/281918_15542_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.257884", - "last_seen": "2025-06-01T22:06:06.775634", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08978, - 51.48583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 29.87, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162071048", - "info": { - "identifier": 162071048, - "sqm_ocr": 77.0, - "price": 2300.0, - "price_per_sqm": 29.87012987012987, - "url": "https://www.rightmove.co.uk/properties/162071048", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162071048/221711_1451_EAF_112086_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.783775", - "last_seen": "2025-06-01T22:05:59.538826", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098049, - 51.469162 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.85, - "qmprice": 46.01, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162071075", - "info": { - "identifier": 162071075, - "sqm_ocr": 60.85, - "price": 2800.0, - "price_per_sqm": 46.01479046836483, - "url": "https://www.rightmove.co.uk/properties/162071075", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54922/162071075/54922_NEL220016_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.795430", - "last_seen": "2025-06-01T22:06:15.252149", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125734, - 51.509895 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.3, - "qmprice": 32.89, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162071177", - "info": { - "identifier": 162071177, - "sqm_ocr": 97.3, - "price": 3200.0, - "price_per_sqm": 32.8879753340185, - "url": "https://www.rightmove.co.uk/properties/162071177", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212408/162071177/212408_P160945_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.424747", - "last_seen": "2025-06-01T22:06:07.653605", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00762, - 51.53015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162071432", - "info": { - "identifier": 162071432, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162071432", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "PropertyLoop", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222287/162071432/222287_fQqjK8hO_IMG_00_0000_max_656x437.png", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.362206", - "last_seen": "2025-06-01T22:05:47.213556", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06116, - 51.57646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.4, - "qmprice": 43.97, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162071687", - "info": { - "identifier": 162071687, - "sqm_ocr": 61.4, - "price": 2700.0, - "price_per_sqm": 43.97394136807818, - "url": "https://www.rightmove.co.uk/properties/162071687", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Sheraton Management Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77739/162071687/77739_dfd89b4ff3def1e56961d9792421747d7d274090e03274ff_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.698167", - "last_seen": "2025-06-01T22:05:49.427094", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210934, - 51.48924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.6, - "qmprice": 43.28, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162071858", - "info": { - "identifier": 162071858, - "sqm_ocr": 79.6, - "price": 3445.0, - "price_per_sqm": 43.27889447236181, - "url": "https://www.rightmove.co.uk/properties/162071858", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246071/162071858/246071_WHP250089_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.299362", - "last_seen": "2025-06-01T22:06:14.868312", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187971, - 51.52906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.75, - "qmprice": 32.42, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162072056", - "info": { - "identifier": 162072056, - "sqm_ocr": 81.75, - "price": 2650.0, - "price_per_sqm": 32.415902140672785, - "url": "https://www.rightmove.co.uk/properties/162072056", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/127k/126934/162072056/126934_67d7f2c3d587c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.024938", - "last_seen": "2025-06-01T22:06:12.587131", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178229, - 51.448296 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.5, - "qmprice": 38.47, - "rooms": 3, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/162072149", - "info": { - "identifier": 162072149, - "sqm_ocr": 93.5, - "price": 3597.0, - "price_per_sqm": 38.470588235294116, - "url": "https://www.rightmove.co.uk/properties/162072149", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39741/162072149/39741_33763196_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.269465", - "last_seen": "2025-06-01T22:06:15.348458", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186168, - 51.526283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.9, - "qmprice": 31.68, - "rooms": 3, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162072395", - "info": { - "identifier": 162072395, - "sqm_ocr": 108.9, - "price": 3450.0, - "price_per_sqm": 31.68044077134986, - "url": "https://www.rightmove.co.uk/properties/162072395", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie together with Thorgills", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242945/162072395/242945_BRE250210_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.930429", - "last_seen": "2025-06-01T22:05:52.200775", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305098, - 51.490475 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.9, - "qmprice": 50.7, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162072545", - "info": { - "identifier": 162072545, - "sqm_ocr": 78.9, - "price": 4000.0, - "price_per_sqm": 50.69708491761723, - "url": "https://www.rightmove.co.uk/properties/162072545", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/162072545/16023_1326775_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.394930", - "last_seen": "2025-06-01T22:05:57.491871", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1604, - 51.500183 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162072587", - "info": { - "identifier": 162072587, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162072587", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/162072587/84791_33891016_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.703486", - "last_seen": "2025-06-01T22:05:43.976647", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285658, - 51.512066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.2, - "qmprice": 36.39, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162072626", - "info": { - "identifier": 162072626, - "sqm_ocr": 63.2, - "price": 2300.0, - "price_per_sqm": 36.392405063291136, - "url": "https://www.rightmove.co.uk/properties/162072626", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/162072626/80281_1326778_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.172296", - "last_seen": "2025-06-01T22:06:07.408700", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.001816, - 51.535976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162072947", - "info": { - "identifier": 162072947, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162072947", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hilton & Fox", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106243/162072947/106243_hilton_1995286365_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.992973", - "last_seen": "2025-06-01T22:05:50.346780", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.346874, - 51.60395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.0, - "qmprice": 42.31, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162073034", - "info": { - "identifier": 162073034, - "sqm_ocr": 52.0, - "price": 2200.0, - "price_per_sqm": 42.30769230769231, - "url": "https://www.rightmove.co.uk/properties/162073034", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Assure Move Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246137/162073034/246137_0aa48cd1-f273-4092-82f1-e43e65481c15_IMG_00_0000_max_656x437.png", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.711220", - "last_seen": "2025-06-01T22:06:10.431809", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06301, - 51.51928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162073175", - "info": { - "identifier": 162073175, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162073175", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/242k/241370/162073175/241370_33891054_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.414433", - "last_seen": "2025-06-01T22:06:05.388890", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067406, - 51.46913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.1, - "qmprice": 43.66, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162073184", - "info": { - "identifier": 162073184, - "sqm_ocr": 80.1, - "price": 3497.0, - "price_per_sqm": 43.65792759051186, - "url": "https://www.rightmove.co.uk/properties/162073184", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71137/162073184/71137_33891056_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.405127", - "last_seen": "2025-06-01T22:06:05.365210", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104053, - 51.49663 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162073337", - "info": { - "identifier": 162073337, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162073337", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Andre Joseph Estates Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74973/162073337/74973_509004_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.688836", - "last_seen": "2025-06-01T22:06:12.779913", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155773, - 51.43424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3495.0, - "url": "https://www.rightmove.co.uk/properties/162073430", - "info": { - "identifier": 162073430, - "sqm_ocr": null, - "price": 3495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162073430", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84797/162073430/84797_33891072_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.973878", - "last_seen": "2025-06-01T22:05:52.617536", - "price": 3495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.383945, - 51.433212 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2274.0, - "url": "https://www.rightmove.co.uk/properties/162073439", - "info": { - "identifier": 162073439, - "sqm_ocr": null, - "price": 2274.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162073439", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "relocate-me.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33012/162073439/33012_52568_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.870953", - "last_seen": "2025-06-01T22:06:03.400485", - "price": 2249.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.037241, - 51.500874 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.1, - "qmprice": 47.53, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162073694", - "info": { - "identifier": 162073694, - "sqm_ocr": 63.1, - "price": 2999.0, - "price_per_sqm": 47.52773375594295, - "url": "https://www.rightmove.co.uk/properties/162073694", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50713/162073694/50713_33891086_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.335118", - "last_seen": "2025-06-01T22:05:57.504095", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210448, - 51.512547 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.36, - "qmprice": 43.55, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162073724", - "info": { - "identifier": 162073724, - "sqm_ocr": 80.36, - "price": 3500.0, - "price_per_sqm": 43.55400696864112, - "url": "https://www.rightmove.co.uk/properties/162073724", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/162073724/44537_HEA162982_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.620977", - "last_seen": "2025-06-01T22:06:05.932320", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088006, - 51.499207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162073997", - "info": { - "identifier": 162073997, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162073997", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Fortuna and Co.", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272885/162073997/272885_RX579861_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.721513", - "last_seen": "2025-06-01T22:05:59.715120", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124703, - 51.484123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.8, - "qmprice": 38.17, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162074021", - "info": { - "identifier": 162074021, - "sqm_ocr": 104.8, - "price": 4000.0, - "price_per_sqm": 38.16793893129771, - "url": "https://www.rightmove.co.uk/properties/162074021", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/162074021/15957_1326584_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.196644", - "last_seen": "2025-06-01T22:05:43.208052", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175696, - 51.55004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.8, - "qmprice": 36.21, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162074051", - "info": { - "identifier": 162074051, - "sqm_ocr": 71.8, - "price": 2600.0, - "price_per_sqm": 36.211699164345404, - "url": "https://www.rightmove.co.uk/properties/162074051", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162074051/48101_1326542_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.565951", - "last_seen": "2025-06-01T22:06:11.478701", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026349, - 51.514416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162074063", - "info": { - "identifier": 162074063, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162074063", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/162074063/39507_215496_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.585930", - "last_seen": "2025-06-01T17:39:05.118788", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03222, - 51.52139 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 34.42, - "qmprice": 58.11, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162074111", - "info": { - "identifier": 162074111, - "sqm_ocr": 34.42, - "price": 2000.0, - "price_per_sqm": 58.105752469494476, - "url": "https://www.rightmove.co.uk/properties/162074111", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/162074111/71401_1326800_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.432895", - "last_seen": "2025-06-01T22:05:41.488299", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.235485, - 51.547943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162074165", - "info": { - "identifier": 162074165, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162074165", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Langford Chase", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16019/162074165/16019_LANG_001518_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.191190", - "last_seen": "2025-06-01T22:05:39.118718", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180453, - 51.585777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162074438", - "info": { - "identifier": 162074438, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162074438", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95869/162074438/95869_SHO230135_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.144638", - "last_seen": "2025-06-01T22:06:09.391760", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058632, - 51.5266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 154.8, - "qmprice": 20.67, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162074618", - "info": { - "identifier": 162074618, - "sqm_ocr": 154.8, - "price": 3200.0, - "price_per_sqm": 20.671834625322997, - "url": "https://www.rightmove.co.uk/properties/162074618", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238214/162074618/238214_KDK230026_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.069146", - "last_seen": "2025-06-01T22:06:00.741533", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05562, - 51.446156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.9, - "qmprice": 43.07, - "rooms": 2, - "total_price": 2149.0, - "url": "https://www.rightmove.co.uk/properties/162074717", - "info": { - "identifier": 162074717, - "sqm_ocr": 49.9, - "price": 2149.0, - "price_per_sqm": 43.06613226452906, - "url": "https://www.rightmove.co.uk/properties/162074717", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Avrasons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38414/162074717/38414_2617106_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.141665", - "last_seen": "2025-06-01T22:05:59.312442", - "price": 2149 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11146, - 51.48043 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.34, - "qmprice": 40.05, - "rooms": 3, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/162074813", - "info": { - "identifier": 162074813, - "sqm_ocr": 82.34, - "price": 3298.0, - "price_per_sqm": 40.0534369686665, - "url": "https://www.rightmove.co.uk/properties/162074813", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Avrasons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38414/162074813/38414_278791_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.722314", - "last_seen": "2025-06-01T22:05:58.963307", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12269, - 51.48061 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 40.91, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162074900", - "info": { - "identifier": 162074900, - "sqm_ocr": 88.0, - "price": 3600.0, - "price_per_sqm": 40.90909090909091, - "url": "https://www.rightmove.co.uk/properties/162074900", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/162074900/65124_CEI190161_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.040409", - "last_seen": "2025-06-01T22:05:48.265076", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.227059, - 51.493896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.3, - "qmprice": 37.91, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162074969", - "info": { - "identifier": 162074969, - "sqm_ocr": 63.3, - "price": 2400.0, - "price_per_sqm": 37.91469194312796, - "url": "https://www.rightmove.co.uk/properties/162074969", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Wembley Park Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80783/162074969/80783_2318967_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.974908", - "last_seen": "2025-06-01T22:05:41.241360", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28393, - 51.55871 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162075080", - "info": { - "identifier": 162075080, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162075080", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "RocketPM", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250460/162075080/250460_33891295_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.766166", - "last_seen": "2025-06-01T22:05:59.550274", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149553, - 51.46476 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.5, - "qmprice": 45.72, - "rooms": 2, - "total_price": 3315.0, - "url": "https://www.rightmove.co.uk/properties/162075083", - "info": { - "identifier": 162075083, - "sqm_ocr": 72.5, - "price": 3315.0, - "price_per_sqm": 45.724137931034484, - "url": "https://www.rightmove.co.uk/properties/162075083", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76478/162075083/76478_CEI243212_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.277905", - "last_seen": "2025-06-01T22:06:09.832196", - "price": 3315 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015226, - 51.497704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162075134", - "info": { - "identifier": 162075134, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162075134", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Goodfellows", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72253/162075134/72253_GCB190349_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.423598", - "last_seen": "2025-06-01T22:06:07.802980", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16698, - 51.35655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3895.0, - "url": "https://www.rightmove.co.uk/properties/162075344", - "info": { - "identifier": 162075344, - "sqm_ocr": null, - "price": 3895.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162075344", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/162075344/54616_DAN220438_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.737832", - "last_seen": "2025-06-01T22:05:53.913905", - "price": 3895.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094147, - 51.528557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162075347", - "info": { - "identifier": 162075347, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162075347", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/162075347/54616_DAN230092_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.735052", - "last_seen": "2025-06-01T22:05:53.916069", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094147, - 51.528557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162076598", - "info": { - "identifier": 162076598, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162076598", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287963/162076598/287963_WPS230039_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.735940", - "last_seen": "2025-06-01T22:06:12.448301", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215908, - 51.444828 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162076754", - "info": { - "identifier": 162076754, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162076754", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Lionsgate Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/160k/159428/162076754/159428_2095_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.567162", - "last_seen": "2025-06-01T22:06:11.500717", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056046, - 51.51832 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162077009", - "info": { - "identifier": 162077009, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162077009", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Citydeal Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96880/162077009/96880_RL1160_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.012933", - "last_seen": "2025-06-01T22:05:45.382609", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.335786, - 51.53655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162077018", - "info": { - "identifier": 162077018, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162077018", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162077018/96668_186046210102023_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.357479", - "last_seen": "2025-06-01T22:06:15.358002", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13907, - 51.49041 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162077087", - "info": { - "identifier": 162077087, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162077087", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162077087/96668_248644716052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.959975", - "last_seen": "2025-06-01T22:05:44.611378", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293197, - 51.506256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162077738", - "info": { - "identifier": 162077738, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162077738", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162077738/96668_247618407052025_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.652716", - "last_seen": "2025-06-01T22:06:07.459042", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013688, - 51.54933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162077774", - "info": { - "identifier": 162077774, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162077774", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162077774/96668_248667716052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.055015", - "last_seen": "2025-06-01T22:06:03.953137", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.093626, - 51.58172 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162077825", - "info": { - "identifier": 162077825, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162077825", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162077825/96668_248666816052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.145464", - "last_seen": "2025-06-01T22:05:42.509924", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137406, - 51.54334 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.29, - "qmprice": 40.22, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162078803", - "info": { - "identifier": 162078803, - "sqm_ocr": 94.29, - "price": 3792.0, - "price_per_sqm": 40.2163538020999, - "url": "https://www.rightmove.co.uk/properties/162078803", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices London", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36213/162078803/36213_HYD140141_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.191725", - "last_seen": "2025-06-01T22:06:14.466775", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167622, - 51.515034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 46.62, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162081059", - "info": { - "identifier": 162081059, - "sqm_ocr": 79.0, - "price": 3683.0, - "price_per_sqm": 46.620253164556964, - "url": "https://www.rightmove.co.uk/properties/162081059", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Prime London", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/110k/109135/162081059/109135_32823845_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.705325", - "last_seen": "2025-06-01T22:05:58.993612", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120715, - 51.494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162082112", - "info": { - "identifier": 162082112, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162082112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162082112/96668_112754605062021_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.337802", - "last_seen": "2025-06-01T22:05:47.220717", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025102, - 51.54455 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.6, - "qmprice": 44.7, - "rooms": 3, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/162082274", - "info": { - "identifier": 162082274, - "sqm_ocr": 53.6, - "price": 2396.0, - "price_per_sqm": 44.701492537313435, - "url": "https://www.rightmove.co.uk/properties/162082274", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/162082274/105856_1034_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.028503", - "last_seen": "2025-06-01T22:06:05.522791", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09402, - 51.495792 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162082733", - "info": { - "identifier": 162082733, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162082733", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Jayson Russell", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43502/162082733/43502_33891433_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.865023", - "last_seen": "2025-06-01T22:05:38.966700", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221474, - 51.5899 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162082754", - "info": { - "identifier": 162082754, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162082754", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Aspire", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45021/162082754/45021_CLM090187_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.489104", - "last_seen": "2025-06-01T22:05:59.063918", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123859, - 51.46221 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2325.0, - "url": "https://www.rightmove.co.uk/properties/162083162", - "info": { - "identifier": 162083162, - "sqm_ocr": null, - "price": 2325.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162083162", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "L&Q", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102784/162083162/102784_12674696_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.004141, - 51.53953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162083228", - "info": { - "identifier": 162083228, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162083228", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162083228/96668_228823909112024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.634630", - "last_seen": "2025-06-01T22:05:49.641062", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114664, - 51.603333 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 23.91, - "rooms": 2, - "total_price": 2080.0, - "url": "https://www.rightmove.co.uk/properties/162083411", - "info": { - "identifier": 162083411, - "sqm_ocr": 87.0, - "price": 2080.0, - "price_per_sqm": 23.908045977011493, - "url": "https://www.rightmove.co.uk/properties/162083411", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49922/162083411/49922_CEI230704_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.010203, - 51.504143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 37.0, - "qmprice": 81.41, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/162083432", - "info": { - "identifier": 162083432, - "sqm_ocr": 37.0, - "price": 3012.0, - "price_per_sqm": 81.4054054054054, - "url": "https://www.rightmove.co.uk/properties/162083432", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/162083432/65124_CEI242001_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.563569", - "last_seen": "2025-06-01T22:06:00.054439", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127012, - 51.48166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162083723", - "info": { - "identifier": 162083723, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162083723", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Inner City Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/104k/103850/162083723/103850_Rathnew_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.841124", - "last_seen": "2025-06-01T22:06:08.095271", - "price": 2199.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04452, - 51.5269 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.22, - "qmprice": 43.19, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162084092", - "info": { - "identifier": 162084092, - "sqm_ocr": 65.22, - "price": 2817.0, - "price_per_sqm": 43.192272309107636, - "url": "https://www.rightmove.co.uk/properties/162084092", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108373/162084092/108373_33891507_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "11/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.462420", - "last_seen": "2025-06-01T22:05:59.544800", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120421, - 51.49164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162084245", - "info": { - "identifier": 162084245, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162084245", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/162084245/84827_33891516_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.892385", - "last_seen": "2025-06-01T22:05:49.087234", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206129, - 51.48996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162084386", - "info": { - "identifier": 162084386, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162084386", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Haven Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85772/162084386/85772_33891526_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.824330", - "last_seen": "2025-06-01T22:05:40.244870", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21946, - 51.54805 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.9, - "qmprice": 34.13, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162084581", - "info": { - "identifier": 162084581, - "sqm_ocr": 87.9, - "price": 3000.0, - "price_per_sqm": 34.129692832764505, - "url": "https://www.rightmove.co.uk/properties/162084581", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112915/162084581/112915_P296391_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.660333", - "last_seen": "2025-06-01T22:05:46.899052", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00272, - 51.48645 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162084938", - "info": { - "identifier": 162084938, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162084938", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162084938/237116_2595_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.849945", - "last_seen": "2025-06-01T22:05:53.364580", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13063, - 51.56446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.89, - "qmprice": 31.69, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162085199", - "info": { - "identifier": 162085199, - "sqm_ocr": 78.89, - "price": 2500.0, - "price_per_sqm": 31.68969451134491, - "url": "https://www.rightmove.co.uk/properties/162085199", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/162085199/84827_33891607_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.003965", - "last_seen": "2025-06-01T22:05:48.449652", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205734, - 51.48763 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.3, - "qmprice": 35.06, - "rooms": 2, - "total_price": 2149.0, - "url": "https://www.rightmove.co.uk/properties/162085244", - "info": { - "identifier": 162085244, - "sqm_ocr": 61.3, - "price": 2149.0, - "price_per_sqm": 35.05709624796085, - "url": "https://www.rightmove.co.uk/properties/162085244", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/162085244/25485_33891614_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.702454", - "last_seen": "2025-06-01T22:05:43.074060", - "price": 2149 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203157, - 51.549667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.46, - "qmprice": 30.22, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162085421", - "info": { - "identifier": 162085421, - "sqm_ocr": 74.46, - "price": 2250.0, - "price_per_sqm": 30.217566478646255, - "url": "https://www.rightmove.co.uk/properties/162085421", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/162085421/51465_67c0589367661_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.339163", - "last_seen": "2025-06-01T22:06:01.193710", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223254, - 51.41842 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162085676", - "info": { - "identifier": 162085676, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162085676", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219908/162085676/219908_1900_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.554267", - "last_seen": "2025-06-01T22:05:45.132639", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.362834, - 51.50907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162085856", - "info": { - "identifier": 162085856, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162085856", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162085856/237116_579_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.092808", - "last_seen": "2025-06-01T22:05:47.782714", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08016, - 51.5399 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.11, - "qmprice": 34.94, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162086735", - "info": { - "identifier": 162086735, - "sqm_ocr": 60.11, - "price": 2100.0, - "price_per_sqm": 34.9359507569456, - "url": "https://www.rightmove.co.uk/properties/162086735", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/162086735/77192_VALLANCE_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.676689", - "last_seen": "2025-06-01T22:05:49.734193", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13203, - 51.59721 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162087251", - "info": { - "identifier": 162087251, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162087251", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Valley Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5250/162087251/5250_10229534_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.752841", - "last_seen": "2025-06-01T22:05:43.360171", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078831, - 51.37262 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.69, - "qmprice": 27.17, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162087788", - "info": { - "identifier": 162087788, - "sqm_ocr": 95.69, - "price": 2600.0, - "price_per_sqm": 27.17107325739367, - "url": "https://www.rightmove.co.uk/properties/162087788", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Move Inn Estates Iver", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113317/162087788/113317_33891766_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.297753", - "last_seen": "2025-06-01T22:05:51.736217", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.371859, - 51.4811 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.3, - "qmprice": 34.05, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/162087815", - "info": { - "identifier": 162087815, - "sqm_ocr": 73.3, - "price": 2496.0, - "price_per_sqm": 34.05184174624829, - "url": "https://www.rightmove.co.uk/properties/162087815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143039/162087815/143039_CEG240298_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.506599", - "last_seen": "2025-06-01T22:05:46.416775", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06722, - 51.494392 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 138.9, - "qmprice": 21.56, - "rooms": 4, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162088181", - "info": { - "identifier": 162088181, - "sqm_ocr": 138.9, - "price": 2995.0, - "price_per_sqm": 21.56227501799856, - "url": "https://www.rightmove.co.uk/properties/162088181", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Colin Dean Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118630/162088181/118630_33891783_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.973082", - "last_seen": "2025-06-01T22:05:50.806933", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.384348, - 51.610325 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162088244", - "info": { - "identifier": 162088244, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162088244", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Maple Estate & Letting Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69002/162088244/69002_1086_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.881812", - "last_seen": "2025-06-01T22:05:50.624783", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34196, - 51.58166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162088379", - "info": { - "identifier": 162088379, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162088379", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "James Chiltern", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97150/162088379/97150_33891791_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.550590", - "last_seen": "2025-06-01T22:05:43.377105", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094557, - 51.35815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162088517", - "info": { - "identifier": 162088517, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162088517", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Balgores", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83920/162088517/83920_RML250027_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.299809", - "last_seen": "2025-06-01T22:05:50.876133", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.21729, - 51.548615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162088541", - "info": { - "identifier": 162088541, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162088541", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/162088541/105856_3456_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.165846", - "last_seen": "2025-06-01T22:06:05.652104", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096998, - 51.497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162088838", - "info": { - "identifier": 162088838, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162088838", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/162088838/105856_3379_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.084265", - "last_seen": "2025-06-01T22:06:05.171927", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09482, - 51.49617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162089117", - "info": { - "identifier": 162089117, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162089117", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Citiland Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282164/162089117/282164_F92SGE1_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.948501", - "last_seen": "2025-06-01T22:06:09.713192", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05734, - 51.51012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.9, - "qmprice": 41.11, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162089717", - "info": { - "identifier": 162089717, - "sqm_ocr": 66.9, - "price": 2750.0, - "price_per_sqm": 41.106128550074736, - "url": "https://www.rightmove.co.uk/properties/162089717", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106618/162089717/106618_KDB251298_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.094797", - "last_seen": "2025-06-01T22:06:00.153576", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127014, - 51.464993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2475.0, - "url": "https://www.rightmove.co.uk/properties/162089777", - "info": { - "identifier": 162089777, - "sqm_ocr": null, - "price": 2475.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162089777", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Majestic Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284723/162089777/284723_14511_000003_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.486103", - "last_seen": "2025-06-01T22:05:41.382809", - "price": 2475.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.281424, - 51.529182 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.69, - "qmprice": 43.65, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162089798", - "info": { - "identifier": 162089798, - "sqm_ocr": 52.69, - "price": 2300.0, - "price_per_sqm": 43.65154678307079, - "url": "https://www.rightmove.co.uk/properties/162089798", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162089798/96668_248317213052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.038671", - "last_seen": "2025-06-01T22:06:00.215569", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115389, - 51.45685 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162090581", - "info": { - "identifier": 162090581, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162090581", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162090581/96668_248012511052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.778539", - "last_seen": "2025-06-01T22:05:43.740271", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091199, - 51.398785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162090719", - "info": { - "identifier": 162090719, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162090719", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "Hub Of Homes", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281309/162090719/281309_27904_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.698957", - "last_seen": "2025-06-01T22:06:11.914610", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00816, - 51.59531 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/162090932", - "info": { - "identifier": 162090932, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162090932", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286493/162090932/286493_33891979_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.806788", - "last_seen": "2025-06-01T22:06:05.774057", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.032539, - 51.502884 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162091253", - "info": { - "identifier": 162091253, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162091253", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162091253/96668_247237904052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.255988", - "last_seen": "2025-06-01T22:05:52.446202", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.418823, - 51.44792 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162091262", - "info": { - "identifier": 162091262, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162091262", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162091262/96668_248524815052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.872081", - "last_seen": "2025-06-01T22:06:13.983358", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21687, - 51.46689 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162091706", - "info": { - "identifier": 162091706, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162091706", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162091706/96668_248697617052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.282934", - "last_seen": "2025-06-01T22:05:47.016001", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.074915, - 51.49488 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162092825", - "info": { - "identifier": 162092825, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162092825", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162092825/96668_233975104012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.404288", - "last_seen": "2025-06-01T20:19:58.973351", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.046293, - 51.50989 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162093053", - "info": { - "identifier": 162093053, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162093053", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 15, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162093053/96668_247211104052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.359154", - "last_seen": "2025-06-01T20:19:59.073875", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011676, - 51.52804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162093062", - "info": { - "identifier": 162093062, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162093062", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162093062/96668_248341714052025_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.110571", - "last_seen": "2025-06-01T22:06:00.122941", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140647, - 51.463085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162093281", - "info": { - "identifier": 162093281, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162093281", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162093281/96668_230618526112024_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.283505", - "last_seen": "2025-06-01T22:06:05.289451", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094957, - 51.502842 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162093287", - "info": { - "identifier": 162093287, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162093287", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162093287/96668_248743417052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.000456", - "last_seen": "2025-06-01T22:06:08.831507", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021469, - 51.54113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162093293", - "info": { - "identifier": 162093293, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162093293", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162093293/96668_248729517052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.095067", - "last_seen": "2025-06-01T22:06:02.344293", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.047611, - 51.53035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2855.0, - "url": "https://www.rightmove.co.uk/properties/162093392", - "info": { - "identifier": 162093392, - "sqm_ocr": null, - "price": 2855.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162093392", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Way of Life", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256148/162093392/256148_EVER-2561482y10cb4PfoNCNxJb9smEg9zu3lJGKT01SaYBHJebexYvvtBS3pMXcZi_IMG_01_0000_max_656x437.png", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.413840", - "last_seen": "2025-06-01T22:06:09.823786", - "price": 2855.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01022, - 51.52516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2654.0, - "url": "https://www.rightmove.co.uk/properties/162094664", - "info": { - "identifier": 162094664, - "sqm_ocr": null, - "price": 2654.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162094664", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Way of Life", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256148/162094664/256148_EVER-2561482y10Pcv54DeQtOXzi9kLxJQe8vDvDyVFFGv9GcEAkvyQIaADxtFCi_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.248088", - "last_seen": "2025-06-01T20:19:59.488550", - "price": 2585.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01022, - 51.52516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162094868", - "info": { - "identifier": 162094868, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162094868", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162094868/96668_245119314042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.320997", - "last_seen": "2025-06-01T22:05:50.894656", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.177144, - 51.57116 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2635.0, - "url": "https://www.rightmove.co.uk/properties/162095924", - "info": { - "identifier": 162095924, - "sqm_ocr": null, - "price": 2635.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162095924", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Way of Life", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256148/162095924/256148_EVER-2561482y10Jvp2Bf7VifbudY1rkDOOcGe6CzUbyVMcy6UyBSXB5bbfSgEhq_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.468515", - "last_seen": "2025-06-01T22:06:08.986439", - "price": 2566.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01022, - 51.52516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162096080", - "info": { - "identifier": 162096080, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162096080", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162096080/96668_248736417052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.343852", - "last_seen": "2025-06-01T22:06:13.649296", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.152683, - 51.450905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.31, - "qmprice": 40.07, - "rooms": 2, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/162096113", - "info": { - "identifier": 162096113, - "sqm_ocr": 82.31, - "price": 3298.0, - "price_per_sqm": 40.06803547564087, - "url": "https://www.rightmove.co.uk/properties/162096113", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Liv International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54583/162096113/54583_LIVH_018623_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.751169", - "last_seen": "2025-06-01T22:05:42.199880", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172251, - 51.54321 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.17, - "qmprice": 37.16, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/162096176", - "info": { - "identifier": 162096176, - "sqm_ocr": 67.17, - "price": 2496.0, - "price_per_sqm": 37.15944618133095, - "url": "https://www.rightmove.co.uk/properties/162096176", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/162096176/169658_409081_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.572393", - "last_seen": "2025-06-01T22:06:08.846301", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018374, - 51.4977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/162096590", - "info": { - "identifier": 162096590, - "sqm_ocr": null, - "price": 3198.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162096590", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Liv International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54583/162096590/54583_LIVH_012424_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.825295", - "last_seen": "2025-06-01T22:05:42.900717", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19648, - 51.558933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162096743", - "info": { - "identifier": 162096743, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162096743", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162096743/96668_244316106042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.000374", - "last_seen": "2025-06-01T22:05:42.396435", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142696, - 51.528786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162096824", - "info": { - "identifier": 162096824, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162096824", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93848/162096824/93848_0619_HRT061901169_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.777906", - "last_seen": "2025-06-01T22:06:11.935487", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008105, - 51.579376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.1, - "qmprice": 39.53, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162096866", - "info": { - "identifier": 162096866, - "sqm_ocr": 72.1, - "price": 2850.0, - "price_per_sqm": 39.52843273231623, - "url": "https://www.rightmove.co.uk/properties/162096866", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Property Inside London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270212/162096866/270212_62Strat_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.458822", - "last_seen": "2025-06-01T22:06:07.666738", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00069, - 51.5401 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162097652", - "info": { - "identifier": 162097652, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162097652", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162097652/96668_245003213042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.871014", - "last_seen": "2025-06-01T22:06:11.093795", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020953, - 51.5163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/162097679", - "info": { - "identifier": 162097679, - "sqm_ocr": null, - "price": 2295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162097679", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162097679/96668_248762818052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.125078", - "last_seen": "2025-06-01T22:06:03.041760", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013834, - 51.50952 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/162097691", - "info": { - "identifier": 162097691, - "sqm_ocr": null, - "price": 2695.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162097691", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162097691/96668_222168310092024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.119412", - "last_seen": "2025-06-01T22:06:03.076455", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.041326, - 51.514515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.4, - "qmprice": 53.72, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162097919", - "info": { - "identifier": 162097919, - "sqm_ocr": 48.4, - "price": 2600.0, - "price_per_sqm": 53.719008264462815, - "url": "https://www.rightmove.co.uk/properties/162097919", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162097919/96668_248779818052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.076599", - "last_seen": "2025-06-01T22:05:49.366160", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206373, - 51.49142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3208.0, - "url": "https://www.rightmove.co.uk/properties/162097988", - "info": { - "identifier": 162097988, - "sqm_ocr": null, - "price": 3208.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162097988", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Way of Life", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259979/162097988/259979_EVER-2599792y10xCvIvbZKFfeafFuMCSBB0OJ2BuT6BgckDrIsD93xH3T0Tv2rJ3K6_IMG_01_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.760120", - "last_seen": "2025-06-01T22:05:50.090772", - "price": 3208.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061882, - 51.590843 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162098141", - "info": { - "identifier": 162098141, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162098141", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/162098141/264878_CAN190586_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.517754", - "last_seen": "2025-06-01T22:06:10.358302", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018219, - 51.49779 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162098363", - "info": { - "identifier": 162098363, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162098363", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Michael Naik", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101870/162098363/101870_33892162_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.076831", - "last_seen": "2025-06-01T22:05:47.817929", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07489, - 51.56212 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.9, - "qmprice": 35.75, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162098381", - "info": { - "identifier": 162098381, - "sqm_ocr": 111.9, - "price": 4000.0, - "price_per_sqm": 35.746201966041106, - "url": "https://www.rightmove.co.uk/properties/162098381", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Michael Naik", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101870/162098381/101870_33892165_IMG_00_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.068714", - "last_seen": "2025-06-01T22:05:47.832396", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089287, - 51.554546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.9, - "qmprice": 50.86, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162098477", - "info": { - "identifier": 162098477, - "sqm_ocr": 63.9, - "price": 3250.0, - "price_per_sqm": 50.86071987480438, - "url": "https://www.rightmove.co.uk/properties/162098477", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76478/162098477/76478_CEI243250_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.930400", - "last_seen": "2025-06-01T22:06:08.146324", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017583, - 51.500305 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162098543", - "info": { - "identifier": 162098543, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162098543", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Way of Life (Balfron Tower) LLP", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267971/162098543/267971_EVER-2679712y10kXMwVlHg3vcyixnmmv8OON4ABsfFVk6VUGEqLlCXeP8r6q4rDl6e_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.132962", - "last_seen": "2025-06-01T22:06:09.398953", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010127, - 51.513493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.7, - "qmprice": 24.84, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162098588", - "info": { - "identifier": 162098588, - "sqm_ocr": 110.7, - "price": 2750.0, - "price_per_sqm": 24.841915085817526, - "url": "https://www.rightmove.co.uk/properties/162098588", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/162098588/51465_6827504482661_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.472150", - "last_seen": "2025-06-01T22:06:01.235360", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198295, - 51.42616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162098909", - "info": { - "identifier": 162098909, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162098909", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "City & Urban", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15508/162098909/15508_8796446_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "13/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.633860", - "last_seen": "2025-06-01T22:06:07.998579", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07566, - 51.52115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162099014", - "info": { - "identifier": 162099014, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162099014", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162099014/96668_248802118052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.424736", - "last_seen": "2025-06-01T22:05:38.749684", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195933, - 51.606216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.8, - "qmprice": 34.72, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162099056", - "info": { - "identifier": 162099056, - "sqm_ocr": 64.8, - "price": 2250.0, - "price_per_sqm": 34.72222222222222, - "url": "https://www.rightmove.co.uk/properties/162099056", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Stepney Marsh", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285566/162099056/285566_Cittow_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.279883", - "last_seen": "2025-06-01T22:06:08.918008", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0135, - 51.49761 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.9, - "qmprice": 32.09, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162099140", - "info": { - "identifier": 162099140, - "sqm_ocr": 70.9, - "price": 2275.0, - "price_per_sqm": 32.08744710860366, - "url": "https://www.rightmove.co.uk/properties/162099140", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "Stepney Marsh", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285566/162099140/285566_Amundsenct_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.505643", - "last_seen": "2025-06-01T22:06:10.066435", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02111, - 51.48829 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162099242", - "info": { - "identifier": 162099242, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162099242", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162099242/96668_248777018052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.585557", - "last_seen": "2025-06-01T22:05:46.444882", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.012437, - 51.482056 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162099251", - "info": { - "identifier": 162099251, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162099251", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162099251/96668_248774118052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.597248", - "last_seen": "2025-06-01T22:05:46.312334", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.018527, - 51.49247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162099254", - "info": { - "identifier": 162099254, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162099254", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 14, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162099254/96668_127653709122021_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.037793", - "last_seen": "2025-06-01T22:05:45.567121", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.050747, - 51.630108 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.1, - "qmprice": 30.21, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162099380", - "info": { - "identifier": 162099380, - "sqm_ocr": 81.1, - "price": 2450.0, - "price_per_sqm": 30.209617755856968, - "url": "https://www.rightmove.co.uk/properties/162099380", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Stepney Marsh", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285566/162099380/285566_Perry_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.077294", - "last_seen": "2025-06-01T20:19:59.768995", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02198, - 51.48813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 127.7, - "qmprice": 21.14, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162099422", - "info": { - "identifier": 162099422, - "sqm_ocr": 127.7, - "price": 2700.0, - "price_per_sqm": 21.1433046202036, - "url": "https://www.rightmove.co.uk/properties/162099422", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162099422/96668_247913910052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.303432", - "last_seen": "2025-06-01T22:05:41.678470", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.057321, - 51.364883 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162099626", - "info": { - "identifier": 162099626, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162099626", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - White City", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260429/162099626/260429_wclracwl1905073_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.909950", - "last_seen": "2025-06-01T22:05:48.585083", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22098, - 51.51191 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.33, - "qmprice": 39.51, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162100796", - "info": { - "identifier": 162100796, - "sqm_ocr": 68.33, - "price": 2700.0, - "price_per_sqm": 39.51412264012879, - "url": "https://www.rightmove.co.uk/properties/162100796", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162100796/96668_248801518052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.636181", - "last_seen": "2025-06-01T22:06:06.634623", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.083675, - 51.49852 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/162100802", - "info": { - "identifier": 162100802, - "sqm_ocr": null, - "price": 3650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162100802", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162100802/96668_248801118052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.367832", - "last_seen": "2025-06-01T22:06:12.509565", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214494, - 51.448074 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162100895", - "info": { - "identifier": 162100895, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162100895", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162100895/96668_248782118052025_IMG_16_0001_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.944373", - "last_seen": "2025-06-01T22:06:03.717354", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.065925, - 51.592243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162102053", - "info": { - "identifier": 162102053, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162102053", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "S Stone Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286994/162102053/286994_ssml_73447697_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.498744", - "last_seen": "2025-06-01T22:06:06.394737", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058279, - 51.4864 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.0, - "qmprice": 31.53, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162102908", - "info": { - "identifier": 162102908, - "sqm_ocr": 111.0, - "price": 3500.0, - "price_per_sqm": 31.53153153153153, - "url": "https://www.rightmove.co.uk/properties/162102908", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/162102908/15969_1326087_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.970996", - "last_seen": "2025-06-01T22:05:44.718779", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297585, - 51.512356 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3182.0, - "url": "https://www.rightmove.co.uk/properties/162103016", - "info": { - "identifier": 162103016, - "sqm_ocr": null, - "price": 3182.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162103016", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162103016/253604_123X1905_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.427065", - "last_seen": "2025-06-01T22:06:07.684727", - "price": 3182.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.0, - "qmprice": 48.15, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162103622", - "info": { - "identifier": 162103622, - "sqm_ocr": 54.0, - "price": 2600.0, - "price_per_sqm": 48.148148148148145, - "url": "https://www.rightmove.co.uk/properties/162103622", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/162103622/77511_GER253711_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.901193", - "last_seen": "2025-06-01T22:06:11.387938", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065857, - 51.514698 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 32.32, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162103862", - "info": { - "identifier": 162103862, - "sqm_ocr": 82.0, - "price": 2650.0, - "price_per_sqm": 32.31707317073171, - "url": "https://www.rightmove.co.uk/properties/162103862", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "James Anderson", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56085/162103862/56085_33892292_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.496631", - "last_seen": "2025-06-01T22:06:13.038396", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221212, - 51.46119 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.4, - "qmprice": 42.05, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162103886", - "info": { - "identifier": 162103886, - "sqm_ocr": 65.4, - "price": 2750.0, - "price_per_sqm": 42.04892966360856, - "url": "https://www.rightmove.co.uk/properties/162103886", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/162103886/52887_33861443_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.439809", - "last_seen": "2025-06-01T22:06:01.261510", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202255, - 51.4176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162103949", - "info": { - "identifier": 162103949, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162103949", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162103949/96668_235019613012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.788754", - "last_seen": "2025-06-01T22:05:43.708423", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104492, - 51.34517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 36.49, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162104228", - "info": { - "identifier": 162104228, - "sqm_ocr": 74.0, - "price": 2700.0, - "price_per_sqm": 36.486486486486484, - "url": "https://www.rightmove.co.uk/properties/162104228", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280928/162104228/280928_KYC250176_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.223258", - "last_seen": "2025-06-01T22:05:39.135514", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247858, - 51.595356 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.2, - "qmprice": 31.6, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162104255", - "info": { - "identifier": 162104255, - "sqm_ocr": 71.2, - "price": 2250.0, - "price_per_sqm": 31.601123595505616, - "url": "https://www.rightmove.co.uk/properties/162104255", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30575/162104255/30575_05313505_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.131958", - "last_seen": "2025-06-01T22:06:04.576476", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.296, - 51.456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 33.9, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162104288", - "info": { - "identifier": 162104288, - "sqm_ocr": 59.0, - "price": 2000.0, - "price_per_sqm": 33.898305084745765, - "url": "https://www.rightmove.co.uk/properties/162104288", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Wenlock & Taylor", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91292/162104288/91292_33892319_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.381059", - "last_seen": "2025-06-01T22:05:40.962876", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.243164, - 51.54133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.3, - "qmprice": 38.13, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162104708", - "info": { - "identifier": 162104708, - "sqm_ocr": 81.3, - "price": 3100.0, - "price_per_sqm": 38.13038130381304, - "url": "https://www.rightmove.co.uk/properties/162104708", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Apo", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80388/162104708/80388_3bedad180_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.891492", - "last_seen": "2025-06-01T22:05:52.265053", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28789, - 51.49168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162104744", - "info": { - "identifier": 162104744, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162104744", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "London Property Guru", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97850/162104744/97850_RX582169_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.872459", - "last_seen": "2025-06-01T22:05:52.289555", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.291002, - 51.488693 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/162104990", - "info": { - "identifier": 162104990, - "sqm_ocr": null, - "price": 3142.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162104990", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hanover", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74440/162104990/74440_HNV230376_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.300935", - "last_seen": "2025-06-01T22:06:15.213031", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172276, - 51.52803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.5, - "qmprice": 39.39, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162105950", - "info": { - "identifier": 162105950, - "sqm_ocr": 82.5, - "price": 3250.0, - "price_per_sqm": 39.39393939393939, - "url": "https://www.rightmove.co.uk/properties/162105950", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Alex Marks", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90731/162105950/90731_ALEXM_003167_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.656840", - "last_seen": "2025-06-01T22:05:53.151102", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121264, - 51.566204 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162105968", - "info": { - "identifier": 162105968, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162105968", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/162105968/67576_RL0839_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.421076", - "last_seen": "2025-06-01T22:05:38.639044", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201841, - 51.566257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162106124", - "info": { - "identifier": 162106124, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162106124", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": "removed", - "last_seen": 0, - "agency": "UNCLE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147557/162106124/147557_RST254348_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.195650", - "last_seen": "2025-06-01T22:05:44.211684", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375887, - 51.504913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.8, - "qmprice": 50.15, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162106394", - "info": { - "identifier": 162106394, - "sqm_ocr": 59.8, - "price": 2999.0, - "price_per_sqm": 50.15050167224081, - "url": "https://www.rightmove.co.uk/properties/162106394", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212321/162106394/212321_P160949_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.473367", - "last_seen": "2025-06-01T22:05:59.751154", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12521, - 51.48569 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.8, - "qmprice": 26.32, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162106493", - "info": { - "identifier": 162106493, - "sqm_ocr": 79.8, - "price": 2100.0, - "price_per_sqm": 26.315789473684212, - "url": "https://www.rightmove.co.uk/properties/162106493", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62489/162106493/62489_33892483_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.228710", - "last_seen": "2025-06-01T22:05:46.540515", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.109965, - 51.487732 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.31, - "qmprice": 30.61, - "rooms": 3, - "total_price": 2856.0, - "url": "https://www.rightmove.co.uk/properties/162106529", - "info": { - "identifier": 162106529, - "sqm_ocr": 93.31, - "price": 2856.0, - "price_per_sqm": 30.607651912978245, - "url": "https://www.rightmove.co.uk/properties/162106529", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Borthwicks", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52337/162106529/52337_BOR1001350_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.337568", - "last_seen": "2025-06-01T22:05:44.864946", - "price": 2855 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26742, - 51.5224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.5, - "qmprice": 31.09, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162106622", - "info": { - "identifier": 162106622, - "sqm_ocr": 96.5, - "price": 3000.0, - "price_per_sqm": 31.088082901554404, - "url": "https://www.rightmove.co.uk/properties/162106622", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162106622/98531_1324180_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.798723", - "last_seen": "2025-06-01T22:05:48.278714", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.231896, - 51.504738 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3025.0, - "url": "https://www.rightmove.co.uk/properties/162106937", - "info": { - "identifier": 162106937, - "sqm_ocr": null, - "price": 3025.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162106937", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Folio London", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97670/162106937/97670_CFE210112_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.793811", - "last_seen": "2025-06-01T22:06:07.547816", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00178, - 51.5453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.4, - "qmprice": 33.04, - "rooms": 2, - "total_price": 2095.0, - "url": "https://www.rightmove.co.uk/properties/162107327", - "info": { - "identifier": 162107327, - "sqm_ocr": 63.4, - "price": 2095.0, - "price_per_sqm": 33.04416403785489, - "url": "https://www.rightmove.co.uk/properties/162107327", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84812/162107327/84812_33892699_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.805941", - "last_seen": "2025-06-01T22:05:58.508799", - "price": 2095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.304116, - 51.393375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.4, - "qmprice": 37.67, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162107330", - "info": { - "identifier": 162107330, - "sqm_ocr": 58.4, - "price": 2200.0, - "price_per_sqm": 37.67123287671233, - "url": "https://www.rightmove.co.uk/properties/162107330", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257069/162107330/257069_33892702_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.721258", - "last_seen": "2025-06-01T22:05:56.124611", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012157, - 51.494003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/162107333", - "info": { - "identifier": 162107333, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162107333", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hampstead", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32760/162107333/32760_Maygrove3bedD_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.295489", - "last_seen": "2025-06-01T22:05:56.114932", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19967, - 51.54818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2699.0, - "url": "https://www.rightmove.co.uk/properties/162107705", - "info": { - "identifier": 162107705, - "sqm_ocr": null, - "price": 2699.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162107705", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Tony Alan Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250175/162107705/250175_101757007157_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.419868", - "last_seen": "2025-06-01T22:05:38.636858", - "price": 2565.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17736, - 51.61177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162107711", - "info": { - "identifier": 162107711, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162107711", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162107711/237116_1813_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.500384", - "last_seen": "2025-06-01T22:05:49.658560", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1093, - 51.58821 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.36, - "qmprice": 49.77, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162107768", - "info": { - "identifier": 162107768, - "sqm_ocr": 78.36, - "price": 3900.0, - "price_per_sqm": 49.77029096477795, - "url": "https://www.rightmove.co.uk/properties/162107768", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Unihood", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289043/162107768/289043_12SavoyHouse_IMG_04_0000_max_656x437.png", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.501838", - "last_seen": "2025-06-01T22:05:48.319432", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18506, - 51.47637 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162107972", - "info": { - "identifier": 162107972, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162107972", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Lords Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249026/162107972/249026_southgate_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.045412", - "last_seen": "2025-06-01T22:05:45.867651", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09474, - 51.61882 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162108251", - "info": { - "identifier": 162108251, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162108251", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58464/162108251/58464_33892995_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.627273", - "last_seen": "2025-06-01T22:05:58.706452", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297168, - 51.41555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162108656", - "info": { - "identifier": 162108656, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162108656", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Daniels", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167654/162108656/167654_33892986_IMG_00_0000_max_656x437.png", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.050499", - "last_seen": "2025-06-01T22:05:41.301706", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22267, - 51.549988 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162108806", - "info": { - "identifier": 162108806, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162108806", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162108806/96668_245973723042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.617193", - "last_seen": "2025-06-01T22:06:14.996282", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204776, - 51.53012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162108824", - "info": { - "identifier": 162108824, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162108824", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162108824/96668_246180224042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.644367", - "last_seen": "2025-06-01T22:05:40.362896", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221376, - 51.52972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162108863", - "info": { - "identifier": 162108863, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162108863", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162108863/96668_246942701052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.278451", - "last_seen": "2025-06-01T22:06:00.462954", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 9.1e-05, - 51.417484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162108914", - "info": { - "identifier": 162108914, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162108914", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Empire Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237251/162108914/237251_102658005947_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.127458", - "last_seen": "2025-06-01T22:05:55.046719", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23671, - 51.54883 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.2, - "qmprice": 35.65, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162109121", - "info": { - "identifier": 162109121, - "sqm_ocr": 112.2, - "price": 4000.0, - "price_per_sqm": 35.650623885918, - "url": "https://www.rightmove.co.uk/properties/162109121", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68064/162109121/68064_BRL250102_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.685057", - "last_seen": "2025-06-01T22:05:58.956060", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120652, - 51.449764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.2, - "qmprice": 30.16, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162109124", - "info": { - "identifier": 162109124, - "sqm_ocr": 86.2, - "price": 2600.0, - "price_per_sqm": 30.162412993039442, - "url": "https://www.rightmove.co.uk/properties/162109124", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105241/162109124/105241_P2763E4308_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.841210", - "last_seen": "2025-06-01T22:05:43.312572", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08491, - 51.3854 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162109139", - "info": { - "identifier": 162109139, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162109139", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162109139/96668_248821319052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.697700", - "last_seen": "2025-06-01T22:05:59.626005", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106729, - 51.45434 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162109568", - "info": { - "identifier": 162109568, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162109568", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Simple Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238226/162109568/238226_5817_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.807086", - "last_seen": "2025-06-01T22:05:51.135731", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.415277, - 51.514256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3146.0, - "url": "https://www.rightmove.co.uk/properties/162110231", - "info": { - "identifier": 162110231, - "sqm_ocr": null, - "price": 3146.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162110231", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84794/162110231/84794_33893126_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.662721", - "last_seen": "2025-06-01T22:05:48.759722", - "price": 3146 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217226, - 51.477077 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.1, - "qmprice": 33.29, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162110333", - "info": { - "identifier": 162110333, - "sqm_ocr": 78.1, - "price": 2600.0, - "price_per_sqm": 33.29065300896287, - "url": "https://www.rightmove.co.uk/properties/162110333", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/162110333/111056_1326814_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.734317", - "last_seen": "2025-06-01T20:19:56.651158", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067388, - 51.511852 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.2, - "qmprice": 34.62, - "rooms": 3, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/162110363", - "info": { - "identifier": 162110363, - "sqm_ocr": 111.2, - "price": 3850.0, - "price_per_sqm": 34.62230215827338, - "url": "https://www.rightmove.co.uk/properties/162110363", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/162110363/71419_1326824_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.241324", - "last_seen": "2025-06-01T22:05:59.983800", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121774, - 51.443466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.3, - "qmprice": 43.98, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162110552", - "info": { - "identifier": 162110552, - "sqm_ocr": 52.3, - "price": 2300.0, - "price_per_sqm": 43.977055449330784, - "url": "https://www.rightmove.co.uk/properties/162110552", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68064/162110552/68064_CST130147_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.362679", - "last_seen": "2025-06-01T22:05:59.422624", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11537, - 51.45683 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/162110555", - "info": { - "identifier": 162110555, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162110555", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237452/162110555/237452_6g_IMG_00_0000_max_656x437.png", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.577675", - "last_seen": "2025-06-01T22:06:12.951033", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13041, - 51.4819 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162110807", - "info": { - "identifier": 162110807, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162110807", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Emoov", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/181k/180266/162110807/180266_1549_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.627209", - "last_seen": "2025-06-01T22:06:15.001958", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191644, - 51.5238 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.5, - "qmprice": 54.62, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162110858", - "info": { - "identifier": 162110858, - "sqm_ocr": 59.5, - "price": 3250.0, - "price_per_sqm": 54.621848739495796, - "url": "https://www.rightmove.co.uk/properties/162110858", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55362/162110858/55362_33893174_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.574755", - "last_seen": "2025-06-01T22:06:14.866515", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165111, - 51.51583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162111215", - "info": { - "identifier": 162111215, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162111215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Emoov", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/181k/180266/162111215/180266_398_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.416838", - "last_seen": "2025-06-01T22:05:59.018515", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127455, - 51.43619 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.9, - "qmprice": 36.43, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162111878", - "info": { - "identifier": 162111878, - "sqm_ocr": 54.9, - "price": 2000.0, - "price_per_sqm": 36.42987249544627, - "url": "https://www.rightmove.co.uk/properties/162111878", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Regent & Wood", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270854/162111878/270854_efcce449-1ccc-4bd6-aec3-aed919ae2533_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.159958", - "last_seen": "2025-06-01T22:05:46.606758", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06466, - 51.491264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.8, - "qmprice": 41.32, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162111947", - "info": { - "identifier": 162111947, - "sqm_ocr": 96.8, - "price": 4000.0, - "price_per_sqm": 41.32231404958678, - "url": "https://www.rightmove.co.uk/properties/162111947", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/162111947/82537_33893253_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.625058", - "last_seen": "2025-06-01T22:06:09.105536", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023947, - 51.508057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162111998", - "info": { - "identifier": 162111998, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162111998", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hallways Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/194k/193913/162111998/193913_RL0253_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.637515", - "last_seen": "2025-06-01T22:05:43.389108", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131561, - 51.310432 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162112061", - "info": { - "identifier": 162112061, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162112061", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "EGRE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82293/162112061/82293_449_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.778231", - "last_seen": "2025-06-01T22:06:02.836564", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004033, - 51.5227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.8, - "qmprice": 41.32, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162112310", - "info": { - "identifier": 162112310, - "sqm_ocr": 96.8, - "price": 4000.0, - "price_per_sqm": 41.32231404958678, - "url": "https://www.rightmove.co.uk/properties/162112310", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/162112310/198539_33893267_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.097492", - "last_seen": "2025-06-01T22:06:09.291790", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023947, - 51.508057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.11, - "qmprice": 36.62, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162112379", - "info": { - "identifier": 162112379, - "sqm_ocr": 90.11, - "price": 3300.0, - "price_per_sqm": 36.62190655865054, - "url": "https://www.rightmove.co.uk/properties/162112379", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Goldman Greg Housing Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/226k/225413/162112379/225413_33893273_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.047715", - "last_seen": "2025-06-01T22:06:04.952302", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076761, - 51.4963 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.58, - "qmprice": 22.81, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162112580", - "info": { - "identifier": 162112580, - "sqm_ocr": 120.58, - "price": 2750.0, - "price_per_sqm": 22.80643556145298, - "url": "https://www.rightmove.co.uk/properties/162112580", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "John Payne", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/190k/189056/162112580/189056_P276983_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.097364", - "last_seen": "2025-06-01T22:05:46.773002", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0675, - 51.47606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 44.58, - "rooms": 2, - "total_price": 2675.0, - "url": "https://www.rightmove.co.uk/properties/162112679", - "info": { - "identifier": 162112679, - "sqm_ocr": 60.0, - "price": 2675.0, - "price_per_sqm": 44.583333333333336, - "url": "https://www.rightmove.co.uk/properties/162112679", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30575/162112679/30575_05312526_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.410158", - "last_seen": "2025-06-01T22:06:04.337485", - "price": 2675.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29566, - 51.456585 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.49, - "qmprice": 43.31, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162112694", - "info": { - "identifier": 162112694, - "sqm_ocr": 63.49, - "price": 2750.0, - "price_per_sqm": 43.313907702000314, - "url": "https://www.rightmove.co.uk/properties/162112694", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/127k/126934/162112694/126934_660d79be52281_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.278029", - "last_seen": "2025-06-01T22:06:12.450223", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183682, - 51.4505 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.5, - "qmprice": 43.62, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162114890", - "info": { - "identifier": 162114890, - "sqm_ocr": 74.5, - "price": 3250.0, - "price_per_sqm": 43.624161073825505, - "url": "https://www.rightmove.co.uk/properties/162114890", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129652/162114890/129652_P5968D0910_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.528849", - "last_seen": "2025-06-01T22:05:49.673728", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10612, - 51.57458 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 30.82, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162115046", - "info": { - "identifier": 162115046, - "sqm_ocr": 73.0, - "price": 2250.0, - "price_per_sqm": 30.82191780821918, - "url": "https://www.rightmove.co.uk/properties/162115046", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30602/162115046/30602_06780389_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.002551", - "last_seen": "2025-06-01T22:05:50.349011", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297, - 51.601 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.13, - "qmprice": 44.57, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162115118", - "info": { - "identifier": 162115118, - "sqm_ocr": 84.13, - "price": 3750.0, - "price_per_sqm": 44.5738737667895, - "url": "https://www.rightmove.co.uk/properties/162115118", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "JBrown", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239306/162115118/239306_6700_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.174375", - "last_seen": "2025-06-01T22:05:56.636696", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221599, - 51.51257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.0, - "qmprice": 24.74, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162115145", - "info": { - "identifier": 162115145, - "sqm_ocr": 97.0, - "price": 2400.0, - "price_per_sqm": 24.742268041237114, - "url": "https://www.rightmove.co.uk/properties/162115145", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/38k/37160/162115145/37160_P235192_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.086306", - "last_seen": "2025-06-01T22:06:00.322804", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0177, - 51.46404 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.8, - "qmprice": 27.23, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162115253", - "info": { - "identifier": 162115253, - "sqm_ocr": 80.8, - "price": 2200.0, - "price_per_sqm": 27.22772277227723, - "url": "https://www.rightmove.co.uk/properties/162115253", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 1.0, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Moreland", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6263/162115253/6263_MRL_MRL_LFSYCL_637_831422169_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.685433", - "last_seen": "2025-06-01T22:05:38.662939", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210619, - 51.56709 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.68, - "qmprice": 50.29, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/162115418", - "info": { - "identifier": 162115418, - "sqm_ocr": 48.68, - "price": 2448.0, - "price_per_sqm": 50.28759244042728, - "url": "https://www.rightmove.co.uk/properties/162115418", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/162115418/70038_5154_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.533663", - "last_seen": "2025-06-01T22:05:49.062955", - "price": 2340 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209653, - 51.46787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162116024", - "info": { - "identifier": 162116024, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162116024", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44870/162116024/44870_33893431_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.296639", - "last_seen": "2025-06-01T22:05:39.067787", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242377, - 51.577225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162116111", - "info": { - "identifier": 162116111, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162116111", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "JBrown", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239306/162116111/239306_6694_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.749511", - "last_seen": "2025-06-01T22:05:41.112547", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284529, - 51.5413 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162116435", - "info": { - "identifier": 162116435, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162116435", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237689/162116435/237689_KEB240088_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.038694", - "last_seen": "2025-06-01T22:05:41.273802", - "price": 2675.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216191, - 51.545918 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/162116441", - "info": { - "identifier": 162116441, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162116441", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Square Quarters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76064/162116441/76064_189605_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.971148", - "last_seen": "2025-06-01T20:19:58.971148", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057394, - 51.511776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162116510", - "info": { - "identifier": 162116510, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162116510", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Brithomes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275363/162116510/275363_1000000190525_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.186589", - "last_seen": "2025-06-01T22:05:39.182782", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24849, - 51.58759 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162116588", - "info": { - "identifier": 162116588, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162116588", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Able Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/9k/8201/162116588/8201_10004920_ABLE_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.207020", - "last_seen": "2025-06-01T22:05:39.975693", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.142533, - 51.439236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.6, - "qmprice": 44.6, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/162117161", - "info": { - "identifier": 162117161, - "sqm_ocr": 82.6, - "price": 3684.0, - "price_per_sqm": 44.600484261501215, - "url": "https://www.rightmove.co.uk/properties/162117161", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/162117161/15957_1326853_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.648196", - "last_seen": "2025-06-01T22:05:43.211742", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195032, - 51.548714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.3, - "qmprice": 39.53, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162117290", - "info": { - "identifier": 162117290, - "sqm_ocr": 68.3, - "price": 2700.0, - "price_per_sqm": 39.53147877013177, - "url": "https://www.rightmove.co.uk/properties/162117290", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162117290/55101_1326836_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.955606", - "last_seen": "2025-06-01T22:06:00.827004", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037164, - 51.49117 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.3, - "qmprice": 58.57, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162117296", - "info": { - "identifier": 162117296, - "sqm_ocr": 68.3, - "price": 4000.0, - "price_per_sqm": 58.565153733528554, - "url": "https://www.rightmove.co.uk/properties/162117296", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162117296/55101_1326837_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.954003", - "last_seen": "2025-06-01T22:06:00.828863", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037164, - 51.49117 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.4, - "qmprice": 51.44, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162117554", - "info": { - "identifier": 162117554, - "sqm_ocr": 67.4, - "price": 3467.0, - "price_per_sqm": 51.43916913946587, - "url": "https://www.rightmove.co.uk/properties/162117554", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/162117554/15942_1326842_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.377504", - "last_seen": "2025-06-01T22:05:58.352114", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183122, - 51.49866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.3, - "qmprice": 45.66, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162117557", - "info": { - "identifier": 162117557, - "sqm_ocr": 78.3, - "price": 3575.0, - "price_per_sqm": 45.65772669220945, - "url": "https://www.rightmove.co.uk/properties/162117557", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/162117557/15942_1326859_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.378660", - "last_seen": "2025-06-01T22:05:58.353640", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184925, - 51.495255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.97, - "qmprice": 27.18, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162117671", - "info": { - "identifier": 162117671, - "sqm_ocr": 91.97, - "price": 2500.0, - "price_per_sqm": 27.182776992497555, - "url": "https://www.rightmove.co.uk/properties/162117671", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162117671/43310_PTL210068_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.933012", - "last_seen": "2025-06-01T22:06:10.612206", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008547, - 51.50021 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 32.86, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162117698", - "info": { - "identifier": 162117698, - "sqm_ocr": 70.0, - "price": 2300.0, - "price_per_sqm": 32.857142857142854, - "url": "https://www.rightmove.co.uk/properties/162117698", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209807/162117698/209807_CDL250023_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.814566", - "last_seen": "2025-06-01T22:06:10.695548", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020228, - 51.513348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.0, - "qmprice": 32.0, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162118073", - "info": { - "identifier": 162118073, - "sqm_ocr": 125.0, - "price": 4000.0, - "price_per_sqm": 32.0, - "url": "https://www.rightmove.co.uk/properties/162118073", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50304/162118073/50304_33809764_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.741384", - "last_seen": "2025-06-01T22:05:55.267846", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284257, - 51.523636 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 39.23, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162118295", - "info": { - "identifier": 162118295, - "sqm_ocr": 65.0, - "price": 2550.0, - "price_per_sqm": 39.23076923076923, - "url": "https://www.rightmove.co.uk/properties/162118295", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "McMahon & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65019/162118295/65019_598_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.155604", - "last_seen": "2025-06-01T22:06:07.106589", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103588, - 51.4965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162118448", - "info": { - "identifier": 162118448, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162118448", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/162118448/252785_33893585_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.968865", - "last_seen": "2025-06-01T22:05:50.294232", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.350636, - 51.566788 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162118640", - "info": { - "identifier": 162118640, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162118640", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "CROWN LUXURY HOMES LIMITED", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267257/162118640/267257_33893601_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.594320", - "last_seen": "2025-06-01T22:05:46.645903", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.028835, - 51.45837 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.09, - "qmprice": 39.41, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162119303", - "info": { - "identifier": 162119303, - "sqm_ocr": 76.09, - "price": 2999.0, - "price_per_sqm": 39.41385201734788, - "url": "https://www.rightmove.co.uk/properties/162119303", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Goldstone Letting & Management Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206063/162119303/206063_GLD250015_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.411806", - "last_seen": "2025-06-01T22:06:03.281709", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00674, - 51.51228 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162119459", - "info": { - "identifier": 162119459, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162119459", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Choices", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117484/162119459/117484_LND250052_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.502427", - "last_seen": "2025-06-01T22:06:11.900663", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021274, - 51.56764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.0, - "qmprice": 27.5, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162119627", - "info": { - "identifier": 162119627, - "sqm_ocr": 120.0, - "price": 3300.0, - "price_per_sqm": 27.5, - "url": "https://www.rightmove.co.uk/properties/162119627", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129652/162119627/129652_P2183B3419_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.825013", - "last_seen": "2025-06-01T22:05:54.880040", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1414, - 51.59044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2095.0, - "url": "https://www.rightmove.co.uk/properties/162119678", - "info": { - "identifier": 162119678, - "sqm_ocr": null, - "price": 2095.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162119678", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Matthew James", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29132/162119678/29132_33893416_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.816667", - "last_seen": "2025-06-01T22:05:58.674777", - "price": 2095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.304115, - 51.393375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.6, - "qmprice": 25.73, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162119891", - "info": { - "identifier": 162119891, - "sqm_ocr": 116.6, - "price": 3000.0, - "price_per_sqm": 25.728987993138936, - "url": "https://www.rightmove.co.uk/properties/162119891", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162119891/238265_L109275_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.058981", - "last_seen": "2025-06-01T22:05:44.559971", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.336193, - 51.517723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162120122", - "info": { - "identifier": 162120122, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162120122", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92356/162120122/92356_KNS150060_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.262053", - "last_seen": "2025-06-01T22:05:57.706010", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194741, - 51.504272 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.51, - "qmprice": 32.7, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162120242", - "info": { - "identifier": 162120242, - "sqm_ocr": 79.51, - "price": 2600.0, - "price_per_sqm": 32.70028927178971, - "url": "https://www.rightmove.co.uk/properties/162120242", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75166/162120242/75166_CLK170145_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.511290", - "last_seen": "2025-06-01T22:06:16.035272", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18669, - 51.520473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.44, - "qmprice": 38.7, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162120461", - "info": { - "identifier": 162120461, - "sqm_ocr": 90.44, - "price": 3500.0, - "price_per_sqm": 38.69969040247678, - "url": "https://www.rightmove.co.uk/properties/162120461", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "gLocalAgents.co.uk", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176603/162120461/176603_14977_EAF_183275_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.913128", - "last_seen": "2025-06-01T22:05:47.268770", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056372, - 51.5425 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.1, - "qmprice": 27.56, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162120467", - "info": { - "identifier": 162120467, - "sqm_ocr": 116.1, - "price": 3200.0, - "price_per_sqm": 27.56244616709733, - "url": "https://www.rightmove.co.uk/properties/162120467", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66897/162120467/66897_32041557_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.833258", - "last_seen": "2025-06-01T22:06:00.452013", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03515, - 51.454723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.0, - "qmprice": 47.83, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162120752", - "info": { - "identifier": 162120752, - "sqm_ocr": 46.0, - "price": 2200.0, - "price_per_sqm": 47.82608695652174, - "url": "https://www.rightmove.co.uk/properties/162120752", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hamways", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47472/162120752/47472_live/1960_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.926286", - "last_seen": "2025-06-01T22:05:47.636449", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.054837, - 51.54653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.54, - "qmprice": 40.5, - "rooms": 3, - "total_price": 2938.0, - "url": "https://www.rightmove.co.uk/properties/162121148", - "info": { - "identifier": 162121148, - "sqm_ocr": 72.54, - "price": 2938.0, - "price_per_sqm": 40.501792114695334, - "url": "https://www.rightmove.co.uk/properties/162121148", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/162121148/49784_38026_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.136887", - "last_seen": "2025-06-01T22:06:05.034968", - "price": 2938 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10156, - 51.48297 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.56, - "qmprice": 42.91, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162121163", - "info": { - "identifier": 162121163, - "sqm_ocr": 81.56, - "price": 3500.0, - "price_per_sqm": 42.913192741539966, - "url": "https://www.rightmove.co.uk/properties/162121163", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52617/162121163/52617_LVL250026_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.111161", - "last_seen": "2025-06-01T22:06:14.475504", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199134, - 51.522663 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162121253", - "info": { - "identifier": 162121253, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162121253", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/162121253/49784_19094_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.833318", - "last_seen": "2025-06-01T22:06:05.576393", - "price": 2751 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09726, - 51.49639 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.7, - "qmprice": 26.35, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162121418", - "info": { - "identifier": 162121418, - "sqm_ocr": 79.7, - "price": 2100.0, - "price_per_sqm": 26.348808030112924, - "url": "https://www.rightmove.co.uk/properties/162121418", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/162121418/250739_1325820_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.898674", - "last_seen": "2025-06-01T22:05:50.595459", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.320836, - 51.61555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.1, - "qmprice": 37.61, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162121424", - "info": { - "identifier": 162121424, - "sqm_ocr": 77.1, - "price": 2900.0, - "price_per_sqm": 37.61348897535668, - "url": "https://www.rightmove.co.uk/properties/162121424", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162121424/55101_1326464_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.968279", - "last_seen": "2025-06-01T22:05:59.767472", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110889, - 51.498337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.61, - "qmprice": 55.09, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162121436", - "info": { - "identifier": 162121436, - "sqm_ocr": 72.61, - "price": 4000.0, - "price_per_sqm": 55.088830739567555, - "url": "https://www.rightmove.co.uk/properties/162121436", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108373/162121436/108373_33893774_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.872955", - "last_seen": "2025-06-01T22:06:13.548777", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134641, - 51.48203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.9, - "qmprice": 35.75, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162121553", - "info": { - "identifier": 162121553, - "sqm_ocr": 111.9, - "price": 4000.0, - "price_per_sqm": 35.746201966041106, - "url": "https://www.rightmove.co.uk/properties/162121553", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Anderson Rose", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79087/162121553/79087_TOW180111_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.454944", - "last_seen": "2025-06-01T22:06:05.324232", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073816, - 51.50349 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.1, - "qmprice": 30.86, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162121583", - "info": { - "identifier": 162121583, - "sqm_ocr": 89.1, - "price": 2750.0, - "price_per_sqm": 30.8641975308642, - "url": "https://www.rightmove.co.uk/properties/162121583", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "MY LONDON HOME", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6464/162121583/6464_CWE230323_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.470058", - "last_seen": "2025-06-01T22:06:08.820590", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00932, - 51.508312 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162121604", - "info": { - "identifier": 162121604, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162121604", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Goldstone Letting & Management Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206063/162121604/206063_GLD210092_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "22/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.780041", - "last_seen": "2025-06-01T22:06:07.981476", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01739, - 51.50091 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.5, - "qmprice": 43.33, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/162121613", - "info": { - "identifier": 162121613, - "sqm_ocr": 59.5, - "price": 2578.0, - "price_per_sqm": 43.32773109243698, - "url": "https://www.rightmove.co.uk/properties/162121613", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/162121613/15957_1323231_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.321977", - "last_seen": "2025-06-01T22:05:55.314800", - "price": 2578.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19681, - 51.554432 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.4, - "qmprice": 34.43, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162121655", - "info": { - "identifier": 162121655, - "sqm_ocr": 94.4, - "price": 3250.0, - "price_per_sqm": 34.42796610169491, - "url": "https://www.rightmove.co.uk/properties/162121655", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/162121655/15975_1326876_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.581321", - "last_seen": "2025-06-01T22:06:01.382638", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211586, - 51.423225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.96, - "qmprice": 41.16, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162121754", - "info": { - "identifier": 162121754, - "sqm_ocr": 84.96, - "price": 3497.0, - "price_per_sqm": 41.1605461393597, - "url": "https://www.rightmove.co.uk/properties/162121754", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55362/162121754/55362_33893805_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.920002", - "last_seen": "2025-06-01T22:06:14.396282", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18766, - 51.516808 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.5, - "qmprice": 26.74, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162121772", - "info": { - "identifier": 162121772, - "sqm_ocr": 93.5, - "price": 2500.0, - "price_per_sqm": 26.737967914438503, - "url": "https://www.rightmove.co.uk/properties/162121772", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Tate Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111214/162121772/111214_LUCz_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.711072", - "last_seen": "2025-06-01T22:06:14.020249", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15191, - 51.4737 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162121790", - "info": { - "identifier": 162121790, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162121790", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "URBAN BASE PROPERTIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287006/162121790/287006_13COUZENSHOUSEE34BG_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.384158", - "last_seen": "2025-06-01T22:06:10.146174", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02756, - 51.51907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.26, - "qmprice": 28.37, - "rooms": 2, - "total_price": 2362.0, - "url": "https://www.rightmove.co.uk/properties/162122144", - "info": { - "identifier": 162122144, - "sqm_ocr": 83.26, - "price": 2362.0, - "price_per_sqm": 28.368964688926255, - "url": "https://www.rightmove.co.uk/properties/162122144", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Districts London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245744/162122144/245744_33893845_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.144206", - "last_seen": "2025-06-01T22:06:03.107851", - "price": 2361 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.014946, - 51.508358 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.0, - "qmprice": 40.0, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162122237", - "info": { - "identifier": 162122237, - "sqm_ocr": 100.0, - "price": 4000.0, - "price_per_sqm": 40.0, - "url": "https://www.rightmove.co.uk/properties/162122237", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hotblack Desiato", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51388/162122237/51388_ISL220123_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.705488", - "last_seen": "2025-06-01T22:05:53.030251", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102856, - 51.54084 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.46, - "qmprice": 42.89, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162122267", - "info": { - "identifier": 162122267, - "sqm_ocr": 52.46, - "price": 2250.0, - "price_per_sqm": 42.8898208158597, - "url": "https://www.rightmove.co.uk/properties/162122267", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/162122267/84827_33893856_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.193907", - "last_seen": "2025-06-01T22:05:48.257528", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207249, - 51.489243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.5, - "qmprice": 31.29, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162122396", - "info": { - "identifier": 162122396, - "sqm_ocr": 73.5, - "price": 2300.0, - "price_per_sqm": 31.292517006802722, - "url": "https://www.rightmove.co.uk/properties/162122396", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Rayners.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282839/162122396/282839_Millard_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.130163", - "last_seen": "2025-06-01T22:05:47.464094", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07753, - 51.55083 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/162122645", - "info": { - "identifier": 162122645, - "sqm_ocr": null, - "price": 2990.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162122645", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/162122645/49784_36572_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.557208", - "last_seen": "2025-06-01T22:06:05.430712", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08385, - 51.49464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162122732", - "info": { - "identifier": 162122732, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162122732", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3716/162122732/3716_BAL250414_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.925451", - "last_seen": "2025-06-01T22:06:12.182543", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.160963, - 51.471027 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.39, - "qmprice": 46.39, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162123212", - "info": { - "identifier": 162123212, - "sqm_ocr": 75.39, - "price": 3497.0, - "price_per_sqm": 46.38546226289959, - "url": "https://www.rightmove.co.uk/properties/162123212", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50713/162123212/50713_33893902_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.314560", - "last_seen": "2025-06-01T22:06:15.565352", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192615, - 51.511536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.5, - "qmprice": 35.61, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162123650", - "info": { - "identifier": 162123650, - "sqm_ocr": 64.5, - "price": 2297.0, - "price_per_sqm": 35.6124031007752, - "url": "https://www.rightmove.co.uk/properties/162123650", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50719/162123650/50719_33893917_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.654816", - "last_seen": "2025-06-01T22:05:48.778738", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218862, - 51.50169 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.5, - "qmprice": 39.11, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162123668", - "info": { - "identifier": 162123668, - "sqm_ocr": 89.5, - "price": 3500.0, - "price_per_sqm": 39.10614525139665, - "url": "https://www.rightmove.co.uk/properties/162123668", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99865/162123668/99865_33893919_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.015186", - "last_seen": "2025-06-01T22:05:59.688237", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140616, - 51.454605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 134.8, - "qmprice": 29.67, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162123920", - "info": { - "identifier": 162123920, - "sqm_ocr": 134.8, - "price": 4000.0, - "price_per_sqm": 29.673590504451035, - "url": "https://www.rightmove.co.uk/properties/162123920", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14606/162123920/14606_29076328_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.773523", - "last_seen": "2025-06-01T22:06:05.646773", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095663, - 51.48879 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 39.15, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/162126854", - "info": { - "identifier": 162126854, - "sqm_ocr": 60.0, - "price": 2349.0, - "price_per_sqm": 39.15, - "url": "https://www.rightmove.co.uk/properties/162126854", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113191/162126854/113191_33894003_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.031097", - "last_seen": "2025-06-01T22:06:09.352257", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014255, - 51.52363 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.64, - "qmprice": 48.68, - "rooms": 3, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/162127274", - "info": { - "identifier": 162127274, - "sqm_ocr": 63.64, - "price": 3098.0, - "price_per_sqm": 48.68007542426147, - "url": "https://www.rightmove.co.uk/properties/162127274", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Lexstone Global", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271157/162127274/271157_F3HollandRd_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.353833", - "last_seen": "2025-06-01T22:05:58.027493", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20729, - 51.49731 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.28, - "qmprice": 42.37, - "rooms": 2, - "total_price": 3359.0, - "url": "https://www.rightmove.co.uk/properties/162127412", - "info": { - "identifier": 162127412, - "sqm_ocr": 79.28, - "price": 3359.0, - "price_per_sqm": 42.36881937436932, - "url": "https://www.rightmove.co.uk/properties/162127412", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/162127412/108515_1326898_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.500152", - "last_seen": "2025-06-01T22:05:57.404898", - "price": 3359.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203123, - 51.493763 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162127436", - "info": { - "identifier": 162127436, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162127436", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95869/162127436/95869_SHO220169_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.629256", - "last_seen": "2025-06-01T22:06:07.909998", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057798, - 51.524895 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.4, - "qmprice": 31.15, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162127838", - "info": { - "identifier": 162127838, - "sqm_ocr": 120.4, - "price": 3750.0, - "price_per_sqm": 31.146179401993354, - "url": "https://www.rightmove.co.uk/properties/162127838", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/127k/126934/162127838/126934_6824d67b914e8_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.332497", - "last_seen": "2025-06-01T22:06:12.458657", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188996, - 51.46353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 25.0, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162127859", - "info": { - "identifier": 162127859, - "sqm_ocr": 84.0, - "price": 2100.0, - "price_per_sqm": 25.0, - "url": "https://www.rightmove.co.uk/properties/162127859", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Saja Estate Agents Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263588/162127859/263588_14231_000150_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.170855", - "last_seen": "2025-06-01T22:05:51.787768", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.424724, - 51.43944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162127943", - "info": { - "identifier": 162127943, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162127943", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22943/162127943/22943_BNL250039_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.093878", - "last_seen": "2025-06-01T22:05:45.669941", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119739, - 51.612835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3099.0, - "url": "https://www.rightmove.co.uk/properties/162127976", - "info": { - "identifier": 162127976, - "sqm_ocr": null, - "price": 3099.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162127976", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "relocate-me.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33012/162127976/33012_49200_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.241736", - "last_seen": "2025-06-01T22:05:40.560271", - "price": 3099.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.281401, - 51.529186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162128213", - "info": { - "identifier": 162128213, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162128213", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Citidwell Limited.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90728/162128213/90728_Sw93pr_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.252302", - "last_seen": "2025-06-01T22:05:47.838038", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06648, - 51.55581 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.6, - "qmprice": 42.68, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162128225", - "info": { - "identifier": 162128225, - "sqm_ocr": 65.6, - "price": 2800.0, - "price_per_sqm": 42.6829268292683, - "url": "https://www.rightmove.co.uk/properties/162128225", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/162128225/108947_1326892_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.116215", - "last_seen": "2025-06-01T22:05:50.715306", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.347181, - 51.568718 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 43.8, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162129050", - "info": { - "identifier": 162129050, - "sqm_ocr": 82.2, - "price": 3600.0, - "price_per_sqm": 43.7956204379562, - "url": "https://www.rightmove.co.uk/properties/162129050", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Austin Homes London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105559/162129050/105559_71736284-b5c3-4451-9439-fa12878b2b7b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.854474", - "last_seen": "2025-06-01T22:05:47.755778", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089644, - 51.52798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162129389", - "info": { - "identifier": 162129389, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162129389", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35975/162129389/35975_06760561_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.604992", - "last_seen": "2025-06-01T22:05:51.559365", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.412, - 51.599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 37.97, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162129452", - "info": { - "identifier": 162129452, - "sqm_ocr": 79.0, - "price": 3000.0, - "price_per_sqm": 37.9746835443038, - "url": "https://www.rightmove.co.uk/properties/162129452", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Easthaus", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67707/162129452/67707_BET200083_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.927876", - "last_seen": "2025-06-01T22:05:47.634638", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.047898, - 51.53685 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 37.4, - "qmprice": 60.16, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162129542", - "info": { - "identifier": 162129542, - "sqm_ocr": 37.4, - "price": 2250.0, - "price_per_sqm": 60.160427807486634, - "url": "https://www.rightmove.co.uk/properties/162129542", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Edmund Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20894/162129542/20894_33893752_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.296143", - "last_seen": "2025-06-01T22:05:41.700733", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0873, - 51.35911 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.1, - "qmprice": 39.14, - "rooms": 2, - "total_price": 2548.0, - "url": "https://www.rightmove.co.uk/properties/162129686", - "info": { - "identifier": 162129686, - "sqm_ocr": 65.1, - "price": 2548.0, - "price_per_sqm": 39.13978494623656, - "url": "https://www.rightmove.co.uk/properties/162129686", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chard", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141944/162129686/141944_33894208_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.911708", - "last_seen": "2025-06-01T22:06:12.220244", - "price": 2548 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184537, - 51.464283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.0, - "qmprice": 29.0, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162129725", - "info": { - "identifier": 162129725, - "sqm_ocr": 100.0, - "price": 2900.0, - "price_per_sqm": 29.0, - "url": "https://www.rightmove.co.uk/properties/162129725", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Daniel Cobb", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58945/162129725/58945_48a74147-dd26-4494-a9ff-46351629759e_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.776619", - "last_seen": "2025-06-01T22:06:05.628173", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08291, - 51.48992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162129734", - "info": { - "identifier": 162129734, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162129734", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Three Oaks Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/141k/140444/162129734/140444_IG7BW_IMG_18_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.884929", - "last_seen": "2025-06-01T22:06:03.864835", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.10488, - 51.61218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.24, - "qmprice": 40.96, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162131060", - "info": { - "identifier": 162131060, - "sqm_ocr": 73.24, - "price": 3000.0, - "price_per_sqm": 40.96122337520481, - "url": "https://www.rightmove.co.uk/properties/162131060", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Matthew James & Company", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34379/162131060/34379_32188955_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.405169", - "last_seen": "2025-06-01T22:05:53.880790", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094892, - 51.53935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.46, - "qmprice": 43.47, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162131120", - "info": { - "identifier": 162131120, - "sqm_ocr": 72.46, - "price": 3150.0, - "price_per_sqm": 43.472260557549, - "url": "https://www.rightmove.co.uk/properties/162131120", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hirsch Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79713/162131120/79713_33894306_IMG_18_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.742537", - "last_seen": "2025-06-01T22:05:42.105137", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161135, - 51.549625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162131153", - "info": { - "identifier": 162131153, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162131153", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Aston Square", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274703/162131153/274703_FFF34TheDrive_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.377876", - "last_seen": "2025-06-01T22:05:38.596021", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20781, - 51.57573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162131198", - "info": { - "identifier": 162131198, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162131198", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/162131198/17418_100415004557_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.035188", - "last_seen": "2025-06-01T22:05:50.280425", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36714, - 51.58768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162131312", - "info": { - "identifier": 162131312, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162131312", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107902/162131312/107902_SBA970023_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.443307", - "last_seen": "2025-06-01T22:06:00.079002", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114698, - 51.505302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162131516", - "info": { - "identifier": 162131516, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162131516", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/162131516/264878_CAN231882_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.129289", - "last_seen": "2025-06-01T22:06:03.133723", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03717, - 51.502693 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162131567", - "info": { - "identifier": 162131567, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162131567", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Praedium", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289004/162131567/289004_2bdvoy_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.386423", - "last_seen": "2025-06-01T22:06:13.867079", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17851, - 51.4689 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162131822", - "info": { - "identifier": 162131822, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162131822", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dreamview Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85138/162131822/85138_house_hamilton_road_london_nw11_9eb_3L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.958072", - "last_seen": "2025-06-01T22:05:39.695037", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214209, - 51.57567 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.0, - "qmprice": 34.97, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162131858", - "info": { - "identifier": 162131858, - "sqm_ocr": 100.0, - "price": 3497.0, - "price_per_sqm": 34.97, - "url": "https://www.rightmove.co.uk/properties/162131858", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50343/162131858/50343_33894361_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.044017", - "last_seen": "2025-06-01T22:05:41.278440", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247308, - 51.53935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.8, - "qmprice": 30.53, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162131891", - "info": { - "identifier": 162131891, - "sqm_ocr": 104.8, - "price": 3200.0, - "price_per_sqm": 30.53435114503817, - "url": "https://www.rightmove.co.uk/properties/162131891", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Nested", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269723/162131891/269723_2dc4f725-1185-4659-b8d6-7f3a9a4b1171_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.307442", - "last_seen": "2025-06-01T22:05:47.036159", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005103, - 51.49051 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.2, - "qmprice": 46.97, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162132164", - "info": { - "identifier": 162132164, - "sqm_ocr": 69.2, - "price": 3250.0, - "price_per_sqm": 46.96531791907514, - "url": "https://www.rightmove.co.uk/properties/162132164", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162132164/98531_1326914_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.550394", - "last_seen": "2025-06-01T22:05:49.031507", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238014, - 51.506386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 28.48, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162132170", - "info": { - "identifier": 162132170, - "sqm_ocr": 79.0, - "price": 2250.0, - "price_per_sqm": 28.481012658227847, - "url": "https://www.rightmove.co.uk/properties/162132170", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57931/162132170/57931_KDL240086_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.543769", - "last_seen": "2025-06-01T22:05:49.042933", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202853, - 51.483643 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.2, - "qmprice": 32.51, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162132173", - "info": { - "identifier": 162132173, - "sqm_ocr": 69.2, - "price": 2250.0, - "price_per_sqm": 32.51445086705202, - "url": "https://www.rightmove.co.uk/properties/162132173", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162132173/98531_1326913_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.542656", - "last_seen": "2025-06-01T22:05:49.046537", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238014, - 51.506386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.6, - "qmprice": 32.59, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162132677", - "info": { - "identifier": 162132677, - "sqm_ocr": 116.6, - "price": 3800.0, - "price_per_sqm": 32.59005145797599, - "url": "https://www.rightmove.co.uk/properties/162132677", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57991/162132677/57991_KEJ240001_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.403578", - "last_seen": "2025-06-01T22:06:01.643973", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153484, - 51.4185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162132806", - "info": { - "identifier": 162132806, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162132806", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Excel Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99425/162132806/99425_102708042562_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.803231", - "last_seen": "2025-06-01T22:05:46.469709", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06776, - 51.4944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.5, - "qmprice": 61.42, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162132821", - "info": { - "identifier": 162132821, - "sqm_ocr": 63.5, - "price": 3900.0, - "price_per_sqm": 61.41732283464567, - "url": "https://www.rightmove.co.uk/properties/162132821", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/162132821/15942_1325994_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.551816", - "last_seen": "2025-06-01T22:05:57.794975", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178471, - 51.493923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.49, - "qmprice": 33.91, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/162132953", - "info": { - "identifier": 162132953, - "sqm_ocr": 85.49, - "price": 2899.0, - "price_per_sqm": 33.910398877061645, - "url": "https://www.rightmove.co.uk/properties/162132953", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Horton and Garton", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60200/162132953/60200_29076919_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.088221", - "last_seen": "2025-06-01T22:05:49.351338", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.243845, - 51.497684 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.5, - "qmprice": 49.65, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162133109", - "info": { - "identifier": 162133109, - "sqm_ocr": 70.5, - "price": 3500.0, - "price_per_sqm": 49.645390070921984, - "url": "https://www.rightmove.co.uk/properties/162133109", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162133109/16050_1322274_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.439310", - "last_seen": "2025-06-01T17:39:04.915234", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018463, - 51.520855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.5, - "qmprice": 31.91, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162133115", - "info": { - "identifier": 162133115, - "sqm_ocr": 70.5, - "price": 2250.0, - "price_per_sqm": 31.914893617021278, - "url": "https://www.rightmove.co.uk/properties/162133115", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162133115/16050_1322273_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.453750", - "last_seen": "2025-06-01T17:39:04.945439", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018463, - 51.520855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162133220", - "info": { - "identifier": 162133220, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162133220", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stanford Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58665/162133220/58665_28996617_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.838952", - "last_seen": "2025-06-01T22:06:00.708187", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018803, - 51.44941 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.9, - "qmprice": 44.18, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162133562", - "info": { - "identifier": 162133562, - "sqm_ocr": 67.9, - "price": 3000.0, - "price_per_sqm": 44.18262150220913, - "url": "https://www.rightmove.co.uk/properties/162133562", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50064/162133562/50064_P276991_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.977236", - "last_seen": "2025-06-01T22:06:05.316156", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09411, - 51.4958 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162133886", - "info": { - "identifier": 162133886, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162133886", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hilton & Fox", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237869/162133886/237869_hilton_946210333_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.346336", - "last_seen": "2025-06-01T22:05:40.252132", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254152, - 51.575554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.8, - "qmprice": 37.79, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162134258", - "info": { - "identifier": 162134258, - "sqm_ocr": 68.8, - "price": 2600.0, - "price_per_sqm": 37.79069767441861, - "url": "https://www.rightmove.co.uk/properties/162134258", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44870/162134258/44870_33894460_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.869908", - "last_seen": "2025-06-01T22:05:39.392131", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219598, - 51.58505 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162134261", - "info": { - "identifier": 162134261, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162134261", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44870/162134261/44870_33894461_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.881469", - "last_seen": "2025-06-01T22:05:39.491431", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.227367, - 51.58089 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 157.8, - "qmprice": 25.32, - "rooms": 4, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/162134891", - "info": { - "identifier": 162134891, - "sqm_ocr": 157.8, - "price": 3995.0, - "price_per_sqm": 25.316856780735105, - "url": "https://www.rightmove.co.uk/properties/162134891", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/162134891/52887_33894475_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.178818", - "last_seen": "2025-06-01T22:06:01.556328", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218546, - 51.4331 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162134915", - "info": { - "identifier": 162134915, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162134915", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Filey Properties", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54554/162134915/54554_2649733_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.075705", - "last_seen": "2025-06-01T22:05:47.360666", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084751, - 51.556705 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3449.0, - "url": "https://www.rightmove.co.uk/properties/162135278", - "info": { - "identifier": 162135278, - "sqm_ocr": null, - "price": 3449.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162135278", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Homesforth Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280625/162135278/280625_HOMFR_001723_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.356726", - "last_seen": "2025-06-01T22:05:42.512023", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155276, - 51.54553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.7, - "qmprice": 35.45, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162135344", - "info": { - "identifier": 162135344, - "sqm_ocr": 67.7, - "price": 2400.0, - "price_per_sqm": 35.450516986706056, - "url": "https://www.rightmove.co.uk/properties/162135344", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/162135344/48994_CNL250135_L_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.543099", - "last_seen": "2025-06-01T22:05:46.429028", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005311, - 51.48217 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.23, - "qmprice": 37.05, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162135440", - "info": { - "identifier": 162135440, - "sqm_ocr": 74.23, - "price": 2750.0, - "price_per_sqm": 37.04701603125421, - "url": "https://www.rightmove.co.uk/properties/162135440", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/162135440/48994_CLV254147_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.888130", - "last_seen": "2025-06-01T22:06:03.555323", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.009474, - 51.515347 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/162135455", - "info": { - "identifier": 162135455, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162135455", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "City Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66707/162135455/66707_33894512_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.662516", - "last_seen": "2025-06-01T22:05:43.196334", - "price": 2166 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195163, - 51.539948 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162135557", - "info": { - "identifier": 162135557, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162135557", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167687/162135557/167687_2663936_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.898486", - "last_seen": "2025-06-01T22:05:49.165557", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222486, - 51.51159 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162135560", - "info": { - "identifier": 162135560, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162135560", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Filey Properties", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54554/162135560/54554_2662510_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.119373", - "last_seen": "2025-06-01T22:05:47.784346", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04011, - 51.54562 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162135659", - "info": { - "identifier": 162135659, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162135659", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Parris Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10240/162135659/10240_33894532_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.227961", - "last_seen": "2025-06-01T22:05:39.905055", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.132871, - 51.46198 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.8, - "qmprice": 52.81, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/162135749", - "info": { - "identifier": 162135749, - "sqm_ocr": 55.8, - "price": 2947.0, - "price_per_sqm": 52.81362007168459, - "url": "https://www.rightmove.co.uk/properties/162135749", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128629/162135749/128629_KEF220091_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.562112", - "last_seen": "2025-06-01T22:05:57.781448", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198466, - 51.493828 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162135782", - "info": { - "identifier": 162135782, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162135782", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Woodlands", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115159/162135782/115159_L109327_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.373266", - "last_seen": "2025-06-01T22:05:52.089534", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.367507, - 51.46623 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162135908", - "info": { - "identifier": 162135908, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162135908", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107680/162135908/107680_33894552_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.827286", - "last_seen": "2025-06-01T22:06:02.743057", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.031593, - 51.526707 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162135950", - "info": { - "identifier": 162135950, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162135950", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50933/162135950/50933_P3806L3323_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.984406", - "last_seen": "2025-06-01T22:05:57.976500", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18956, - 51.48652 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.67, - "qmprice": 32.88, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162136160", - "info": { - "identifier": 162136160, - "sqm_ocr": 121.67, - "price": 4000.0, - "price_per_sqm": 32.87581162159941, - "url": "https://www.rightmove.co.uk/properties/162136160", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/162136160/51465_6821dc46ac709_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.239754", - "last_seen": "2025-06-01T22:06:01.476283", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20941, - 51.40647 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162136208", - "info": { - "identifier": 162136208, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162136208", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Leonard Leese", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35405/162136208/35405_33894569_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.621551", - "last_seen": "2025-06-01T22:06:06.677435", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102251, - 51.500904 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.16, - "qmprice": 45.85, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162136667", - "info": { - "identifier": 162136667, - "sqm_ocr": 50.16, - "price": 2300.0, - "price_per_sqm": 45.85326953748007, - "url": "https://www.rightmove.co.uk/properties/162136667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Orlando Reid", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86327/162136667/86327_32291878_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.680457", - "last_seen": "2025-06-01T22:05:59.848243", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127137, - 51.474995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162137036", - "info": { - "identifier": 162137036, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162137036", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Hilton & Fox", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237869/162137036/237869_hilton_620208888_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.172554", - "last_seen": "2025-06-01T22:05:40.694555", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295881, - 51.55257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/162137159", - "info": { - "identifier": 162137159, - "sqm_ocr": null, - "price": 3597.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162137159", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162137159/87187_58494_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.410662", - "last_seen": "2025-06-01T22:06:11.033222", - "price": 3597.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064833, - 51.508106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162137417", - "info": { - "identifier": 162137417, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162137417", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Aston Rowe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230534/162137417/230534_33894652_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.734379", - "last_seen": "2025-06-01T22:05:43.992548", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.264017, - 51.510483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 142.8, - "qmprice": 22.76, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162137678", - "info": { - "identifier": 162137678, - "sqm_ocr": 142.8, - "price": 3250.0, - "price_per_sqm": 22.75910364145658, - "url": "https://www.rightmove.co.uk/properties/162137678", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Robsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50427/162137678/50427_2149364_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.698116", - "last_seen": "2025-06-01T22:05:51.630212", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.44058, - 51.6099 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2687.0, - "url": "https://www.rightmove.co.uk/properties/162137726", - "info": { - "identifier": 162137726, - "sqm_ocr": null, - "price": 2687.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162137726", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/162137726/146147_PR211772_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.584314", - "last_seen": "2025-06-01T22:05:48.955848", - "price": 2686 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190147, - 51.475998 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.2, - "qmprice": 34.15, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162137849", - "info": { - "identifier": 162137849, - "sqm_ocr": 73.2, - "price": 2500.0, - "price_per_sqm": 34.15300546448087, - "url": "https://www.rightmove.co.uk/properties/162137849", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98852/162137849/98852_KEL251064_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.645954", - "last_seen": "2025-06-01T22:05:40.358292", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211535, - 51.553352 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.4, - "qmprice": 42.81, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162137921", - "info": { - "identifier": 162137921, - "sqm_ocr": 65.4, - "price": 2800.0, - "price_per_sqm": 42.81345565749235, - "url": "https://www.rightmove.co.uk/properties/162137921", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72234/162137921/72234_RWL190066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/05/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.580071", - "last_seen": "2025-06-01T22:06:07.204844", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.000532, - 51.540157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.8, - "qmprice": 40.13, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162138023", - "info": { - "identifier": 162138023, - "sqm_ocr": 59.8, - "price": 2400.0, - "price_per_sqm": 40.13377926421405, - "url": "https://www.rightmove.co.uk/properties/162138023", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/162138023/56751_1326926_IMG_08_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.209876", - "last_seen": "2025-06-01T22:05:59.315537", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105797, - 51.463753 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.3, - "qmprice": 23.17, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162138068", - "info": { - "identifier": 162138068, - "sqm_ocr": 86.3, - "price": 2000.0, - "price_per_sqm": 23.174971031286212, - "url": "https://www.rightmove.co.uk/properties/162138068", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/162138068/130309_1326803_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.634562", - "last_seen": "2025-06-01T22:05:43.380919", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11622, - 51.38819 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162138128", - "info": { - "identifier": 162138128, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162138128", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Discover Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/185k/184304/162138128/184304_finchleyenyeni_IMG_07_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.069982", - "last_seen": "2025-06-01T22:05:55.170033", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1738, - 51.61158 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162138488", - "info": { - "identifier": 162138488, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162138488", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "CARTER & REEVES LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289481/162138488/289481_33894723_IMG_00_0000_max_656x437.png", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.904785", - "last_seen": "2025-06-01T22:05:42.885734", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119037, - 51.521446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162138662", - "info": { - "identifier": 162138662, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162138662", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162138662/87187_71842_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.608646", - "last_seen": "2025-06-01T22:06:09.567150", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067583, - 51.52367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162138668", - "info": { - "identifier": 162138668, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162138668", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162138668/87187_54575_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.722785", - "last_seen": "2025-06-01T22:06:02.545239", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.022131, - 51.508396 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162138761", - "info": { - "identifier": 162138761, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162138761", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Excel Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99425/162138761/99425_102708042614_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.207675", - "last_seen": "2025-06-01T22:05:43.025359", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15521, - 51.54542 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.11, - "qmprice": 49.33, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162138812", - "info": { - "identifier": 162138812, - "sqm_ocr": 57.11, - "price": 2817.0, - "price_per_sqm": 49.32586237086325, - "url": "https://www.rightmove.co.uk/properties/162138812", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/162138812/16023_1326921_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.006205", - "last_seen": "2025-06-01T22:05:57.941578", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16516, - 51.493217 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162138815", - "info": { - "identifier": 162138815, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162138815", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162138815/237116_2600_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.439310", - "last_seen": "2025-06-01T22:05:49.890749", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10942, - 51.58894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162139001", - "info": { - "identifier": 162139001, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162139001", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162139001/237116_2599_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.444145", - "last_seen": "2025-06-01T22:05:49.880188", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10942, - 51.58894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162139400", - "info": { - "identifier": 162139400, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162139400", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "SJW property management limited", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/233k/232853/162139400/232853_7ae61ec3-f1b8-42ea-8296-269e4ec60e02_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.573299", - "last_seen": "2025-06-01T22:06:00.127394", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125093, - 51.482586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.9, - "qmprice": 32.74, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162139466", - "info": { - "identifier": 162139466, - "sqm_ocr": 106.9, - "price": 3500.0, - "price_per_sqm": 32.74087932647334, - "url": "https://www.rightmove.co.uk/properties/162139466", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "SeOUL Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73282/162139466/73282_10390_SR4U_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.657021", - "last_seen": "2025-06-01T22:05:58.926539", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.275203, - 51.386555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.5, - "qmprice": 36.82, - "rooms": 4, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/162139730", - "info": { - "identifier": 162139730, - "sqm_ocr": 108.5, - "price": 3995.0, - "price_per_sqm": 36.82027649769585, - "url": "https://www.rightmove.co.uk/properties/162139730", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84800/162139730/84800_33894798_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.819360", - "last_seen": "2025-06-01T22:05:58.669705", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293219, - 51.42558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.3, - "qmprice": 44.17, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162139775", - "info": { - "identifier": 162139775, - "sqm_ocr": 88.3, - "price": 3900.0, - "price_per_sqm": 44.16761041902605, - "url": "https://www.rightmove.co.uk/properties/162139775", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50713/162139775/50713_33894803_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.547624", - "last_seen": "2025-06-01T22:05:57.805907", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202248, - 51.51581 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.3, - "qmprice": 41.54, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162139784", - "info": { - "identifier": 162139784, - "sqm_ocr": 55.3, - "price": 2297.0, - "price_per_sqm": 41.5370705244123, - "url": "https://www.rightmove.co.uk/properties/162139784", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/162139784/25485_33894805_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.415450", - "last_seen": "2025-06-01T22:05:42.439034", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196224, - 51.555737 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 53.05, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162139796", - "info": { - "identifier": 162139796, - "sqm_ocr": 75.4, - "price": 4000.0, - "price_per_sqm": 53.05039787798408, - "url": "https://www.rightmove.co.uk/properties/162139796", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "James Edward", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/165k/164045/162139796/164045_33204474_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.163534", - "last_seen": "2025-06-01T22:05:53.472411", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133001, - 51.564827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162139901", - "info": { - "identifier": 162139901, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162139901", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Pomp Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117175/162139901/117175_33894815_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.429771", - "last_seen": "2025-06-01T22:06:16.107321", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177688, - 51.53881 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162139958", - "info": { - "identifier": 162139958, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162139958", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/162139958/264404_RX582753_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.142044", - "last_seen": "2025-06-01T22:06:10.187326", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013599, - 51.500095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162140030", - "info": { - "identifier": 162140030, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162140030", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Streets Ahead", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58139/162140030/58139_PUR230237_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.653333", - "last_seen": "2025-06-01T22:05:43.393110", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139624, - 51.34314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.5, - "qmprice": 37.04, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162140459", - "info": { - "identifier": 162140459, - "sqm_ocr": 94.5, - "price": 3500.0, - "price_per_sqm": 37.03703703703704, - "url": "https://www.rightmove.co.uk/properties/162140459", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22245/162140459/22245_PUL220030_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.477687", - "last_seen": "2025-06-01T22:06:13.779782", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223448, - 51.467693 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.0, - "qmprice": 32.26, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162140708", - "info": { - "identifier": 162140708, - "sqm_ocr": 93.0, - "price": 3000.0, - "price_per_sqm": 32.25806451612903, - "url": "https://www.rightmove.co.uk/properties/162140708", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "SeOUL Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73282/162140708/73282_10397_SR4U_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.764963", - "last_seen": "2025-06-01T22:05:58.797307", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.275203, - 51.386555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.53, - "qmprice": 37.71, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162140792", - "info": { - "identifier": 162140792, - "sqm_ocr": 83.53, - "price": 3150.0, - "price_per_sqm": 37.711002035196934, - "url": "https://www.rightmove.co.uk/properties/162140792", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Jo & Co Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283895/162140792/283895_06d38552-b29a-47a9-80f1-6cb3a0f0954f_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.835232", - "last_seen": "2025-06-01T22:06:14.012893", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182947, - 51.464672 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162141014", - "info": { - "identifier": 162141014, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162141014", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162141014/191744_RL2113_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.029072", - "last_seen": "2025-06-01T22:05:44.583966", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307452, - 51.51248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162141521", - "info": { - "identifier": 162141521, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162141521", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hausman & Holmes", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166823/162141521/166823_1138_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.138121", - "last_seen": "2025-06-01T22:05:39.353483", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20245, - 51.57628 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.29, - "qmprice": 44.68, - "rooms": 2, - "total_price": 3185.0, - "url": "https://www.rightmove.co.uk/properties/162141725", - "info": { - "identifier": 162141725, - "sqm_ocr": 71.29, - "price": 3185.0, - "price_per_sqm": 44.676672745125536, - "url": "https://www.rightmove.co.uk/properties/162141725", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Lessel", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191471/162141725/191471_33894947_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.771894", - "last_seen": "2025-06-01T22:05:46.491556", - "price": 3185 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.006459, - 51.502583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162142268", - "info": { - "identifier": 162142268, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162142268", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "eddisonwhite", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20183/162142268/20183_33894992_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.384137", - "last_seen": "2025-06-01T22:06:01.674504", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22261, - 51.40893 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162142457", - "info": { - "identifier": 162142457, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162142457", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "ea2", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10387/162142457/10387_33895005_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.999741", - "last_seen": "2025-06-01T22:06:09.373608", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057475, - 51.507393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162142631", - "info": { - "identifier": 162142631, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162142631", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Joseph Scott", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17295/162142631/17295_12598671_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.189462", - "last_seen": "2025-06-01T22:05:39.315444", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267063, - 51.608166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162142736", - "info": { - "identifier": 162142736, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162142736", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162142736/237116_2598_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.535989", - "last_seen": "2025-06-01T22:05:49.678160", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10942, - 51.58894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162142802", - "info": { - "identifier": 162142802, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162142802", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26204/162142802/26204_33895030_IMG_12_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.554911", - "last_seen": "2025-06-01T22:06:01.054363", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187646, - 51.42573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 44.0, - "rooms": 2, - "total_price": 2860.0, - "url": "https://www.rightmove.co.uk/properties/162142838", - "info": { - "identifier": 162142838, - "sqm_ocr": 65.0, - "price": 2860.0, - "price_per_sqm": 44.0, - "url": "https://www.rightmove.co.uk/properties/162142838", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/162142838/29861_33891124_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.121854", - "last_seen": "2025-06-01T22:05:40.045781", - "price": 2860 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279171, - 51.560806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 39.42, - "rooms": 2, - "total_price": 2838.0, - "url": "https://www.rightmove.co.uk/properties/162142928", - "info": { - "identifier": 162142928, - "sqm_ocr": 72.0, - "price": 2838.0, - "price_per_sqm": 39.416666666666664, - "url": "https://www.rightmove.co.uk/properties/162142928", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/162142928/29861_33891145_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.884367", - "last_seen": "2025-06-01T22:05:40.138632", - "price": 2838 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279171, - 51.560806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2475.0, - "url": "https://www.rightmove.co.uk/properties/162142967", - "info": { - "identifier": 162142967, - "sqm_ocr": null, - "price": 2475.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162142967", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Churchill Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10145/162142967/10145_32459368_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.752010", - "last_seen": "2025-06-01T22:06:11.818970", - "price": 2475.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021249, - 51.577843 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.1, - "qmprice": 45.96, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162143003", - "info": { - "identifier": 162143003, - "sqm_ocr": 63.1, - "price": 2900.0, - "price_per_sqm": 45.95879556259905, - "url": "https://www.rightmove.co.uk/properties/162143003", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57973/162143003/57973_KEG240036_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.160901", - "last_seen": "2025-06-01T22:06:14.355810", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173302, - 51.527435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 38.88, - "rooms": 2, - "total_price": 2838.0, - "url": "https://www.rightmove.co.uk/properties/162143012", - "info": { - "identifier": 162143012, - "sqm_ocr": 73.0, - "price": 2838.0, - "price_per_sqm": 38.87671232876713, - "url": "https://www.rightmove.co.uk/properties/162143012", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/162143012/29861_33891193_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.105328", - "last_seen": "2025-06-01T22:05:40.073292", - "price": 2838 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279171, - 51.560806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.7, - "qmprice": 37.87, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162143432", - "info": { - "identifier": 162143432, - "sqm_ocr": 97.7, - "price": 3700.0, - "price_per_sqm": 37.87103377686796, - "url": "https://www.rightmove.co.uk/properties/162143432", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43812/162143432/43812_33895085_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.574283", - "last_seen": "2025-06-01T22:06:05.186738", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075336, - 51.50258 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.7, - "qmprice": 23.34, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162143603", - "info": { - "identifier": 162143603, - "sqm_ocr": 85.7, - "price": 2000.0, - "price_per_sqm": 23.337222870478413, - "url": "https://www.rightmove.co.uk/properties/162143603", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/162143603/130309_1325521_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.772603", - "last_seen": "2025-06-01T22:05:43.643758", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097007, - 51.3772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.13, - "qmprice": 57.46, - "rooms": 3, - "total_price": 3857.0, - "url": "https://www.rightmove.co.uk/properties/162143639", - "info": { - "identifier": 162143639, - "sqm_ocr": 67.13, - "price": 3857.0, - "price_per_sqm": 57.455683003128264, - "url": "https://www.rightmove.co.uk/properties/162143639", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/162143639/15942_1326957_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.357311", - "last_seen": "2025-06-01T22:05:58.319151", - "price": 3857.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183282, - 51.498646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 28.21, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162143792", - "info": { - "identifier": 162143792, - "sqm_ocr": 78.0, - "price": 2200.0, - "price_per_sqm": 28.205128205128204, - "url": "https://www.rightmove.co.uk/properties/162143792", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hampstead", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32760/162143792/32760_Flat19Lindley_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.194099", - "last_seen": "2025-06-01T22:05:39.311508", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24849, - 51.58759 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.1, - "qmprice": 27.24, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162143816", - "info": { - "identifier": 162143816, - "sqm_ocr": 88.1, - "price": 2400.0, - "price_per_sqm": 27.241770715096482, - "url": "https://www.rightmove.co.uk/properties/162143816", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66768/162143816/66768_1326923_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.948603", - "last_seen": "2025-06-01T22:06:00.855854", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070032, - 51.4322 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 129.4, - "qmprice": 25.12, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162143843", - "info": { - "identifier": 162143843, - "sqm_ocr": 129.4, - "price": 3250.0, - "price_per_sqm": 25.115919629057185, - "url": "https://www.rightmove.co.uk/properties/162143843", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/162143843/71401_1323245_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.686530", - "last_seen": "2025-06-01T22:05:40.439364", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.251602, - 51.543213 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162144335", - "info": { - "identifier": 162144335, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162144335", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Connor Prince", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/24k/23486/162144335/23486_1042_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.445684", - "last_seen": "2025-06-01T22:06:07.878161", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24223, - 51.37905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.93, - "qmprice": 64.44, - "rooms": 2, - "total_price": 3604.0, - "url": "https://www.rightmove.co.uk/properties/162144878", - "info": { - "identifier": 162144878, - "sqm_ocr": 55.93, - "price": 3604.0, - "price_per_sqm": 64.43768996960486, - "url": "https://www.rightmove.co.uk/properties/162144878", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58654/162144878/58654_KBR210044_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.010187", - "last_seen": "2025-06-01T22:05:57.939790", - "price": 3604.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167103, - 51.49274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.5, - "qmprice": 49.59, - "rooms": 2, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/162145136", - "info": { - "identifier": 162145136, - "sqm_ocr": 66.5, - "price": 3298.0, - "price_per_sqm": 49.59398496240601, - "url": "https://www.rightmove.co.uk/properties/162145136", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71137/162145136/71137_33895230_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.271802", - "last_seen": "2025-06-01T22:05:59.930001", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114939, - 51.505676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.6, - "qmprice": 39.93, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162145142", - "info": { - "identifier": 162145142, - "sqm_ocr": 57.6, - "price": 2300.0, - "price_per_sqm": 39.93055555555556, - "url": "https://www.rightmove.co.uk/properties/162145142", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25214/162145142/25214_33895231_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.662777", - "last_seen": "2025-06-01T22:06:06.612963", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071208, - 51.50116 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162145175", - "info": { - "identifier": 162145175, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162145175", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Praedium", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289004/162145175/289004_2bdvoy1_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.380196", - "last_seen": "2025-06-01T22:06:13.886497", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17851, - 51.4689 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162145502", - "info": { - "identifier": 162145502, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162145502", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/162145502/63031_HEA235904_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.550456", - "last_seen": "2025-06-01T22:05:42.673576", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143884, - 51.53313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.6, - "qmprice": 37.68, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162145625", - "info": { - "identifier": 162145625, - "sqm_ocr": 83.6, - "price": 3150.0, - "price_per_sqm": 37.67942583732058, - "url": "https://www.rightmove.co.uk/properties/162145625", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128530/162145625/128530_KDV240104_L_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.632790", - "last_seen": "2025-06-01T22:06:14.994362", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164763, - 51.52465 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162145712", - "info": { - "identifier": 162145712, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162145712", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 988.0, - "service_charge": 5790.0, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "London Property Guru", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97850/162145712/97850_RX582793_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.057967", - "last_seen": "2025-06-01T22:05:55.566585", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119852, - 51.53482 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.6, - "qmprice": 40.85, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162145724", - "info": { - "identifier": 162145724, - "sqm_ocr": 85.6, - "price": 3497.0, - "price_per_sqm": 40.85280373831776, - "url": "https://www.rightmove.co.uk/properties/162145724", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202016/162145724/202016_33895264_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.732144", - "last_seen": "2025-06-01T22:05:55.316815", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.315268, - 51.508003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162145730", - "info": { - "identifier": 162145730, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162145730", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30467/162145730/30467_000910696_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.819188", - "last_seen": "2025-06-01T22:05:55.087455", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057, - 51.58925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.3, - "qmprice": 47.48, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162145742", - "info": { - "identifier": 162145742, - "sqm_ocr": 75.3, - "price": 3575.0, - "price_per_sqm": 47.47675962815405, - "url": "https://www.rightmove.co.uk/properties/162145742", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54922/162145742/54922_BZV190042_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.202381", - "last_seen": "2025-06-01T22:06:14.291350", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128926, - 51.495647 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.5, - "qmprice": 32.26, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162146069", - "info": { - "identifier": 162146069, - "sqm_ocr": 77.5, - "price": 2500.0, - "price_per_sqm": 32.25806451612903, - "url": "https://www.rightmove.co.uk/properties/162146069", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "andrew scott robertson", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135596/162146069/135596_31627593_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.483714", - "last_seen": "2025-06-01T22:06:01.373842", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222947, - 51.418217 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.0, - "qmprice": 28.26, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162146339", - "info": { - "identifier": 162146339, - "sqm_ocr": 92.0, - "price": 2600.0, - "price_per_sqm": 28.26086956521739, - "url": "https://www.rightmove.co.uk/properties/162146339", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50966/162146339/50966_P16148E2D3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.486372", - "last_seen": "2025-06-01T22:05:48.292354", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21691, - 51.50186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 30.77, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162146372", - "info": { - "identifier": 162146372, - "sqm_ocr": 78.0, - "price": 2400.0, - "price_per_sqm": 30.76923076923077, - "url": "https://www.rightmove.co.uk/properties/162146372", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49971/162146372/49971_PUT120192_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.096554", - "last_seen": "2025-06-01T22:06:12.372297", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199815, - 51.461765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.0, - "qmprice": 30.7, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162146534", - "info": { - "identifier": 162146534, - "sqm_ocr": 114.0, - "price": 3500.0, - "price_per_sqm": 30.70175438596491, - "url": "https://www.rightmove.co.uk/properties/162146534", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162146534/221711_1805_EAF_116362_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.482836", - "last_seen": "2025-06-01T17:39:04.975404", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021138, - 51.512897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 46.43, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162146774", - "info": { - "identifier": 162146774, - "sqm_ocr": 70.0, - "price": 3250.0, - "price_per_sqm": 46.42857142857143, - "url": "https://www.rightmove.co.uk/properties/162146774", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OC Homes", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71060/162146774/71060_33895324_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.620712", - "last_seen": "2025-06-01T22:06:09.055212", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070688, - 51.514416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162146822", - "info": { - "identifier": 162146822, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162146822", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162146822/26207_KYC210331_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.326498", - "last_seen": "2025-06-01T22:05:56.782010", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075964, - 51.54025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.8, - "qmprice": 39.94, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162147029", - "info": { - "identifier": 162147029, - "sqm_ocr": 86.8, - "price": 3467.0, - "price_per_sqm": 39.94239631336406, - "url": "https://www.rightmove.co.uk/properties/162147029", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36213/162147029/36213_HYD200101_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.118992", - "last_seen": "2025-06-01T22:06:14.460942", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174475, - 51.513783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/162147032", - "info": { - "identifier": 162147032, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162147032", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Keats Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83719/162147032/83719_HKM250013_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.456890", - "last_seen": "2025-06-01T22:05:57.426471", - "price": 2795 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224288, - 51.520973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162147053", - "info": { - "identifier": 162147053, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162147053", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118042/162147053/118042_33895346_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.716851", - "last_seen": "2025-06-01T22:05:56.111281", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.024059, - 51.48522 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162147167", - "info": { - "identifier": 162147167, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162147167", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Breens", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262298/162147167/262298_33895355_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.016716", - "last_seen": "2025-06-01T22:05:45.511885", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026677, - 51.672813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162147275", - "info": { - "identifier": 162147275, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162147275", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162147275/96668_239471721022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.915901", - "last_seen": "2025-06-01T22:06:03.473813", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.046562, - 51.528137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162147422", - "info": { - "identifier": 162147422, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162147422", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162147422/96668_244117604042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.320709", - "last_seen": "2025-06-01T22:05:46.208385", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.037824, - 51.46447 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162147506", - "info": { - "identifier": 162147506, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162147506", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162147506/96668_244907011042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.097353", - "last_seen": "2025-06-01T22:05:39.042060", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172661, - 51.589825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162147659", - "info": { - "identifier": 162147659, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162147659", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162147659/96668_246394526042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.920541", - "last_seen": "2025-06-01T22:05:53.812030", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096968, - 51.527653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 38.06, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162147683", - "info": { - "identifier": 162147683, - "sqm_ocr": 67.0, - "price": 2550.0, - "price_per_sqm": 38.059701492537314, - "url": "https://www.rightmove.co.uk/properties/162147683", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162147683/96668_246583028042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.614865", - "last_seen": "2025-06-01T22:05:46.892606", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.002804, - 51.48979 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.18, - "qmprice": 40.61, - "rooms": 3, - "total_price": 3662.0, - "url": "https://www.rightmove.co.uk/properties/162147686", - "info": { - "identifier": 162147686, - "sqm_ocr": 90.18, - "price": 3662.0, - "price_per_sqm": 40.607673541805276, - "url": "https://www.rightmove.co.uk/properties/162147686", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162147686/48101_1326986_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.452327", - "last_seen": "2025-06-01T17:39:04.943616", - "price": 3662.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02089, - 51.51308 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.2, - "qmprice": 25.23, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162147689", - "info": { - "identifier": 162147689, - "sqm_ocr": 87.2, - "price": 2200.0, - "price_per_sqm": 25.229357798165136, - "url": "https://www.rightmove.co.uk/properties/162147689", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75148/162147689/75148_1326346_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.616196", - "last_seen": "2025-06-01T22:05:46.894738", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.034017, - 51.477867 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162147767", - "info": { - "identifier": 162147767, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162147767", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162147767/96668_246794130042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.039042", - "last_seen": "2025-06-01T22:06:06.111225", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.082764, - 51.50432 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.1, - "qmprice": 41.82, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162147770", - "info": { - "identifier": 162147770, - "sqm_ocr": 80.1, - "price": 3350.0, - "price_per_sqm": 41.8227215980025, - "url": "https://www.rightmove.co.uk/properties/162147770", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/162147770/253853_1326978_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.024840", - "last_seen": "2025-06-01T22:06:06.118648", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097881, - 51.492577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162147809", - "info": { - "identifier": 162147809, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162147809", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Mann Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42117/162147809/42117_000544703_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.971003", - "last_seen": "2025-06-01T22:06:00.817081", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03914, - 51.44075 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162147980", - "info": { - "identifier": 162147980, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162147980", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65872/162147980/65872_CWQ012582743_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.103901", - "last_seen": "2025-06-01T22:06:08.121789", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009586, - 51.504913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.8, - "qmprice": 25.3, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162147986", - "info": { - "identifier": 162147986, - "sqm_ocr": 98.8, - "price": 2500.0, - "price_per_sqm": 25.303643724696357, - "url": "https://www.rightmove.co.uk/properties/162147986", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/162147986/130309_1326963_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.814678", - "last_seen": "2025-06-01T22:05:43.331687", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08722, - 51.38162 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162148001", - "info": { - "identifier": 162148001, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162148001", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162148001/96668_248207813052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.470729", - "last_seen": "2025-06-01T22:06:13.786083", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145833, - 51.47778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162148010", - "info": { - "identifier": 162148010, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162148010", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162148010/96668_245363216042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.299677", - "last_seen": "2025-06-01T22:05:59.912656", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125304, - 51.457462 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 38.46, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162148058", - "info": { - "identifier": 162148058, - "sqm_ocr": 65.0, - "price": 2500.0, - "price_per_sqm": 38.46153846153846, - "url": "https://www.rightmove.co.uk/properties/162148058", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162148058/98531_1323730_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.871945", - "last_seen": "2025-06-01T22:05:49.266370", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.234702, - 51.498108 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 38.89, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162148067", - "info": { - "identifier": 162148067, - "sqm_ocr": 63.0, - "price": 2450.0, - "price_per_sqm": 38.888888888888886, - "url": "https://www.rightmove.co.uk/properties/162148067", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162148067/15963_1326747_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.395737", - "last_seen": "2025-06-01T22:06:13.856681", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203859, - 51.460377 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 58.33, - "rooms": 2, - "total_price": 3675.0, - "url": "https://www.rightmove.co.uk/properties/162148073", - "info": { - "identifier": 162148073, - "sqm_ocr": 63.0, - "price": 3675.0, - "price_per_sqm": 58.333333333333336, - "url": "https://www.rightmove.co.uk/properties/162148073", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162148073/15963_1326964_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.387984", - "last_seen": "2025-06-01T22:06:13.879823", - "price": 3675.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203859, - 51.460377 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.8, - "qmprice": 22.85, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162148088", - "info": { - "identifier": 162148088, - "sqm_ocr": 113.8, - "price": 2600.0, - "price_per_sqm": 22.847100175746924, - "url": "https://www.rightmove.co.uk/properties/162148088", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/162148088/15969_1326972_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.278639", - "last_seen": "2025-06-01T22:05:44.994585", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.342011, - 51.53458 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162148109", - "info": { - "identifier": 162148109, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162148109", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162148109/96668_248431114052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.774805", - "last_seen": "2025-06-01T22:06:14.579413", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184496, - 51.536686 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 34.48, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162148148", - "info": { - "identifier": 162148148, - "sqm_ocr": 87.0, - "price": 3000.0, - "price_per_sqm": 34.48275862068966, - "url": "https://www.rightmove.co.uk/properties/162148148", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71785/162148148/71785_33895400_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.354379", - "last_seen": "2025-06-01T22:05:59.093316", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141295, - 51.45622 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.22, - "qmprice": 22.9, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/162148154", - "info": { - "identifier": 162148154, - "sqm_ocr": 98.22, - "price": 2249.0, - "price_per_sqm": 22.897576868254937, - "url": "https://www.rightmove.co.uk/properties/162148154", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202016/162148154/202016_33792445_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.442102", - "last_seen": "2025-06-01T22:05:43.963719", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375811, - 51.504467 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162148157", - "info": { - "identifier": 162148157, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162148157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162148157/96668_241335710032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.743323", - "last_seen": "2025-06-01T22:05:58.520052", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285143, - 51.417236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162148241", - "info": { - "identifier": 162148241, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162148241", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162148241/96668_248786818052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.961975", - "last_seen": "2025-06-01T22:06:09.412469", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056666, - 51.518402 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.5, - "qmprice": 32.58, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162148328", - "info": { - "identifier": 162148328, - "sqm_ocr": 110.5, - "price": 3600.0, - "price_per_sqm": 32.57918552036199, - "url": "https://www.rightmove.co.uk/properties/162148328", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162148328/16050_1326987_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.578091", - "last_seen": "2025-06-01T20:19:58.721020", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.045931, - 51.52094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3480.0, - "url": "https://www.rightmove.co.uk/properties/162148388", - "info": { - "identifier": 162148388, - "sqm_ocr": null, - "price": 3480.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162148388", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162148388/96668_248839919052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.056067", - "last_seen": "2025-06-01T20:19:59.056067", - "price": 3480.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056666, - 51.518402 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.73, - "qmprice": 34.76, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162148433", - "info": { - "identifier": 162148433, - "sqm_ocr": 64.73, - "price": 2250.0, - "price_per_sqm": 34.7597713579484, - "url": "https://www.rightmove.co.uk/properties/162148433", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/162148433/80281_1326976_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.769740", - "last_seen": "2025-06-01T22:06:07.564356", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.012348, - 51.53102 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162148484", - "info": { - "identifier": 162148484, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162148484", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162148484/96668_248845719052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.103784, - 51.5266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162148574", - "info": { - "identifier": 162148574, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162148574", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162148574/96668_209641623052024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.763900", - "last_seen": "2025-06-01T22:05:42.127909", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13853, - 51.53173 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162148646", - "info": { - "identifier": 162148646, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162148646", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162148646/96668_248863019052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:05:54.687506", - "last_seen": "2025-06-01T22:05:54.687506", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201847, - 51.545513 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162148649", - "info": { - "identifier": 162148649, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162148649", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162148649/96668_248844119052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.632025", - "last_seen": "2025-06-01T22:06:07.908114", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014577, - 51.51467 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.9, - "qmprice": 54.44, - "rooms": 2, - "total_price": 3424.0, - "url": "https://www.rightmove.co.uk/properties/162148781", - "info": { - "identifier": 162148781, - "sqm_ocr": 62.9, - "price": 3424.0, - "price_per_sqm": 54.43561208267091, - "url": "https://www.rightmove.co.uk/properties/162148781", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94246/162148781/94246_1323023_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.940070", - "last_seen": "2025-06-01T22:06:15.885919", - "price": 3424.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119753, - 51.512947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162148805", - "info": { - "identifier": 162148805, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162148805", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162148805/96668_248881919052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.620238", - "last_seen": "2025-06-01T22:05:54.338861", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125796, - 51.5624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162148856", - "info": { - "identifier": 162148856, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162148856", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22281/162148856/22281_BSL110038_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.179807", - "last_seen": "2025-06-01T22:06:14.185682", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16365, - 51.456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162148877", - "info": { - "identifier": 162148877, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162148877", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162148877/96668_213469426062024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.218652, - 51.493744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162148916", - "info": { - "identifier": 162148916, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162148916", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Apple Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151424/162148916/151424_APV1000749_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.624393", - "last_seen": "2025-06-01T22:06:03.035375", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02607, - 51.50304 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162148928", - "info": { - "identifier": 162148928, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162148928", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105656/162148928/105656_KCZ251109_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.902708", - "last_seen": "2025-06-01T22:05:44.849537", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269816, - 51.49664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 28.09, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162149312", - "info": { - "identifier": 162149312, - "sqm_ocr": 89.0, - "price": 2500.0, - "price_per_sqm": 28.089887640449437, - "url": "https://www.rightmove.co.uk/properties/162149312", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Match A Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50156/162149312/50156_29078280_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.833299", - "last_seen": "2025-06-01T22:05:44.459302", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.304814, - 51.506275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 134.0, - "qmprice": 20.15, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162149411", - "info": { - "identifier": 162149411, - "sqm_ocr": 134.0, - "price": 2700.0, - "price_per_sqm": 20.149253731343283, - "url": "https://www.rightmove.co.uk/properties/162149411", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Allday & Miller", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/226k/225662/162149411/225662_33895446_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.590057", - "last_seen": "2025-06-01T22:05:51.548380", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.420473, - 51.513557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 30.77, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162149498", - "info": { - "identifier": 162149498, - "sqm_ocr": 78.0, - "price": 2400.0, - "price_per_sqm": 30.76923076923077, - "url": "https://www.rightmove.co.uk/properties/162149498", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Madison Brook", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49239/162149498/49239_33895449_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.416599", - "last_seen": "2025-06-01T22:06:03.302916", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.034922, - 51.51098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.9, - "qmprice": 44.76, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162149528", - "info": { - "identifier": 162149528, - "sqm_ocr": 65.9, - "price": 2950.0, - "price_per_sqm": 44.76479514415781, - "url": "https://www.rightmove.co.uk/properties/162149528", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6073/162149528/6073_33895451_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.489327", - "last_seen": "2025-06-01T22:05:53.708281", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095589, - 51.52143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.49, - "qmprice": 43.97, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/162149555", - "info": { - "identifier": 162149555, - "sqm_ocr": 54.49, - "price": 2396.0, - "price_per_sqm": 43.97137089374197, - "url": "https://www.rightmove.co.uk/properties/162149555", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chard", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141944/162149555/141944_33895454_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.991428", - "last_seen": "2025-06-01T22:05:57.968905", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189455, - 51.485985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162149579", - "info": { - "identifier": 162149579, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162149579", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269888/162149579/269888_NEW140153_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.942791", - "last_seen": "2025-06-01T22:06:06.236592", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05454, - 51.48193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162149870", - "info": { - "identifier": 162149870, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162149870", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/162149870/82537_33895467_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.160206", - "last_seen": "2025-06-01T22:06:08.798014", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020971, - 51.512924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162149873", - "info": { - "identifier": 162149873, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162149873", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/162149873/82537_33825727_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.166664", - "last_seen": "2025-06-01T22:06:08.776457", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02588, - 51.50113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.18, - "qmprice": 28.91, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162149909", - "info": { - "identifier": 162149909, - "sqm_ocr": 69.18, - "price": 2000.0, - "price_per_sqm": 28.910089621277823, - "url": "https://www.rightmove.co.uk/properties/162149909", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249770/162149909/249770_33895469_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.991737", - "last_seen": "2025-06-01T22:05:39.746121", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180386, - 51.60603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162149912", - "info": { - "identifier": 162149912, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162149912", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/162149912/198539_33895471_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.021210", - "last_seen": "2025-06-01T20:19:59.021210", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020971, - 51.512924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162149915", - "info": { - "identifier": 162149915, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162149915", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/162149915/198539_33895472_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.027055", - "last_seen": "2025-06-01T20:19:59.027055", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02588, - 51.50113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 36.36, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/162149945", - "info": { - "identifier": 162149945, - "sqm_ocr": 59.0, - "price": 2145.0, - "price_per_sqm": 36.355932203389834, - "url": "https://www.rightmove.co.uk/properties/162149945", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Outlet Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34748/162149945/34748_33895476_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.745107", - "last_seen": "2025-06-01T22:05:49.438683", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.235395, - 51.497936 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.4, - "qmprice": 48.16, - "rooms": 3, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/162149963", - "info": { - "identifier": 162149963, - "sqm_ocr": 66.4, - "price": 3198.0, - "price_per_sqm": 48.162650602409634, - "url": "https://www.rightmove.co.uk/properties/162149963", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162149963/55101_1326866_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.329833", - "last_seen": "2025-06-01T22:06:07.018207", - "price": 3198.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072145, - 51.49473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.2, - "qmprice": 27.78, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162150047", - "info": { - "identifier": 162150047, - "sqm_ocr": 97.2, - "price": 2700.0, - "price_per_sqm": 27.77777777777778, - "url": "https://www.rightmove.co.uk/properties/162150047", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/162150047/87812_1327016_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.556959", - "last_seen": "2025-06-01T22:05:39.534213", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.243308, - 51.59532 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.79, - "qmprice": 39.65, - "rooms": 2, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/162150074", - "info": { - "identifier": 162150074, - "sqm_ocr": 85.79, - "price": 3402.0, - "price_per_sqm": 39.65497144189299, - "url": "https://www.rightmove.co.uk/properties/162150074", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/162150074/15960_1327006_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.870289", - "last_seen": "2025-06-01T22:05:42.927485", - "price": 3402.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173035, - 51.540524 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162150161", - "info": { - "identifier": 162150161, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162150161", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Tennison Property", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76430/162150161/76430_681935_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.678505", - "last_seen": "2025-06-01T22:06:12.281998", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20604, - 51.449867 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.98, - "qmprice": 47.31, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162150167", - "info": { - "identifier": 162150167, - "sqm_ocr": 73.98, - "price": 3500.0, - "price_per_sqm": 47.31008380643417, - "url": "https://www.rightmove.co.uk/properties/162150167", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162150167/16050_1327013_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.315197", - "last_seen": "2025-06-01T22:06:08.204716", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072144, - 51.51728 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 47.62, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162150248", - "info": { - "identifier": 162150248, - "sqm_ocr": 69.3, - "price": 3300.0, - "price_per_sqm": 47.61904761904762, - "url": "https://www.rightmove.co.uk/properties/162150248", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Elms Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71927/162150248/71927_33895492_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.954655", - "last_seen": "2025-06-01T22:06:09.425661", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.044075, - 51.52992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2630.0, - "url": "https://www.rightmove.co.uk/properties/162150266", - "info": { - "identifier": 162150266, - "sqm_ocr": null, - "price": 2630.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162150266", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162150266/43310_CWL250211_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.980821", - "last_seen": "2025-06-01T22:06:00.593361", - "price": 2630.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026368, - 51.480846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.2, - "qmprice": 30.65, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162150296", - "info": { - "identifier": 162150296, - "sqm_ocr": 114.2, - "price": 3500.0, - "price_per_sqm": 30.647985989492117, - "url": "https://www.rightmove.co.uk/properties/162150296", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/162150296/264404_RX581886_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.849923", - "last_seen": "2025-06-01T22:06:05.509940", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053566, - 51.48379 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.2, - "qmprice": 34.12, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162150350", - "info": { - "identifier": 162150350, - "sqm_ocr": 76.2, - "price": 2600.0, - "price_per_sqm": 34.120734908136484, - "url": "https://www.rightmove.co.uk/properties/162150350", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71137/162150350/71137_33895507_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.845899", - "last_seen": "2025-06-01T22:06:14.036971", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13699, - 51.482407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162150581", - "info": { - "identifier": 162150581, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162150581", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162150581/96668_248729117052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.436389", - "last_seen": "2025-06-01T22:05:51.198952", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.411689, - 51.51225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162150611", - "info": { - "identifier": 162150611, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162150611", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162150611/96668_248899719052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.052050", - "last_seen": "2025-06-01T22:05:55.652917", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08985, - 51.54428 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162150689", - "info": { - "identifier": 162150689, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162150689", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Homefinders", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32903/162150689/32903_1791462_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.632564", - "last_seen": "2025-06-01T22:06:07.446082", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.008361, - 51.52429 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162150713", - "info": { - "identifier": 162150713, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162150713", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6954/162150713/6954_33895561_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.428684", - "last_seen": "2025-06-01T22:05:44.170106", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.251906, - 51.515114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.8, - "qmprice": 35.76, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162150716", - "info": { - "identifier": 162150716, - "sqm_ocr": 97.8, - "price": 3497.0, - "price_per_sqm": 35.756646216768914, - "url": "https://www.rightmove.co.uk/properties/162150716", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7963/162150716/7963_33895562_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.430167", - "last_seen": "2025-06-01T22:05:44.149313", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31507, - 51.52738 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.0, - "qmprice": 23.03, - "rooms": 4, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/162151238", - "info": { - "identifier": 162151238, - "sqm_ocr": 102.0, - "price": 2349.0, - "price_per_sqm": 23.029411764705884, - "url": "https://www.rightmove.co.uk/properties/162151238", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202016/162151238/202016_33895621_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.943968", - "last_seen": "2025-06-01T22:05:44.084895", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.353188, - 51.527534 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.1, - "qmprice": 28.54, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162151289", - "info": { - "identifier": 162151289, - "sqm_ocr": 91.1, - "price": 2600.0, - "price_per_sqm": 28.54006586169045, - "url": "https://www.rightmove.co.uk/properties/162151289", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84073/162151289/84073_1325229_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.786946", - "last_seen": "2025-06-01T22:05:49.617021", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105764, - 51.57989 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.71, - "qmprice": 27.74, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162151577", - "info": { - "identifier": 162151577, - "sqm_ocr": 75.71, - "price": 2100.0, - "price_per_sqm": 27.737419099194295, - "url": "https://www.rightmove.co.uk/properties/162151577", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162151577/43310_CWL120043_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.792125", - "last_seen": "2025-06-01T22:06:02.826640", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.072469, - 51.506855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162151739", - "info": { - "identifier": 162151739, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162151739", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253316/162151739/253316_NHO060065_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.453630", - "last_seen": "2025-06-01T22:05:57.430779", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197939, - 51.51438 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162151928", - "info": { - "identifier": 162151928, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162151928", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Apple Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151424/162151928/151424_APV1000751_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.062649", - "last_seen": "2025-06-01T22:06:00.956097", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00147, - 51.46296 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162152123", - "info": { - "identifier": 162152123, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162152123", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Turners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16319/162152123/16319_33895734_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.442588", - "last_seen": "2025-06-01T22:06:07.871797", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20397, - 51.38009 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162152729", - "info": { - "identifier": 162152729, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162152729", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Jubilee International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266501/162152729/266501_12345111_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.415410", - "last_seen": "2025-06-01T22:05:46.814054", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.031158, - 51.457607 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2296.0, - "url": "https://www.rightmove.co.uk/properties/162152756", - "info": { - "identifier": 162152756, - "sqm_ocr": null, - "price": 2296.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162152756", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162152756/43310_CWL250096_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.118076", - "last_seen": "2025-06-01T22:06:03.165890", - "price": 2296.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.073795, - 51.506893 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162153092", - "info": { - "identifier": 162153092, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162153092", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162153092/43310_CWL250209_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.696632", - "last_seen": "2025-06-01T22:05:56.702388", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.016807, - 51.462914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162153095", - "info": { - "identifier": 162153095, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162153095", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162153095/43310_CWL250210_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.701152", - "last_seen": "2025-06-01T22:05:56.677161", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.016807, - 51.462914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162153146", - "info": { - "identifier": 162153146, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162153146", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162153146/96668_244323906042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.045711", - "last_seen": "2025-06-01T22:05:50.428605", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.376265, - 51.60464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3395.0, - "url": "https://www.rightmove.co.uk/properties/162153182", - "info": { - "identifier": 162153182, - "sqm_ocr": null, - "price": 3395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162153182", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162153182/96668_248725917052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.360380", - "last_seen": "2025-06-01T22:05:59.414031", - "price": 3395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107043, - 51.473965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162153206", - "info": { - "identifier": 162153206, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162153206", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162153206/96668_248907519052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.610409", - "last_seen": "2025-06-01T22:05:51.587361", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.482498, - 51.544224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162153224", - "info": { - "identifier": 162153224, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162153224", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162153224/96668_248917219052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.974070", - "last_seen": "2025-06-01T22:05:54.145937", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116611, - 51.54006 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162153236", - "info": { - "identifier": 162153236, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162153236", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162153236/96668_248920619052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.641647", - "last_seen": "2025-06-01T22:05:46.957010", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017885, - 51.49389 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162153242", - "info": { - "identifier": 162153242, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162153242", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162153242/96668_248912119052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.654618", - "last_seen": "2025-06-01T22:05:46.972803", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.069065, - 51.495 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3796.0, - "url": "https://www.rightmove.co.uk/properties/162153311", - "info": { - "identifier": 162153311, - "sqm_ocr": null, - "price": 3796.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162153311", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - White City", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260429/162153311/260429_wclwafpwl1905130_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.613314", - "last_seen": "2025-06-01T22:05:48.910263", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22387, - 51.51099 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162153632", - "info": { - "identifier": 162153632, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162153632", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162153632/96668_247334105052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.180261", - "last_seen": "2025-06-01T22:05:56.423956", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.301381, - 51.484287 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162153644", - "info": { - "identifier": 162153644, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162153644", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162153644/96668_248549815052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.739866", - "last_seen": "2025-06-01T22:06:11.817298", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.002169, - 51.57014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162158432", - "info": { - "identifier": 162158432, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162158432", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162158432/96668_248919019052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.944270", - "last_seen": "2025-06-01T22:05:50.859280", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295344, - 51.62036 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2895.0, - "url": "https://www.rightmove.co.uk/properties/162158951", - "info": { - "identifier": 162158951, - "sqm_ocr": null, - "price": 2895.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162158951", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162158951/96668_248950019052025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.518575", - "last_seen": "2025-06-01T22:05:42.698977", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188318, - 51.536205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162160388", - "info": { - "identifier": 162160388, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162160388", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/162160388/228512_33877250_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.883442", - "last_seen": "2025-06-01T22:05:39.596419", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.251859, - 51.598988 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162160520", - "info": { - "identifier": 162160520, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162160520", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/162160520/272819_33895810_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.431140", - "last_seen": "2025-06-01T22:05:46.812466", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.070964, - 51.49216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.3, - "qmprice": 41.71, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/162160982", - "info": { - "identifier": 162160982, - "sqm_ocr": 92.3, - "price": 3850.0, - "price_per_sqm": 41.71180931744312, - "url": "https://www.rightmove.co.uk/properties/162160982", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78395/162160982/78395_33895827_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.655508", - "last_seen": "2025-06-01T22:06:10.796173", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071221, - 51.51486 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162161078", - "info": { - "identifier": 162161078, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162161078", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/162161078/272819_33895834_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.989860", - "last_seen": "2025-06-01T20:19:58.989860", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0568, - 51.51822 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 49.02, - "rooms": 3, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/162161225", - "info": { - "identifier": 162161225, - "sqm_ocr": 61.0, - "price": 2990.0, - "price_per_sqm": 49.01639344262295, - "url": "https://www.rightmove.co.uk/properties/162161225", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/162161225/80796_437_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.220135", - "last_seen": "2025-06-01T22:05:59.329027", - "price": 2990 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11354, - 51.46149 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3164.0, - "url": "https://www.rightmove.co.uk/properties/162161534", - "info": { - "identifier": 162161534, - "sqm_ocr": null, - "price": 3164.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162161534", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162161534/253604_39S2005_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.908230", - "last_seen": "2025-06-01T22:06:07.718653", - "price": 3164.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162161558", - "info": { - "identifier": 162161558, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162161558", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/169k/168185/162161558/168185_GER224665_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.619978", - "last_seen": "2025-06-01T22:05:43.784620", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106125, - 51.398136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.8, - "qmprice": 20.76, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162161834", - "info": { - "identifier": 162161834, - "sqm_ocr": 110.8, - "price": 2300.0, - "price_per_sqm": 20.75812274368231, - "url": "https://www.rightmove.co.uk/properties/162161834", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Grafton Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82653/162161834/82653_27766034_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.414592", - "last_seen": "2025-06-01T22:05:41.622397", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.062684, - 51.404125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3313.0, - "url": "https://www.rightmove.co.uk/properties/162162062", - "info": { - "identifier": 162162062, - "sqm_ocr": null, - "price": 3313.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162162062", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162162062/253604_188X2005_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.701112", - "last_seen": "2025-06-01T22:06:07.400798", - "price": 3313.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 26.83, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162162161", - "info": { - "identifier": 162162161, - "sqm_ocr": 82.0, - "price": 2200.0, - "price_per_sqm": 26.829268292682926, - "url": "https://www.rightmove.co.uk/properties/162162161", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Ivy & Stone", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274640/162162161/274640_VYS_VYS_LFSYCL_939_1084422373_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.358311", - "last_seen": "2025-06-01T22:06:03.209527", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012445, - 51.51208 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162162443", - "info": { - "identifier": 162162443, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162162443", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162162443/96668_248872119052025_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:05:56.563753", - "last_seen": "2025-06-01T22:05:56.563753", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.160597, - 51.422047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162163358", - "info": { - "identifier": 162163358, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162163358", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Woodward Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14627/162163358/14627_32889587_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.936590", - "last_seen": "2025-06-01T22:05:50.534090", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.339657, - 51.576256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.1, - "qmprice": 31.67, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162163406", - "info": { - "identifier": 162163406, - "sqm_ocr": 82.1, - "price": 2600.0, - "price_per_sqm": 31.66869671132765, - "url": "https://www.rightmove.co.uk/properties/162163406", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6954/162163406/6954_33896028_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.340257", - "last_seen": "2025-06-01T22:05:44.883445", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252741, - 51.506496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162163649", - "info": { - "identifier": 162163649, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162163649", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50960/162163649/50960_P4418E5126_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.715655", - "last_seen": "2025-06-01T22:05:43.446981", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08465, - 51.33572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162163658", - "info": { - "identifier": 162163658, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162163658", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Fraser & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20990/162163658/20990_BKS160188_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.793767", - "last_seen": "2025-06-01T22:06:15.148324", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164167, - 51.52355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162163859", - "info": { - "identifier": 162163859, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162163859", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/162163859/272819_33896061_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.157916", - "last_seen": "2025-06-01T22:05:46.609582", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.027024, - 51.46186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.2, - "qmprice": 28.34, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162164012", - "info": { - "identifier": 162164012, - "sqm_ocr": 88.2, - "price": 2500.0, - "price_per_sqm": 28.34467120181406, - "url": "https://www.rightmove.co.uk/properties/162164012", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "W J Meade", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38087/162164012/38087_33896072_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.004842", - "last_seen": "2025-06-01T22:06:10.518836", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028627, - 51.51902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/162164093", - "info": { - "identifier": 162164093, - "sqm_ocr": null, - "price": 2847.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162164093", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162164093/181787_181787_1074_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.499047", - "last_seen": "2025-06-01T22:06:06.334926", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08339, - 51.4905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 31.75, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162164705", - "info": { - "identifier": 162164705, - "sqm_ocr": 69.3, - "price": 2200.0, - "price_per_sqm": 31.746031746031747, - "url": "https://www.rightmove.co.uk/properties/162164705", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176726/162164705/176726_STP230061_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.194211", - "last_seen": "2025-06-01T22:05:50.492524", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2974, - 51.6063 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.21, - "qmprice": 59.05, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/162165011", - "info": { - "identifier": 162165011, - "sqm_ocr": 53.21, - "price": 3142.0, - "price_per_sqm": 59.049050930276266, - "url": "https://www.rightmove.co.uk/properties/162165011", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/162165011/15942_1327020_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.336428", - "last_seen": "2025-06-01T22:05:58.132074", - "price": 3142.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180067, - 51.493256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.7, - "qmprice": 24.84, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162165170", - "info": { - "identifier": 162165170, - "sqm_ocr": 110.7, - "price": 2750.0, - "price_per_sqm": 24.841915085817526, - "url": "https://www.rightmove.co.uk/properties/162165170", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/162165170/15975_1327028_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.251820", - "last_seen": "2025-06-01T22:06:01.470004", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198478, - 51.425945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162165452", - "info": { - "identifier": 162165452, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162165452", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Balgores", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10596/162165452/10596_DGL220043_L_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.044035", - "last_seen": "2025-06-01T22:05:38.221991", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.097863, - 51.531414 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162165485", - "info": { - "identifier": 162165485, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162165485", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Westways", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44562/162165485/44562_101306002857_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.877299", - "last_seen": "2025-06-01T22:06:14.718688", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18664, - 51.5166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.2, - "qmprice": 42.73, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/162165572", - "info": { - "identifier": 162165572, - "sqm_ocr": 50.2, - "price": 2145.0, - "price_per_sqm": 42.72908366533864, - "url": "https://www.rightmove.co.uk/properties/162165572", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/162165572/15966_1326284_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.214068", - "last_seen": "2025-06-01T22:06:14.126050", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177469, - 51.45837 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2643.0, - "url": "https://www.rightmove.co.uk/properties/162165593", - "info": { - "identifier": 162165593, - "sqm_ocr": null, - "price": 2643.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162165593", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "CHARMILL RESIDENTIAL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233558/162165593/233558_32648996_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.489925", - "last_seen": "2025-06-01T22:06:16.069553", - "price": 2643 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19257, - 51.525257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.8, - "qmprice": 35.46, - "rooms": 2, - "total_price": 2475.0, - "url": "https://www.rightmove.co.uk/properties/162165596", - "info": { - "identifier": 162165596, - "sqm_ocr": 69.8, - "price": 2475.0, - "price_per_sqm": 35.458452722063036, - "url": "https://www.rightmove.co.uk/properties/162165596", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Brian Cox", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288164/162165596/288164_33895777_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.566941", - "last_seen": "2025-06-01T22:05:41.384826", - "price": 2475.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284433, - 51.559452 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.71, - "qmprice": 50.28, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162165692", - "info": { - "identifier": 162165692, - "sqm_ocr": 51.71, - "price": 2600.0, - "price_per_sqm": 50.28040997872752, - "url": "https://www.rightmove.co.uk/properties/162165692", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52518/162165692/52518_CWL240448_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.598456", - "last_seen": "2025-06-01T22:06:11.264089", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019307, - 51.49729 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162165695", - "info": { - "identifier": 162165695, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162165695", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/162165695/95098_P300998_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.106581", - "last_seen": "2025-06-01T22:05:46.753233", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06535, - 51.48572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.4, - "qmprice": 25.41, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162165779", - "info": { - "identifier": 162165779, - "sqm_ocr": 98.4, - "price": 2500.0, - "price_per_sqm": 25.40650406504065, - "url": "https://www.rightmove.co.uk/properties/162165779", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Pedder", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21476/162165779/21476_33896174_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.135139", - "last_seen": "2025-06-01T22:05:59.210589", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104417, - 51.441048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162165806", - "info": { - "identifier": 162165806, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162165806", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Three Oaks Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/141k/140444/162165806/140444_PA42_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.855511", - "last_seen": "2025-06-01T22:06:11.822697", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03697, - 51.58856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.2, - "qmprice": 28.49, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162167291", - "info": { - "identifier": 162167291, - "sqm_ocr": 70.2, - "price": 2000.0, - "price_per_sqm": 28.49002849002849, - "url": "https://www.rightmove.co.uk/properties/162167291", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/162167291/264878_CAN231891_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.763193", - "last_seen": "2025-06-01T22:05:43.715302", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091704, - 51.3779 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/162167345", - "info": { - "identifier": 162167345, - "sqm_ocr": null, - "price": 2747.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162167345", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162167345/181787_181787_1075_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.275998", - "last_seen": "2025-06-01T22:06:07.068761", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09151, - 51.49944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.1, - "qmprice": 32.87, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162167663", - "info": { - "identifier": 162167663, - "sqm_ocr": 79.1, - "price": 2600.0, - "price_per_sqm": 32.86978508217447, - "url": "https://www.rightmove.co.uk/properties/162167663", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Wilfords London", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260447/162167663/260447_WWH250143_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.764723", - "last_seen": "2025-06-01T22:05:59.499750", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131383, - 51.454597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.76, - "qmprice": 39.43, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162167678", - "info": { - "identifier": 162167678, - "sqm_ocr": 88.76, - "price": 3500.0, - "price_per_sqm": 39.43217665615142, - "url": "https://www.rightmove.co.uk/properties/162167678", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/162167678/51465_682af046aaa84_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.095339", - "last_seen": "2025-06-01T22:06:13.071289", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205012, - 51.445004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/162167885", - "info": { - "identifier": 162167885, - "sqm_ocr": null, - "price": 2747.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162167885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22275/162167885/22275_BKL200062_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.611638", - "last_seen": "2025-06-01T22:05:48.925888", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.233439, - 51.50574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 130.1, - "qmprice": 29.21, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162167972", - "info": { - "identifier": 162167972, - "sqm_ocr": 130.1, - "price": 3800.0, - "price_per_sqm": 29.208301306687165, - "url": "https://www.rightmove.co.uk/properties/162167972", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84803/162167972/84803_33896285_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.323447", - "last_seen": "2025-06-01T22:06:04.395225", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240579, - 51.465557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162168197", - "info": { - "identifier": 162168197, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162168197", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Balgores", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10596/162168197/10596_DGL250039_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.021437", - "last_seen": "2025-06-01T22:05:38.219117", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.123781, - 51.54833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 155.9, - "qmprice": 19.88, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162168284", - "info": { - "identifier": 162168284, - "sqm_ocr": 155.9, - "price": 3100.0, - "price_per_sqm": 19.88454137267479, - "url": "https://www.rightmove.co.uk/properties/162168284", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Alex Crown Lettings & Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102122/162168284/102122_7267_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.066136", - "last_seen": "2025-06-01T22:05:45.416133", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03979, - 51.65704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.59, - "qmprice": 34.0, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162168344", - "info": { - "identifier": 162168344, - "sqm_ocr": 70.59, - "price": 2400.0, - "price_per_sqm": 33.99915002124947, - "url": "https://www.rightmove.co.uk/properties/162168344", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/162168344/48994_CNL220143_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.068716", - "last_seen": "2025-06-01T22:06:09.279562", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009925, - 51.52142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/162168575", - "info": { - "identifier": 162168575, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162168575", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/162168575/105856_3237_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.885786", - "last_seen": "2025-06-01T22:06:06.385495", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09402, - 51.495792 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.7, - "qmprice": 33.49, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162168944", - "info": { - "identifier": 162168944, - "sqm_ocr": 62.7, - "price": 2100.0, - "price_per_sqm": 33.49282296650718, - "url": "https://www.rightmove.co.uk/properties/162168944", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58000/162168944/58000_KCJ250145_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.287436", - "last_seen": "2025-06-01T22:06:01.392532", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185184, - 51.419266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162169073", - "info": { - "identifier": 162169073, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162169073", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/162169073/12070_29079913_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.586687", - "last_seen": "2025-06-01T22:05:46.736890", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013433, - 51.496517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162169082", - "info": { - "identifier": 162169082, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162169082", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/162169082/252785_33896370_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.481975", - "last_seen": "2025-06-01T22:05:59.949437", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100781, - 51.46557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.59, - "qmprice": 30.86, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162169154", - "info": { - "identifier": 162169154, - "sqm_ocr": 95.59, - "price": 2950.0, - "price_per_sqm": 30.860968720577464, - "url": "https://www.rightmove.co.uk/properties/162169154", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Horton and Garton", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81801/162169154/81801_29056143_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.077588", - "last_seen": "2025-06-01T22:05:44.558180", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.264579, - 51.499813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 32.35, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162169640", - "info": { - "identifier": 162169640, - "sqm_ocr": 68.0, - "price": 2200.0, - "price_per_sqm": 32.35294117647059, - "url": "https://www.rightmove.co.uk/properties/162169640", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162169640/221711_3489_EAF_183315_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.195570", - "last_seen": "2025-06-01T22:05:39.313638", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177233, - 51.61178 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.2, - "qmprice": 31.79, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162169709", - "info": { - "identifier": 162169709, - "sqm_ocr": 69.2, - "price": 2200.0, - "price_per_sqm": 31.791907514450866, - "url": "https://www.rightmove.co.uk/properties/162169709", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dey King and Haria Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93856/162169709/93856_WAT250189_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.007123", - "last_seen": "2025-06-01T22:05:50.351821", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297695, - 51.605698 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.38, - "qmprice": 41.4, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162169823", - "info": { - "identifier": 162169823, - "sqm_ocr": 60.38, - "price": 2500.0, - "price_per_sqm": 41.40443855581318, - "url": "https://www.rightmove.co.uk/properties/162169823", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279224/162169823/279224_JCC190020_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.630674", - "last_seen": "2025-06-01T22:05:58.981366", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128309, - 51.460342 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.84, - "qmprice": 47.91, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162169838", - "info": { - "identifier": 162169838, - "sqm_ocr": 67.84, - "price": 3250.0, - "price_per_sqm": 47.906839622641506, - "url": "https://www.rightmove.co.uk/properties/162169838", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63025/162169838/63025_CQL230057_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.313444", - "last_seen": "2025-06-01T22:05:55.305794", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117144, - 51.52033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.6, - "qmprice": 33.62, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/162169868", - "info": { - "identifier": 162169868, - "sqm_ocr": 89.6, - "price": 3012.0, - "price_per_sqm": 33.61607142857143, - "url": "https://www.rightmove.co.uk/properties/162169868", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/162169868/63031_LRL230009_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.334828", - "last_seen": "2025-06-01T22:05:42.553349", - "price": 3012.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135284, - 51.541836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162170111", - "info": { - "identifier": 162170111, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162170111", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34082/162170111/34082_KBS130263_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.735863", - "last_seen": "2025-06-01T22:05:41.145849", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29575, - 51.58232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162170198", - "info": { - "identifier": 162170198, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162170198", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/162170198/105856_2728_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.541430", - "last_seen": "2025-06-01T22:06:05.396635", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087937, - 51.49636 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.92, - "qmprice": 34.54, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/162170465", - "info": { - "identifier": 162170465, - "sqm_ocr": 83.92, - "price": 2899.0, - "price_per_sqm": 34.544804575786465, - "url": "https://www.rightmove.co.uk/properties/162170465", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/162170465/82537_33896463_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.399406", - "last_seen": "2025-06-01T20:19:59.118248", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006324, - 51.506973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162170597", - "info": { - "identifier": 162170597, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162170597", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Your Move", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6591/162170597/6591_SUR230141_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.595709", - "last_seen": "2025-06-01T22:05:58.784405", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.296451, - 51.403084 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.29, - "qmprice": 36.89, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162170708", - "info": { - "identifier": 162170708, - "sqm_ocr": 81.29, - "price": 2999.0, - "price_per_sqm": 36.892606716693315, - "url": "https://www.rightmove.co.uk/properties/162170708", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Goldschmidt & Howland", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73956/162170708/73956_2713778_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.823706", - "last_seen": "2025-06-01T22:05:49.857599", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12153, - 51.5787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 36.3, - "qmprice": 73.0, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162171245", - "info": { - "identifier": 162171245, - "sqm_ocr": 36.3, - "price": 2650.0, - "price_per_sqm": 73.00275482093664, - "url": "https://www.rightmove.co.uk/properties/162171245", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162171245/16050_1327037_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.813139", - "last_seen": "2025-06-01T22:06:11.546881", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064022, - 51.529034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162171458", - "info": { - "identifier": 162171458, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162171458", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/162171458/87812_1326915_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.612373", - "last_seen": "2025-06-01T22:05:38.851901", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.245223, - 51.59884 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/162171707", - "info": { - "identifier": 162171707, - "sqm_ocr": null, - "price": 2947.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162171707", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162171707/181787_181787_1076_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.579369", - "last_seen": "2025-06-01T22:06:05.432883", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08339, - 51.4905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162171722", - "info": { - "identifier": 162171722, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162171722", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knightsbridge Land", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226406/162171722/226406_RL0036_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.222760", - "last_seen": "2025-06-01T22:05:59.337080", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127933, - 51.48163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162171725", - "info": { - "identifier": 162171725, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162171725", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Knightsbridge Land", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226406/162171725/226406_RL0170_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.221375", - "last_seen": "2025-06-01T22:05:59.335605", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127936, - 51.481625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2253.0, - "url": "https://www.rightmove.co.uk/properties/162171776", - "info": { - "identifier": 162171776, - "sqm_ocr": null, - "price": 2253.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162171776", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/162171776/163859_2713794_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.003986", - "last_seen": "2025-06-01T22:06:02.378662", - "price": 2253 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07365, - 51.50689 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162172139", - "info": { - "identifier": 162172139, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162172139", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 0.0, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Moreland", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6263/162172139/6263_MRL_MRL_LFSYCL_637_831422456_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.680904", - "last_seen": "2025-06-01T22:05:38.478581", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208855, - 51.57316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162172142", - "info": { - "identifier": 162172142, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162172142", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Griffin Residential Group, Gates, Parish & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250106/162172142/250106_39318_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.288221", - "last_seen": "2025-06-01T22:05:50.866956", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.15863, - 51.58512 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162172298", - "info": { - "identifier": 162172298, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162172298", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Urban Bubble", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263291/162172298/263291_2bedanchorb113_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.857111", - "last_seen": "2025-06-01T22:06:01.026246", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01376, - 51.46672 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 28.24, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162172469", - "info": { - "identifier": 162172469, - "sqm_ocr": 85.0, - "price": 2400.0, - "price_per_sqm": 28.235294117647058, - "url": "https://www.rightmove.co.uk/properties/162172469", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247481/162172469/247481_P285495_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.415802", - "last_seen": "2025-06-01T22:06:12.438867", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16547, - 51.45161 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/162172634", - "info": { - "identifier": 162172634, - "sqm_ocr": null, - "price": 2448.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162172634", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162172634/181787_181787_1077_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.180023", - "last_seen": "2025-06-01T22:06:06.751322", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05781, - 51.48891 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162173648", - "info": { - "identifier": 162173648, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162173648", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Spencer Munson Property Services", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74110/162173648/74110_40898_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.018443", - "last_seen": "2025-06-01T22:06:03.948679", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.061621, - 51.582405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3553.0, - "url": "https://www.rightmove.co.uk/properties/162173912", - "info": { - "identifier": 162173912, - "sqm_ocr": null, - "price": 3553.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162173912", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/162173912/95098_P301018_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.908254", - "last_seen": "2025-06-01T22:06:11.465349", - "price": 3553 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02102, - 51.50708 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.22, - "qmprice": 29.58, - "rooms": 3, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162174212", - "info": { - "identifier": 162174212, - "sqm_ocr": 117.22, - "price": 3467.0, - "price_per_sqm": 29.576864016379457, - "url": "https://www.rightmove.co.uk/properties/162174212", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/162174212/25485_33896675_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.804592", - "last_seen": "2025-06-01T22:05:42.015833", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194289, - 51.540657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2499.0, - "url": "https://www.rightmove.co.uk/properties/162174302", - "info": { - "identifier": 162174302, - "sqm_ocr": null, - "price": 2499.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162174302", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Citiland Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282164/162174302/282164_22ARRM139JS_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.338082", - "last_seen": "2025-06-01T22:05:50.934213", - "price": 2499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.2086, - 51.52304 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.0, - "qmprice": 23.17, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162174428", - "info": { - "identifier": 162174428, - "sqm_ocr": 123.0, - "price": 2850.0, - "price_per_sqm": 23.170731707317074, - "url": "https://www.rightmove.co.uk/properties/162174428", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "SeOUL Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73282/162174428/73282_10367_SR4U_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.774735", - "last_seen": "2025-06-01T22:05:58.868694", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252843, - 51.39554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162174611", - "info": { - "identifier": 162174611, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162174611", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Propertymade Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280319/162174611/280319_PRM250206_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.838391", - "last_seen": "2025-06-01T22:05:48.426742", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229236, - 51.50953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162174974", - "info": { - "identifier": 162174974, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162174974", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Anthony James Manser", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/38k/37403/162174974/37403_33896727_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.976558", - "last_seen": "2025-06-01T22:05:52.670450", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.329918, - 51.470673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.3, - "qmprice": 26.92, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162175199", - "info": { - "identifier": 162175199, - "sqm_ocr": 100.3, - "price": 2700.0, - "price_per_sqm": 26.91924227318046, - "url": "https://www.rightmove.co.uk/properties/162175199", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/162175199/52415_33896742_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.065083", - "last_seen": "2025-06-01T22:06:00.268798", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11794, - 51.43217 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162175244", - "info": { - "identifier": 162175244, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162175244", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Fortess Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271826/162175244/271826_RL1546_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.320735", - "last_seen": "2025-06-01T22:05:41.073063", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216057, - 51.556 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162175340", - "info": { - "identifier": 162175340, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162175340", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Squires Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46983/162175340/46983_33896748_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.217797", - "last_seen": "2025-06-01T22:05:38.572016", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247924, - 51.62368 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.57, - "qmprice": 43.85, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162175403", - "info": { - "identifier": 162175403, - "sqm_ocr": 61.57, - "price": 2700.0, - "price_per_sqm": 43.85252558063992, - "url": "https://www.rightmove.co.uk/properties/162175403", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162175403/221711_77_EAF_71379_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.025856", - "last_seen": "2025-06-01T22:06:13.183065", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178592, - 51.46015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162175568", - "info": { - "identifier": 162175568, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162175568", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kevin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278792/162175568/278792_HC02_IMG_00_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.353429", - "last_seen": "2025-06-01T22:06:03.205846", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02065, - 51.50754 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162175580", - "info": { - "identifier": 162175580, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162175580", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/162175580/105856_207_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.219153", - "last_seen": "2025-06-01T22:06:06.833823", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100627, - 51.502502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162175703", - "info": { - "identifier": 162175703, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162175703", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Reeds Rains Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88613/162175703/88613_KEI190025_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.664476", - "last_seen": "2025-06-01T22:06:06.627748", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068673, - 51.487926 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/162175787", - "info": { - "identifier": 162175787, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162175787", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/162175787/17888_23829_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.669019", - "last_seen": "2025-06-01T22:06:15.020802", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16559, - 51.524 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.2, - "qmprice": 31.47, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162175919", - "info": { - "identifier": 162175919, - "sqm_ocr": 84.2, - "price": 2650.0, - "price_per_sqm": 31.47268408551069, - "url": "https://www.rightmove.co.uk/properties/162175919", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Marc and Partners", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201956/162175919/201956_MAY240160_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.170520", - "last_seen": "2025-06-01T22:06:02.493635", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.027251, - 51.49974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162176501", - "info": { - "identifier": 162176501, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162176501", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Holland Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36516/162176501/36516_10184_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.075569", - "last_seen": "2025-06-01T22:05:53.621209", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09687, - 51.52983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 43.75, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162176522", - "info": { - "identifier": 162176522, - "sqm_ocr": 80.0, - "price": 3500.0, - "price_per_sqm": 43.75, - "url": "https://www.rightmove.co.uk/properties/162176522", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Andrew Reeves", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58599/162176522/58599_10310853_IMG_03_0001_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.217707", - "last_seen": "2025-06-01T22:06:15.334322", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137018, - 51.491173 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/162176603", - "info": { - "identifier": 162176603, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162176603", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Myspace", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274817/162176603/274817_2739_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.742135", - "last_seen": "2025-06-01T22:06:11.720329", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011755, - 51.557594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.6, - "qmprice": 24.61, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162176681", - "info": { - "identifier": 162176681, - "sqm_ocr": 101.6, - "price": 2500.0, - "price_per_sqm": 24.606299212598426, - "url": "https://www.rightmove.co.uk/properties/162176681", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/162176681/149153_1326955_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.420459", - "last_seen": "2025-06-01T22:06:07.849941", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204138, - 51.36409 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.8, - "qmprice": 28.32, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162176987", - "info": { - "identifier": 162176987, - "sqm_ocr": 91.8, - "price": 2600.0, - "price_per_sqm": 28.32244008714597, - "url": "https://www.rightmove.co.uk/properties/162176987", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/162176987/87815_1327061_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.748299", - "last_seen": "2025-06-01T22:05:38.443496", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173346, - 51.65042 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 131.1, - "qmprice": 25.93, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162177002", - "info": { - "identifier": 162177002, - "sqm_ocr": 131.1, - "price": 3400.0, - "price_per_sqm": 25.93440122044241, - "url": "https://www.rightmove.co.uk/properties/162177002", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/162177002/87815_1325518_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.104963", - "last_seen": "2025-06-01T22:05:39.458619", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210516, - 51.605057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162177344", - "info": { - "identifier": 162177344, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162177344", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30467/162177344/30467_000728132_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.774453", - "last_seen": "2025-06-01T22:06:11.961135", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00018, - 51.58784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.9, - "qmprice": 29.06, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162177473", - "info": { - "identifier": 162177473, - "sqm_ocr": 92.9, - "price": 2700.0, - "price_per_sqm": 29.06350914962325, - "url": "https://www.rightmove.co.uk/properties/162177473", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Patrick Henry", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106402/162177473/106402_12623025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.886360", - "last_seen": "2025-06-01T17:38:55.844348", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145681, - 51.451965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.8, - "qmprice": 31.1, - "rooms": 3, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/162177503", - "info": { - "identifier": 162177503, - "sqm_ocr": 123.8, - "price": 3850.0, - "price_per_sqm": 31.098546042003232, - "url": "https://www.rightmove.co.uk/properties/162177503", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22245/162177503/22245_PUL200094_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.346737", - "last_seen": "2025-06-01T22:06:12.756566", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.226883, - 51.470154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162177926", - "info": { - "identifier": 162177926, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162177926", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knightsbridge Land", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226406/162177926/226406_RL0101_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.882934", - "last_seen": "2025-06-01T22:05:50.654547", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.334982, - 51.57935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162177929", - "info": { - "identifier": 162177929, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162177929", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Knightsbridge Land", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226406/162177929/226406_RL0102_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.799429", - "last_seen": "2025-06-01T22:06:03.029197", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005576, - 51.512108 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.8, - "qmprice": 39.43, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162178103", - "info": { - "identifier": 162178103, - "sqm_ocr": 55.8, - "price": 2200.0, - "price_per_sqm": 39.426523297491045, - "url": "https://www.rightmove.co.uk/properties/162178103", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/162178103/111050_1327058_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.131207", - "last_seen": "2025-06-01T22:06:13.691509", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17913, - 51.44337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 147.4, - "qmprice": 27.14, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162178106", - "info": { - "identifier": 162178106, - "sqm_ocr": 147.4, - "price": 4000.0, - "price_per_sqm": 27.137042062415194, - "url": "https://www.rightmove.co.uk/properties/162178106", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/162178106/111050_1327054_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.101299", - "last_seen": "2025-06-01T22:06:13.696021", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1455, - 51.425014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.7, - "qmprice": 28.31, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162178337", - "info": { - "identifier": 162178337, - "sqm_ocr": 77.7, - "price": 2200.0, - "price_per_sqm": 28.314028314028313, - "url": "https://www.rightmove.co.uk/properties/162178337", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kerr and Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47967/162178337/47967_KAC1001876_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.292852", - "last_seen": "2025-06-01T22:05:48.596226", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240605, - 51.503914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162178589", - "info": { - "identifier": 162178589, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162178589", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162178589/96668_246886101052025_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.998322", - "last_seen": "2025-06-01T22:06:10.532915", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057846, - 51.52238 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162178871", - "info": { - "identifier": 162178871, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162178871", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162178871/191744_RL4249_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.416228", - "last_seen": "2025-06-01T22:05:44.272181", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.388118, - 51.507057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.1, - "qmprice": 22.39, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162179021", - "info": { - "identifier": 162179021, - "sqm_ocr": 116.1, - "price": 2600.0, - "price_per_sqm": 22.39448751076658, - "url": "https://www.rightmove.co.uk/properties/162179021", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Alex Crown Lettings & Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102122/162179021/102122_8066_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.635806", - "last_seen": "2025-06-01T22:05:38.827352", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13525, - 51.62451 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.24, - "qmprice": 41.45, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162179120", - "info": { - "identifier": 162179120, - "sqm_ocr": 83.24, - "price": 3450.0, - "price_per_sqm": 41.44641999038924, - "url": "https://www.rightmove.co.uk/properties/162179120", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162179120/26207_IUL180121_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.003781", - "last_seen": "2025-06-01T22:05:54.218682", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094835, - 51.534126 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162179201", - "info": { - "identifier": 162179201, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162179201", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Kevin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278792/162179201/278792_HC03_IMG_04_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.924570", - "last_seen": "2025-06-01T22:06:10.700257", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00551, - 51.51572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/162179279", - "info": { - "identifier": 162179279, - "sqm_ocr": null, - "price": 2295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162179279", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162179279/96668_248968720052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.388701", - "last_seen": "2025-06-01T22:05:49.998030", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130837, - 51.57531 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162179351", - "info": { - "identifier": 162179351, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162179351", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162179351/96668_248971420052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.489831", - "last_seen": "2025-06-01T22:06:08.805909", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071143, - 51.5239 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.87, - "qmprice": 34.16, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162179399", - "info": { - "identifier": 162179399, - "sqm_ocr": 65.87, - "price": 2250.0, - "price_per_sqm": 34.15819037498102, - "url": "https://www.rightmove.co.uk/properties/162179399", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57118/162179399/57118_P214631_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.057136", - "last_seen": "2025-06-01T22:05:59.194973", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11546, - 51.49875 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162179411", - "info": { - "identifier": 162179411, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162179411", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162179411/96668_248978420052025_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.761666", - "last_seen": "2025-06-01T22:05:44.529227", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27144, - 51.497143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.35, - "qmprice": 36.38, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162179492", - "info": { - "identifier": 162179492, - "sqm_ocr": 67.35, - "price": 2450.0, - "price_per_sqm": 36.37713437268003, - "url": "https://www.rightmove.co.uk/properties/162179492", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Whitman & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67487/162179492/67487_33896941_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.340959", - "last_seen": "2025-06-01T22:05:52.126418", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.255508, - 51.492687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.91, - "qmprice": 48.0, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162179555", - "info": { - "identifier": 162179555, - "sqm_ocr": 72.91, - "price": 3500.0, - "price_per_sqm": 48.00438897270608, - "url": "https://www.rightmove.co.uk/properties/162179555", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Capital Heights Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55386/162179555/55386_10572769_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.343485", - "last_seen": "2025-06-01T17:39:04.788126", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073012, - 51.524048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.5, - "qmprice": 46.15, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162179597", - "info": { - "identifier": 162179597, - "sqm_ocr": 71.5, - "price": 3300.0, - "price_per_sqm": 46.15384615384615, - "url": "https://www.rightmove.co.uk/properties/162179597", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57985/162179597/57985_KCW240037_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.176011", - "last_seen": "2025-06-01T22:06:06.749579", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.049716, - 51.49842 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2301.0, - "url": "https://www.rightmove.co.uk/properties/162179657", - "info": { - "identifier": 162179657, - "sqm_ocr": null, - "price": 2301.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162179657", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162179657/181787_181787_1079_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.065472", - "last_seen": "2025-06-01T22:06:06.069182", - "price": 2301 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09516, - 51.48562 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162179684", - "info": { - "identifier": 162179684, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162179684", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "SJW property management limited", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/233k/232853/162179684/232853_7e1d59e8-2f97-4ed6-92f6-ca3815edb572_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.030886", - "last_seen": "2025-06-01T22:05:59.684619", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128171, - 51.481457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2225.0, - "url": "https://www.rightmove.co.uk/properties/162180128", - "info": { - "identifier": 162180128, - "sqm_ocr": null, - "price": 2225.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162180128", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Empire Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237251/162180128/237251_102658005951_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.338967", - "last_seen": "2025-06-01T22:05:41.055909", - "price": 2225.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23923, - 51.55067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2475.0, - "url": "https://www.rightmove.co.uk/properties/162180251", - "info": { - "identifier": 162180251, - "sqm_ocr": null, - "price": 2475.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162180251", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Empire Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237251/162180251/237251_102658005952_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.397459", - "last_seen": "2025-06-01T22:05:40.243128", - "price": 2475.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24614, - 51.55113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162180296", - "info": { - "identifier": 162180296, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162180296", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "The Property Shop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167138/162180296/167138_TPR1001225_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.991012", - "last_seen": "2025-06-01T22:05:44.002284", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35499, - 51.55244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.99, - "qmprice": 32.5, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162180539", - "info": { - "identifier": 162180539, - "sqm_ocr": 109.99, - "price": 3575.0, - "price_per_sqm": 32.50295481407401, - "url": "https://www.rightmove.co.uk/properties/162180539", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39740/162180539/39740_FIN220437_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.278683", - "last_seen": "2025-06-01T22:05:39.117095", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199194, - 51.592255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162180551", - "info": { - "identifier": 162180551, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162180551", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162180551/191744_RL3562_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.532942", - "last_seen": "2025-06-01T22:05:53.722521", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095116, - 51.528885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162180590", - "info": { - "identifier": 162180590, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162180590", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40512/162180590/40512_33897013_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.976868", - "last_seen": "2025-06-01T22:06:06.230537", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09101, - 51.50114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.77, - "qmprice": 37.33, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162181256", - "info": { - "identifier": 162181256, - "sqm_ocr": 93.77, - "price": 3500.0, - "price_per_sqm": 37.32537058760798, - "url": "https://www.rightmove.co.uk/properties/162181256", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6073/162181256/6073_33868028_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.490051", - "last_seen": "2025-06-01T22:05:42.774546", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114294, - 51.52296 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.6, - "qmprice": 41.29, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162181265", - "info": { - "identifier": 162181265, - "sqm_ocr": 89.6, - "price": 3700.0, - "price_per_sqm": 41.29464285714286, - "url": "https://www.rightmove.co.uk/properties/162181265", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6073/162181265/6073_33897062_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.418170", - "last_seen": "2025-06-01T22:05:53.847342", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103581, - 51.530724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.3, - "qmprice": 34.06, - "rooms": 4, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/162181475", - "info": { - "identifier": 162181475, - "sqm_ocr": 117.3, - "price": 3995.0, - "price_per_sqm": 34.05797101449276, - "url": "https://www.rightmove.co.uk/properties/162181475", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84845/162181475/84845_33031763_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.649940", - "last_seen": "2025-06-01T22:06:04.508706", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.346358, - 51.43104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162181676", - "info": { - "identifier": 162181676, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162181676", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/162181676/32793_31862_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.672112", - "last_seen": "2025-06-01T22:05:48.773265", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22221, - 51.50257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162181745", - "info": { - "identifier": 162181745, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162181745", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Kevin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278792/162181745/278792_HC04_IMG_00_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.135220", - "last_seen": "2025-06-01T22:06:03.141206", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01155, - 51.5104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/162181832", - "info": { - "identifier": 162181832, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162181832", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "JS Estate Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264161/162181832/264161_704443_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.765091", - "last_seen": "2025-06-01T22:06:02.211926", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06403, - 51.501682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162181925", - "info": { - "identifier": 162181925, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162181925", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Rentr", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260789/162181925/260789_bf9d7747-010b-4775-89dc-9e24eb591308_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.134964", - "last_seen": "2025-06-01T22:06:00.624959", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011132, - 51.472267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 119.1, - "qmprice": 31.07, - "rooms": 3, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162182021", - "info": { - "identifier": 162182021, - "sqm_ocr": 119.1, - "price": 3700.0, - "price_per_sqm": 31.066330814441645, - "url": "https://www.rightmove.co.uk/properties/162182021", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44538/162182021/44538_JSL080018_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.291139", - "last_seen": "2025-06-01T22:06:12.404001", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144062, - 51.450375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.6, - "qmprice": 43.91, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162182189", - "info": { - "identifier": 162182189, - "sqm_ocr": 70.6, - "price": 3100.0, - "price_per_sqm": 43.90934844192635, - "url": "https://www.rightmove.co.uk/properties/162182189", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/154k/153638/162182189/153638_KDC240030_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.805143", - "last_seen": "2025-06-01T22:05:53.349229", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102061, - 51.53054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.5, - "qmprice": 21.13, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162182327", - "info": { - "identifier": 162182327, - "sqm_ocr": 106.5, - "price": 2250.0, - "price_per_sqm": 21.12676056338028, - "url": "https://www.rightmove.co.uk/properties/162182327", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brown & Brooke", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50974/162182327/50974_BRW_BRW_LFSYCL_323_479310034_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.804194", - "last_seen": "2025-06-01T22:06:07.554895", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.007301, - 51.539604 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162182414", - "info": { - "identifier": 162182414, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162182414", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CITY REALTOR LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/179k/178868/162182414/178868_33897122_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.660057", - "last_seen": "2025-06-01T22:06:09.126878", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061343, - 51.51057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162182549", - "info": { - "identifier": 162182549, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162182549", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Liv International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54583/162182549/54583_LIVH_014814_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.173985", - "last_seen": "2025-06-01T22:06:14.319518", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188581, - 51.529827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/162183563", - "info": { - "identifier": 162183563, - "sqm_ocr": null, - "price": 3358.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162183563", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "SAB - Saint Andrews Bureau Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105104/162183563/105104_103035004887_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.174104", - "last_seen": "2025-06-01T22:05:57.679652", - "price": 3358.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19292, - 51.48909 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.7, - "qmprice": 32.62, - "rooms": 4, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162183878", - "info": { - "identifier": 162183878, - "sqm_ocr": 102.7, - "price": 3350.0, - "price_per_sqm": 32.619279454722495, - "url": "https://www.rightmove.co.uk/properties/162183878", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kerr and Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47967/162183878/47967_KAC1002004_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.153496", - "last_seen": "2025-06-01T22:05:45.227082", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.255389, - 51.50071 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162183938", - "info": { - "identifier": 162183938, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162183938", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51316/162183938/51316_KYC250170_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.680691", - "last_seen": "2025-06-01T22:06:15.549041", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181394, - 51.52448 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162183965", - "info": { - "identifier": 162183965, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162183965", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/162183965/54616_FIN250117_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.419541", - "last_seen": "2025-06-01T22:05:53.844742", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094147, - 51.528557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162184004", - "info": { - "identifier": 162184004, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162184004", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/162184004/54616_FIN240142_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.985175", - "last_seen": "2025-06-01T22:05:54.174972", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094147, - 51.528557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162184133", - "info": { - "identifier": 162184133, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162184133", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162184133/96668_248847519052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.871097", - "last_seen": "2025-06-01T22:05:47.723932", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089086, - 51.535717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162184166", - "info": { - "identifier": 162184166, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162184166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162184166/96668_248520415052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.261225", - "last_seen": "2025-06-01T22:06:11.022046", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018387, - 51.498 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.4, - "qmprice": 36.85, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162184316", - "info": { - "identifier": 162184316, - "sqm_ocr": 100.4, - "price": 3700.0, - "price_per_sqm": 36.852589641434264, - "url": "https://www.rightmove.co.uk/properties/162184316", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68802/162184316/68802_KDA220033_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.678240", - "last_seen": "2025-06-01T22:05:59.609371", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140843, - 51.45324 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.48, - "qmprice": 45.17, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162184463", - "info": { - "identifier": 162184463, - "sqm_ocr": 77.48, - "price": 3500.0, - "price_per_sqm": 45.172947857511616, - "url": "https://www.rightmove.co.uk/properties/162184463", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55326/162184463/55326_ISS250035_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.905048", - "last_seen": "2025-06-01T22:05:53.676517", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090605, - 51.541874 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.31, - "qmprice": 48.17, - "rooms": 2, - "total_price": 3146.0, - "url": "https://www.rightmove.co.uk/properties/162184496", - "info": { - "identifier": 162184496, - "sqm_ocr": 65.31, - "price": 3146.0, - "price_per_sqm": 48.17026489052213, - "url": "https://www.rightmove.co.uk/properties/162184496", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157817/162184496/157817_2329533_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.412014", - "last_seen": "2025-06-01T17:39:04.870014", - "price": 3146 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017347, - 51.49975 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.26, - "qmprice": 38.33, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162184670", - "info": { - "identifier": 162184670, - "sqm_ocr": 78.26, - "price": 3000.0, - "price_per_sqm": 38.33375926399182, - "url": "https://www.rightmove.co.uk/properties/162184670", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/162184670/57272_1327081_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.710232", - "last_seen": "2025-06-01T22:05:58.821242", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.301064, - 51.39824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.93, - "qmprice": 35.29, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162184685", - "info": { - "identifier": 162184685, - "sqm_ocr": 60.93, - "price": 2150.0, - "price_per_sqm": 35.28639422287871, - "url": "https://www.rightmove.co.uk/properties/162184685", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/162184685/32793_24671_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.892296", - "last_seen": "2025-06-01T22:05:42.918231", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19547, - 51.55585 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.8, - "qmprice": 27.07, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162184952", - "info": { - "identifier": 162184952, - "sqm_ocr": 86.8, - "price": 2350.0, - "price_per_sqm": 27.07373271889401, - "url": "https://www.rightmove.co.uk/properties/162184952", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/162184952/108947_1313117_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.123458", - "last_seen": "2025-06-01T22:05:50.773132", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33447, - 51.579243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.27, - "qmprice": 49.31, - "rooms": 2, - "total_price": 3662.0, - "url": "https://www.rightmove.co.uk/properties/162185012", - "info": { - "identifier": 162185012, - "sqm_ocr": 74.27, - "price": 3662.0, - "price_per_sqm": 49.306584085094926, - "url": "https://www.rightmove.co.uk/properties/162185012", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/162185012/66771_1327080_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.761711", - "last_seen": "2025-06-01T22:05:59.498225", - "price": 3662.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120819, - 51.493694 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162185540", - "info": { - "identifier": 162185540, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162185540", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Legacy Property Consultants Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/139k/138659/162185540/138659_103650002234_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.173707", - "last_seen": "2025-06-01T22:05:47.215002", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07643, - 51.52905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.75, - "qmprice": 38.61, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162185555", - "info": { - "identifier": 162185555, - "sqm_ocr": 64.75, - "price": 2500.0, - "price_per_sqm": 38.61003861003861, - "url": "https://www.rightmove.co.uk/properties/162185555", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52785/162185555/52785_HIH240123_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.867566", - "last_seen": "2025-06-01T22:05:54.897076", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108712, - 51.55349 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.2, - "qmprice": 72.61, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162185777", - "info": { - "identifier": 162185777, - "sqm_ocr": 48.2, - "price": 3500.0, - "price_per_sqm": 72.61410788381743, - "url": "https://www.rightmove.co.uk/properties/162185777", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35975/162185777/35975_06760552_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.862185", - "last_seen": "2025-06-01T22:05:50.671272", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.374, - 51.603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162185921", - "info": { - "identifier": 162185921, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162185921", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19716/162185921/19716_WPS080458_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.045249", - "last_seen": "2025-06-01T22:06:13.159207", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212072, - 51.44134 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.0, - "qmprice": 29.89, - "rooms": 3, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/162185936", - "info": { - "identifier": 162185936, - "sqm_ocr": 107.0, - "price": 3198.0, - "price_per_sqm": 29.88785046728972, - "url": "https://www.rightmove.co.uk/properties/162185936", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72541/162185936/72541_33897229_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.192241", - "last_seen": "2025-06-01T22:05:40.654360", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276739, - 51.56138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162185972", - "info": { - "identifier": 162185972, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162185972", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "AJ Dwellings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80172/162185972/80172_ajdw_1993369795_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.099459", - "last_seen": "2025-06-01T22:05:38.233348", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.174394, - 51.563313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162186077", - "info": { - "identifier": 162186077, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162186077", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Property Broker", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61607/162186077/61607_d783a173-4cf5-4ceb-abe7-50c99839e8ae_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.889777", - "last_seen": "2025-06-01T22:05:42.019947", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11596, - 51.519135 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.3, - "qmprice": 26.1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162186242", - "info": { - "identifier": 162186242, - "sqm_ocr": 84.3, - "price": 2200.0, - "price_per_sqm": 26.097271648873072, - "url": "https://www.rightmove.co.uk/properties/162186242", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Oakhill", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88216/162186242/88216_4a8b335e-a409-4081-b9e8-951890abcfea_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.217295", - "last_seen": "2025-06-01T22:05:52.416156", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.344839, - 51.474327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162186254", - "info": { - "identifier": 162186254, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162186254", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Madison Fox", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266474/162186254/266474_STF230016_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.711158", - "last_seen": "2025-06-01T22:05:50.095571", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057118, - 51.5889 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162186734", - "info": { - "identifier": 162186734, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162186734", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162186734/181787_181787_1080_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.271851", - "last_seen": "2025-06-01T22:06:06.932747", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0684, - 51.50113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162187292", - "info": { - "identifier": 162187292, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162187292", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162187292/249341_ASH16QX_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.611104", - "last_seen": "2025-06-01T22:06:01.326052", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20342, - 51.41931 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162187367", - "info": { - "identifier": 162187367, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162187367", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48330/162187367/48330_HEA220243_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.108745", - "last_seen": "2025-06-01T22:06:06.136446", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090742, - 51.48539 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162187676", - "info": { - "identifier": 162187676, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162187676", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Compton Reeback", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74510/162187676/74510_33897295_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.811238", - "last_seen": "2025-06-01T22:06:14.496888", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190445, - 51.526325 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162188072", - "info": { - "identifier": 162188072, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162188072", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42912/162188072/42912_CBS200006_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.540661", - "last_seen": "2025-06-01T22:06:00.102746", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117936, - 51.465508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162188126", - "info": { - "identifier": 162188126, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162188126", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Conran Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17516/162188126/17516_LET230100_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.205511", - "last_seen": "2025-06-01T22:05:46.590910", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02406, - 51.48522 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162188189", - "info": { - "identifier": 162188189, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162188189", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CROWN LUXURY HOMES LIMITED", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267257/162188189/267257_33897318_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.172039", - "last_seen": "2025-06-01T22:05:39.333611", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.244765, - 51.581703 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162188228", - "info": { - "identifier": 162188228, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162188228", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84812/162188228/84812_33897321_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.693575", - "last_seen": "2025-06-01T22:05:58.579568", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300157, - 51.397865 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 46.82, - "rooms": 2, - "total_price": 2903.0, - "url": "https://www.rightmove.co.uk/properties/162188285", - "info": { - "identifier": 162188285, - "sqm_ocr": 62.0, - "price": 2903.0, - "price_per_sqm": 46.82258064516129, - "url": "https://www.rightmove.co.uk/properties/162188285", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/162188285/29861_33897326_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.647332", - "last_seen": "2025-06-01T22:05:40.342384", - "price": 2903 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279171, - 51.560806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.2, - "qmprice": 42.92, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162188483", - "info": { - "identifier": 162188483, - "sqm_ocr": 93.2, - "price": 4000.0, - "price_per_sqm": 42.918454935622314, - "url": "https://www.rightmove.co.uk/properties/162188483", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Capital Heights Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55386/162188483/55386_12676553_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.267957", - "last_seen": "2025-06-01T22:06:08.550627", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01739, - 51.50091 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/162188609", - "info": { - "identifier": 162188609, - "sqm_ocr": null, - "price": 3098.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162188609", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50969/162188609/50969_P1393K1330_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.229595", - "last_seen": "2025-06-01T22:06:15.602736", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12868, - 51.51002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162188612", - "info": { - "identifier": 162188612, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162188612", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58000/162188612/58000_KEO230005_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.089986", - "last_seen": "2025-06-01T22:06:01.570736", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2162, - 51.415848 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.5, - "qmprice": 32.59, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162189284", - "info": { - "identifier": 162189284, - "sqm_ocr": 67.5, - "price": 2200.0, - "price_per_sqm": 32.592592592592595, - "url": "https://www.rightmove.co.uk/properties/162189284", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Canary Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85774/162189284/85774_MW20051315GPP_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.806758", - "last_seen": "2025-06-01T22:06:02.785259", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02154, - 51.50816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.6, - "qmprice": 37.33, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162189974", - "info": { - "identifier": 162189974, - "sqm_ocr": 57.6, - "price": 2150.0, - "price_per_sqm": 37.326388888888886, - "url": "https://www.rightmove.co.uk/properties/162189974", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44538/162189974/44538_WBL220086_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.019134", - "last_seen": "2025-06-01T22:06:13.178847", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161366, - 51.465378 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162190088", - "info": { - "identifier": 162190088, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162190088", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Maxwell Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81507/162190088/81507_32371681_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.029254", - "last_seen": "2025-06-01T22:05:50.789833", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27895, - 51.591076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162190172", - "info": { - "identifier": 162190172, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162190172", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Andrew Reeves", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20720/162190172/20720_AR_00004818_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.255125", - "last_seen": "2025-06-01T22:05:41.663986", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.08663, - 51.35872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.1, - "qmprice": 28.62, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162190292", - "info": { - "identifier": 162190292, - "sqm_ocr": 96.1, - "price": 2750.0, - "price_per_sqm": 28.616024973985432, - "url": "https://www.rightmove.co.uk/properties/162190292", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Jonathan Arron Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69315/162190292/69315_JOW250083_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.452298", - "last_seen": "2025-06-01T22:05:38.660962", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197573, - 51.603752 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 38.88, - "rooms": 2, - "total_price": 2838.0, - "url": "https://www.rightmove.co.uk/properties/162190364", - "info": { - "identifier": 162190364, - "sqm_ocr": 73.0, - "price": 2838.0, - "price_per_sqm": 38.87671232876713, - "url": "https://www.rightmove.co.uk/properties/162190364", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/162190364/29861_33897427_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.112052", - "last_seen": "2025-06-01T22:05:40.039330", - "price": 2838 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279171, - 51.560806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.6, - "qmprice": 64.05, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162190772", - "info": { - "identifier": 162190772, - "sqm_ocr": 54.6, - "price": 3497.0, - "price_per_sqm": 64.04761904761905, - "url": "https://www.rightmove.co.uk/properties/162190772", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36222/162190772/36222_MRL250020_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.298805", - "last_seen": "2025-06-01T22:06:14.618821", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151904, - 51.521706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.1, - "qmprice": 29.83, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162191018", - "info": { - "identifier": 162191018, - "sqm_ocr": 77.1, - "price": 2300.0, - "price_per_sqm": 29.831387808041505, - "url": "https://www.rightmove.co.uk/properties/162191018", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Christopher Edwards", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55185/162191018/55185_29080315_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.190585", - "last_seen": "2025-06-01T22:05:50.496041", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.377003, - 51.560715 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162191906", - "info": { - "identifier": 162191906, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162191906", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Smarthost", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288713/162191906/288713_LibertyBridge_IMG_24_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.576577", - "last_seen": "2025-06-01T22:06:07.202933", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00787, - 51.54751 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 32.47, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162191921", - "info": { - "identifier": 162191921, - "sqm_ocr": 77.0, - "price": 2500.0, - "price_per_sqm": 32.467532467532465, - "url": "https://www.rightmove.co.uk/properties/162191921", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83027/162191921/83027_33897504_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.591596", - "last_seen": "2025-06-01T22:06:02.676613", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.029893, - 51.499115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162192104", - "info": { - "identifier": 162192104, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162192104", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Alexander Charles & Browne", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206588/162192104/206588_29081654_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.281008", - "last_seen": "2025-06-01T22:05:39.880270", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.189854, - 51.447998 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.34, - "qmprice": 44.57, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162192137", - "info": { - "identifier": 162192137, - "sqm_ocr": 58.34, - "price": 2600.0, - "price_per_sqm": 44.566335275968456, - "url": "https://www.rightmove.co.uk/properties/162192137", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Pearl & Coutts", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54010/162192137/54010_00000635_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.214771", - "last_seen": "2025-06-01T22:06:15.330017", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133435, - 51.51471 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.8, - "qmprice": 28.85, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162192329", - "info": { - "identifier": 162192329, - "sqm_ocr": 72.8, - "price": 2100.0, - "price_per_sqm": 28.846153846153847, - "url": "https://www.rightmove.co.uk/properties/162192329", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107905/162192329/107905_DEL180053_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.259841", - "last_seen": "2025-06-01T22:05:47.092333", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.058532, - 51.441444 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162192497", - "info": { - "identifier": 162192497, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162192497", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "John Payne", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/190k/189056/162192497/189056_P277003_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.243442", - "last_seen": "2025-06-01T22:05:39.998920", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.12467, - 51.49779 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162192542", - "info": { - "identifier": 162192542, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162192542", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52347/162192542/52347_BEQ012597444_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.726910", - "last_seen": "2025-06-01T22:06:14.536171", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134684, - 51.49528 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.7, - "qmprice": 23.48, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162192575", - "info": { - "identifier": 162192575, - "sqm_ocr": 93.7, - "price": 2200.0, - "price_per_sqm": 23.479188900747065, - "url": "https://www.rightmove.co.uk/properties/162192575", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Village Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/38k/37293/162192575/37293_20654652_7534388l_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.674147", - "last_seen": "2025-06-01T22:06:04.298375", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.273929, - 51.46444 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162192584", - "info": { - "identifier": 162192584, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162192584", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83027/162192584/83027_33897551_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.053252", - "last_seen": "2025-06-01T22:06:08.212542", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071023, - 51.51576 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162192653", - "info": { - "identifier": 162192653, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162192653", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162192653/191744_RL4077_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.785459", - "last_seen": "2025-06-01T22:05:59.465767", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115148, - 51.48633 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162193145", - "info": { - "identifier": 162193145, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162193145", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Waterfronts", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48795/162193145/48795_29081749_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.626472", - "last_seen": "2025-06-01T22:06:09.027158", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017342, - 51.4998 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162193400", - "info": { - "identifier": 162193400, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162193400", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Maxwell Valentine", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212879/162193400/212879_7662300_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.809969", - "last_seen": "2025-06-01T22:05:43.755808", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091704, - 51.3779 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162193406", - "info": { - "identifier": 162193406, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162193406", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Propertymade Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280319/162193406/280319_PRM250207_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.146346", - "last_seen": "2025-06-01T22:05:49.432954", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222369, - 51.5116 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162193409", - "info": { - "identifier": 162193409, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162193409", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Maxwell Valentine", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212879/162193409/212879_11955506_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.811362", - "last_seen": "2025-06-01T22:05:43.757935", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091704, - 51.3779 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/162193823", - "info": { - "identifier": 162193823, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162193823", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chapeltons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256376/162193823/256376_1ashelly_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.328468", - "last_seen": "2025-06-01T22:05:58.062552", - "price": 2795 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16024, - 51.48498 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 32.95, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162194126", - "info": { - "identifier": 162194126, - "sqm_ocr": 88.0, - "price": 2900.0, - "price_per_sqm": 32.95454545454545, - "url": "https://www.rightmove.co.uk/properties/162194126", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162194126/221711_1412_EAF_111625_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.132475", - "last_seen": "2025-06-01T22:06:13.351681", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181371, - 51.450977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162194279", - "info": { - "identifier": 162194279, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162194279", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/38k/37065/162194279/37065_2ab69412-51ac-4042-bb55-7025b12968d5_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.530149", - "last_seen": "2025-06-01T22:05:38.774444", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204547, - 51.61398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.3, - "qmprice": 33.65, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162194348", - "info": { - "identifier": 162194348, - "sqm_ocr": 74.3, - "price": 2500.0, - "price_per_sqm": 33.64737550471063, - "url": "https://www.rightmove.co.uk/properties/162194348", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Galloways", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151376/162194348/151376_33897653_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.038198", - "last_seen": "2025-06-01T22:06:00.361183", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035978, - 51.426674 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162194405", - "info": { - "identifier": 162194405, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162194405", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Bryants Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21740/162194405/21740_838_BRYT_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.740731", - "last_seen": "2025-06-01T22:06:02.511316", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.064638, - 51.511497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.8, - "qmprice": 26.13, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162194516", - "info": { - "identifier": 162194516, - "sqm_ocr": 114.8, - "price": 3000.0, - "price_per_sqm": 26.13240418118467, - "url": "https://www.rightmove.co.uk/properties/162194516", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Christopher Nevill", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9211/162194516/9211_56e315a3-36ce-4fa3-b758-b5dda84eb5ac_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.661118", - "last_seen": "2025-06-01T22:05:51.620449", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.44958, - 51.52053 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 30.77, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162194525", - "info": { - "identifier": 162194525, - "sqm_ocr": 78.0, - "price": 2400.0, - "price_per_sqm": 30.76923076923077, - "url": "https://www.rightmove.co.uk/properties/162194525", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Urban Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41919/162194525/41919_32904488_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.548959", - "last_seen": "2025-06-01T22:06:00.115463", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123694, - 51.47944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162194762", - "info": { - "identifier": 162194762, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162194762", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/162194762/77192_VCA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.513060", - "last_seen": "2025-06-01T22:05:49.654592", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08976, - 51.5861 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162194867", - "info": { - "identifier": 162194867, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162194867", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83027/162194867/83027_33897639_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.025827", - "last_seen": "2025-06-01T22:06:09.820796", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.003645, - 51.51246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162194966", - "info": { - "identifier": 162194966, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162194966", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Brian Cox & Company", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156206/162194966/156206_8634506_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.094224", - "last_seen": "2025-06-01T22:05:50.526270", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.355367, - 51.5688 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.9, - "qmprice": 40.44, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162195191", - "info": { - "identifier": 162195191, - "sqm_ocr": 98.9, - "price": 4000.0, - "price_per_sqm": 40.44489383215369, - "url": "https://www.rightmove.co.uk/properties/162195191", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68064/162195191/68064_CCT250578_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.149471", - "last_seen": "2025-06-01T22:06:06.512012", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072004, - 51.458195 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.3, - "qmprice": 41.72, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162195236", - "info": { - "identifier": 162195236, - "sqm_ocr": 74.3, - "price": 3100.0, - "price_per_sqm": 41.722745625841185, - "url": "https://www.rightmove.co.uk/properties/162195236", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/162195236/174452_2610_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.256140", - "last_seen": "2025-06-01T22:05:47.103350", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00616, - 51.50249 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162195530", - "info": { - "identifier": 162195530, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162195530", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253316/162195530/253316_CSO250461_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.295169", - "last_seen": "2025-06-01T22:06:15.200402", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20426, - 51.524914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162195620", - "info": { - "identifier": 162195620, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162195620", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262865/162195620/262865_a1G8d000002QBN4EAO_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.356438", - "last_seen": "2025-06-01T22:06:03.217918", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00996, - 51.51357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 39.76, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162195677", - "info": { - "identifier": 162195677, - "sqm_ocr": 83.0, - "price": 3300.0, - "price_per_sqm": 39.75903614457831, - "url": "https://www.rightmove.co.uk/properties/162195677", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Castor Bay Property Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50289/162195677/50289_RL0004_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.535379", - "last_seen": "2025-06-01T22:06:04.743565", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.337539, - 51.453575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162195713", - "info": { - "identifier": 162195713, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162195713", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5381/162195713/5381_000910847_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.245100", - "last_seen": "2025-06-01T22:05:39.143788", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1738, - 51.61158 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162195725", - "info": { - "identifier": 162195725, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162195725", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/162195725/96392_LTA230198_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.561729", - "last_seen": "2025-06-01T22:05:42.671363", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187013, - 51.541477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.4, - "qmprice": 31.86, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162196115", - "info": { - "identifier": 162196115, - "sqm_ocr": 71.4, - "price": 2275.0, - "price_per_sqm": 31.862745098039213, - "url": "https://www.rightmove.co.uk/properties/162196115", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162196115/249341_BRO325_IMG_00_0000_max_656x437.png", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.680779", - "last_seen": "2025-06-01T22:05:56.143550", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.304733, - 51.513016 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.3, - "qmprice": 30.7, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162196142", - "info": { - "identifier": 162196142, - "sqm_ocr": 73.3, - "price": 2250.0, - "price_per_sqm": 30.695770804911323, - "url": "https://www.rightmove.co.uk/properties/162196142", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "JBrown", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239306/162196142/239306_6711_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.408270", - "last_seen": "2025-06-01T22:06:04.896442", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069506, - 51.48999 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.9, - "qmprice": 41.98, - "rooms": 2, - "total_price": 3228.0, - "url": "https://www.rightmove.co.uk/properties/162196217", - "info": { - "identifier": 162196217, - "sqm_ocr": 76.9, - "price": 3228.0, - "price_per_sqm": 41.97659297789337, - "url": "https://www.rightmove.co.uk/properties/162196217", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212384/162196217/212384_P161006_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.099053", - "last_seen": "2025-06-01T22:06:09.230266", - "price": 3228 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05613, - 51.51828 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.1, - "qmprice": 52.16, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162196229", - "info": { - "identifier": 162196229, - "sqm_ocr": 67.1, - "price": 3500.0, - "price_per_sqm": 52.16095380029807, - "url": "https://www.rightmove.co.uk/properties/162196229", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/162196229/15966_1327025_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.615814", - "last_seen": "2025-06-01T22:06:12.711956", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17811, - 51.4686 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 36.99, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162196343", - "info": { - "identifier": 162196343, - "sqm_ocr": 73.0, - "price": 2700.0, - "price_per_sqm": 36.986301369863014, - "url": "https://www.rightmove.co.uk/properties/162196343", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Neptune Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/277k/276332/162196343/276332_C407-3BED-16_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.891347", - "last_seen": "2025-06-01T22:06:00.994382", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04098, - 51.48483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.59, - "qmprice": 25.71, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162196388", - "info": { - "identifier": 162196388, - "sqm_ocr": 120.59, - "price": 3100.0, - "price_per_sqm": 25.70694087403599, - "url": "https://www.rightmove.co.uk/properties/162196388", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162196388/249341_LUX306_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.298530", - "last_seen": "2025-06-01T20:19:59.569410", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068369, - 51.509937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.9, - "qmprice": 29.46, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162196541", - "info": { - "identifier": 162196541, - "sqm_ocr": 67.9, - "price": 2000.0, - "price_per_sqm": 29.455081001472752, - "url": "https://www.rightmove.co.uk/properties/162196541", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Letio Ltd", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260273/162196541/260273_L209_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.326653", - "last_seen": "2025-06-01T22:06:08.694876", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056259, - 51.509876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162196874", - "info": { - "identifier": 162196874, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162196874", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Discover Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/185k/184304/162196874/184304_brentcross223_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.246644", - "last_seen": "2025-06-01T22:05:39.137744", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21417, - 51.57556 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 36.11, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162197081", - "info": { - "identifier": 162197081, - "sqm_ocr": 72.0, - "price": 2600.0, - "price_per_sqm": 36.111111111111114, - "url": "https://www.rightmove.co.uk/properties/162197081", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Brithomes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275363/162197081/275363_100000020052025_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.431438", - "last_seen": "2025-06-01T22:05:40.885125", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28346, - 51.54053 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 42.0, - "rooms": 2, - "total_price": 2730.0, - "url": "https://www.rightmove.co.uk/properties/162197711", - "info": { - "identifier": 162197711, - "sqm_ocr": 65.0, - "price": 2730.0, - "price_per_sqm": 42.0, - "url": "https://www.rightmove.co.uk/properties/162197711", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/162197711/29861_33897841_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.120428", - "last_seen": "2025-06-01T22:05:40.748238", - "price": 2730 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.275847, - 51.559784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.6, - "qmprice": 23.49, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162197810", - "info": { - "identifier": 162197810, - "sqm_ocr": 125.6, - "price": 2950.0, - "price_per_sqm": 23.487261146496817, - "url": "https://www.rightmove.co.uk/properties/162197810", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Cameron Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36963/162197810/36963_33897844_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.560541", - "last_seen": "2025-06-01T22:05:51.277163", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.479497, - 51.538204 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162197978", - "info": { - "identifier": 162197978, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162197978", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162197978/257522_0021-grace-RUwfzt_IMG_03_0000_max_656x437.png", - "let_date_available": "04/12/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.482731", - "last_seen": "2025-06-01T22:05:40.782744", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28391, - 51.55943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.17, - "qmprice": 48.38, - "rooms": 2, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/162197987", - "info": { - "identifier": 162197987, - "sqm_ocr": 68.17, - "price": 3298.0, - "price_per_sqm": 48.37905236907731, - "url": "https://www.rightmove.co.uk/properties/162197987", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36789/162197987/36789_NEL250152_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.627981", - "last_seen": "2025-06-01T22:05:42.602726", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153152, - 51.54433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.0, - "qmprice": 26.32, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162197990", - "info": { - "identifier": 162197990, - "sqm_ocr": 114.0, - "price": 3000.0, - "price_per_sqm": 26.31578947368421, - "url": "https://www.rightmove.co.uk/properties/162197990", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "GREEN VIEW PROPERTY GROUP", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284939/162197990/284939_YRW-62427317_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.057369", - "last_seen": "2025-06-01T22:05:44.579268", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.268994, - 51.513435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.5, - "qmprice": 28.07, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162198281", - "info": { - "identifier": 162198281, - "sqm_ocr": 85.5, - "price": 2400.0, - "price_per_sqm": 28.07017543859649, - "url": "https://www.rightmove.co.uk/properties/162198281", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57985/162198281/57985_KCW252007_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.961123", - "last_seen": "2025-06-01T22:06:00.834631", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037897, - 51.49225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162198488", - "info": { - "identifier": 162198488, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162198488", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162198488/257522_0022-grace-RUwfzt_IMG_06_0000_max_656x437.png", - "let_date_available": "04/12/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.803104", - "last_seen": "2025-06-01T22:05:40.525999", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28391, - 51.55943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.43, - "qmprice": 29.52, - "rooms": 2, - "total_price": 2847.0, - "url": "https://www.rightmove.co.uk/properties/162198500", - "info": { - "identifier": 162198500, - "sqm_ocr": 96.43, - "price": 2847.0, - "price_per_sqm": 29.52400705174738, - "url": "https://www.rightmove.co.uk/properties/162198500", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Goldschmidt & Howland", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73968/162198500/73968_2713806_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.902875", - "last_seen": "2025-06-01T22:05:39.634238", - "price": 2847 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19703, - 51.57836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162198512", - "info": { - "identifier": 162198512, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162198512", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117907/162198512/117907_33897891_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.597357", - "last_seen": "2025-06-01T22:05:51.563481", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.476346, - 51.53472 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 38.75, - "rooms": 2, - "total_price": 2480.0, - "url": "https://www.rightmove.co.uk/properties/162198515", - "info": { - "identifier": 162198515, - "sqm_ocr": 64.0, - "price": 2480.0, - "price_per_sqm": 38.75, - "url": "https://www.rightmove.co.uk/properties/162198515", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Neptune Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/277k/276332/162198515/276332_C306-2BEDFULL-27_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.035674", - "last_seen": "2025-06-01T22:06:00.886306", - "price": 2480.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04098, - 51.48483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.64, - "qmprice": 57.35, - "rooms": 3, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/162198695", - "info": { - "identifier": 162198695, - "sqm_ocr": 63.64, - "price": 3650.0, - "price_per_sqm": 57.35386549340038, - "url": "https://www.rightmove.co.uk/properties/162198695", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44645/162198695/44645_FUL230176_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.568921", - "last_seen": "2025-06-01T22:05:49.029783", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206397, - 51.491425 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.1, - "qmprice": 57.8, - "rooms": 3, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/162199334", - "info": { - "identifier": 162199334, - "sqm_ocr": 58.1, - "price": 3358.0, - "price_per_sqm": 57.79690189328743, - "url": "https://www.rightmove.co.uk/properties/162199334", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32391/162199334/32391_33897956_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.460748", - "last_seen": "2025-06-01T22:05:42.816069", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123415, - 51.525967 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.49, - "qmprice": 27.23, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162199532", - "info": { - "identifier": 162199532, - "sqm_ocr": 95.49, - "price": 2600.0, - "price_per_sqm": 27.227981987642686, - "url": "https://www.rightmove.co.uk/properties/162199532", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Goldman Greg Housing Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/226k/225413/162199532/225413_33897968_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.136456", - "last_seen": "2025-06-01T22:05:38.968324", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16705, - 51.646927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.3, - "qmprice": 36.65, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162199799", - "info": { - "identifier": 162199799, - "sqm_ocr": 72.3, - "price": 2650.0, - "price_per_sqm": 36.652835408022135, - "url": "https://www.rightmove.co.uk/properties/162199799", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/162199799/95098_P301063_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.805469", - "last_seen": "2025-06-01T22:06:02.815771", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02984, - 51.49969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.43, - "qmprice": 40.92, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162199940", - "info": { - "identifier": 162199940, - "sqm_ocr": 79.43, - "price": 3250.0, - "price_per_sqm": 40.9165302782324, - "url": "https://www.rightmove.co.uk/properties/162199940", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162199940/26207_HEA203588_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.949254", - "last_seen": "2025-06-01T22:05:56.910585", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104275, - 51.54285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 44.03, - "rooms": 2, - "total_price": 2730.0, - "url": "https://www.rightmove.co.uk/properties/162199973", - "info": { - "identifier": 162199973, - "sqm_ocr": 62.0, - "price": 2730.0, - "price_per_sqm": 44.03225806451613, - "url": "https://www.rightmove.co.uk/properties/162199973", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/162199973/29861_33897995_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.073187", - "last_seen": "2025-06-01T22:05:40.113298", - "price": 2730 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276448, - 51.560642 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.6, - "qmprice": 34.24, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162199976", - "info": { - "identifier": 162199976, - "sqm_ocr": 87.6, - "price": 2999.0, - "price_per_sqm": 34.2351598173516, - "url": "https://www.rightmove.co.uk/properties/162199976", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55362/162199976/55362_33897994_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.126250", - "last_seen": "2025-06-01T22:06:14.378928", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183324, - 51.517426 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 39.71, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162200222", - "info": { - "identifier": 162200222, - "sqm_ocr": 68.0, - "price": 2700.0, - "price_per_sqm": 39.705882352941174, - "url": "https://www.rightmove.co.uk/properties/162200222", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246848/162200222/246848_BEL210326_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.640105", - "last_seen": "2025-06-01T22:06:05.406324", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075634, - 51.496765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.2, - "qmprice": 36.58, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162200684", - "info": { - "identifier": 162200684, - "sqm_ocr": 62.2, - "price": 2275.0, - "price_per_sqm": 36.57556270096463, - "url": "https://www.rightmove.co.uk/properties/162200684", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33140/162200684/33140_HAM130517_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.510456", - "last_seen": "2025-06-01T22:05:49.184196", - "price": 2275 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211851, - 51.49855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162200822", - "info": { - "identifier": 162200822, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162200822", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Everyagent UK Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265154/162200822/265154_14_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.514287", - "last_seen": "2025-06-01T22:05:57.810038", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19519, - 51.49362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.6, - "qmprice": 40.06, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/162200834", - "info": { - "identifier": 162200834, - "sqm_ocr": 67.6, - "price": 2708.0, - "price_per_sqm": 40.05917159763314, - "url": "https://www.rightmove.co.uk/properties/162200834", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/162200834/97423_CEI250315_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:40.599151", - "last_seen": "2025-06-01T22:06:09.708918", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064538, - 51.51586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162200873", - "info": { - "identifier": 162200873, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162200873", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jaffe Properties LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76282/162200873/76282_29082457_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.381123", - "last_seen": "2025-06-01T22:05:42.376689", - "price": 2275 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189471, - 51.542397 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.8, - "qmprice": 44.31, - "rooms": 2, - "total_price": 3359.0, - "url": "https://www.rightmove.co.uk/properties/162201179", - "info": { - "identifier": 162201179, - "sqm_ocr": 75.8, - "price": 3359.0, - "price_per_sqm": 44.31398416886544, - "url": "https://www.rightmove.co.uk/properties/162201179", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/162201179/108515_1327103_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.332561", - "last_seen": "2025-06-01T22:05:58.349319", - "price": 3359.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193044, - 51.488934 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162201218", - "info": { - "identifier": 162201218, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162201218", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Roundtree Real Estate", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46965/162201218/46965_57837_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.516789", - "last_seen": "2025-06-01T22:05:40.798976", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218758, - 51.5495 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162201737", - "info": { - "identifier": 162201737, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162201737", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85129/162201737/85129_ECL160052_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.976753", - "last_seen": "2025-06-01T22:05:58.031349", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192491, - 51.493378 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3207.0, - "url": "https://www.rightmove.co.uk/properties/162201827", - "info": { - "identifier": 162201827, - "sqm_ocr": null, - "price": 3207.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162201827", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Battersea & Nine Elms Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143171/162201827/143171_33898107_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.322033", - "last_seen": "2025-06-01T22:06:12.574175", - "price": 3206 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135136, - 51.479683 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 39.18, - "rooms": 2, - "total_price": 2860.0, - "url": "https://www.rightmove.co.uk/properties/162202472", - "info": { - "identifier": 162202472, - "sqm_ocr": 73.0, - "price": 2860.0, - "price_per_sqm": 39.178082191780824, - "url": "https://www.rightmove.co.uk/properties/162202472", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/162202472/29861_33898141_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.783547", - "last_seen": "2025-06-01T22:05:41.154822", - "price": 2860 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279171, - 51.560806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.8, - "qmprice": 47.77, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162202601", - "info": { - "identifier": 162202601, - "sqm_ocr": 62.8, - "price": 3000.0, - "price_per_sqm": 47.77070063694268, - "url": "https://www.rightmove.co.uk/properties/162202601", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58000/162202601/58000_KEO250003_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.605710", - "last_seen": "2025-06-01T22:06:01.289646", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202069, - 51.416756 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162202694", - "info": { - "identifier": 162202694, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162202694", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/162202694/264404_RX579992_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.659273", - "last_seen": "2025-06-01T22:06:05.520736", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065212, - 51.485023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162202697", - "info": { - "identifier": 162202697, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162202697", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162202697/43310_CWL250216_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.827859", - "last_seen": "2025-06-01T22:05:46.301102", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.070826, - 51.492264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.7, - "qmprice": 41.59, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162202934", - "info": { - "identifier": 162202934, - "sqm_ocr": 57.7, - "price": 2400.0, - "price_per_sqm": 41.59445407279029, - "url": "https://www.rightmove.co.uk/properties/162202934", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72056/162202934/72056_33898162_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.382979", - "last_seen": "2025-06-01T22:06:12.671830", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.156844, - 51.4307 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162202952", - "info": { - "identifier": 162202952, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162202952", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Becker & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76631/162202952/76631_holdershilldrive_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.536220", - "last_seen": "2025-06-01T22:05:38.697378", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21133, - 51.59647 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.9, - "qmprice": 20.61, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162202979", - "info": { - "identifier": 162202979, - "sqm_ocr": 101.9, - "price": 2100.0, - "price_per_sqm": 20.608439646712462, - "url": "https://www.rightmove.co.uk/properties/162202979", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "iMove Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80566/162202979/80566_1146_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.938519", - "last_seen": "2025-06-01T22:06:00.501321", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016735, - 51.42437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162202985", - "info": { - "identifier": 162202985, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162202985", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Leonard Leese", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35405/162202985/35405_33898166_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.549967", - "last_seen": "2025-06-01T22:06:05.303872", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092168, - 51.499767 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162203057", - "info": { - "identifier": 162203057, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162203057", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94232/162203057/94232_P301069_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.174853", - "last_seen": "2025-06-01T22:06:04.591209", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32073, - 51.42894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.0, - "qmprice": 65.93, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162203411", - "info": { - "identifier": 162203411, - "sqm_ocr": 46.0, - "price": 3033.0, - "price_per_sqm": 65.93478260869566, - "url": "https://www.rightmove.co.uk/properties/162203411", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Sandfords", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151142/162203411/151142_RPL200079_L_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.073362", - "last_seen": "2025-06-01T22:06:16.049903", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165104, - 51.519634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162203438", - "info": { - "identifier": 162203438, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162203438", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/162203438/176261_102708042664_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.769443", - "last_seen": "2025-06-01T22:05:50.178170", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14185, - 51.57237 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 30.1, - "qmprice": 69.77, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162203528", - "info": { - "identifier": 162203528, - "sqm_ocr": 30.1, - "price": 2100.0, - "price_per_sqm": 69.76744186046511, - "url": "https://www.rightmove.co.uk/properties/162203528", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Sandra Davidson Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13342/162203528/13342_33898217_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.750362", - "last_seen": "2025-06-01T22:06:03.037429", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.065501, - 51.552876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162203552", - "info": { - "identifier": 162203552, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162203552", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Andrews Letting and Management", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34352/162203552/34352_ROM250035_L_IMG_19_0001_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.230883", - "last_seen": "2025-06-01T22:05:51.007618", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.167501, - 51.572716 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.81, - "qmprice": 47.59, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/162203561", - "info": { - "identifier": 162203561, - "sqm_ocr": 58.81, - "price": 2799.0, - "price_per_sqm": 47.59394660771977, - "url": "https://www.rightmove.co.uk/properties/162203561", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Goldschmidt & Howland", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73968/162203561/73968_2713809_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.131776", - "last_seen": "2025-06-01T22:05:39.474051", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19703, - 51.57836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2968.0, - "url": "https://www.rightmove.co.uk/properties/162203783", - "info": { - "identifier": 162203783, - "sqm_ocr": null, - "price": 2968.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162203783", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/162203783/105856_3276_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.559772", - "last_seen": "2025-06-01T22:06:05.678521", - "price": 2968 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091313, - 51.499187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162203927", - "info": { - "identifier": 162203927, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162203927", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/162203927/105856_3432_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.107985", - "last_seen": "2025-06-01T22:06:06.130754", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089712, - 51.4917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162203981", - "info": { - "identifier": 162203981, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162203981", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162203981/43310_CWL240334_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.147013", - "last_seen": "2025-06-01T22:06:10.536828", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056499, - 51.518185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.69, - "qmprice": 54.09, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162204026", - "info": { - "identifier": 162204026, - "sqm_ocr": 63.69, - "price": 3445.0, - "price_per_sqm": 54.09012403831057, - "url": "https://www.rightmove.co.uk/properties/162204026", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86071/162204026/86071_BAQ012537795_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.685252", - "last_seen": "2025-06-01T22:06:13.908195", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148194, - 51.480278 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3560.0, - "url": "https://www.rightmove.co.uk/properties/162204206", - "info": { - "identifier": 162204206, - "sqm_ocr": null, - "price": 3560.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162204206", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94232/162204206/94232_P300883_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.236853", - "last_seen": "2025-06-01T22:06:04.681033", - "price": 3560.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32073, - 51.42894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.4, - "qmprice": 22.82, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162204326", - "info": { - "identifier": 162204326, - "sqm_ocr": 96.4, - "price": 2200.0, - "price_per_sqm": 22.821576763485474, - "url": "https://www.rightmove.co.uk/properties/162204326", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46992/162204326/46992_33898275_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.386324", - "last_seen": "2025-06-01T22:05:51.111681", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.478747, - 51.53977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162204620", - "info": { - "identifier": 162204620, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162204620", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157376/162204620/157376_33838967_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.902378", - "last_seen": "2025-06-01T22:05:47.718779", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07896, - 51.52738 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162204872", - "info": { - "identifier": 162204872, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162204872", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "Hausman & Holmes", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166823/162204872/166823_1318_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.083322", - "last_seen": "2025-06-01T22:05:38.974984", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23365, - 51.57936 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 39.68, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162204932", - "info": { - "identifier": 162204932, - "sqm_ocr": 63.0, - "price": 2500.0, - "price_per_sqm": 39.682539682539684, - "url": "https://www.rightmove.co.uk/properties/162204932", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3721/162204932/3721_WIL240032_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.463557", - "last_seen": "2025-06-01T22:06:01.743630", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216231, - 51.42361 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162204962", - "info": { - "identifier": 162204962, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162204962", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Excel Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99425/162204962/99425_102708041267_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.702073", - "last_seen": "2025-06-01T22:05:39.321638", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19425, - 51.56114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.0, - "qmprice": 47.0, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162205019", - "info": { - "identifier": 162205019, - "sqm_ocr": 50.0, - "price": 2350.0, - "price_per_sqm": 47.0, - "url": "https://www.rightmove.co.uk/properties/162205019", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246848/162205019/246848_BEL210275_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.399127", - "last_seen": "2025-06-01T22:06:06.024371", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087548, - 51.499836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.7, - "qmprice": 41.51, - "rooms": 2, - "total_price": 3599.0, - "url": "https://www.rightmove.co.uk/properties/162205097", - "info": { - "identifier": 162205097, - "sqm_ocr": 86.7, - "price": 3599.0, - "price_per_sqm": 41.51095732410611, - "url": "https://www.rightmove.co.uk/properties/162205097", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118930/162205097/118930_KGQ012532430_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.351081", - "last_seen": "2025-06-01T22:05:42.444589", - "price": 3599.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120925, - 51.529522 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162205100", - "info": { - "identifier": 162205100, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162205100", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Fraser & Co", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20990/162205100/20990_BKL110023_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.858830", - "last_seen": "2025-06-01T22:06:15.134526", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139672, - 51.518677 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 41.77, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162205103", - "info": { - "identifier": 162205103, - "sqm_ocr": 83.0, - "price": 3467.0, - "price_per_sqm": 41.7710843373494, - "url": "https://www.rightmove.co.uk/properties/162205103", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/162205103/212327_P161013_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.106007", - "last_seen": "2025-06-01T22:06:09.348946", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01354, - 51.50003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 41.03, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162205124", - "info": { - "identifier": 162205124, - "sqm_ocr": 78.0, - "price": 3200.0, - "price_per_sqm": 41.02564102564103, - "url": "https://www.rightmove.co.uk/properties/162205124", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162205124/257522_34tryon-richard-RLd9dX_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.730052", - "last_seen": "2025-06-01T22:05:58.842450", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30351, - 51.40846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.4, - "qmprice": 32.72, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162205220", - "info": { - "identifier": 162205220, - "sqm_ocr": 76.4, - "price": 2500.0, - "price_per_sqm": 32.72251308900523, - "url": "https://www.rightmove.co.uk/properties/162205220", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Tate Partnership", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55372/162205220/55372_101593001099_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.000355", - "last_seen": "2025-06-01T22:05:52.692645", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24951, - 51.49336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162205253", - "info": { - "identifier": 162205253, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162205253", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Wilson Hawkins", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286241/162205253/286241_8932d776-df0f-4af6-ae40-c6e699965aa7_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.552236", - "last_seen": "2025-06-01T22:05:40.778812", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26593, - 51.56923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/162205781", - "info": { - "identifier": 162205781, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162205781", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/162205781/84788_33898397_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.989383", - "last_seen": "2025-06-01T22:05:44.779883", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267915, - 51.494892 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162205832", - "info": { - "identifier": 162205832, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162205832", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Streets Ahead", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58139/162205832/58139_RPT100146_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.685706", - "last_seen": "2025-06-01T22:05:43.395022", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113569, - 51.33845 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.8, - "qmprice": 39.24, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162206486", - "info": { - "identifier": 162206486, - "sqm_ocr": 68.8, - "price": 2700.0, - "price_per_sqm": 39.24418604651163, - "url": "https://www.rightmove.co.uk/properties/162206486", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113191/162206486/113191_33898445_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.858902", - "last_seen": "2025-06-01T22:05:47.789910", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058234, - 51.550163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.2, - "qmprice": 29.09, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162206660", - "info": { - "identifier": 162206660, - "sqm_ocr": 72.2, - "price": 2100.0, - "price_per_sqm": 29.085872576177284, - "url": "https://www.rightmove.co.uk/properties/162206660", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57287/162206660/57287_1326702_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.516477", - "last_seen": "2025-06-01T22:06:05.739323", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069344, - 51.443745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162206825", - "info": { - "identifier": 162206825, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162206825", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/162206825/176261_102708020955_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.466437", - "last_seen": "2025-06-01T22:05:49.886758", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12507, - 51.58037 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2086.0, - "url": "https://www.rightmove.co.uk/properties/162206852", - "info": { - "identifier": 162206852, - "sqm_ocr": null, - "price": 2086.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162206852", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/256k/255365/162206852/255365_P161016_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.943144", - "last_seen": "2025-06-01T22:05:50.573759", - "price": 2086.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3364, - 51.57969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162206927", - "info": { - "identifier": 162206927, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162206927", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162206927/238769_casper2bedacton20052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.330870", - "last_seen": "2025-06-01T22:05:44.979329", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25116, - 51.51416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.4, - "qmprice": 32.16, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162206945", - "info": { - "identifier": 162206945, - "sqm_ocr": 68.4, - "price": 2200.0, - "price_per_sqm": 32.16374269005848, - "url": "https://www.rightmove.co.uk/properties/162206945", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Dimension Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87953/162206945/87953_3186_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.817109", - "last_seen": "2025-06-01T20:19:56.576830", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043834, - 51.526054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162207374", - "info": { - "identifier": 162207374, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162207374", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19059/162207374/19059_14e1fc5a-55f1-4035-b9c9-003291149dcf_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.049906", - "last_seen": "2025-06-01T22:05:50.342768", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3221, - 51.589607 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.3, - "qmprice": 53.94, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162207440", - "info": { - "identifier": 162207440, - "sqm_ocr": 72.3, - "price": 3900.0, - "price_per_sqm": 53.941908713692946, - "url": "https://www.rightmove.co.uk/properties/162207440", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/162207440/111050_1327137_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.818599", - "last_seen": "2025-06-01T22:06:14.100155", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167597, - 51.425613 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.3, - "qmprice": 33.2, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162207452", - "info": { - "identifier": 162207452, - "sqm_ocr": 72.3, - "price": 2400.0, - "price_per_sqm": 33.19502074688797, - "url": "https://www.rightmove.co.uk/properties/162207452", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/162207452/111050_1327136_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.830225", - "last_seen": "2025-06-01T22:06:14.108496", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167597, - 51.425613 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.14, - "qmprice": 49.86, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/162207506", - "info": { - "identifier": 162207506, - "sqm_ocr": 72.14, - "price": 3597.0, - "price_per_sqm": 49.86138064873856, - "url": "https://www.rightmove.co.uk/properties/162207506", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Mayfords Estate Agent", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/227k/226394/162207506/226394_576_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.045291", - "last_seen": "2025-06-01T22:06:10.729071", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014041, - 51.502472 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.2, - "qmprice": 34.3, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162207539", - "info": { - "identifier": 162207539, - "sqm_ocr": 96.2, - "price": 3300.0, - "price_per_sqm": 34.3035343035343, - "url": "https://www.rightmove.co.uk/properties/162207539", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/162207539/57272_1327129_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.618172", - "last_seen": "2025-06-01T22:05:58.757642", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297817, - 51.405598 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.7, - "qmprice": 42.5, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162207752", - "info": { - "identifier": 162207752, - "sqm_ocr": 84.7, - "price": 3600.0, - "price_per_sqm": 42.502951593860686, - "url": "https://www.rightmove.co.uk/properties/162207752", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162207752/26207_IUL250044_L_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.378441", - "last_seen": "2025-06-01T22:05:47.571096", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.078366, - 51.52294 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.51, - "qmprice": 41.02, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162207794", - "info": { - "identifier": 162207794, - "sqm_ocr": 97.51, - "price": 4000.0, - "price_per_sqm": 41.02143369910778, - "url": "https://www.rightmove.co.uk/properties/162207794", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Circa London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77406/162207794/77406_2713830_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.093530", - "last_seen": "2025-06-01T22:05:53.476374", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08628, - 51.52453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 40.26, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/162208253", - "info": { - "identifier": 162208253, - "sqm_ocr": 62.0, - "price": 2496.0, - "price_per_sqm": 40.25806451612903, - "url": "https://www.rightmove.co.uk/properties/162208253", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39741/162208253/39741_33890201_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.403976", - "last_seen": "2025-06-01T22:06:15.763966", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194883, - 51.526817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162208403", - "info": { - "identifier": 162208403, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162208403", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Church's", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77503/162208403/77503_272_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.085231", - "last_seen": "2025-06-01T22:05:45.667649", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08553, - 51.62137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.2, - "qmprice": 32.74, - "rooms": 2, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162208493", - "info": { - "identifier": 162208493, - "sqm_ocr": 76.2, - "price": 2495.0, - "price_per_sqm": 32.74278215223097, - "url": "https://www.rightmove.co.uk/properties/162208493", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Surrey Quays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60474/162208493/60474_20051705AW_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.137630", - "last_seen": "2025-06-01T22:06:00.585423", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03637, - 51.49179 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 142.5, - "qmprice": 19.3, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162208787", - "info": { - "identifier": 162208787, - "sqm_ocr": 142.5, - "price": 2750.0, - "price_per_sqm": 19.29824561403509, - "url": "https://www.rightmove.co.uk/properties/162208787", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Conran Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17516/162208787/17516_CHA120102_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.356283", - "last_seen": "2025-06-01T22:05:46.216394", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.027759, - 51.48459 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.8, - "qmprice": 31.8, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162208952", - "info": { - "identifier": 162208952, - "sqm_ocr": 125.8, - "price": 4000.0, - "price_per_sqm": 31.79650238473768, - "url": "https://www.rightmove.co.uk/properties/162208952", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238829/162208952/238829_33898586_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.449654", - "last_seen": "2025-06-01T22:06:01.335751", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159898, - 51.409573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/162209132", - "info": { - "identifier": 162209132, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162209132", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22251/162209132/22251_CHL230062_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.243462", - "last_seen": "2025-06-01T22:05:57.462178", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182034, - 51.482464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162209267", - "info": { - "identifier": 162209267, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162209267", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30584/162209267/30584_05350252_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.663420", - "last_seen": "2025-06-01T22:05:58.943215", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.306, - 51.397 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.9, - "qmprice": 28.6, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162209624", - "info": { - "identifier": 162209624, - "sqm_ocr": 97.9, - "price": 2800.0, - "price_per_sqm": 28.60061287027579, - "url": "https://www.rightmove.co.uk/properties/162209624", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79825/162209624/79825_P301083_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.029217", - "last_seen": "2025-06-01T22:05:45.863322", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1174, - 51.61586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.78, - "qmprice": 35.61, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162209885", - "info": { - "identifier": 162209885, - "sqm_ocr": 61.78, - "price": 2200.0, - "price_per_sqm": 35.6102298478472, - "url": "https://www.rightmove.co.uk/properties/162209885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263693/162209885/263693_CDL240205_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.952617", - "last_seen": "2025-06-01T22:06:00.523587", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.049831, - 51.48835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.3, - "qmprice": 59.24, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162209888", - "info": { - "identifier": 162209888, - "sqm_ocr": 63.3, - "price": 3750.0, - "price_per_sqm": 59.241706161137444, - "url": "https://www.rightmove.co.uk/properties/162209888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162209888/26207_IUL120430_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.745166", - "last_seen": "2025-06-01T22:05:53.238057", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095321, - 51.550465 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162209921", - "info": { - "identifier": 162209921, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162209921", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84812/162209921/84812_33898663_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.667348", - "last_seen": "2025-06-01T22:05:58.516188", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.291924, - 51.374634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.1, - "qmprice": 32.73, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162210404", - "info": { - "identifier": 162210404, - "sqm_ocr": 61.1, - "price": 2000.0, - "price_per_sqm": 32.733224222585925, - "url": "https://www.rightmove.co.uk/properties/162210404", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "gLocalAgents.co.uk", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176603/162210404/176603_13208_EAF_142222_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.640906", - "last_seen": "2025-06-01T22:06:07.402915", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00875, - 51.54156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.9, - "qmprice": 46.42, - "rooms": 3, - "total_price": 3848.0, - "url": "https://www.rightmove.co.uk/properties/162210590", - "info": { - "identifier": 162210590, - "sqm_ocr": 82.9, - "price": 3848.0, - "price_per_sqm": 46.417370325693604, - "url": "https://www.rightmove.co.uk/properties/162210590", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55362/162210590/55362_33898718_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.014107", - "last_seen": "2025-06-01T22:06:15.996071", - "price": 3848 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182167, - 51.516636 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 33.91, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162210662", - "info": { - "identifier": 162210662, - "sqm_ocr": 69.3, - "price": 2350.0, - "price_per_sqm": 33.910533910533914, - "url": "https://www.rightmove.co.uk/properties/162210662", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212357/162210662/212357_P160838_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.219796", - "last_seen": "2025-06-01T22:05:46.613257", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01044, - 51.482 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.6, - "qmprice": 32.69, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162210704", - "info": { - "identifier": 162210704, - "sqm_ocr": 82.6, - "price": 2700.0, - "price_per_sqm": 32.68765133171913, - "url": "https://www.rightmove.co.uk/properties/162210704", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65794/162210704/65794_33898724_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.435616", - "last_seen": "2025-06-01T22:06:12.750533", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183916, - 51.44116 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 42.13, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162210761", - "info": { - "identifier": 162210761, - "sqm_ocr": 89.0, - "price": 3750.0, - "price_per_sqm": 42.13483146067416, - "url": "https://www.rightmove.co.uk/properties/162210761", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "McMahon & Partners", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65019/162210761/65019_16_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.589537", - "last_seen": "2025-06-01T22:06:05.347933", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091678, - 51.500946 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 41.41, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162210932", - "info": { - "identifier": 162210932, - "sqm_ocr": 64.0, - "price": 2650.0, - "price_per_sqm": 41.40625, - "url": "https://www.rightmove.co.uk/properties/162210932", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95869/162210932/95869_SHO160227_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.017605", - "last_seen": "2025-06-01T22:06:08.397844", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073553, - 51.529686 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162211046", - "info": { - "identifier": 162211046, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162211046", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kevin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278792/162211046/278792_HC07_IMG_00_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.069492", - "last_seen": "2025-06-01T22:05:38.142384", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.11622, - 51.53913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/162211169", - "info": { - "identifier": 162211169, - "sqm_ocr": null, - "price": 2708.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162211169", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Homesforth Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280625/162211169/280625_HOMFR_000215_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.846495", - "last_seen": "2025-06-01T22:05:40.562603", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202287, - 51.543423 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162211295", - "info": { - "identifier": 162211295, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162211295", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Surrey Quays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60474/162211295/60474_17412005AW_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.292725", - "last_seen": "2025-06-01T22:05:47.107727", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00205, - 51.48754 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162211553", - "info": { - "identifier": 162211553, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162211553", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210101/162211553/210101_P301084_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.406675", - "last_seen": "2025-06-01T22:05:47.525667", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05666, - 51.54086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.63, - "qmprice": 23.63, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162211601", - "info": { - "identifier": 162211601, - "sqm_ocr": 84.63, - "price": 2000.0, - "price_per_sqm": 23.632281696797826, - "url": "https://www.rightmove.co.uk/properties/162211601", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "GCP", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/196k/195305/162211601/195305_56ak_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.189166", - "last_seen": "2025-06-01T22:05:52.239577", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32431, - 51.48456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.18, - "qmprice": 39.25, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162211625", - "info": { - "identifier": 162211625, - "sqm_ocr": 89.18, - "price": 3500.0, - "price_per_sqm": 39.24646781789639, - "url": "https://www.rightmove.co.uk/properties/162211625", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Property Inc", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191252/162211625/191252_PRI250102_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.392300", - "last_seen": "2025-06-01T22:06:07.852237", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232377, - 51.37545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2499.0, - "url": "https://www.rightmove.co.uk/properties/162211685", - "info": { - "identifier": 162211685, - "sqm_ocr": null, - "price": 2499.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162211685", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Ak247 Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261134/162211685/261134_1205Menara_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.312845", - "last_seen": "2025-06-01T22:06:03.240193", - "price": 2499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02884, - 51.51019 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 129.0, - "qmprice": 29.07, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162211721", - "info": { - "identifier": 162211721, - "sqm_ocr": 129.0, - "price": 3750.0, - "price_per_sqm": 29.069767441860463, - "url": "https://www.rightmove.co.uk/properties/162211721", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66768/162211721/66768_1327146_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.151901", - "last_seen": "2025-06-01T22:06:06.116795", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073684, - 51.45343 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.5, - "qmprice": 44.83, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162211889", - "info": { - "identifier": 162211889, - "sqm_ocr": 72.5, - "price": 3250.0, - "price_per_sqm": 44.827586206896555, - "url": "https://www.rightmove.co.uk/properties/162211889", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/162211889/111050_1327140_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.406160", - "last_seen": "2025-06-01T22:06:12.720364", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163961, - 51.433704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162211904", - "info": { - "identifier": 162211904, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162211904", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Peter Michael Estates & Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25176/162211904/25176_1666_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.366686", - "last_seen": "2025-06-01T22:05:49.600623", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11459, - 51.58614 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 119.8, - "qmprice": 32.97, - "rooms": 3, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/162211907", - "info": { - "identifier": 162211907, - "sqm_ocr": 119.8, - "price": 3950.0, - "price_per_sqm": 32.97161936560935, - "url": "https://www.rightmove.co.uk/properties/162211907", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/162211907/15975_1327143_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.417324", - "last_seen": "2025-06-01T22:06:01.104783", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201774, - 51.435036 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162211925", - "info": { - "identifier": 162211925, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162211925", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/162211925/87812_1327038_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.450033", - "last_seen": "2025-06-01T22:05:57.038846", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247962, - 51.595608 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.2, - "qmprice": 24.71, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162211937", - "info": { - "identifier": 162211937, - "sqm_ocr": 105.2, - "price": 2600.0, - "price_per_sqm": 24.714828897338403, - "url": "https://www.rightmove.co.uk/properties/162211937", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/162211937/227810_1327125_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.369424", - "last_seen": "2025-06-01T22:05:56.813717", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.071807, - 51.493866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162211946", - "info": { - "identifier": 162211946, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162211946", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Sheraton Management Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77739/162211946/77739_825f61a745da293ba08f38c88d62df6f5248d09994037f55_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.152079", - "last_seen": "2025-06-01T22:05:56.632939", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207215, - 51.48783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 122.5, - "qmprice": 27.76, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162212255", - "info": { - "identifier": 162212255, - "sqm_ocr": 122.5, - "price": 3400.0, - "price_per_sqm": 27.755102040816325, - "url": "https://www.rightmove.co.uk/properties/162212255", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47660/162212255/47660_33898082_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.190573", - "last_seen": "2025-06-01T22:05:38.803751", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169515, - 51.58937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.2, - "qmprice": 51.72, - "rooms": 2, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/162212258", - "info": { - "identifier": 162212258, - "sqm_ocr": 51.2, - "price": 2648.0, - "price_per_sqm": 51.71875, - "url": "https://www.rightmove.co.uk/properties/162212258", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48695/162212258/48695_33898803_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.313028", - "last_seen": "2025-06-01T22:06:15.081256", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174691, - 51.53481 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.48, - "qmprice": 34.85, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162212297", - "info": { - "identifier": 162212297, - "sqm_ocr": 77.48, - "price": 2700.0, - "price_per_sqm": 34.84770263293753, - "url": "https://www.rightmove.co.uk/properties/162212297", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/162212297/82537_33898806_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.016199", - "last_seen": "2025-06-01T22:06:08.424418", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018096, - 51.498302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3094.0, - "url": "https://www.rightmove.co.uk/properties/162212417", - "info": { - "identifier": 162212417, - "sqm_ocr": null, - "price": 3094.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162212417", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Letting Engine", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257840/162212417/257840_707_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.511481", - "last_seen": "2025-06-01T22:05:53.814153", - "price": 3094.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129418, - 51.55012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.4, - "qmprice": 56.02, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162212612", - "info": { - "identifier": 162212612, - "sqm_ocr": 71.4, - "price": 4000.0, - "price_per_sqm": 56.02240896358543, - "url": "https://www.rightmove.co.uk/properties/162212612", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/162212612/51465_682c4a4eb27e1_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.922463", - "last_seen": "2025-06-01T22:06:13.259283", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213821, - 51.46376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.38, - "qmprice": 56.82, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162212723", - "info": { - "identifier": 162212723, - "sqm_ocr": 53.38, - "price": 3033.0, - "price_per_sqm": 56.819033345822405, - "url": "https://www.rightmove.co.uk/properties/162212723", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63025/162212723/63025_CQL210107_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.037630", - "last_seen": "2025-06-01T22:05:43.184283", - "price": 3033.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133011, - 51.52163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.45, - "qmprice": 64.42, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162212726", - "info": { - "identifier": 162212726, - "sqm_ocr": 50.45, - "price": 3250.0, - "price_per_sqm": 64.42021803766104, - "url": "https://www.rightmove.co.uk/properties/162212726", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63025/162212726/63025_CQL210100_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.039180", - "last_seen": "2025-06-01T22:05:42.622141", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130849, - 51.51986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162212795", - "info": { - "identifier": 162212795, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162212795", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162212795/96668_248509515052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.687577", - "last_seen": "2025-06-01T22:06:13.920853", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169485, - 51.47233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162212837", - "info": { - "identifier": 162212837, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162212837", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162212837/96668_248706617052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.287214", - "last_seen": "2025-06-01T22:05:47.110114", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015658, - 51.48275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162212879", - "info": { - "identifier": 162212879, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162212879", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162212879/96668_246965101052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.185772", - "last_seen": "2025-06-01T20:20:02.645318", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168116, - 51.476044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162212915", - "info": { - "identifier": 162212915, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162212915", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162212915/96668_248970520052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.051676", - "last_seen": "2025-06-01T22:06:11.467828", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.032093, - 51.508537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162213041", - "info": { - "identifier": 162213041, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162213041", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162213041/96668_233051721122024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.134912", - "last_seen": "2025-06-01T22:05:44.541564", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.296562, - 51.528538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162213095", - "info": { - "identifier": 162213095, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162213095", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162213095/96668_245386916042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.169024", - "last_seen": "2025-06-01T22:06:13.360194", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174316, - 51.43039 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 28.17, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162213149", - "info": { - "identifier": 162213149, - "sqm_ocr": 71.0, - "price": 2000.0, - "price_per_sqm": 28.169014084507044, - "url": "https://www.rightmove.co.uk/properties/162213149", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162213149/96668_137103520042022_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.594847", - "last_seen": "2025-06-01T22:06:06.584106", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057593, - 51.48525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162213155", - "info": { - "identifier": 162213155, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162213155", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162213155/96668_249010820052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.552020", - "last_seen": "2025-06-01T22:05:43.666128", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104526, - 51.345085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162213164", - "info": { - "identifier": 162213164, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162213164", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Goodfellows", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/9k/8972/162213164/8972_GMO210481_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.349761", - "last_seen": "2025-06-01T22:06:07.854568", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20868, - 51.37417 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3241.0, - "url": "https://www.rightmove.co.uk/properties/162213371", - "info": { - "identifier": 162213371, - "sqm_ocr": null, - "price": 3241.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162213371", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "CHAMPS PROPERTY", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287132/162213371/287132_champs_1403379494_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.214081", - "last_seen": "2025-06-01T22:05:40.530311", - "price": 3241 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284953, - 51.541046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162213503", - "info": { - "identifier": 162213503, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162213503", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home World Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281402/162213503/281402_18932_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.210277", - "last_seen": "2025-06-01T22:06:10.437791", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05452, - 51.52239 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 129.7, - "qmprice": 25.06, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162213638", - "info": { - "identifier": 162213638, - "sqm_ocr": 129.7, - "price": 3250.0, - "price_per_sqm": 25.057825751734775, - "url": "https://www.rightmove.co.uk/properties/162213638", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/162213638/130309_1322557_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.689910", - "last_seen": "2025-06-01T22:05:43.397202", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084821, - 51.33732 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.7, - "qmprice": 46.28, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/162213662", - "info": { - "identifier": 162213662, - "sqm_ocr": 55.7, - "price": 2578.0, - "price_per_sqm": 46.283662477558345, - "url": "https://www.rightmove.co.uk/properties/162213662", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94643/162213662/94643_33898847_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.170877", - "last_seen": "2025-06-01T22:05:57.631738", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182675, - 51.48302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.5, - "qmprice": 37.93, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162213848", - "info": { - "identifier": 162213848, - "sqm_ocr": 72.5, - "price": 2750.0, - "price_per_sqm": 37.93103448275862, - "url": "https://www.rightmove.co.uk/properties/162213848", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/162213848/15975_1327175_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.574493", - "last_seen": "2025-06-01T22:06:12.140088", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220391, - 51.439075 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162213977", - "info": { - "identifier": 162213977, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162213977", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25055/162213977/25055_BOW161016_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.394465", - "last_seen": "2025-06-01T20:19:59.404347", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016028, - 51.526012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162214073", - "info": { - "identifier": 162214073, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162214073", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162214073/96668_248606816052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.668675", - "last_seen": "2025-06-01T22:05:38.807234", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166093, - 51.647804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.6, - "qmprice": 37.48, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/162214262", - "info": { - "identifier": 162214262, - "sqm_ocr": 66.6, - "price": 2496.0, - "price_per_sqm": 37.47747747747748, - "url": "https://www.rightmove.co.uk/properties/162214262", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55362/162214262/55362_33898884_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.268014", - "last_seen": "2025-06-01T22:06:15.709102", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178902, - 51.520615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/162214265", - "info": { - "identifier": 162214265, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162214265", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40512/162214265/40512_33898885_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.250618", - "last_seen": "2025-06-01T22:06:06.480843", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101227, - 51.50092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.4, - "qmprice": 28.16, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162214313", - "info": { - "identifier": 162214313, - "sqm_ocr": 115.4, - "price": 3250.0, - "price_per_sqm": 28.162911611785095, - "url": "https://www.rightmove.co.uk/properties/162214313", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148613/162214313/148613_KDM210027_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.786699", - "last_seen": "2025-06-01T22:05:48.338032", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195778, - 51.46545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162214400", - "info": { - "identifier": 162214400, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162214400", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108343/162214400/108343_ASL240055_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.229769", - "last_seen": "2025-06-01T22:05:48.648203", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.245828, - 51.50572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.19, - "qmprice": 39.02, - "rooms": 3, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162214499", - "info": { - "identifier": 162214499, - "sqm_ocr": 72.19, - "price": 2817.0, - "price_per_sqm": 39.0220252112481, - "url": "https://www.rightmove.co.uk/properties/162214499", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/162214499/70038_5178_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.283929", - "last_seen": "2025-06-01T22:05:48.524002", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209694, - 51.4694 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.1, - "qmprice": 23.73, - "rooms": 4, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162215198", - "info": { - "identifier": 162215198, - "sqm_ocr": 120.1, - "price": 2850.0, - "price_per_sqm": 23.73022481265612, - "url": "https://www.rightmove.co.uk/properties/162215198", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Arbon & Miller", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10099/162215198/10099_33899070_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.898809", - "last_seen": "2025-06-01T22:06:03.758931", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.080878, - 51.596287 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162215426", - "info": { - "identifier": 162215426, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162215426", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162215426/96668_80344506062020_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.562558", - "last_seen": "2025-06-01T22:06:05.314123", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042186, - 51.50704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 131.8, - "qmprice": 19.73, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162215444", - "info": { - "identifier": 162215444, - "sqm_ocr": 131.8, - "price": 2600.0, - "price_per_sqm": 19.726858877086492, - "url": "https://www.rightmove.co.uk/properties/162215444", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162215444/96668_2090427112013_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.234597", - "last_seen": "2025-06-01T22:05:44.176964", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.367589, - 51.53457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.8, - "qmprice": 49.49, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162216074", - "info": { - "identifier": 162216074, - "sqm_ocr": 78.8, - "price": 3900.0, - "price_per_sqm": 49.49238578680203, - "url": "https://www.rightmove.co.uk/properties/162216074", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94246/162216074/94246_1326508_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.427837", - "last_seen": "2025-06-01T22:05:42.913243", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121308, - 51.516838 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162216263", - "info": { - "identifier": 162216263, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162216263", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162216263/96668_249018620052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.629618", - "last_seen": "2025-06-01T22:06:01.257342", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213298, - 51.41398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162216272", - "info": { - "identifier": 162216272, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162216272", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162216272/96668_243841702042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.270067, - 51.381798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 44.96, - "qmprice": 47.26, - "rooms": 2, - "total_price": 2125.0, - "url": "https://www.rightmove.co.uk/properties/162216314", - "info": { - "identifier": 162216314, - "sqm_ocr": 44.96, - "price": 2125.0, - "price_per_sqm": 47.26423487544484, - "url": "https://www.rightmove.co.uk/properties/162216314", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162216314/96668_177783125072023_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.694328", - "last_seen": "2025-06-01T17:38:50.955689", - "price": 2125.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147452, - 51.592976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162216446", - "info": { - "identifier": 162216446, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162216446", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42912/162216446/42912_PUT140127_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.102987", - "last_seen": "2025-06-01T22:06:13.487948", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.244371, - 51.43847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.0, - "qmprice": 40.4, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162216536", - "info": { - "identifier": 162216536, - "sqm_ocr": 99.0, - "price": 4000.0, - "price_per_sqm": 40.4040404040404, - "url": "https://www.rightmove.co.uk/properties/162216536", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162216536/238265_L109494_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.192730", - "last_seen": "2025-06-01T22:05:57.643004", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212627, - 51.524746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2860.0, - "url": "https://www.rightmove.co.uk/properties/162216677", - "info": { - "identifier": 162216677, - "sqm_ocr": null, - "price": 2860.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162216677", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Residential Links", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289685/162216677/289685_289685-74963_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.685526", - "last_seen": "2025-06-01T22:06:10.014460", - "price": 2860.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018367, - 51.490726 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 35.82, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162216917", - "info": { - "identifier": 162216917, - "sqm_ocr": 67.0, - "price": 2400.0, - "price_per_sqm": 35.82089552238806, - "url": "https://www.rightmove.co.uk/properties/162216917", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "PropertyLoop", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222287/162216917/222287_k9RJiqKn_IMG_02_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.153328", - "last_seen": "2025-06-01T22:05:46.718994", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00302, - 51.48986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2320.0, - "url": "https://www.rightmove.co.uk/properties/162216941", - "info": { - "identifier": 162216941, - "sqm_ocr": null, - "price": 2320.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162216941", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Frestons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259079/162216941/259079_RL6081_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.892666", - "last_seen": "2025-06-01T22:05:50.664960", - "price": 2320.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.340377, - 51.58094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 31.61, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162216968", - "info": { - "identifier": 162216968, - "sqm_ocr": 87.0, - "price": 2750.0, - "price_per_sqm": 31.60919540229885, - "url": "https://www.rightmove.co.uk/properties/162216968", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162216968/238265_L18689_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.937129", - "last_seen": "2025-06-01T22:05:44.879526", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300475, - 51.516994 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.81, - "qmprice": 44.71, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162217097", - "info": { - "identifier": 162217097, - "sqm_ocr": 84.81, - "price": 3792.0, - "price_per_sqm": 44.711708524938096, - "url": "https://www.rightmove.co.uk/properties/162217097", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49608/162217097/49608_MFL220021_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/05/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.507455", - "last_seen": "2025-06-01T22:06:16.118001", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161741, - 51.51337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/162217331", - "info": { - "identifier": 162217331, - "sqm_ocr": null, - "price": 2195.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162217331", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162217331/96668_122726603102021_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.014490", - "last_seen": "2025-06-01T22:06:03.896184", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05873, - 51.59062 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162217472", - "info": { - "identifier": 162217472, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162217472", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162217472/96668_249000320052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.343808", - "last_seen": "2025-06-01T22:05:41.719314", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.060526, - 51.40249 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.1, - "qmprice": 41.29, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162217496", - "info": { - "identifier": 162217496, - "sqm_ocr": 55.1, - "price": 2275.0, - "price_per_sqm": 41.28856624319419, - "url": "https://www.rightmove.co.uk/properties/162217496", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162217496/96668_249068620052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.737359", - "last_seen": "2025-06-01T22:06:13.993150", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159252, - 51.435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162217559", - "info": { - "identifier": 162217559, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162217559", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162217559/96668_249046320052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.796049", - "last_seen": "2025-06-01T22:06:03.993490", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.069462, - 51.57576 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.59, - "qmprice": 56.04, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162218822", - "info": { - "identifier": 162218822, - "sqm_ocr": 69.59, - "price": 3900.0, - "price_per_sqm": 56.04253484696077, - "url": "https://www.rightmove.co.uk/properties/162218822", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65439/162218822/65439_NEL230032_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.384868", - "last_seen": "2025-06-01T22:06:05.154585", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090951, - 51.501835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 36.25, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162219101", - "info": { - "identifier": 162219101, - "sqm_ocr": 80.0, - "price": 2900.0, - "price_per_sqm": 36.25, - "url": "https://www.rightmove.co.uk/properties/162219101", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/162219101/272819_33896961_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.639364", - "last_seen": "2025-06-01T22:06:07.404834", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005072, - 51.527245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.9, - "qmprice": 63.85, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162220673", - "info": { - "identifier": 162220673, - "sqm_ocr": 50.9, - "price": 3250.0, - "price_per_sqm": 63.850687622789785, - "url": "https://www.rightmove.co.uk/properties/162220673", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/162220673/66771_1309682_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.091176", - "last_seen": "2025-06-01T22:05:59.662869", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110787, - 51.484093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162220862", - "info": { - "identifier": 162220862, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162220862", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "HES Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16373/162220862/16373_3565_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.616166", - "last_seen": "2025-06-01T22:06:07.745598", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182076, - 51.36173 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162220895", - "info": { - "identifier": 162220895, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162220895", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "AIROPERATE LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275732/162220895/275732_2-BDR-Flat_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.589567", - "last_seen": "2025-06-01T22:06:14.472647", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19582, - 51.51773 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.11, - "qmprice": 54.05, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162220976", - "info": { - "identifier": 162220976, - "sqm_ocr": 56.11, - "price": 3033.0, - "price_per_sqm": 54.05453573338086, - "url": "https://www.rightmove.co.uk/properties/162220976", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greater London Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/154k/153329/162220976/153329_GRT_BLM_LFSYCL_253_40199548_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.429112", - "last_seen": "2025-06-01T22:05:42.320571", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133011, - 51.52163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.42, - "qmprice": 60.84, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162220979", - "info": { - "identifier": 162220979, - "sqm_ocr": 53.42, - "price": 3250.0, - "price_per_sqm": 60.83863721452639, - "url": "https://www.rightmove.co.uk/properties/162220979", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greater London Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/154k/153329/162220979/153329_GRT_BLM_LFSYCL_253_401255041_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.433048", - "last_seen": "2025-06-01T22:05:42.318554", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130849, - 51.51986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/162221162", - "info": { - "identifier": 162221162, - "sqm_ocr": null, - "price": 2947.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162221162", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162221162/181787_181787_1081_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.580757", - "last_seen": "2025-06-01T22:06:05.613193", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08963, - 51.49617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162221528", - "info": { - "identifier": 162221528, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162221528", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16226/162221528/16226_SKL230103_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.274338", - "last_seen": "2025-06-01T22:05:57.411833", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177578, - 51.491646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162221762", - "info": { - "identifier": 162221762, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162221762", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11475/162221762/11475_0439_FJL043903358_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.251666", - "last_seen": "2025-06-01T20:19:59.251666", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.007011, - 51.505386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/162222008", - "info": { - "identifier": 162222008, - "sqm_ocr": null, - "price": 2375.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162222008", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Folio London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97670/162222008/97670_FWE210194_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:43.994251", - "last_seen": "2025-06-01T22:05:38.287087", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.073379, - 51.532078 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162222014", - "info": { - "identifier": 162222014, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162222014", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/162222014/67576_RL1208_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.522390", - "last_seen": "2025-06-01T22:05:42.794722", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132874, - 51.52995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.17, - "qmprice": 37.9, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162222185", - "info": { - "identifier": 162222185, - "sqm_ocr": 97.17, - "price": 3683.0, - "price_per_sqm": 37.902644849233305, - "url": "https://www.rightmove.co.uk/properties/162222185", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48618/162222185/48618_WAL100185_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.095315", - "last_seen": "2025-06-01T22:05:57.486540", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203489, - 51.49575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.1, - "qmprice": 31.29, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162222194", - "info": { - "identifier": 162222194, - "sqm_ocr": 83.1, - "price": 2600.0, - "price_per_sqm": 31.287605294825514, - "url": "https://www.rightmove.co.uk/properties/162222194", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Aston Rowe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230534/162222194/230534_33899234_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.162524", - "last_seen": "2025-06-01T22:05:44.007199", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.248095, - 51.506474 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3834.0, - "url": "https://www.rightmove.co.uk/properties/162222389", - "info": { - "identifier": 162222389, - "sqm_ocr": null, - "price": 3834.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162222389", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162222389/253604_111H2105_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.306033", - "last_seen": "2025-06-01T22:06:07.661162", - "price": 3834.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3848.0, - "url": "https://www.rightmove.co.uk/properties/162222551", - "info": { - "identifier": 162222551, - "sqm_ocr": null, - "price": 3848.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162222551", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162222551/253604_114H2105_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.132173", - "last_seen": "2025-06-01T22:06:07.651079", - "price": 3848.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.7, - "qmprice": 34.33, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162222788", - "info": { - "identifier": 162222788, - "sqm_ocr": 110.7, - "price": 3800.0, - "price_per_sqm": 34.32700993676603, - "url": "https://www.rightmove.co.uk/properties/162222788", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238829/162222788/238829_33899273_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.521251", - "last_seen": "2025-06-01T22:06:12.639103", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165655, - 51.42472 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162222923", - "info": { - "identifier": 162222923, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162222923", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Huttons & Partners", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257087/162222923/257087_HLO-43360150_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.035109", - "last_seen": "2025-06-01T22:06:10.770980", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011109, - 51.50777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162223004", - "info": { - "identifier": 162223004, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162223004", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CITY REALTOR LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/179k/178868/162223004/178868_33893885_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.469618", - "last_seen": "2025-06-01T20:19:58.630974", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.048643, - 51.51196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162223196", - "info": { - "identifier": 162223196, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162223196", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Warwick Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/3k/2979/162223196/2979_33798227_IMG_21_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.794830", - "last_seen": "2025-06-01T22:06:15.646770", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190445, - 51.524506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162223328", - "info": { - "identifier": 162223328, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162223328", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96151/162223328/96151_BIS250096_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.185355", - "last_seen": "2025-06-01T22:05:48.701109", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210095, - 51.478775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162223511", - "info": { - "identifier": 162223511, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162223511", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Heaven Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/226k/225752/162223511/225752_103467000781_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.812995", - "last_seen": "2025-06-01T22:05:43.791551", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12086, - 51.33652 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.8, - "qmprice": 41.14, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162223529", - "info": { - "identifier": 162223529, - "sqm_ocr": 94.8, - "price": 3900.0, - "price_per_sqm": 41.139240506329116, - "url": "https://www.rightmove.co.uk/properties/162223529", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/162k/161456/162223529/161456_33899333_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.520609", - "last_seen": "2025-06-01T22:06:16.104991", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150812, - 51.488018 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.2, - "qmprice": 35.83, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162223637", - "info": { - "identifier": 162223637, - "sqm_ocr": 64.2, - "price": 2300.0, - "price_per_sqm": 35.82554517133956, - "url": "https://www.rightmove.co.uk/properties/162223637", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "BPS London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95999/162223637/95999_12674113_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.871202", - "last_seen": "2025-06-01T22:06:01.636251", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213692, - 51.410503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162223862", - "info": { - "identifier": 162223862, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162223862", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "AIROPERATE LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275732/162223862/275732_2BDR-Flat_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.304265", - "last_seen": "2025-06-01T22:05:48.493417", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22291, - 51.48082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2475.0, - "url": "https://www.rightmove.co.uk/properties/162224288", - "info": { - "identifier": 162224288, - "sqm_ocr": null, - "price": 2475.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162224288", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/162224288/84878_33899377_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.256752", - "last_seen": "2025-06-01T22:06:01.541496", - "price": 2475.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.231216, - 51.411797 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.8, - "qmprice": 35.03, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/162224948", - "info": { - "identifier": 162224948, - "sqm_ocr": 67.8, - "price": 2375.0, - "price_per_sqm": 35.02949852507375, - "url": "https://www.rightmove.co.uk/properties/162224948", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65794/162224948/65794_33899406_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.578863", - "last_seen": "2025-06-01T22:06:01.320196", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202076, - 51.42913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162225782", - "info": { - "identifier": 162225782, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162225782", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Squires Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12569/162225782/12569_33899435_IMG_00_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.969951", - "last_seen": "2025-06-01T22:05:39.805608", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187672, - 51.59933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.77, - "qmprice": 33.68, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162226103", - "info": { - "identifier": 162226103, - "sqm_ocr": 69.77, - "price": 2350.0, - "price_per_sqm": 33.68209832306149, - "url": "https://www.rightmove.co.uk/properties/162226103", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Jorgensen Turner", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73024/162226103/73024_33899454_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.858267", - "last_seen": "2025-06-01T22:05:48.397710", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232623, - 51.51088 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.6, - "qmprice": 35.41, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162226160", - "info": { - "identifier": 162226160, - "sqm_ocr": 70.6, - "price": 2500.0, - "price_per_sqm": 35.41076487252125, - "url": "https://www.rightmove.co.uk/properties/162226160", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "L&Q", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102784/162226160/102784_12677395_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.073534", - "last_seen": "2025-06-01T22:05:47.284652", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073841, - 51.53519 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 33.87, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162226601", - "info": { - "identifier": 162226601, - "sqm_ocr": 62.0, - "price": 2100.0, - "price_per_sqm": 33.87096774193548, - "url": "https://www.rightmove.co.uk/properties/162226601", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209807/162226601/209807_CSC212655_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.968265", - "last_seen": "2025-06-01T22:06:07.258530", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.009086, - 51.548817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 129.1, - "qmprice": 23.24, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162226748", - "info": { - "identifier": 162226748, - "sqm_ocr": 129.1, - "price": 3000.0, - "price_per_sqm": 23.23780015491867, - "url": "https://www.rightmove.co.uk/properties/162226748", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79459/162226748/79459_WHL250015_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.660092", - "last_seen": "2025-06-01T22:06:04.459680", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.360912, - 51.448177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3553.0, - "url": "https://www.rightmove.co.uk/properties/162226916", - "info": { - "identifier": 162226916, - "sqm_ocr": null, - "price": 3553.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162226916", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Fisks Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38558/162226916/38558_33847144_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.201610", - "last_seen": "2025-06-01T22:06:10.461446", - "price": 3553.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022102, - 51.50714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 152.4, - "qmprice": 24.61, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162227225", - "info": { - "identifier": 162227225, - "sqm_ocr": 152.4, - "price": 3750.0, - "price_per_sqm": 24.606299212598426, - "url": "https://www.rightmove.co.uk/properties/162227225", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Rampton Baseley", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/255k/254339/162227225/254339_PGL150031_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.349057", - "last_seen": "2025-06-01T22:06:04.392357", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.343609, - 51.40558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.8, - "qmprice": 33.17, - "rooms": 2, - "total_price": 2415.0, - "url": "https://www.rightmove.co.uk/properties/162227240", - "info": { - "identifier": 162227240, - "sqm_ocr": 72.8, - "price": 2415.0, - "price_per_sqm": 33.17307692307693, - "url": "https://www.rightmove.co.uk/properties/162227240", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Jack Rose Estates Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256244/162227240/256244_JLP-22982085_IMG_00_0000_max_656x437.png", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.951382", - "last_seen": "2025-06-01T22:06:00.520049", - "price": 2415.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038028, - 51.490738 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162227585", - "info": { - "identifier": 162227585, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162227585", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/162227585/146147_PR222393_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.005730", - "last_seen": "2025-06-01T22:05:52.688424", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.286924, - 51.491013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.9, - "qmprice": 48.08, - "rooms": 2, - "total_price": 3649.0, - "url": "https://www.rightmove.co.uk/properties/162228059", - "info": { - "identifier": 162228059, - "sqm_ocr": 75.9, - "price": 3649.0, - "price_per_sqm": 48.0764163372859, - "url": "https://www.rightmove.co.uk/properties/162228059", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/162228059/191255_33899581_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:37.358643", - "last_seen": "2025-06-01T22:06:09.661363", - "price": 3648 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067193, - 51.508953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/162228182", - "info": { - "identifier": 162228182, - "sqm_ocr": null, - "price": 2448.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162228182", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162228182/181787_181787_645_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.131229", - "last_seen": "2025-06-01T22:06:06.815110", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07789, - 51.50129 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 39.86, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162228320", - "info": { - "identifier": 162228320, - "sqm_ocr": 74.0, - "price": 2950.0, - "price_per_sqm": 39.86486486486486, - "url": "https://www.rightmove.co.uk/properties/162228320", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57940/162228320/57940_KCQ230063_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.426638", - "last_seen": "2025-06-01T22:05:42.916535", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164799, - 51.548115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162228473", - "info": { - "identifier": 162228473, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162228473", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "AWCHILDS LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/178k/177749/162228473/177749_JDW3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.417116", - "last_seen": "2025-06-01T22:05:56.109441", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18743, - 51.54386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162228785", - "info": { - "identifier": 162228785, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162228785", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Lloyds Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15950/162228785/15950_LLY_BTH_LFSYCL_415_569422805_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.909305", - "last_seen": "2025-06-01T22:06:11.137501", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019544, - 51.526604 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.2, - "qmprice": 29.91, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162228797", - "info": { - "identifier": 162228797, - "sqm_ocr": 70.2, - "price": 2100.0, - "price_per_sqm": 29.914529914529915, - "url": "https://www.rightmove.co.uk/properties/162228797", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57994/162228797/57994_KFX252457_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.803140", - "last_seen": "2025-06-01T22:06:06.403911", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067537, - 51.44343 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162228923", - "info": { - "identifier": 162228923, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162228923", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Castle Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245579/162228923/245579_672_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.697580", - "last_seen": "2025-06-01T22:05:44.519405", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3311, - 51.5155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.2, - "qmprice": 34.83, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162229226", - "info": { - "identifier": 162229226, - "sqm_ocr": 60.2, - "price": 2097.0, - "price_per_sqm": 34.833887043189364, - "url": "https://www.rightmove.co.uk/properties/162229226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12814/162229226/12814_EAM250437_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.411766", - "last_seen": "2025-06-01T22:05:44.433893", - "price": 2097.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285694, - 51.51199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162229358", - "info": { - "identifier": 162229358, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162229358", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "James Edward", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/165k/164045/162229358/164045_31780831_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.978410", - "last_seen": "2025-06-01T22:05:47.614885", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102102, - 51.564335 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.4, - "qmprice": 35.83, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162229391", - "info": { - "identifier": 162229391, - "sqm_ocr": 61.4, - "price": 2200.0, - "price_per_sqm": 35.83061889250814, - "url": "https://www.rightmove.co.uk/properties/162229391", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Property Hub", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286352/162229391/286352_103231003357_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.278336", - "last_seen": "2025-06-01T22:06:10.264759", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05309, - 51.5221 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.7, - "qmprice": 55.4, - "rooms": 2, - "total_price": 3141.0, - "url": "https://www.rightmove.co.uk/properties/162229442", - "info": { - "identifier": 162229442, - "sqm_ocr": 56.7, - "price": 3141.0, - "price_per_sqm": 55.39682539682539, - "url": "https://www.rightmove.co.uk/properties/162229442", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128629/162229442/128629_KEF240148_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.771384", - "last_seen": "2025-06-01T22:05:58.199523", - "price": 3141.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181191, - 51.493793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/162229700", - "info": { - "identifier": 162229700, - "sqm_ocr": null, - "price": 2496.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162229700", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7963/162229700/7963_33899673_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.488208", - "last_seen": "2025-06-01T22:05:45.039137", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29323, - 51.528454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162230060", - "info": { - "identifier": 162230060, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162230060", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hemmingfords", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201083/162230060/201083_32349398_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.401867", - "last_seen": "2025-06-01T22:05:47.527737", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093625, - 51.563606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.29, - "qmprice": 30.02, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162230234", - "info": { - "identifier": 162230234, - "sqm_ocr": 83.29, - "price": 2500.0, - "price_per_sqm": 30.01560811622043, - "url": "https://www.rightmove.co.uk/properties/162230234", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89228/162230234/89228_WCL210286_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.520286", - "last_seen": "2025-06-01T22:05:40.804372", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.257671, - 51.560867 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.62, - "qmprice": 44.2, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162230342", - "info": { - "identifier": 162230342, - "sqm_ocr": 68.62, - "price": 3033.0, - "price_per_sqm": 44.19994170795686, - "url": "https://www.rightmove.co.uk/properties/162230342", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greater London Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/154k/153329/162230342/153329_GRT_BLM_LFSYCL_253_401422795_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.784402", - "last_seen": "2025-06-01T22:05:54.047608", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120375, - 51.534813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162230390", - "info": { - "identifier": 162230390, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162230390", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85697/162230390/85697_KDG251115_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.742069", - "last_seen": "2025-06-01T22:05:40.406360", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.298524, - 51.53798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162230405", - "info": { - "identifier": 162230405, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162230405", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Property Guru", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97850/162230405/97850_RX583340_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.541739", - "last_seen": "2025-06-01T22:05:41.978826", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13015, - 51.5314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.66, - "qmprice": 48.22, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162231116", - "info": { - "identifier": 162231116, - "sqm_ocr": 74.66, - "price": 3600.0, - "price_per_sqm": 48.21859094562015, - "url": "https://www.rightmove.co.uk/properties/162231116", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/162231116/247697_102708032309_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.034787", - "last_seen": "2025-06-01T22:05:53.615611", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09788, - 51.52634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.46, - "qmprice": 29.59, - "rooms": 4, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162231230", - "info": { - "identifier": 162231230, - "sqm_ocr": 106.46, - "price": 3150.0, - "price_per_sqm": 29.588577869622394, - "url": "https://www.rightmove.co.uk/properties/162231230", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "London Land and New Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65382/162231230/65382_N181DN25_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.014506", - "last_seen": "2025-06-01T22:05:50.140081", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07742, - 51.61162 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 33.8, - "qmprice": 69.53, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162231365", - "info": { - "identifier": 162231365, - "sqm_ocr": 33.8, - "price": 2350.0, - "price_per_sqm": 69.52662721893492, - "url": "https://www.rightmove.co.uk/properties/162231365", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/162231365/87815_1324365_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.354017", - "last_seen": "2025-06-01T22:05:39.071599", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238825, - 51.60596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.8, - "qmprice": 33.62, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162231479", - "info": { - "identifier": 162231479, - "sqm_ocr": 81.8, - "price": 2750.0, - "price_per_sqm": 33.618581907090466, - "url": "https://www.rightmove.co.uk/properties/162231479", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82720/162231479/82720_KDU230047_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.395660", - "last_seen": "2025-06-01T22:06:06.632502", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06854, - 51.48533 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2360.0, - "url": "https://www.rightmove.co.uk/properties/162231497", - "info": { - "identifier": 162231497, - "sqm_ocr": null, - "price": 2360.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162231497", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/162231497/87812_1327197_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.597878", - "last_seen": "2025-06-01T22:05:39.579802", - "price": 2360.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247661, - 51.595936 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.8, - "qmprice": 31.97, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162231509", - "info": { - "identifier": 162231509, - "sqm_ocr": 93.8, - "price": 2999.0, - "price_per_sqm": 31.97228144989339, - "url": "https://www.rightmove.co.uk/properties/162231509", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/162231509/15942_1326300_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.767926", - "last_seen": "2025-06-01T22:05:48.274242", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181329, - 51.476036 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162231596", - "info": { - "identifier": 162231596, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162231596", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jeremy Leaf & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7167/162231596/7167_29082363_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.508804", - "last_seen": "2025-06-01T22:05:57.080482", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171073, - 51.613144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.9, - "qmprice": 36.71, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162231653", - "info": { - "identifier": 162231653, - "sqm_ocr": 89.9, - "price": 3300.0, - "price_per_sqm": 36.70745272525028, - "url": "https://www.rightmove.co.uk/properties/162231653", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/162231653/15975_1326730_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.615945", - "last_seen": "2025-06-01T22:06:01.267883", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228701, - 51.40873 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.12, - "qmprice": 37.44, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162231809", - "info": { - "identifier": 162231809, - "sqm_ocr": 78.12, - "price": 2925.0, - "price_per_sqm": 37.44239631336405, - "url": "https://www.rightmove.co.uk/properties/162231809", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65872/162231809/65872_CWQ012518291_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.233718", - "last_seen": "2025-06-01T22:06:10.355279", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018055, - 51.50001 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 30.46, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162231980", - "info": { - "identifier": 162231980, - "sqm_ocr": 87.0, - "price": 2650.0, - "price_per_sqm": 30.45977011494253, - "url": "https://www.rightmove.co.uk/properties/162231980", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9170/162231980/9170_P99984_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.697597", - "last_seen": "2025-06-01T22:05:58.563102", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30118, - 51.41319 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.71, - "qmprice": 47.05, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162232115", - "info": { - "identifier": 162232115, - "sqm_ocr": 79.71, - "price": 3750.0, - "price_per_sqm": 47.04554008280015, - "url": "https://www.rightmove.co.uk/properties/162232115", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148955/162232115/148955_RIL220034_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.364149", - "last_seen": "2025-06-01T22:06:04.404689", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300795, - 51.455853 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.05, - "qmprice": 28.55, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162232136", - "info": { - "identifier": 162232136, - "sqm_ocr": 70.05, - "price": 2000.0, - "price_per_sqm": 28.551034975017846, - "url": "https://www.rightmove.co.uk/properties/162232136", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279224/162232136/279224_JCC250028_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.256239", - "last_seen": "2025-06-01T22:05:59.334114", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124889, - 51.448406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.3, - "qmprice": 40.47, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162232256", - "info": { - "identifier": 162232256, - "sqm_ocr": 80.3, - "price": 3250.0, - "price_per_sqm": 40.473225404732254, - "url": "https://www.rightmove.co.uk/properties/162232256", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77078/162232256/77078_0469_FJL046901117_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.285537", - "last_seen": "2025-06-01T22:05:55.163289", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063947, - 51.558014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2790.0, - "url": "https://www.rightmove.co.uk/properties/162232349", - "info": { - "identifier": 162232349, - "sqm_ocr": null, - "price": 2790.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162232349", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Get Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/181k/180173/162232349/180173_180173_p0192941_MAWE1106_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.813331", - "last_seen": "2025-06-01T22:06:05.073919", - "price": 2790.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098038, - 51.494476 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.3, - "qmprice": 45.94, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162232367", - "info": { - "identifier": 162232367, - "sqm_ocr": 65.3, - "price": 3000.0, - "price_per_sqm": 45.94180704441042, - "url": "https://www.rightmove.co.uk/properties/162232367", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57940/162232367/57940_KCQ220092_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.014902", - "last_seen": "2025-06-01T22:05:42.495786", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.156614, - 51.54935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162232595", - "info": { - "identifier": 162232595, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162232595", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CARTER & REEVES LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289481/162232595/289481_33896192_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.468543", - "last_seen": "2025-06-01T22:05:42.866152", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142998, - 51.5437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 43.28, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162232712", - "info": { - "identifier": 162232712, - "sqm_ocr": 69.3, - "price": 2999.0, - "price_per_sqm": 43.275613275613274, - "url": "https://www.rightmove.co.uk/properties/162232712", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/162232712/84791_33899862_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.737724", - "last_seen": "2025-06-01T22:05:44.485792", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299774, - 51.517193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.2, - "qmprice": 28.86, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162232721", - "info": { - "identifier": 162232721, - "sqm_ocr": 102.2, - "price": 2950.0, - "price_per_sqm": 28.864970645792564, - "url": "https://www.rightmove.co.uk/properties/162232721", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117766/162232721/117766_BEL120006_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.964529", - "last_seen": "2025-06-01T22:06:13.173036", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165583, - 51.47575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.0, - "qmprice": 37.5, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162232733", - "info": { - "identifier": 162232733, - "sqm_ocr": 56.0, - "price": 2100.0, - "price_per_sqm": 37.5, - "url": "https://www.rightmove.co.uk/properties/162232733", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Christopher Russell", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35052/162232733/35052_29085136_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.283558", - "last_seen": "2025-06-01T22:05:39.954547", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.091267, - 51.453518 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.9, - "qmprice": 39.34, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/162232763", - "info": { - "identifier": 162232763, - "sqm_ocr": 60.9, - "price": 2396.0, - "price_per_sqm": 39.343185550082104, - "url": "https://www.rightmove.co.uk/properties/162232763", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40512/162232763/40512_33899864_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.707940", - "last_seen": "2025-06-01T22:05:59.509812", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112117, - 51.501022 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162232829", - "info": { - "identifier": 162232829, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162232829", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Time2Move", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/9k/8147/162232829/8147_32282110_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.664134", - "last_seen": "2025-06-01T22:06:13.741702", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168568, - 51.4335 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/162232874", - "info": { - "identifier": 162232874, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162232874", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "ea2", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10387/162232874/10387_33899871_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.341904", - "last_seen": "2025-06-01T17:39:04.786472", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061175, - 51.505787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162232934", - "info": { - "identifier": 162232934, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162232934", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "COZEE", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262232/162232934/262232_ca467507-00b6-4dbd-99ba-3be6a652f6bd_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.886442", - "last_seen": "2025-06-01T22:06:02.741342", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02829, - 51.51083 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162232979", - "info": { - "identifier": 162232979, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162232979", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Upper Class Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224045/162232979/224045_LARCH_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.560342", - "last_seen": "2025-06-01T22:05:53.748103", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093143, - 51.55001 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.3, - "qmprice": 38.74, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162233033", - "info": { - "identifier": 162233033, - "sqm_ocr": 59.3, - "price": 2297.0, - "price_per_sqm": 38.73524451939292, - "url": "https://www.rightmove.co.uk/properties/162233033", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12814/162233033/12814_EAM250436_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.455634", - "last_seen": "2025-06-01T22:05:44.931344", - "price": 2297.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285694, - 51.51199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162233204", - "info": { - "identifier": 162233204, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162233204", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frost Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73898/162233204/73898_12089850_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.555227", - "last_seen": "2025-06-01T22:05:43.669296", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116197, - 51.33324 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162233258", - "info": { - "identifier": 162233258, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162233258", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Aston Rowe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230534/162233258/230534_33899898_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.889803", - "last_seen": "2025-06-01T22:05:49.304548", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214515, - 51.48589 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.0, - "qmprice": 43.02, - "rooms": 3, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162233432", - "info": { - "identifier": 162233432, - "sqm_ocr": 86.0, - "price": 3700.0, - "price_per_sqm": 43.02325581395349, - "url": "https://www.rightmove.co.uk/properties/162233432", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162233432/87187_38635_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.447209", - "last_seen": "2025-06-01T22:05:47.445986", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.085433, - 51.573185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.9, - "qmprice": 53.6, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162233492", - "info": { - "identifier": 162233492, - "sqm_ocr": 70.9, - "price": 3800.0, - "price_per_sqm": 53.596614950634695, - "url": "https://www.rightmove.co.uk/properties/162233492", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Marc and Partners", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201956/162233492/201956_MAY210261_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.524734", - "last_seen": "2025-06-01T22:06:12.583306", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131931, - 51.481083 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162233894", - "info": { - "identifier": 162233894, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162233894", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kevin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278792/162233894/278792_HC08_IMG_00_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.596387", - "last_seen": "2025-06-01T22:06:02.609784", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00742, - 51.51793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162233933", - "info": { - "identifier": 162233933, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162233933", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Penham Portfolio Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76057/162233933/76057_4Bell25_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.868957", - "last_seen": "2025-06-01T22:06:16.084126", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16849, - 51.52105 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.86, - "qmprice": 32.92, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162234359", - "info": { - "identifier": 162234359, - "sqm_ocr": 69.86, - "price": 2300.0, - "price_per_sqm": 32.92298883481248, - "url": "https://www.rightmove.co.uk/properties/162234359", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7110/162234359/7110_P4989J3006_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.681961", - "last_seen": "2025-06-01T22:06:13.827554", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21194, - 51.45206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 32.05, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162234500", - "info": { - "identifier": 162234500, - "sqm_ocr": 78.0, - "price": 2500.0, - "price_per_sqm": 32.05128205128205, - "url": "https://www.rightmove.co.uk/properties/162234500", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Nicholas James London Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/117k/116041/162234500/116041_12318677_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.111849", - "last_seen": "2025-06-01T22:05:38.915643", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140435, - 51.627964 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.94, - "qmprice": 40.39, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162234611", - "info": { - "identifier": 162234611, - "sqm_ocr": 56.94, - "price": 2300.0, - "price_per_sqm": 40.39339655778012, - "url": "https://www.rightmove.co.uk/properties/162234611", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Location Location", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41282/162234611/41282_d42da8d5-31b5-4db3-a1ca-1de851be5d86_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.223442", - "last_seen": "2025-06-01T22:05:47.857917", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.059909, - 51.561386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162234662", - "info": { - "identifier": 162234662, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162234662", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Reeds Rains Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88616/162234662/88616_ILF210083_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.243884", - "last_seen": "2025-06-01T22:05:47.902565", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098212, - 51.56863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.0, - "qmprice": 41.67, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162234827", - "info": { - "identifier": 162234827, - "sqm_ocr": 54.0, - "price": 2250.0, - "price_per_sqm": 41.666666666666664, - "url": "https://www.rightmove.co.uk/properties/162234827", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Maalems", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42021/162234827/42021_33223497_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.262579", - "last_seen": "2025-06-01T22:05:59.349477", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123771, - 51.4684 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2675.0, - "url": "https://www.rightmove.co.uk/properties/162235016", - "info": { - "identifier": 162235016, - "sqm_ocr": null, - "price": 2675.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162235016", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "URBAN BASE PROPERTIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287006/162235016/287006_15GLOBEROADRM111BS_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.271904", - "last_seen": "2025-06-01T22:05:50.916665", - "price": 2675.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.1954, - 51.5723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162235211", - "info": { - "identifier": 162235211, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162235211", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/162235211/264878_CAN240882_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:09.242389", - "last_seen": "2025-06-01T22:06:09.242389", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017303, - 51.500988 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.8, - "qmprice": 50.81, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162235370", - "info": { - "identifier": 162235370, - "sqm_ocr": 67.8, - "price": 3445.0, - "price_per_sqm": 50.81120943952803, - "url": "https://www.rightmove.co.uk/properties/162235370", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/162235370/65124_CEI243230_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.302131", - "last_seen": "2025-06-01T22:06:07.116258", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096533, - 51.49182 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 40.05, - "rooms": 2, - "total_price": 2643.0, - "url": "https://www.rightmove.co.uk/properties/162235499", - "info": { - "identifier": 162235499, - "sqm_ocr": 66.0, - "price": 2643.0, - "price_per_sqm": 40.04545454545455, - "url": "https://www.rightmove.co.uk/properties/162235499", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50343/162235499/50343_33900043_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.343900", - "last_seen": "2025-06-01T22:05:41.103185", - "price": 2643 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225457, - 51.532658 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.2, - "qmprice": 33.66, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162235544", - "info": { - "identifier": 162235544, - "sqm_ocr": 106.2, - "price": 3575.0, - "price_per_sqm": 33.66290018832392, - "url": "https://www.rightmove.co.uk/properties/162235544", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/162235544/73120_1327223_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.672691", - "last_seen": "2025-06-01T22:05:53.106897", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105516, - 51.53098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162235550", - "info": { - "identifier": 162235550, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162235550", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Pedder", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21470/162235550/21470_33900047_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.923107", - "last_seen": "2025-06-01T22:06:00.445141", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.041972, - 51.432087 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162235604", - "info": { - "identifier": 162235604, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162235604", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65794/162235604/65794_33900050_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.561060", - "last_seen": "2025-06-01T22:06:01.359422", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206291, - 51.422108 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 40.88, - "qmprice": 56.26, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162235754", - "info": { - "identifier": 162235754, - "sqm_ocr": 40.88, - "price": 2300.0, - "price_per_sqm": 56.262230919765166, - "url": "https://www.rightmove.co.uk/properties/162235754", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162235754/26207_HEA222602_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "19/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.205788", - "last_seen": "2025-06-01T22:05:47.844601", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080785, - 51.529186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.2, - "qmprice": 22.18, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162235805", - "info": { - "identifier": 162235805, - "sqm_ocr": 117.2, - "price": 2600.0, - "price_per_sqm": 22.18430034129693, - "url": "https://www.rightmove.co.uk/properties/162235805", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Groves Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74977/162235805/74977_2901_GROV_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.316106", - "last_seen": "2025-06-01T22:06:01.399898", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.241571, - 51.39785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.5, - "qmprice": 33.74, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162235967", - "info": { - "identifier": 162235967, - "sqm_ocr": 81.5, - "price": 2750.0, - "price_per_sqm": 33.74233128834356, - "url": "https://www.rightmove.co.uk/properties/162235967", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/162235967/15975_1326910_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.407402", - "last_seen": "2025-06-01T22:06:01.215176", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209218, - 51.422005 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.5, - "qmprice": 29.63, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162236057", - "info": { - "identifier": 162236057, - "sqm_ocr": 67.5, - "price": 2000.0, - "price_per_sqm": 29.62962962962963, - "url": "https://www.rightmove.co.uk/properties/162236057", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253856/162236057/253856_1327231_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.611371", - "last_seen": "2025-06-01T22:05:43.573317", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122595, - 51.408688 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.3, - "qmprice": 37.56, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162236516", - "info": { - "identifier": 162236516, - "sqm_ocr": 92.3, - "price": 3467.0, - "price_per_sqm": 37.562296858071505, - "url": "https://www.rightmove.co.uk/properties/162236516", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/132k/131152/162236516/131152_33900116_IMG_00_0000_max_656x437.png", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.634703", - "last_seen": "2025-06-01T22:05:49.010187", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228804, - 51.494366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162236591", - "info": { - "identifier": 162236591, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162236591", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/162236591/57272_1325239_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.614586", - "last_seen": "2025-06-01T22:05:58.780514", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305033, - 51.41335 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162236660", - "info": { - "identifier": 162236660, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162236660", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Kevin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278792/162236660/278792_HC10_IMG_00_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.260981", - "last_seen": "2025-06-01T22:05:50.902775", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.17957, - 51.5341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.4, - "qmprice": 32.4, - "rooms": 3, - "total_price": 2994.0, - "url": "https://www.rightmove.co.uk/properties/162236822", - "info": { - "identifier": 162236822, - "sqm_ocr": 92.4, - "price": 2994.0, - "price_per_sqm": 32.4025974025974, - "url": "https://www.rightmove.co.uk/properties/162236822", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/162236822/84788_33900147_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.404667", - "last_seen": "2025-06-01T22:05:44.278710", - "price": 2994 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.262582, - 51.50002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162236855", - "info": { - "identifier": 162236855, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162236855", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/162236855/84791_33900153_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.431546", - "last_seen": "2025-06-01T22:05:45.214401", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.316267, - 51.5144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162236858", - "info": { - "identifier": 162236858, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162236858", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/162236858/84791_33900154_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.435110", - "last_seen": "2025-06-01T22:05:45.231840", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285006, - 51.522015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162236903", - "info": { - "identifier": 162236903, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162236903", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/162236903/84878_33900157_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.532187", - "last_seen": "2025-06-01T22:06:01.797195", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212981, - 51.416206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162236912", - "info": { - "identifier": 162236912, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162236912", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287063/162236912/287063_000905288_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.796127", - "last_seen": "2025-06-01T22:06:12.051769", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01074, - 51.63362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162236945", - "info": { - "identifier": 162236945, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162236945", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162236945/26207_IUL250230_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.996956", - "last_seen": "2025-06-01T22:05:48.025385", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088761, - 51.528767 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.89, - "qmprice": 42.11, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162237197", - "info": { - "identifier": 162237197, - "sqm_ocr": 66.89, - "price": 2817.0, - "price_per_sqm": 42.113918373448946, - "url": "https://www.rightmove.co.uk/properties/162237197", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/162237197/65124_CEE240449_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.208603", - "last_seen": "2025-06-01T22:06:06.114890", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101563, - 51.49303 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.7, - "qmprice": 34.41, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/162237224", - "info": { - "identifier": 162237224, - "sqm_ocr": 78.7, - "price": 2708.0, - "price_per_sqm": 34.409148665819565, - "url": "https://www.rightmove.co.uk/properties/162237224", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Unihood", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289043/162237224/289043_53FlotillaHouse1_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.170092", - "last_seen": "2025-06-01T22:06:03.112195", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0266, - 51.49881 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.68, - "qmprice": 49.57, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162237302", - "info": { - "identifier": 162237302, - "sqm_ocr": 78.68, - "price": 3900.0, - "price_per_sqm": 49.567869852567355, - "url": "https://www.rightmove.co.uk/properties/162237302", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Alexanders Property Consultants", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68260/162237302/68260_33900181_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.572903", - "last_seen": "2025-06-01T22:06:14.629203", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.160666, - 51.524464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3499.0, - "url": "https://www.rightmove.co.uk/properties/162237317", - "info": { - "identifier": 162237317, - "sqm_ocr": null, - "price": 3499.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162237317", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "SW16", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76165/162237317/76165_ttbr_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.245486", - "last_seen": "2025-06-01T22:06:12.426268", - "price": 3499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16472, - 51.42732 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162237407", - "info": { - "identifier": 162237407, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162237407", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Capital Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49739/162237407/49739_CPT_CPT_LFSYCL_393_548367854_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.284856", - "last_seen": "2025-06-01T22:05:39.949958", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.089248, - 51.438747 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162237431", - "info": { - "identifier": 162237431, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162237431", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Balgores", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219440/162237431/219440_LOH250039_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.023213", - "last_seen": "2025-06-01T22:06:03.884075", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05461, - 51.58483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162237773", - "info": { - "identifier": 162237773, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162237773", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50683/162237773/50683_P277017_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.597131", - "last_seen": "2025-06-01T22:06:05.349906", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08056, - 51.49611 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.5, - "qmprice": 31.42, - "rooms": 3, - "total_price": 3975.0, - "url": "https://www.rightmove.co.uk/properties/162237890", - "info": { - "identifier": 162237890, - "sqm_ocr": 126.5, - "price": 3975.0, - "price_per_sqm": 31.42292490118577, - "url": "https://www.rightmove.co.uk/properties/162237890", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/162237890/281129_220501_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.033062", - "last_seen": "2025-06-01T22:05:39.040762", - "price": 3975.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22083, - 51.57143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.7, - "qmprice": 38.74, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162237950", - "info": { - "identifier": 162237950, - "sqm_ocr": 69.7, - "price": 2700.0, - "price_per_sqm": 38.73744619799139, - "url": "https://www.rightmove.co.uk/properties/162237950", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50683/162237950/50683_P277020_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.817027", - "last_seen": "2025-06-01T22:06:04.965283", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07789, - 51.49436 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.5, - "qmprice": 31.42, - "rooms": 3, - "total_price": 3975.0, - "url": "https://www.rightmove.co.uk/properties/162238001", - "info": { - "identifier": 162238001, - "sqm_ocr": 126.5, - "price": 3975.0, - "price_per_sqm": 31.42292490118577, - "url": "https://www.rightmove.co.uk/properties/162238001", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/162238001/281129_210502_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.035954", - "last_seen": "2025-06-01T22:05:56.463600", - "price": 3975.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22083, - 51.57143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 41.85, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162238127", - "info": { - "identifier": 162238127, - "sqm_ocr": 69.9, - "price": 2925.0, - "price_per_sqm": 41.84549356223176, - "url": "https://www.rightmove.co.uk/properties/162238127", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/162238127/281129_210503_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.618076", - "last_seen": "2025-06-01T22:05:38.763689", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22111, - 51.57144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.3, - "qmprice": 45.02, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162238277", - "info": { - "identifier": 162238277, - "sqm_ocr": 73.3, - "price": 3300.0, - "price_per_sqm": 45.020463847203274, - "url": "https://www.rightmove.co.uk/properties/162238277", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43817/162238277/43817_P301104_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.539800", - "last_seen": "2025-06-01T22:06:01.807713", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21905, - 51.42474 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.6, - "qmprice": 39.82, - "rooms": 2, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/162238304", - "info": { - "identifier": 162238304, - "sqm_ocr": 76.6, - "price": 3050.0, - "price_per_sqm": 39.81723237597912, - "url": "https://www.rightmove.co.uk/properties/162238304", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Canary Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85774/162238304/85774_000001663_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.953880", - "last_seen": "2025-06-01T22:06:10.995115", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02484, - 51.50193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 132.1, - "qmprice": 24.22, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162238364", - "info": { - "identifier": 162238364, - "sqm_ocr": 132.1, - "price": 3200.0, - "price_per_sqm": 24.224072672218018, - "url": "https://www.rightmove.co.uk/properties/162238364", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Daniels", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13501/162238364/13501_33061797_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.367644", - "last_seen": "2025-06-01T22:05:41.082658", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.311918, - 51.570366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.4, - "qmprice": 41.01, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162238631", - "info": { - "identifier": 162238631, - "sqm_ocr": 63.4, - "price": 2600.0, - "price_per_sqm": 41.00946372239748, - "url": "https://www.rightmove.co.uk/properties/162238631", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84806/162238631/84806_33900279_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.481900", - "last_seen": "2025-06-01T22:06:04.663089", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300863, - 51.46099 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.6, - "qmprice": 28.4, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162239048", - "info": { - "identifier": 162239048, - "sqm_ocr": 98.6, - "price": 2800.0, - "price_per_sqm": 28.397565922920894, - "url": "https://www.rightmove.co.uk/properties/162239048", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105656/162239048/105656_KCZ240014_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.127970", - "last_seen": "2025-06-01T22:05:52.399429", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267617, - 51.477814 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.4, - "qmprice": 28.6, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162239075", - "info": { - "identifier": 162239075, - "sqm_ocr": 115.4, - "price": 3300.0, - "price_per_sqm": 28.596187175043326, - "url": "https://www.rightmove.co.uk/properties/162239075", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Equity Estate Agents", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35516/162239075/35516_EEL250023_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.002594", - "last_seen": "2025-06-01T22:05:45.525614", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100356, - 51.667576 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.1, - "qmprice": 45.09, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162239306", - "info": { - "identifier": 162239306, - "sqm_ocr": 84.1, - "price": 3792.0, - "price_per_sqm": 45.089179548156956, - "url": "https://www.rightmove.co.uk/properties/162239306", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/162239306/212327_P161040_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.445774", - "last_seen": "2025-06-01T20:19:58.606506", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02553, - 51.50266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.8, - "qmprice": 39.37, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/162239429", - "info": { - "identifier": 162239429, - "sqm_ocr": 55.8, - "price": 2197.0, - "price_per_sqm": 39.37275985663083, - "url": "https://www.rightmove.co.uk/properties/162239429", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/162239429/191255_33900323_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.056875", - "last_seen": "2025-06-01T22:06:10.752395", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068762, - 51.50533 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162239702", - "info": { - "identifier": 162239702, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162239702", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Cromwells Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15626/162239702/15626_12668674_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.376789", - "last_seen": "2025-06-01T22:06:07.820298", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223434, - 51.381012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.73, - "qmprice": 42.26, - "rooms": 3, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162239819", - "info": { - "identifier": 162239819, - "sqm_ocr": 89.73, - "price": 3792.0, - "price_per_sqm": 42.260113674356404, - "url": "https://www.rightmove.co.uk/properties/162239819", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Districts London", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245744/162239819/245744_33900350_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.471356", - "last_seen": "2025-06-01T22:06:03.571103", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.006416, - 51.511963 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.7, - "qmprice": 25.07, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162240014", - "info": { - "identifier": 162240014, - "sqm_ocr": 103.7, - "price": 2600.0, - "price_per_sqm": 25.07232401157184, - "url": "https://www.rightmove.co.uk/properties/162240014", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "ElliotLee", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61517/162240014/61517_df69d6b4-5057-449e-b66c-4553944c09ca_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.169590", - "last_seen": "2025-06-01T22:05:50.215841", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.382398, - 51.571697 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/162240041", - "info": { - "identifier": 162240041, - "sqm_ocr": null, - "price": 2295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162240041", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162240041/96668_241439311032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.985007", - "last_seen": "2025-06-01T22:05:55.552572", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224132, - 51.490055 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.85, - "qmprice": 45.17, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162240104", - "info": { - "identifier": 162240104, - "sqm_ocr": 50.85, - "price": 2297.0, - "price_per_sqm": 45.17207472959685, - "url": "https://www.rightmove.co.uk/properties/162240104", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93044/162240104/93044_33900372_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.356864", - "last_seen": "2025-06-01T22:05:48.462190", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224165, - 51.489136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.5, - "qmprice": 26.32, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162240200", - "info": { - "identifier": 162240200, - "sqm_ocr": 123.5, - "price": 3250.0, - "price_per_sqm": 26.31578947368421, - "url": "https://www.rightmove.co.uk/properties/162240200", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/162240200/52415_33900379_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.785705", - "last_seen": "2025-06-01T22:05:43.749654", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.062812, - 51.39075 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162240323", - "info": { - "identifier": 162240323, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162240323", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162240323/96668_248594216052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.201871, - 51.545517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162240365", - "info": { - "identifier": 162240365, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162240365", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162240365/96668_102230606022021_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.138928", - "last_seen": "2025-06-01T22:05:46.770154", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.058718, - 51.49431 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.9, - "qmprice": 36.82, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162240395", - "info": { - "identifier": 162240395, - "sqm_ocr": 67.9, - "price": 2500.0, - "price_per_sqm": 36.81885125184094, - "url": "https://www.rightmove.co.uk/properties/162240395", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84800/162240395/84800_33886950_IMG_03_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.603435", - "last_seen": "2025-06-01T22:05:58.799038", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285175, - 51.415585 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/162240488", - "info": { - "identifier": 162240488, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162240488", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "RE/MAX Property Hub", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258956/162240488/258956_33900404_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.963927", - "last_seen": "2025-06-01T22:06:02.228227", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.051014, - 51.527588 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.7, - "qmprice": 55.87, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162240506", - "info": { - "identifier": 162240506, - "sqm_ocr": 53.7, - "price": 3000.0, - "price_per_sqm": 55.865921787709496, - "url": "https://www.rightmove.co.uk/properties/162240506", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64127/162240506/64127_1327150_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.308167", - "last_seen": "2025-06-01T22:05:42.497753", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143166, - 51.528625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162240599", - "info": { - "identifier": 162240599, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162240599", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Leonard Leese", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35405/162240599/35405_33900415_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.526074", - "last_seen": "2025-06-01T22:06:05.710748", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087525, - 51.499527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.3, - "qmprice": 45.68, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162240830", - "info": { - "identifier": 162240830, - "sqm_ocr": 61.3, - "price": 2800.0, - "price_per_sqm": 45.67699836867863, - "url": "https://www.rightmove.co.uk/properties/162240830", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Casa Londra", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212255/162240830/212255_2306_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.259827", - "last_seen": "2025-06-01T22:05:58.243670", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195371, - 51.493664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 35.14, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162240890", - "info": { - "identifier": 162240890, - "sqm_ocr": 74.0, - "price": 2600.0, - "price_per_sqm": 35.13513513513514, - "url": "https://www.rightmove.co.uk/properties/162240890", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95869/162240890/95869_SHO170439_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.753223", - "last_seen": "2025-06-01T22:05:53.252539", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096198, - 51.527035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.7, - "qmprice": 33.24, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162240911", - "info": { - "identifier": 162240911, - "sqm_ocr": 70.7, - "price": 2350.0, - "price_per_sqm": 33.23903818953324, - "url": "https://www.rightmove.co.uk/properties/162240911", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/162240911/15951_1326633_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.974199", - "last_seen": "2025-06-01T22:05:43.974368", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26932, - 51.512157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162240992", - "info": { - "identifier": 162240992, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162240992", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/162240992/194222_HRP220569_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.418741", - "last_seen": "2025-06-01T22:06:01.057346", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22749, - 51.39969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.84, - "qmprice": 42.92, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/162241013", - "info": { - "identifier": 162241013, - "sqm_ocr": 85.84, - "price": 3684.0, - "price_per_sqm": 42.9170549860205, - "url": "https://www.rightmove.co.uk/properties/162241013", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/162241013/15942_1327251_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.494256", - "last_seen": "2025-06-01T22:05:58.220699", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197322, - 51.49587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162241085", - "info": { - "identifier": 162241085, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162241085", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Capital Estate Agents", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49739/162241085/49739_CPT_CPT_LFSYCL_393_548422924_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.306028", - "last_seen": "2025-06-01T22:05:41.587944", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006313, - 51.38166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.9, - "qmprice": 37.35, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162241109", - "info": { - "identifier": 162241109, - "sqm_ocr": 58.9, - "price": 2200.0, - "price_per_sqm": 37.35144312393888, - "url": "https://www.rightmove.co.uk/properties/162241109", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/162241109/71401_1326269_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.450108", - "last_seen": "2025-06-01T22:05:40.174426", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.243222, - 51.537098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162241115", - "info": { - "identifier": 162241115, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162241115", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Anderson Knight", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92323/162241115/92323_anderson_750566962_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.919447", - "last_seen": "2025-06-01T22:05:51.762229", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.334181, - 51.474785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.7, - "qmprice": 39.4, - "rooms": 3, - "total_price": 3337.0, - "url": "https://www.rightmove.co.uk/properties/162241187", - "info": { - "identifier": 162241187, - "sqm_ocr": 84.7, - "price": 3337.0, - "price_per_sqm": 39.39787485242031, - "url": "https://www.rightmove.co.uk/properties/162241187", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/162241187/15945_1327213_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.543205", - "last_seen": "2025-06-01T22:05:57.419570", - "price": 3337.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208191, - 51.498226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 48.75, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162241250", - "info": { - "identifier": 162241250, - "sqm_ocr": 80.0, - "price": 3900.0, - "price_per_sqm": 48.75, - "url": "https://www.rightmove.co.uk/properties/162241250", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Nine Elms", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/197k/196106/162241250/196106_2105256_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.097763", - "last_seen": "2025-06-01T22:06:12.903721", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14651, - 51.47901 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.1, - "qmprice": 30.27, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162241634", - "info": { - "identifier": 162241634, - "sqm_ocr": 99.1, - "price": 3000.0, - "price_per_sqm": 30.27245206861756, - "url": "https://www.rightmove.co.uk/properties/162241634", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265814/162241634/265814_100783018724_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.919129", - "last_seen": "2025-06-01T22:06:13.254311", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21867, - 51.450665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.1, - "qmprice": 28.28, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162241751", - "info": { - "identifier": 162241751, - "sqm_ocr": 83.1, - "price": 2350.0, - "price_per_sqm": 28.2791817087846, - "url": "https://www.rightmove.co.uk/properties/162241751", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Docklands Prestige Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101404/162241751/101404_705367_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.225509", - "last_seen": "2025-06-01T22:06:03.330408", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0109, - 51.516644 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162241874", - "info": { - "identifier": 162241874, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162241874", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Brian Cox & Company", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156206/162241874/156206_11933280_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.405760", - "last_seen": "2025-06-01T22:05:51.364624", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.4086, - 51.60751 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.9, - "qmprice": 56.97, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162242351", - "info": { - "identifier": 162242351, - "sqm_ocr": 50.9, - "price": 2900.0, - "price_per_sqm": 56.97445972495088, - "url": "https://www.rightmove.co.uk/properties/162242351", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128530/162242351/128530_KDV230139_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.259456", - "last_seen": "2025-06-01T22:06:15.186426", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162993, - 51.525154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.72, - "qmprice": 62.08, - "rooms": 2, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/162242597", - "info": { - "identifier": 162242597, - "sqm_ocr": 54.72, - "price": 3397.0, - "price_per_sqm": 62.0796783625731, - "url": "https://www.rightmove.co.uk/properties/162242597", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57498/162242597/57498_2712923_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.911170", - "last_seen": "2025-06-01T22:05:47.715702", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076363, - 51.529076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.28, - "qmprice": 56.08, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162242606", - "info": { - "identifier": 162242606, - "sqm_ocr": 55.28, - "price": 3100.0, - "price_per_sqm": 56.07814761215629, - "url": "https://www.rightmove.co.uk/properties/162242606", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/162242606/44537_TOL251363_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.847227", - "last_seen": "2025-06-01T20:19:56.600646", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066033, - 51.514626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162242789", - "info": { - "identifier": 162242789, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162242789", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83134/162242789/83134_000849890_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.999739", - "last_seen": "2025-06-01T22:06:03.966429", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.10488, - 51.61218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 27.16, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162243335", - "info": { - "identifier": 162243335, - "sqm_ocr": 81.0, - "price": 2200.0, - "price_per_sqm": 27.160493827160494, - "url": "https://www.rightmove.co.uk/properties/162243335", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78317/162243335/78317_KDS240174_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/11/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.681589", - "last_seen": "2025-06-01T22:05:58.539921", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.275776, - 51.422306 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/162243479", - "info": { - "identifier": 162243479, - "sqm_ocr": null, - "price": 2747.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162243479", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162243479/181787_181787_870_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.503389", - "last_seen": "2025-06-01T22:06:05.756473", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08121, - 51.491 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162243869", - "info": { - "identifier": 162243869, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162243869", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Docklands Prestige Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101404/162243869/101404_705330_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.262578", - "last_seen": "2025-06-01T22:06:08.084231", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061197, - 51.50956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.9, - "qmprice": 38.7, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162243887", - "info": { - "identifier": 162243887, - "sqm_ocr": 96.9, - "price": 3750.0, - "price_per_sqm": 38.699690402476776, - "url": "https://www.rightmove.co.uk/properties/162243887", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30575/162243887/30575_05311553_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.657763", - "last_seen": "2025-06-01T22:06:04.203493", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293137, - 51.46075 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162243998", - "info": { - "identifier": 162243998, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162243998", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162243998/221711_3336_EAF_183401_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.788985", - "last_seen": "2025-06-01T22:06:05.357565", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.083937, - 51.491123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162244211", - "info": { - "identifier": 162244211, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162244211", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Andrew Reeves", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20720/162244211/20720_000908003_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.349319", - "last_seen": "2025-06-01T22:05:41.729459", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.11363, - 51.36175 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.9, - "qmprice": 45.94, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162244781", - "info": { - "identifier": 162244781, - "sqm_ocr": 84.9, - "price": 3900.0, - "price_per_sqm": 45.936395759717314, - "url": "https://www.rightmove.co.uk/properties/162244781", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64127/162244781/64127_1327265_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.688317", - "last_seen": "2025-06-01T22:05:42.592534", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125303, - 51.5296 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.8, - "qmprice": 25.25, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162245084", - "info": { - "identifier": 162245084, - "sqm_ocr": 118.8, - "price": 3000.0, - "price_per_sqm": 25.252525252525253, - "url": "https://www.rightmove.co.uk/properties/162245084", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66768/162245084/66768_1327082_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.399282", - "last_seen": "2025-06-01T22:05:59.954743", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088016, - 51.42732 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.12, - "qmprice": 46.07, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162245192", - "info": { - "identifier": 162245192, - "sqm_ocr": 65.12, - "price": 3000.0, - "price_per_sqm": 46.06879606879607, - "url": "https://www.rightmove.co.uk/properties/162245192", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51316/162245192/51316_LIL220182_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.763536", - "last_seen": "2025-06-01T22:06:14.487543", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177715, - 51.52481 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.88, - "qmprice": 30.72, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162245204", - "info": { - "identifier": 162245204, - "sqm_ocr": 87.88, - "price": 2700.0, - "price_per_sqm": 30.72371415566682, - "url": "https://www.rightmove.co.uk/properties/162245204", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69659/162245204/69659_SJL210084_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.995889", - "last_seen": "2025-06-01T22:06:13.108143", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25205, - 51.463448 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.7, - "qmprice": 44.91, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162245252", - "info": { - "identifier": 162245252, - "sqm_ocr": 75.7, - "price": 3400.0, - "price_per_sqm": 44.91413474240422, - "url": "https://www.rightmove.co.uk/properties/162245252", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/162245252/15969_1327138_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.827178", - "last_seen": "2025-06-01T22:05:44.380094", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.308469, - 51.49785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162245366", - "info": { - "identifier": 162245366, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162245366", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Key Property Consultants", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/161k/160727/162245366/160727_1744_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.606812", - "last_seen": "2025-06-01T22:05:46.965828", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026422, - 51.451904 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2025.0, - "url": "https://www.rightmove.co.uk/properties/162245387", - "info": { - "identifier": 162245387, - "sqm_ocr": null, - "price": 2025.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162245387", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75088/162245387/75088_000910135_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.056160", - "last_seen": "2025-06-01T22:05:38.324458", - "price": 2025.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.14267, - 51.57263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 33.69, - "rooms": 3, - "total_price": 2998.0, - "url": "https://www.rightmove.co.uk/properties/162245621", - "info": { - "identifier": 162245621, - "sqm_ocr": 89.0, - "price": 2998.0, - "price_per_sqm": 33.68539325842696, - "url": "https://www.rightmove.co.uk/properties/162245621", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Londonwide Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42321/162245621/42321_LONWI_001595_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.255797", - "last_seen": "2025-06-01T22:06:14.370541", - "price": 2998.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190907, - 51.52405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162245828", - "info": { - "identifier": 162245828, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162245828", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Island Homes", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129139/162245828/129139_33900755_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.047747", - "last_seen": "2025-06-01T20:19:59.047747", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019604, - 51.48714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 43.84, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162246059", - "info": { - "identifier": 162246059, - "sqm_ocr": 73.0, - "price": 3200.0, - "price_per_sqm": 43.83561643835616, - "url": "https://www.rightmove.co.uk/properties/162246059", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/162246059/77511_SHO150422_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.301809", - "last_seen": "2025-06-01T22:05:47.961657", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084445, - 51.530205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162246071", - "info": { - "identifier": 162246071, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162246071", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Aston Rowe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230534/162246071/230534_33900771_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.634378", - "last_seen": "2025-06-01T22:05:45.306899", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.262907, - 51.50471 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162246389", - "info": { - "identifier": 162246389, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162246389", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/162246389/67576_RL0513_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.776572", - "last_seen": "2025-06-01T22:05:46.431343", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019606, - 51.474823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162246425", - "info": { - "identifier": 162246425, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162246425", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "SAB Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261782/162246425/261782_16e78251-a0fc-41bd-9abd-bf579685a0bf_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.557557", - "last_seen": "2025-06-01T22:05:51.447145", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.470888, - 51.512806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.8, - "qmprice": 41.77, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162246494", - "info": { - "identifier": 162246494, - "sqm_ocr": 83.8, - "price": 3500.0, - "price_per_sqm": 41.766109785202865, - "url": "https://www.rightmove.co.uk/properties/162246494", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Aston Gray", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221897/162246494/221897_33897027_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.127252", - "last_seen": "2025-06-01T22:06:06.826053", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068621, - 51.478592 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162246506", - "info": { - "identifier": 162246506, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162246506", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/162246506/48994_CNL210042_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.350578", - "last_seen": "2025-06-01T22:06:10.110269", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.001285, - 51.50969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.1, - "qmprice": 47.72, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162246779", - "info": { - "identifier": 162246779, - "sqm_ocr": 68.1, - "price": 3250.0, - "price_per_sqm": 47.72393538913363, - "url": "https://www.rightmove.co.uk/properties/162246779", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55362/162246779/55362_33900823_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.179944", - "last_seen": "2025-06-01T22:06:14.394352", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179327, - 51.519276 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.0, - "qmprice": 23.33, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162246881", - "info": { - "identifier": 162246881, - "sqm_ocr": 120.0, - "price": 2800.0, - "price_per_sqm": 23.333333333333332, - "url": "https://www.rightmove.co.uk/properties/162246881", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Daniels", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13501/162246881/13501_33113504_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.242905", - "last_seen": "2025-06-01T22:05:40.452823", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.321867, - 51.56101 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3825.0, - "url": "https://www.rightmove.co.uk/properties/162246920", - "info": { - "identifier": 162246920, - "sqm_ocr": null, - "price": 3825.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162246920", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/162246920/222842_TCT250305_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.984556", - "last_seen": "2025-06-01T22:06:15.979790", - "price": 3825.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175083, - 51.536606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.34, - "qmprice": 43.48, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162246971", - "info": { - "identifier": 162246971, - "sqm_ocr": 79.34, - "price": 3450.0, - "price_per_sqm": 43.48374086211243, - "url": "https://www.rightmove.co.uk/properties/162246971", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Rosewood Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63096/162246971/63096_HackneyRd_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.280429", - "last_seen": "2025-06-01T22:05:47.935124", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07492, - 51.52927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.31, - "qmprice": 32.76, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162247031", - "info": { - "identifier": 162247031, - "sqm_ocr": 76.31, - "price": 2500.0, - "price_per_sqm": 32.76110601493907, - "url": "https://www.rightmove.co.uk/properties/162247031", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kallars", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289823/162247031/289823_a14fe05a-aab9-4c7c-adfb-acf1d05ba925_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.130427", - "last_seen": "2025-06-01T22:06:00.591554", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0395, - 51.489086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.5, - "qmprice": 22.75, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162247262", - "info": { - "identifier": 162247262, - "sqm_ocr": 94.5, - "price": 2150.0, - "price_per_sqm": 22.75132275132275, - "url": "https://www.rightmove.co.uk/properties/162247262", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112924/162247262/112924_P301128_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.830445", - "last_seen": "2025-06-01T22:06:00.775876", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00728, - 51.46522 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2120.0, - "url": "https://www.rightmove.co.uk/properties/162247283", - "info": { - "identifier": 162247283, - "sqm_ocr": null, - "price": 2120.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162247283", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130954/162247283/130954_HUBB2105_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.919631", - "last_seen": "2025-06-01T22:06:06.365978", - "price": 2120.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03655, - 51.50105 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162247445", - "info": { - "identifier": 162247445, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162247445", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83134/162247445/83134_000089872_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.004377", - "last_seen": "2025-06-01T22:06:03.957618", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.104, - 51.58063 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.2, - "qmprice": 28.9, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162247631", - "info": { - "identifier": 162247631, - "sqm_ocr": 69.2, - "price": 2000.0, - "price_per_sqm": 28.90173410404624, - "url": "https://www.rightmove.co.uk/properties/162247631", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58464/162247631/58464_33900885_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.351674", - "last_seen": "2025-06-01T22:06:07.899975", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201026, - 51.359898 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162247979", - "info": { - "identifier": 162247979, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162247979", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fuller Gilbert & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267689/162247979/267689_33900910_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.548824", - "last_seen": "2025-06-01T22:05:57.738572", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183817, - 51.49663 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162248009", - "info": { - "identifier": 162248009, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162248009", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "Lanigan Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129385/162248009/129385_7064_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.258110", - "last_seen": "2025-06-01T22:06:12.483759", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16566, - 51.47571 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162248111", - "info": { - "identifier": 162248111, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162248111", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/162248111/264878_CAN250601_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.635480", - "last_seen": "2025-06-01T22:06:02.581163", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.003785, - 51.51993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162248699", - "info": { - "identifier": 162248699, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162248699", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/127k/126934/162248699/126934_6634f486e85b3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.604668", - "last_seen": "2025-06-01T22:06:13.244853", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181674, - 51.438744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162248921", - "info": { - "identifier": 162248921, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162248921", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Move Inn Estates Iver", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113317/162248921/113317_33900978_IMG_21_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.058731", - "last_seen": "2025-06-01T22:05:51.857372", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.398609, - 51.48128 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162248942", - "info": { - "identifier": 162248942, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162248942", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/162248942/264878_CAN240886_L_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "11/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.566681", - "last_seen": "2025-06-01T22:06:08.717452", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057591, - 51.51795 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162249464", - "info": { - "identifier": 162249464, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162249464", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brockenhurst Property Specialists", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58355/162249464/58355_RL0382_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.951997", - "last_seen": "2025-06-01T22:05:50.569059", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.330386, - 51.5815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.1, - "qmprice": 45.88, - "rooms": 2, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/162249509", - "info": { - "identifier": 162249509, - "sqm_ocr": 86.1, - "price": 3950.0, - "price_per_sqm": 45.87688734030198, - "url": "https://www.rightmove.co.uk/properties/162249509", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162249509/55101_1327273_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.635318", - "last_seen": "2025-06-01T22:06:06.589599", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093123, - 51.501698 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.5, - "qmprice": 47.04, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/162249665", - "info": { - "identifier": 162249665, - "sqm_ocr": 59.5, - "price": 2799.0, - "price_per_sqm": 47.04201680672269, - "url": "https://www.rightmove.co.uk/properties/162249665", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/162249665/264326_Y80176_1S_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.585082", - "last_seen": "2025-06-01T22:06:01.090045", - "price": 2799.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173131, - 51.422092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162249701", - "info": { - "identifier": 162249701, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162249701", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Falcon Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.195055", - "last_seen": "2025-06-01T22:05:40.548210", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2611, - 51.58625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162250001", - "info": { - "identifier": 162250001, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162250001", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Caplen Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176741/162250001/176741_33813856_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.837646", - "last_seen": "2025-06-01T22:06:03.775409", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.045128, - 51.6142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 144.0, - "qmprice": 24.31, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162250160", - "info": { - "identifier": 162250160, - "sqm_ocr": 144.0, - "price": 3500.0, - "price_per_sqm": 24.305555555555557, - "url": "https://www.rightmove.co.uk/properties/162250160", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Parkheath", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151640/162250160/151640_31860489_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.191152", - "last_seen": "2025-06-01T22:05:40.554385", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224163, - 51.53819 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.7, - "qmprice": 28.35, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162250217", - "info": { - "identifier": 162250217, - "sqm_ocr": 91.7, - "price": 2600.0, - "price_per_sqm": 28.353326063249728, - "url": "https://www.rightmove.co.uk/properties/162250217", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78410/162250217/78410_33901066_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.701919", - "last_seen": "2025-06-01T22:06:13.962439", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176804, - 51.465366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.2, - "qmprice": 33.02, - "rooms": 2, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/162250223", - "info": { - "identifier": 162250223, - "sqm_ocr": 80.2, - "price": 2648.0, - "price_per_sqm": 33.01745635910224, - "url": "https://www.rightmove.co.uk/properties/162250223", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/162250223/84791_33901067_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.489434", - "last_seen": "2025-06-01T22:05:45.052146", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312591, - 51.512413 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.7, - "qmprice": 30.08, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162250235", - "info": { - "identifier": 162250235, - "sqm_ocr": 99.7, - "price": 2999.0, - "price_per_sqm": 30.080240722166497, - "url": "https://www.rightmove.co.uk/properties/162250235", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3355/162250235/3355_33901068_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.685685", - "last_seen": "2025-06-01T22:05:50.109099", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106145, - 51.572166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.1, - "qmprice": 26.41, - "rooms": 2, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/162250430", - "info": { - "identifier": 162250430, - "sqm_ocr": 83.1, - "price": 2195.0, - "price_per_sqm": 26.41395908543923, - "url": "https://www.rightmove.co.uk/properties/162250430", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84812/162250430/84812_33901085_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.711701", - "last_seen": "2025-06-01T22:05:58.584505", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.310607, - 51.393673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.79, - "qmprice": 27.45, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162250523", - "info": { - "identifier": 162250523, - "sqm_ocr": 83.79, - "price": 2300.0, - "price_per_sqm": 27.44957632175677, - "url": "https://www.rightmove.co.uk/properties/162250523", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Homefinders", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32903/162250523/32903_1790563_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.390888", - "last_seen": "2025-06-01T22:05:56.129517", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.046981, - 51.54454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162250559", - "info": { - "identifier": 162250559, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162250559", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Castle Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245579/162250559/245579_921_IMG_09_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.475612", - "last_seen": "2025-06-01T22:05:55.372534", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33957, - 51.51239 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162250601", - "info": { - "identifier": 162250601, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162250601", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "London Homemoves", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170204/162250601/170204_3349044_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.225101", - "last_seen": "2025-06-01T22:05:40.466375", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247377, - 51.5528 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.8, - "qmprice": 40.49, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162250976", - "info": { - "identifier": 162250976, - "sqm_ocr": 56.8, - "price": 2300.0, - "price_per_sqm": 40.49295774647887, - "url": "https://www.rightmove.co.uk/properties/162250976", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Peach Properties", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74746/162250976/74746_33901092_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.513724", - "last_seen": "2025-06-01T22:06:08.591905", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.059724, - 51.5234 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.2, - "qmprice": 39.43, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/162251453", - "info": { - "identifier": 162251453, - "sqm_ocr": 63.2, - "price": 2492.0, - "price_per_sqm": 39.43037974683544, - "url": "https://www.rightmove.co.uk/properties/162251453", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43062/162251453/43062_NHS210243_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.050823", - "last_seen": "2025-06-01T22:05:57.947907", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201925, - 51.514347 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.7, - "qmprice": 37.02, - "rooms": 3, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/162251483", - "info": { - "identifier": 162251483, - "sqm_ocr": 106.7, - "price": 3950.0, - "price_per_sqm": 37.019681349578256, - "url": "https://www.rightmove.co.uk/properties/162251483", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43817/162251483/43817_P300905_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.289150", - "last_seen": "2025-06-01T22:06:01.460276", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21911, - 51.42312 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162251510", - "info": { - "identifier": 162251510, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162251510", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Simon Clarke", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32535/162251510/32535_33901176_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.384721", - "last_seen": "2025-06-01T22:05:50.061169", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105446, - 51.596867 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.18, - "qmprice": 36.44, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162251663", - "info": { - "identifier": 162251663, - "sqm_ocr": 89.18, - "price": 3250.0, - "price_per_sqm": 36.44314868804665, - "url": "https://www.rightmove.co.uk/properties/162251663", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51301/162251663/51301_KEL210056_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.556233", - "last_seen": "2025-06-01T22:05:56.642570", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202928, - 51.4921 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.2, - "qmprice": 35.05, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/162251711", - "info": { - "identifier": 162251711, - "sqm_ocr": 61.2, - "price": 2145.0, - "price_per_sqm": 35.049019607843135, - "url": "https://www.rightmove.co.uk/properties/162251711", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18927/162251711/18927_33901198_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.149344", - "last_seen": "2025-06-01T22:05:38.853815", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178336, - 51.590584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162251897", - "info": { - "identifier": 162251897, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162251897", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162251897/87187_71947_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.535672", - "last_seen": "2025-06-01T22:06:00.181130", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11607, - 51.500664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162251906", - "info": { - "identifier": 162251906, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162251906", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162251906/87187_71949_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.114150", - "last_seen": "2025-06-01T22:06:13.494780", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14479, - 51.48149 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162252002", - "info": { - "identifier": 162252002, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162252002", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Visum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35298/162252002/35298_26548_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "05/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.029448", - "last_seen": "2025-06-01T22:06:00.902989", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.036058, - 51.4716 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.2, - "qmprice": 44.27, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162252194", - "info": { - "identifier": 162252194, - "sqm_ocr": 83.2, - "price": 3683.0, - "price_per_sqm": 44.26682692307692, - "url": "https://www.rightmove.co.uk/properties/162252194", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/201k/200876/162252194/200876_NBC141565_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.972257", - "last_seen": "2025-06-01T22:05:59.842756", - "price": 3683.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119797, - 51.49415 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162252512", - "info": { - "identifier": 162252512, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162252512", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247508/162252512/247508_P396834_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.457169", - "last_seen": "2025-06-01T22:06:03.547184", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02032, - 51.55206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162252716", - "info": { - "identifier": 162252716, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162252716", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162252716/191744_RL4449_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.658226", - "last_seen": "2025-06-01T22:05:53.041955", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096228, - 51.528366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.8, - "qmprice": 32.52, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162252740", - "info": { - "identifier": 162252740, - "sqm_ocr": 73.8, - "price": 2400.0, - "price_per_sqm": 32.520325203252035, - "url": "https://www.rightmove.co.uk/properties/162252740", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50181/162252740/50181_33418172_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.430027", - "last_seen": "2025-06-01T22:05:51.144087", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.438217, - 51.582977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162252746", - "info": { - "identifier": 162252746, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162252746", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57498/162252746/57498_2713939_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.018562", - "last_seen": "2025-06-01T22:05:47.225601", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07643, - 51.52905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/162253091", - "info": { - "identifier": 162253091, - "sqm_ocr": null, - "price": 2395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162253091", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219908/162253091/219908_4109_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.849576", - "last_seen": "2025-06-01T22:05:44.346379", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.383241, - 51.5028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 28.21, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162253352", - "info": { - "identifier": 162253352, - "sqm_ocr": 78.0, - "price": 2200.0, - "price_per_sqm": 28.205128205128204, - "url": "https://www.rightmove.co.uk/properties/162253352", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hampstead", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32760/162253352/32760_flat18lindleyrepost_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.552316", - "last_seen": "2025-06-01T22:05:38.747409", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24849, - 51.58759 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 31.33, - "rooms": 2, - "total_price": 2475.0, - "url": "https://www.rightmove.co.uk/properties/162253505", - "info": { - "identifier": 162253505, - "sqm_ocr": 79.0, - "price": 2475.0, - "price_per_sqm": 31.329113924050635, - "url": "https://www.rightmove.co.uk/properties/162253505", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Antony Roberts", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36162/162253505/36162_RIC230022_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.109338", - "last_seen": "2025-06-01T22:06:12.870744", - "price": 2475.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216039, - 51.458614 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3207.0, - "url": "https://www.rightmove.co.uk/properties/162253547", - "info": { - "identifier": 162253547, - "sqm_ocr": null, - "price": 3207.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162253547", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/162253547/120463_33901330_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.358699", - "last_seen": "2025-06-01T22:05:44.146674", - "price": 3206 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.250288, - 51.50925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 124.8, - "qmprice": 26.04, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162253688", - "info": { - "identifier": 162253688, - "sqm_ocr": 124.8, - "price": 3250.0, - "price_per_sqm": 26.041666666666668, - "url": "https://www.rightmove.co.uk/properties/162253688", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84785/162253688/84785_33866721_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.639010", - "last_seen": "2025-06-01T22:05:45.318190", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.248944, - 51.508175 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.8, - "qmprice": 40.75, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162253709", - "info": { - "identifier": 162253709, - "sqm_ocr": 63.8, - "price": 2600.0, - "price_per_sqm": 40.75235109717868, - "url": "https://www.rightmove.co.uk/properties/162253709", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/162253709/15960_1326392_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.341697", - "last_seen": "2025-06-01T22:06:15.582171", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172041, - 51.522488 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 35.18, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162253751", - "info": { - "identifier": 162253751, - "sqm_ocr": 73.9, - "price": 2600.0, - "price_per_sqm": 35.182679296346414, - "url": "https://www.rightmove.co.uk/properties/162253751", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162253751/48101_1326498_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.840549", - "last_seen": "2025-06-01T22:06:11.261868", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02288, - 51.515644 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3796.0, - "url": "https://www.rightmove.co.uk/properties/162253775", - "info": { - "identifier": 162253775, - "sqm_ocr": null, - "price": 3796.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162253775", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/162253775/191255_33901346_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.525514", - "last_seen": "2025-06-01T22:06:11.354804", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066441, - 51.507973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162254357", - "info": { - "identifier": 162254357, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162254357", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Raine and Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6990/162254357/6990_10003943_RAIN_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.955853", - "last_seen": "2025-06-01T22:05:45.716133", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042275, - 51.666893 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.46, - "qmprice": 33.76, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162254393", - "info": { - "identifier": 162254393, - "sqm_ocr": 81.46, - "price": 2750.0, - "price_per_sqm": 33.75890007365579, - "url": "https://www.rightmove.co.uk/properties/162254393", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26204/162254393/26204_33901386_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.282694", - "last_seen": "2025-06-01T22:06:01.467283", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187163, - 51.42265 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.0, - "qmprice": 33.83, - "rooms": 2, - "total_price": 3687.0, - "url": "https://www.rightmove.co.uk/properties/162254639", - "info": { - "identifier": 162254639, - "sqm_ocr": 109.0, - "price": 3687.0, - "price_per_sqm": 33.825688073394495, - "url": "https://www.rightmove.co.uk/properties/162254639", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/201k/200876/162254639/200876_NBC080086_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.756889", - "last_seen": "2025-06-01T22:05:59.428165", - "price": 3687.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1207, - 51.492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 131.2, - "qmprice": 30.49, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162254711", - "info": { - "identifier": 162254711, - "sqm_ocr": 131.2, - "price": 4000.0, - "price_per_sqm": 30.487804878048784, - "url": "https://www.rightmove.co.uk/properties/162254711", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166331/162254711/166331_1326844_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.960472", - "last_seen": "2025-06-01T22:05:41.265016", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.278795, - 51.54713 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/162254759", - "info": { - "identifier": 162254759, - "sqm_ocr": null, - "price": 3550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162254759", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/162254759/78429_LON-642_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.004670", - "last_seen": "2025-06-01T22:06:15.999398", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18695, - 51.51095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/162254780", - "info": { - "identifier": 162254780, - "sqm_ocr": null, - "price": 3402.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162254780", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/162254780/120463_33901416_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.037756", - "last_seen": "2025-06-01T22:06:16.019892", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169599, - 51.530464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162254846", - "info": { - "identifier": 162254846, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162254846", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Tower Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280316/162254846/280316_TOW1881128_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.05514, - 51.51449 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2903.0, - "url": "https://www.rightmove.co.uk/properties/162254996", - "info": { - "identifier": 162254996, - "sqm_ocr": null, - "price": 2903.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162254996", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/162254996/120463_33901433_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.618717", - "last_seen": "2025-06-01T22:06:14.726085", - "price": 2903 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171337, - 51.513668 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162255011", - "info": { - "identifier": 162255011, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162255011", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/162255011/77511_SXX120702_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.104921", - "last_seen": "2025-06-01T22:06:10.661668", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067603, - 51.52364 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162255029", - "info": { - "identifier": 162255029, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162255029", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/162255029/264404_RX583493_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.820871", - "last_seen": "2025-06-01T22:06:07.572843", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.001427, - 51.542698 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.96, - "qmprice": 45.48, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162255068", - "info": { - "identifier": 162255068, - "sqm_ocr": 65.96, - "price": 3000.0, - "price_per_sqm": 45.482110369921166, - "url": "https://www.rightmove.co.uk/properties/162255068", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52617/162255068/52617_CSG210028_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.344516", - "last_seen": "2025-06-01T22:06:15.579228", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177715, - 51.52481 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.6, - "qmprice": 35.02, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162255143", - "info": { - "identifier": 162255143, - "sqm_ocr": 65.6, - "price": 2297.0, - "price_per_sqm": 35.015243902439025, - "url": "https://www.rightmove.co.uk/properties/162255143", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/162255143/198539_33901449_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.661364", - "last_seen": "2025-06-01T22:06:08.877485", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035955, - 51.51275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162255215", - "info": { - "identifier": 162255215, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162255215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/162255215/78429_LON-627_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.411493", - "last_seen": "2025-06-01T22:05:57.385505", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19322, - 51.51058 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162255539", - "info": { - "identifier": 162255539, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162255539", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "London Homes Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162716/162255539/162716_3030_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.935473", - "last_seen": "2025-06-01T22:05:44.902156", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295936, - 51.52927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.4, - "qmprice": 50.2, - "rooms": 2, - "total_price": 3835.0, - "url": "https://www.rightmove.co.uk/properties/162255569", - "info": { - "identifier": 162255569, - "sqm_ocr": 76.4, - "price": 3835.0, - "price_per_sqm": 50.19633507853403, - "url": "https://www.rightmove.co.uk/properties/162255569", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Mountgrange Heritage", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84580/162255569/84580_68904_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.769974", - "last_seen": "2025-06-01T22:05:58.204092", - "price": 3835 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223328, - 51.516483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.3, - "qmprice": 36.17, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162256031", - "info": { - "identifier": 162256031, - "sqm_ocr": 55.3, - "price": 2000.0, - "price_per_sqm": 36.166365280289334, - "url": "https://www.rightmove.co.uk/properties/162256031", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13093/162256031/13093_BDC190496_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.739762", - "last_seen": "2025-06-01T22:05:39.663236", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19454, - 51.60112 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2175.0, - "url": "https://www.rightmove.co.uk/properties/162256112", - "info": { - "identifier": 162256112, - "sqm_ocr": null, - "price": 2175.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162256112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Capital Heights Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55386/162256112/55386_12677907_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.252772", - "last_seen": "2025-06-01T22:06:10.347621", - "price": 2175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.049307, - 51.521477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162256319", - "info": { - "identifier": 162256319, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162256319", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/162256319/39507_556527_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.145262", - "last_seen": "2025-06-01T22:06:08.065835", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.031213, - 51.52375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.5, - "qmprice": 49.52, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162256451", - "info": { - "identifier": 162256451, - "sqm_ocr": 52.5, - "price": 2600.0, - "price_per_sqm": 49.523809523809526, - "url": "https://www.rightmove.co.uk/properties/162256451", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Cranbrook Lettings & Sales", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/237k/236963/162256451/236963_cranbrook_822561606_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.886671", - "last_seen": "2025-06-01T22:06:03.764929", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.070853, - 51.57833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.84, - "qmprice": 36.38, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162256541", - "info": { - "identifier": 162256541, - "sqm_ocr": 72.84, - "price": 2650.0, - "price_per_sqm": 36.38110928061504, - "url": "https://www.rightmove.co.uk/properties/162256541", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162256541/96668_248671616052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.086432", - "last_seen": "2025-06-01T20:19:59.086432", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018126, - 51.498333 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162256577", - "info": { - "identifier": 162256577, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162256577", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162256577/96668_249077920052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.048016", - "last_seen": "2025-06-01T22:05:41.402084", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19488, - 51.5379 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162256592", - "info": { - "identifier": 162256592, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162256592", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162256592/96668_248753818052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.323651", - "last_seen": "2025-06-01T22:05:48.011321", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072932, - 51.540985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162256676", - "info": { - "identifier": 162256676, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162256676", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162256676/96668_249122421052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.530891", - "last_seen": "2025-06-01T22:06:01.621819", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188787, - 51.39741 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.5, - "qmprice": 29.68, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162256838", - "info": { - "identifier": 162256838, - "sqm_ocr": 77.5, - "price": 2300.0, - "price_per_sqm": 29.677419354838708, - "url": "https://www.rightmove.co.uk/properties/162256838", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162256838/96668_249139121052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.443351", - "last_seen": "2025-06-01T22:06:05.845576", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072562, - 51.478714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162256853", - "info": { - "identifier": 162256853, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162256853", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162256853/96668_119626624082021_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.686326", - "last_seen": "2025-06-01T22:05:59.526278", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122327, - 51.440327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162256922", - "info": { - "identifier": 162256922, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162256922", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162256922/96668_245989523042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.669189", - "last_seen": "2025-06-01T22:05:49.947224", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107263, - 51.58558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3185.0, - "url": "https://www.rightmove.co.uk/properties/162257081", - "info": { - "identifier": 162257081, - "sqm_ocr": null, - "price": 3185.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162257081", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/162257081/120463_33901562_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.794828", - "last_seen": "2025-06-01T22:05:44.403851", - "price": 3185 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.250288, - 51.50925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 152.6, - "qmprice": 19.66, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162257177", - "info": { - "identifier": 162257177, - "sqm_ocr": 152.6, - "price": 3000.0, - "price_per_sqm": 19.65923984272608, - "url": "https://www.rightmove.co.uk/properties/162257177", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Langford Russell", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/110k/109573/162257177/109573_P277026_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.759414", - "last_seen": "2025-06-01T22:05:43.698048", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02616, - 51.37453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.9, - "qmprice": 33.38, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162257237", - "info": { - "identifier": 162257237, - "sqm_ocr": 74.9, - "price": 2500.0, - "price_per_sqm": 33.37783711615487, - "url": "https://www.rightmove.co.uk/properties/162257237", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18930/162257237/18930_33901570_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.606122", - "last_seen": "2025-06-01T22:05:53.664402", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135982, - 51.559967 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.9, - "qmprice": 24.81, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162257240", - "info": { - "identifier": 162257240, - "sqm_ocr": 118.9, - "price": 2950.0, - "price_per_sqm": 24.8107653490328, - "url": "https://www.rightmove.co.uk/properties/162257240", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44870/162257240/44870_33739801_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.333489", - "last_seen": "2025-06-01T22:05:39.103983", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.234938, - 51.599155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.3, - "qmprice": 30.69, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162257252", - "info": { - "identifier": 162257252, - "sqm_ocr": 117.3, - "price": 3600.0, - "price_per_sqm": 30.69053708439898, - "url": "https://www.rightmove.co.uk/properties/162257252", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44870/162257252/44870_33901572_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.473178", - "last_seen": "2025-06-01T22:05:49.888542", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132846, - 51.573704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.0, - "qmprice": 36.22, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/162257297", - "info": { - "identifier": 162257297, - "sqm_ocr": 98.0, - "price": 3550.0, - "price_per_sqm": 36.224489795918366, - "url": "https://www.rightmove.co.uk/properties/162257297", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43829/162257297/43829_P299431_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.214732", - "last_seen": "2025-06-01T22:06:10.491285", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06883, - 51.51454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.0, - "qmprice": 31.68, - "rooms": 4, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/162257792", - "info": { - "identifier": 162257792, - "sqm_ocr": 106.0, - "price": 3358.0, - "price_per_sqm": 31.67924528301887, - "url": "https://www.rightmove.co.uk/properties/162257792", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Paramount", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62636/162257792/62636_PAR250211_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.192549", - "last_seen": "2025-06-01T22:05:39.397698", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205204, - 51.565147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.4, - "qmprice": 36.35, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162257819", - "info": { - "identifier": 162257819, - "sqm_ocr": 78.4, - "price": 2850.0, - "price_per_sqm": 36.35204081632653, - "url": "https://www.rightmove.co.uk/properties/162257819", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7111/162257819/7111_P2693B5722_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.374531", - "last_seen": "2025-06-01T22:06:12.645274", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16913, - 51.46804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.2, - "qmprice": 43.71, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162257864", - "info": { - "identifier": 162257864, - "sqm_ocr": 57.2, - "price": 2500.0, - "price_per_sqm": 43.70629370629371, - "url": "https://www.rightmove.co.uk/properties/162257864", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49030/162257864/49030_PUL230061_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.368345", - "last_seen": "2025-06-01T22:06:01.169389", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214342, - 51.416313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162257867", - "info": { - "identifier": 162257867, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162257867", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Brown & Merry - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64602/162257867/64602_P4477F2221_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.003743", - "last_seen": "2025-06-01T22:05:50.311724", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37738, - 51.56768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162258152", - "info": { - "identifier": 162258152, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162258152", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "D", - "photo_thumbnail": null, - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.747065", - "last_seen": "2025-06-01T22:05:51.332695", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.43439, - 51.50334 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.4, - "qmprice": 35.57, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162258236", - "info": { - "identifier": 162258236, - "sqm_ocr": 98.4, - "price": 3500.0, - "price_per_sqm": 35.56910569105691, - "url": "https://www.rightmove.co.uk/properties/162258236", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148892/162258236/148892_PHL210072_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.854083", - "last_seen": "2025-06-01T22:06:15.033957", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204221, - 51.52711 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162258536", - "info": { - "identifier": 162258536, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162258536", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "CITY REALTOR LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/179k/178868/162258536/178868_33901679_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.475071", - "last_seen": "2025-06-01T22:06:08.437488", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06425, - 51.515335 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.5, - "qmprice": 43.98, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162258902", - "info": { - "identifier": 162258902, - "sqm_ocr": 66.5, - "price": 2925.0, - "price_per_sqm": 43.984962406015036, - "url": "https://www.rightmove.co.uk/properties/162258902", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Circa London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141788/162258902/141788_2494740_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.698039", - "last_seen": "2025-06-01T22:06:06.743536", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0917, - 51.5052 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.6, - "qmprice": 40.8, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162259301", - "info": { - "identifier": 162259301, - "sqm_ocr": 57.6, - "price": 2350.0, - "price_per_sqm": 40.79861111111111, - "url": "https://www.rightmove.co.uk/properties/162259301", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/162259301/101522_1327266_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.457825", - "last_seen": "2025-06-01T22:05:47.427143", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056823, - 51.543034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/162259454", - "info": { - "identifier": 162259454, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162259454", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/162259454/80105_814_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.801069", - "last_seen": "2025-06-01T22:05:43.770926", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110152, - 51.422882 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162259493", - "info": { - "identifier": 162259493, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162259493", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Steps Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7492/162259493/7492_33881689_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.075309", - "last_seen": "2025-06-01T22:05:38.340990", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.148138, - 51.54976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 38.73, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162259673", - "info": { - "identifier": 162259673, - "sqm_ocr": 71.0, - "price": 2750.0, - "price_per_sqm": 38.732394366197184, - "url": "https://www.rightmove.co.uk/properties/162259673", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162259673/221711_3468_EAF_183406_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.525516", - "last_seen": "2025-06-01T22:06:08.627553", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04583, - 51.520874 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.6, - "qmprice": 31.02, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162259766", - "info": { - "identifier": 162259766, - "sqm_ocr": 80.6, - "price": 2500.0, - "price_per_sqm": 31.01736972704715, - "url": "https://www.rightmove.co.uk/properties/162259766", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22275/162259766/22275_BKL070426_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.243886", - "last_seen": "2025-06-01T22:05:48.582705", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20504, - 51.49185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.3, - "qmprice": 45.76, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162260156", - "info": { - "identifier": 162260156, - "sqm_ocr": 74.3, - "price": 3400.0, - "price_per_sqm": 45.760430686406465, - "url": "https://www.rightmove.co.uk/properties/162260156", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71785/162260156/71785_33901870_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.614118", - "last_seen": "2025-06-01T22:05:59.568095", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130941, - 51.453957 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3224.0, - "url": "https://www.rightmove.co.uk/properties/162260312", - "info": { - "identifier": 162260312, - "sqm_ocr": null, - "price": 3224.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162260312", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Letting Engine", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257840/162260312/257840_713_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.622552", - "last_seen": "2025-06-01T22:05:45.301186", - "price": 3224.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.250166, - 51.51345 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.4, - "qmprice": 41.43, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162260387", - "info": { - "identifier": 162260387, - "sqm_ocr": 84.4, - "price": 3497.0, - "price_per_sqm": 41.43364928909952, - "url": "https://www.rightmove.co.uk/properties/162260387", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Glentree Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/191k/190037/162260387/190037_33901890_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.355957", - "last_seen": "2025-06-01T22:05:39.077761", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19885, - 51.57421 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162260432", - "info": { - "identifier": 162260432, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162260432", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Century 21 Goodmayes", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279887/162260432/279887_R210422_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.767030", - "last_seen": "2025-06-01T22:06:04.027392", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0771, - 51.600864 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3680.0, - "url": "https://www.rightmove.co.uk/properties/162260504", - "info": { - "identifier": 162260504, - "sqm_ocr": null, - "price": 3680.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162260504", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/162260504/78429_LON-418_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.670947", - "last_seen": "2025-06-01T22:05:53.094954", - "price": 3680.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093, - 51.52581 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.87, - "qmprice": 46.58, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162260678", - "info": { - "identifier": 162260678, - "sqm_ocr": 85.87, - "price": 4000.0, - "price_per_sqm": 46.582042622569, - "url": "https://www.rightmove.co.uk/properties/162260678", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "CHAMBR\u00c9", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230147/162260678/230147_254_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.395758", - "last_seen": "2025-06-01T22:05:42.344138", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121963, - 51.518772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.2, - "qmprice": 25.78, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162260855", - "info": { - "identifier": 162260855, - "sqm_ocr": 89.2, - "price": 2300.0, - "price_per_sqm": 25.7847533632287, - "url": "https://www.rightmove.co.uk/properties/162260855", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Churchill Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10145/162260855/10145_33901927_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.653874", - "last_seen": "2025-06-01T22:06:11.876599", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03228, - 51.593555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162261023", - "info": { - "identifier": 162261023, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162261023", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/162261023/80105_2596_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.959004", - "last_seen": "2025-06-01T22:05:47.658056", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.044358, - 51.54548 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.83, - "qmprice": 42.95, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162261083", - "info": { - "identifier": 162261083, - "sqm_ocr": 76.83, - "price": 3300.0, - "price_per_sqm": 42.95197188598204, - "url": "https://www.rightmove.co.uk/properties/162261083", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Brik", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66704/162261083/66704_32746846_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.642214", - "last_seen": "2025-06-01T22:05:48.993558", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198922, - 51.481976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162261335", - "info": { - "identifier": 162261335, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162261335", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Surrey Quays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60474/162261335/60474_17082105AW_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:09.210823", - "last_seen": "2025-06-01T22:06:09.210823", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01566, - 51.49764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3207.0, - "url": "https://www.rightmove.co.uk/properties/162261893", - "info": { - "identifier": 162261893, - "sqm_ocr": null, - "price": 3207.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162261893", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/162261893/146147_PR211861_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.336944", - "last_seen": "2025-06-01T17:39:04.780036", - "price": 3206 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055491, - 51.51799 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162262004", - "info": { - "identifier": 162262004, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162262004", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Rolfe East", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/38k/37577/162262004/37577_33902000_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.424561", - "last_seen": "2025-06-01T22:05:45.193457", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.327551, - 51.49688 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162262091", - "info": { - "identifier": 162262091, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162262091", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22233/162262091/22233_CSV250178_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.444531", - "last_seen": "2025-06-01T22:06:00.061989", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130192, - 51.47068 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.3, - "qmprice": 33.96, - "rooms": 2, - "total_price": 2557.0, - "url": "https://www.rightmove.co.uk/properties/162262115", - "info": { - "identifier": 162262115, - "sqm_ocr": 75.3, - "price": 2557.0, - "price_per_sqm": 33.95750332005312, - "url": "https://www.rightmove.co.uk/properties/162262115", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49922/162262115/49922_CEI243060_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.920535", - "last_seen": "2025-06-01T22:06:02.699637", - "price": 2556.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03063, - 51.499702 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162262253", - "info": { - "identifier": 162262253, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162262253", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Jukes & Co Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285254/162262253/285254_a0523533-eacf-4ac1-b1b7-8cb7165f2b36_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.205244", - "last_seen": "2025-06-01T22:06:06.696368", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0688, - 51.43333 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162262283", - "info": { - "identifier": 162262283, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162262283", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13325/162262283/13325_CHL140103_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.117360", - "last_seen": "2025-06-01T22:05:51.963215", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300809, - 51.484406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.49, - "qmprice": 48.96, - "rooms": 3, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/162262412", - "info": { - "identifier": 162262412, - "sqm_ocr": 69.49, - "price": 3402.0, - "price_per_sqm": 48.95668441502375, - "url": "https://www.rightmove.co.uk/properties/162262412", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52942/162262412/52942_33902019_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.263345", - "last_seen": "2025-06-01T22:06:15.167956", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128449, - 51.49395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162262814", - "info": { - "identifier": 162262814, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162262814", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90035/162262814/90035_33902045_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.094983", - "last_seen": "2025-06-01T22:05:54.944381", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.245468, - 51.50907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162262907", - "info": { - "identifier": 162262907, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162262907", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/162262907/174452_16392_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.464013", - "last_seen": "2025-06-01T22:05:56.581745", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00838, - 51.50056 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3663.0, - "url": "https://www.rightmove.co.uk/properties/162263012", - "info": { - "identifier": 162263012, - "sqm_ocr": null, - "price": 3663.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162263012", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dolphin Square", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58030/162263012/58030_DUN309_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.010561", - "last_seen": "2025-06-01T22:06:14.311204", - "price": 3663.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13713, - 51.48678 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 153.5, - "qmprice": 26.06, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162263912", - "info": { - "identifier": 162263912, - "sqm_ocr": 153.5, - "price": 4000.0, - "price_per_sqm": 26.058631921824105, - "url": "https://www.rightmove.co.uk/properties/162263912", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/162263912/84791_33902082_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.172317", - "last_seen": "2025-06-01T22:05:56.525351", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299617, - 51.509293 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.4, - "qmprice": 32.48, - "rooms": 3, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/162263918", - "info": { - "identifier": 162263918, - "sqm_ocr": 115.4, - "price": 3748.0, - "price_per_sqm": 32.47833622183709, - "url": "https://www.rightmove.co.uk/properties/162263918", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/162263918/84791_33902083_IMG_08_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.694148", - "last_seen": "2025-06-01T22:05:56.497926", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.289998, - 51.505775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.51, - "qmprice": 33.61, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162263957", - "info": { - "identifier": 162263957, - "sqm_ocr": 59.51, - "price": 2000.0, - "price_per_sqm": 33.60779700890607, - "url": "https://www.rightmove.co.uk/properties/162263957", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Truepenny's", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49874/162263957/49874_5150_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.253814", - "last_seen": "2025-06-01T22:05:39.892882", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.109636, - 51.4668 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3775.0, - "url": "https://www.rightmove.co.uk/properties/162263981", - "info": { - "identifier": 162263981, - "sqm_ocr": null, - "price": 3775.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162263981", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "ABACO Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/184k/183806/162263981/183806_33902086_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.241277", - "last_seen": "2025-06-01T22:05:54.709966", - "price": 3775.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180269, - 51.551548 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162264215", - "info": { - "identifier": 162264215, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162264215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162264215/191744_RL4974_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.719311", - "last_seen": "2025-06-01T22:06:02.456581", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005659, - 51.513042 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162264278", - "info": { - "identifier": 162264278, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162264278", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162264278/96668_243056825032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.025772", - "last_seen": "2025-06-01T22:06:10.030709", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.045258, - 51.511692 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.89, - "qmprice": 43.18, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162264347", - "info": { - "identifier": 162264347, - "sqm_ocr": 79.89, - "price": 3450.0, - "price_per_sqm": 43.18437852046564, - "url": "https://www.rightmove.co.uk/properties/162264347", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Jefferies", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/244k/243215/162264347/243215_RX581686_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.388522", - "last_seen": "2025-06-01T22:05:58.424049", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198182, - 51.50887 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162264482", - "info": { - "identifier": 162264482, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162264482", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107902/162264482/107902_SBA250102_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.517742", - "last_seen": "2025-06-01T22:05:59.884333", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114823, - 51.505486 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.7, - "qmprice": 38.85, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/162264773", - "info": { - "identifier": 162264773, - "sqm_ocr": 70.7, - "price": 2747.0, - "price_per_sqm": 38.85431400282885, - "url": "https://www.rightmove.co.uk/properties/162264773", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Anderson Rose", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79087/162264773/79087_TOW250071_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.091549", - "last_seen": "2025-06-01T22:06:06.773581", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075117, - 51.50136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162265019", - "info": { - "identifier": 162265019, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162265019", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/162265019/32793_35546_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.571961", - "last_seen": "2025-06-01T22:05:40.772183", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23441, - 51.56714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162265115", - "info": { - "identifier": 162265115, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162265115", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162265115/191744_RL3559_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.505543", - "last_seen": "2025-06-01T22:05:49.224331", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184806, - 51.476597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 27.64, - "rooms": 3, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/162265247", - "info": { - "identifier": 162265247, - "sqm_ocr": 85.0, - "price": 2349.0, - "price_per_sqm": 27.63529411764706, - "url": "https://www.rightmove.co.uk/properties/162265247", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Finlay Brewer", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74431/162265247/74431_33902138_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.474498", - "last_seen": "2025-06-01T22:06:12.267814", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201045, - 51.448395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.5, - "qmprice": 37.69, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162265298", - "info": { - "identifier": 162265298, - "sqm_ocr": 99.5, - "price": 3750.0, - "price_per_sqm": 37.688442211055275, - "url": "https://www.rightmove.co.uk/properties/162265298", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/162265298/253853_1327077_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.473806", - "last_seen": "2025-06-01T22:06:04.945893", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084556, - 51.48526 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 32.97, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162265547", - "info": { - "identifier": 162265547, - "sqm_ocr": 91.0, - "price": 3000.0, - "price_per_sqm": 32.967032967032964, - "url": "https://www.rightmove.co.uk/properties/162265547", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/162265547/65785_33902146_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.084234", - "last_seen": "2025-06-01T22:06:13.617883", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.156402, - 51.439426 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.16, - "qmprice": 38.82, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162265556", - "info": { - "identifier": 162265556, - "sqm_ocr": 90.16, - "price": 3500.0, - "price_per_sqm": 38.81987577639752, - "url": "https://www.rightmove.co.uk/properties/162265556", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162265556/43310_CWL240428_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.040411", - "last_seen": "2025-06-01T22:06:10.806674", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008521, - 51.50021 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.16, - "qmprice": 31.71, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162265613", - "info": { - "identifier": 162265613, - "sqm_ocr": 126.16, - "price": 4000.0, - "price_per_sqm": 31.70577045022194, - "url": "https://www.rightmove.co.uk/properties/162265613", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "The Bespoke Agent", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/132k/131029/162265613/131029_TBA210026_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.097841", - "last_seen": "2025-06-01T22:05:47.346757", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091761, - 51.52936 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162265682", - "info": { - "identifier": 162265682, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162265682", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "London Move", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261842/162265682/261842_268_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.700221", - "last_seen": "2025-06-01T22:05:53.138908", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08163, - 51.54955 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162265898", - "info": { - "identifier": 162265898, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162265898", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Conran Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17519/162265898/17519_LET240159_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.528213", - "last_seen": "2025-06-01T22:05:46.632125", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.016933, - 51.494167 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.53, - "qmprice": 42.38, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/162265919", - "info": { - "identifier": 162265919, - "sqm_ocr": 56.53, - "price": 2396.0, - "price_per_sqm": 42.384574562179374, - "url": "https://www.rightmove.co.uk/properties/162265919", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71137/162265919/71137_33902164_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.286121", - "last_seen": "2025-06-01T22:06:07.091996", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105938, - 51.49847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162265931", - "info": { - "identifier": 162265931, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162265931", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Wellington Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288956/162265931/288956_33902166_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.141289", - "last_seen": "2025-06-01T22:05:58.466025", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213423, - 51.502228 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162266075", - "info": { - "identifier": 162266075, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162266075", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22268/162266075/22268_HAC230324_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.169438", - "last_seen": "2025-06-01T22:05:48.001871", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070219, - 51.546806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162266111", - "info": { - "identifier": 162266111, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162266111", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "London Property Guru", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97850/162266111/97850_RX583589_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.128043", - "last_seen": "2025-06-01T22:05:49.498456", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222639, - 51.51171 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.1, - "qmprice": 30.38, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162266198", - "info": { - "identifier": 162266198, - "sqm_ocr": 115.1, - "price": 3497.0, - "price_per_sqm": 30.382276281494356, - "url": "https://www.rightmove.co.uk/properties/162266198", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/162266198/84791_33879504_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.124501", - "last_seen": "2025-06-01T22:05:44.572710", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312409, - 51.520737 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.2, - "qmprice": 32.35, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162266231", - "info": { - "identifier": 162266231, - "sqm_ocr": 108.2, - "price": 3500.0, - "price_per_sqm": 32.34750462107209, - "url": "https://www.rightmove.co.uk/properties/162266231", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146498/162266231/146498_33902181_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.363196", - "last_seen": "2025-06-01T22:06:13.777737", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130783, - 51.484173 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162266330", - "info": { - "identifier": 162266330, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162266330", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Aston Square", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274703/162266330/274703_F5Linburn342_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.621444", - "last_seen": "2025-06-01T22:05:40.224877", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20277, - 51.54616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162266393", - "info": { - "identifier": 162266393, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162266393", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53654/162266393/53654_33895148_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.570450", - "last_seen": "2025-06-01T22:05:48.219331", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181864, - 51.476604 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162266501", - "info": { - "identifier": 162266501, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162266501", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Property Guru", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97850/162266501/97850_RX583601_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.008280", - "last_seen": "2025-06-01T22:05:49.320787", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22251, - 51.51159 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162266543", - "info": { - "identifier": 162266543, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162266543", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162266543/96668_248659516052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.033255", - "last_seen": "2025-06-01T22:05:45.894945", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136263, - 51.614574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162266552", - "info": { - "identifier": 162266552, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162266552", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162266552/96668_249022020052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.034549", - "last_seen": "2025-06-01T22:05:50.115423", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108656, - 51.611553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162266678", - "info": { - "identifier": 162266678, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162266678", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "London Property Guru", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97850/162266678/97850_RX583604_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.126692", - "last_seen": "2025-06-01T22:06:10.639597", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016936, - 51.5009 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 47.62, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162266741", - "info": { - "identifier": 162266741, - "sqm_ocr": 63.0, - "price": 3000.0, - "price_per_sqm": 47.61904761904762, - "url": "https://www.rightmove.co.uk/properties/162266741", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43428/162266741/43428_FCL220049_L_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.206098", - "last_seen": "2025-06-01T22:05:57.662021", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192634, - 51.49499 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.43, - "qmprice": 56.0, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162266888", - "info": { - "identifier": 162266888, - "sqm_ocr": 71.43, - "price": 4000.0, - "price_per_sqm": 55.99888002239955, - "url": "https://www.rightmove.co.uk/properties/162266888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162266888/55101_1327333_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.305100", - "last_seen": "2025-06-01T22:06:04.850220", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08232, - 51.49669 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.43, - "qmprice": 36.4, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162266894", - "info": { - "identifier": 162266894, - "sqm_ocr": 71.43, - "price": 2600.0, - "price_per_sqm": 36.399272014559706, - "url": "https://www.rightmove.co.uk/properties/162266894", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162266894/55101_1327332_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.359248", - "last_seen": "2025-06-01T22:06:06.041885", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08232, - 51.49669 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.1, - "qmprice": 43.15, - "rooms": 2, - "total_price": 3974.0, - "url": "https://www.rightmove.co.uk/properties/162266921", - "info": { - "identifier": 162266921, - "sqm_ocr": 92.1, - "price": 3974.0, - "price_per_sqm": 43.14875135722041, - "url": "https://www.rightmove.co.uk/properties/162266921", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Scott City Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6242/162266921/6242_33902209_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.548688", - "last_seen": "2025-06-01T22:05:43.261390", - "price": 3973 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107703, - 51.514507 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.39, - "qmprice": 43.42, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162267014", - "info": { - "identifier": 162267014, - "sqm_ocr": 71.39, - "price": 3100.0, - "price_per_sqm": 43.42344866227763, - "url": "https://www.rightmove.co.uk/properties/162267014", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/162267014/66771_1327254_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.174414", - "last_seen": "2025-06-01T22:05:59.059702", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13178, - 51.47561 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162267050", - "info": { - "identifier": 162267050, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162267050", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greenstone Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88567/162267050/88567_33902213_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.828663", - "last_seen": "2025-06-01T22:06:14.349309", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179416, - 51.53698 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.5, - "qmprice": 31.01, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162267608", - "info": { - "identifier": 162267608, - "sqm_ocr": 64.5, - "price": 2000.0, - "price_per_sqm": 31.007751937984494, - "url": "https://www.rightmove.co.uk/properties/162267608", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/256k/255212/162267608/255212_33902224_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.935785", - "last_seen": "2025-06-01T22:06:06.973483", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064807, - 51.4518 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162267929", - "info": { - "identifier": 162267929, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162267929", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Tenancy Managers", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/277k/276488/162267929/276488_33902228_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.914834", - "last_seen": "2025-06-01T22:05:50.242433", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.338012, - 51.59692 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.06, - "qmprice": 36.67, - "rooms": 2, - "total_price": 2166.0, - "url": "https://www.rightmove.co.uk/properties/162268469", - "info": { - "identifier": 162268469, - "sqm_ocr": 59.06, - "price": 2166.0, - "price_per_sqm": 36.67456823569251, - "url": "https://www.rightmove.co.uk/properties/162268469", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162268469/48101_1327089_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.013591", - "last_seen": "2025-06-01T22:06:10.930809", - "price": 2166.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034143, - 51.513157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.7, - "qmprice": 36.93, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162268478", - "info": { - "identifier": 162268478, - "sqm_ocr": 67.7, - "price": 2500.0, - "price_per_sqm": 36.92762186115214, - "url": "https://www.rightmove.co.uk/properties/162268478", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/162268478/15957_1327359_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.548914", - "last_seen": "2025-06-01T22:05:42.771534", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175696, - 51.55004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 39.68, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162268490", - "info": { - "identifier": 162268490, - "sqm_ocr": 63.0, - "price": 2500.0, - "price_per_sqm": 39.682539682539684, - "url": "https://www.rightmove.co.uk/properties/162268490", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "& Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279869/162268490/279869_RX583614_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.166538, - 51.629726 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 54.39, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162268631", - "info": { - "identifier": 162268631, - "sqm_ocr": 57.0, - "price": 3100.0, - "price_per_sqm": 54.3859649122807, - "url": "https://www.rightmove.co.uk/properties/162268631", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/162268631/71419_1327357_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.602186", - "last_seen": "2025-06-01T22:05:59.620460", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128058, - 51.434395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 41.23, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162268634", - "info": { - "identifier": 162268634, - "sqm_ocr": 57.0, - "price": 2350.0, - "price_per_sqm": 41.228070175438596, - "url": "https://www.rightmove.co.uk/properties/162268634", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/162268634/71419_1327354_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.605315", - "last_seen": "2025-06-01T22:05:59.616427", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128058, - 51.434395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.1, - "qmprice": 43.16, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162268640", - "info": { - "identifier": 162268640, - "sqm_ocr": 81.1, - "price": 3500.0, - "price_per_sqm": 43.15659679408138, - "url": "https://www.rightmove.co.uk/properties/162268640", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/162268640/66771_1327358_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.606637", - "last_seen": "2025-06-01T22:05:59.588271", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128427, - 51.48133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2775.0, - "url": "https://www.rightmove.co.uk/properties/162269582", - "info": { - "identifier": 162269582, - "sqm_ocr": null, - "price": 2775.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162269582", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Way of Life (Balfron Tower) LLP", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267971/162269582/267971_EVER-2679712y10oMwUMimbya9bUtNErQX1OOiRzO0TFGYwKpbfPbeDJOKEABP6IS_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.106691", - "last_seen": "2025-06-01T22:06:10.686801", - "price": 2775.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010127, - 51.513493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162269780", - "info": { - "identifier": 162269780, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162269780", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162269780/96668_246390026042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:05:54.784501", - "last_seen": "2025-06-01T22:05:54.784501", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096856, - 51.44709 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162270911", - "info": { - "identifier": 162270911, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162270911", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162270911/96668_249175021052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.740498", - "last_seen": "2025-06-01T22:06:15.676848", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203451, - 51.5294 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3055.0, - "url": "https://www.rightmove.co.uk/properties/162271313", - "info": { - "identifier": 162271313, - "sqm_ocr": null, - "price": 3055.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162271313", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/162271313/115768_thenextnova_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "04/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:41.446114", - "last_seen": "2025-06-01T22:06:09.668944", - "price": 3055 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02682, - 51.49279 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162271469", - "info": { - "identifier": 162271469, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162271469", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/162271469/115768_colls665453_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "22/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.140280", - "last_seen": "2025-06-01T22:06:06.861085", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04662, - 51.5014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162271658", - "info": { - "identifier": 162271658, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162271658", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/162271658/115768_board15_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "03/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.779148", - "last_seen": "2025-06-01T22:06:09.059699", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01056, - 51.50565 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.83, - "qmprice": 42.92, - "rooms": 3, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/162272231", - "info": { - "identifier": 162272231, - "sqm_ocr": 85.83, - "price": 3684.0, - "price_per_sqm": 42.922055225445646, - "url": "https://www.rightmove.co.uk/properties/162272231", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/162272231/108515_1325933_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.597519", - "last_seen": "2025-06-01T22:05:49.081932", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188179, - 51.481213 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162272252", - "info": { - "identifier": 162272252, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162272252", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/162272252/115768_manzther65rd_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.763855", - "last_seen": "2025-06-01T22:06:07.598446", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00499, - 51.5249 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.3, - "qmprice": 25.59, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162272834", - "info": { - "identifier": 162272834, - "sqm_ocr": 115.3, - "price": 2950.0, - "price_per_sqm": 25.585429314830876, - "url": "https://www.rightmove.co.uk/properties/162272834", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Adam Hayes Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82115/162272834/82115_33860697_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.210875", - "last_seen": "2025-06-01T22:05:38.455222", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190539, - 51.61653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162273341", - "info": { - "identifier": 162273341, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162273341", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162273341/96668_249169821052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.083901", - "last_seen": "2025-06-01T22:06:10.749238", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038991, - 51.51087 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162273356", - "info": { - "identifier": 162273356, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162273356", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162273356/96668_249053320052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.576200", - "last_seen": "2025-06-01T22:05:42.751496", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12839, - 51.547504 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162273392", - "info": { - "identifier": 162273392, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162273392", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162273392/96668_249204221052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.234297", - "last_seen": "2025-06-01T22:06:01.568259", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.156065, - 51.41705 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3813.0, - "url": "https://www.rightmove.co.uk/properties/162273509", - "info": { - "identifier": 162273509, - "sqm_ocr": null, - "price": 3813.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162273509", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/162273509/115768_78theosming767_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "27/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.408716", - "last_seen": "2025-06-01T22:05:58.967197", - "price": 3813 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11682, - 51.47777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.1, - "qmprice": 34.62, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162273878", - "info": { - "identifier": 162273878, - "sqm_ocr": 75.1, - "price": 2600.0, - "price_per_sqm": 34.620505992010656, - "url": "https://www.rightmove.co.uk/properties/162273878", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/162273878/80340_a1G4J0000025zR0UAI_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.840130", - "last_seen": "2025-06-01T22:06:03.151156", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00901, - 51.51485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3813.0, - "url": "https://www.rightmove.co.uk/properties/162274109", - "info": { - "identifier": 162274109, - "sqm_ocr": null, - "price": 3813.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162274109", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/162274109/115768_7578oln_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "12/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.486779", - "last_seen": "2025-06-01T22:06:05.197374", - "price": 3813 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09804, - 51.48462 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162274265", - "info": { - "identifier": 162274265, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162274265", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/162274265/115768_80ed_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "17/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.678531", - "last_seen": "2025-06-01T22:06:09.538134", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02601, - 51.50014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162274460", - "info": { - "identifier": 162274460, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162274460", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162274460/96668_249203021052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.453931", - "last_seen": "2025-06-01T22:05:49.956506", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107173, - 51.58469 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.3, - "qmprice": 45.94, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162274643", - "info": { - "identifier": 162274643, - "sqm_ocr": 65.3, - "price": 3000.0, - "price_per_sqm": 45.94180704441042, - "url": "https://www.rightmove.co.uk/properties/162274643", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14543/162274643/14543_CIT240025_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.369270", - "last_seen": "2025-06-01T22:05:55.859853", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116045, - 51.52895 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.8, - "qmprice": 35.49, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162275288", - "info": { - "identifier": 162275288, - "sqm_ocr": 64.8, - "price": 2300.0, - "price_per_sqm": 35.49382716049383, - "url": "https://www.rightmove.co.uk/properties/162275288", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74966/162275288/74966_BOW250015_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.980960", - "last_seen": "2025-06-01T22:06:07.270402", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005248, - 51.53591 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/162275738", - "info": { - "identifier": 162275738, - "sqm_ocr": null, - "price": 2195.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162275738", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Milegate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/124k/123322/162275738/123322_POINT_006359_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.205338", - "last_seen": "2025-06-01T22:05:38.453628", - "price": 2095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208375, - 51.570095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162278759", - "info": { - "identifier": 162278759, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162278759", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162278759/96668_249189021052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.841961", - "last_seen": "2025-06-01T22:05:58.598365", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.287536, - 51.407093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162279077", - "info": { - "identifier": 162279077, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162279077", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162279077/96668_247982611052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.572434", - "last_seen": "2025-06-01T22:05:45.197462", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.405038, - 51.53479 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.7, - "qmprice": 45.05, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162279200", - "info": { - "identifier": 162279200, - "sqm_ocr": 77.7, - "price": 3500.0, - "price_per_sqm": 45.04504504504504, - "url": "https://www.rightmove.co.uk/properties/162279200", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/162279200/272819_33902455_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.759034", - "last_seen": "2025-06-01T22:06:09.035163", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019913, - 51.499176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.4, - "qmprice": 56.38, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162280616", - "info": { - "identifier": 162280616, - "sqm_ocr": 67.4, - "price": 3800.0, - "price_per_sqm": 56.379821958456965, - "url": "https://www.rightmove.co.uk/properties/162280616", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/162280616/60927_000018395b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.639825", - "last_seen": "2025-06-01T22:05:52.973386", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09491, - 51.52863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 48.0, - "rooms": 2, - "total_price": 3552.0, - "url": "https://www.rightmove.co.uk/properties/162281171", - "info": { - "identifier": 162281171, - "sqm_ocr": 74.0, - "price": 3552.0, - "price_per_sqm": 48.0, - "url": "https://www.rightmove.co.uk/properties/162281171", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Living by Lendlease", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278564/162281171/278564_278564_p0194411_C-1205_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.985103", - "last_seen": "2025-06-01T22:06:06.337105", - "price": 3410.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088007, - 51.494278 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162281195", - "info": { - "identifier": 162281195, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162281195", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/162281195/52887_33902492_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.238538", - "last_seen": "2025-06-01T22:06:01.562121", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206291, - 51.422108 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162281198", - "info": { - "identifier": 162281198, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162281198", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52887/162281198/52887_33902493_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.236828", - "last_seen": "2025-06-01T22:06:01.564415", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228973, - 51.40889 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162281246", - "info": { - "identifier": 162281246, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162281246", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "PMP International", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240842/162281246/240842_33902498_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.853172", - "last_seen": "2025-06-01T22:05:42.166322", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172873, - 51.555157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.5, - "qmprice": 33.12, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162281321", - "info": { - "identifier": 162281321, - "sqm_ocr": 78.5, - "price": 2600.0, - "price_per_sqm": 33.12101910828026, - "url": "https://www.rightmove.co.uk/properties/162281321", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Woolwich", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260435/162281321/260435_000017296b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.602053", - "last_seen": "2025-06-01T22:05:54.958285", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06776, - 51.4944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.9, - "qmprice": 29.99, - "rooms": 3, - "total_price": 3146.0, - "url": "https://www.rightmove.co.uk/properties/162281465", - "info": { - "identifier": 162281465, - "sqm_ocr": 104.9, - "price": 3146.0, - "price_per_sqm": 29.990467111534794, - "url": "https://www.rightmove.co.uk/properties/162281465", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/162281465/25485_33902506_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.028409", - "last_seen": "2025-06-01T22:05:42.970938", - "price": 3146 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190368, - 51.549446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.5, - "qmprice": 33.33, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162281468", - "info": { - "identifier": 162281468, - "sqm_ocr": 67.5, - "price": 2250.0, - "price_per_sqm": 33.333333333333336, - "url": "https://www.rightmove.co.uk/properties/162281468", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30575/162281468/30575_05310275_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.459946", - "last_seen": "2025-06-01T22:06:04.699958", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.301885, - 51.45588 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162281618", - "info": { - "identifier": 162281618, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162281618", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75088/162281618/75088_000728327_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:43.990191", - "last_seen": "2025-06-01T22:05:38.292940", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.11465, - 51.5334 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3364.0, - "url": "https://www.rightmove.co.uk/properties/162281696", - "info": { - "identifier": 162281696, - "sqm_ocr": null, - "price": 3364.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162281696", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162281696/253604_239B2205_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.660987", - "last_seen": "2025-06-01T22:06:07.643835", - "price": 3364.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3351.0, - "url": "https://www.rightmove.co.uk/properties/162281759", - "info": { - "identifier": 162281759, - "sqm_ocr": null, - "price": 3351.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162281759", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162281759/253604_256b2205_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.961646", - "last_seen": "2025-06-01T22:06:07.246904", - "price": 3351.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3292.0, - "url": "https://www.rightmove.co.uk/properties/162281828", - "info": { - "identifier": 162281828, - "sqm_ocr": null, - "price": 3292.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162281828", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162281828/253604_261B2205_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.611595", - "last_seen": "2025-06-01T22:06:07.410822", - "price": 3292.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.2, - "qmprice": 26.41, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162282995", - "info": { - "identifier": 162282995, - "sqm_ocr": 85.2, - "price": 2250.0, - "price_per_sqm": 26.408450704225352, - "url": "https://www.rightmove.co.uk/properties/162282995", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "James Anderson", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56088/162282995/56088_31766032_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.633850", - "last_seen": "2025-06-01T22:06:04.481807", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.266459, - 51.468826 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.8, - "qmprice": 56.05, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162283160", - "info": { - "identifier": 162283160, - "sqm_ocr": 67.8, - "price": 3800.0, - "price_per_sqm": 56.04719764011799, - "url": "https://www.rightmove.co.uk/properties/162283160", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57952/162283160/57952_KDR251859_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.668282", - "last_seen": "2025-06-01T22:05:59.530130", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109632, - 51.483887 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162283232", - "info": { - "identifier": 162283232, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162283232", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Pedder", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21476/162283232/21476_33546136_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.979178", - "last_seen": "2025-06-01T22:06:06.172670", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084236, - 51.45079 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162283454", - "info": { - "identifier": 162283454, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162283454", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137699/162283454/137699_33902633_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.371533", - "last_seen": "2025-06-01T22:05:50.072904", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15877, - 51.58166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 42.17, - "rooms": 3, - "total_price": 3163.0, - "url": "https://www.rightmove.co.uk/properties/162283601", - "info": { - "identifier": 162283601, - "sqm_ocr": 75.0, - "price": 3163.0, - "price_per_sqm": 42.17333333333333, - "url": "https://www.rightmove.co.uk/properties/162283601", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/162283601/80796_299_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.720997", - "last_seen": "2025-06-01T22:05:59.475859", - "price": 3163 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11062, - 51.46252 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162283742", - "info": { - "identifier": 162283742, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162283742", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Bumblebee", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/193k/192527/162283742/192527_9PoinLond_1896675624_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.895621", - "last_seen": "2025-06-01T22:05:39.738502", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17898, - 51.598587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.5, - "qmprice": 53.1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162284276", - "info": { - "identifier": 162284276, - "sqm_ocr": 56.5, - "price": 3000.0, - "price_per_sqm": 53.097345132743364, - "url": "https://www.rightmove.co.uk/properties/162284276", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30575/162284276/30575_05310958_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.590979", - "last_seen": "2025-06-01T22:06:04.525255", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293499, - 51.461872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162284351", - "info": { - "identifier": 162284351, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162284351", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Tony Alan Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "22/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.077817", - "last_seen": "2025-06-01T22:06:09.851190", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06394, - 51.51086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 145.68, - "qmprice": 20.59, - "rooms": 4, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162285287", - "info": { - "identifier": 162285287, - "sqm_ocr": 145.68, - "price": 2999.0, - "price_per_sqm": 20.586216364634815, - "url": "https://www.rightmove.co.uk/properties/162285287", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233849/162285287/233849_2693320_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.103667", - "last_seen": "2025-06-01T22:05:51.934038", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30732, - 51.489723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162285311", - "info": { - "identifier": 162285311, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162285311", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Mann Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22532/162285311/22532_000905918_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.240012", - "last_seen": "2025-06-01T22:05:39.898460", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.11696, - 51.43696 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.1, - "qmprice": 40.43, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162285656", - "info": { - "identifier": 162285656, - "sqm_ocr": 91.1, - "price": 3683.0, - "price_per_sqm": 40.42810098792536, - "url": "https://www.rightmove.co.uk/properties/162285656", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54732/162285656/54732_STL250042_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.528034", - "last_seen": "2025-06-01T22:05:42.811928", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162541, - 51.536808 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.99, - "qmprice": 35.72, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162285944", - "info": { - "identifier": 162285944, - "sqm_ocr": 62.99, - "price": 2250.0, - "price_per_sqm": 35.71995554849976, - "url": "https://www.rightmove.co.uk/properties/162285944", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/162285944/77192_EMS_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.689065", - "last_seen": "2025-06-01T22:05:39.345113", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16478, - 51.6158 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.7, - "qmprice": 32.32, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162286079", - "info": { - "identifier": 162286079, - "sqm_ocr": 72.7, - "price": 2350.0, - "price_per_sqm": 32.32462173314993, - "url": "https://www.rightmove.co.uk/properties/162286079", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Pedder", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/235k/234272/162286079/234272_33902807_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.461683", - "last_seen": "2025-06-01T22:06:05.804914", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.062309, - 51.473732 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162286541", - "info": { - "identifier": 162286541, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162286541", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Homes Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162716/162286541/162716_3154_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.841081", - "last_seen": "2025-06-01T22:05:44.352220", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.319778, - 51.505478 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 24.69, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162286571", - "info": { - "identifier": 162286571, - "sqm_ocr": 81.0, - "price": 2000.0, - "price_per_sqm": 24.691358024691358, - "url": "https://www.rightmove.co.uk/properties/162286571", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Centro Residential Sales and Lettings Limited", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10393/162286571/10393_33902837_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.475563", - "last_seen": "2025-06-01T22:06:07.772779", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215871, - 51.356148 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.3, - "qmprice": 38.84, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162286934", - "info": { - "identifier": 162286934, - "sqm_ocr": 75.3, - "price": 2925.0, - "price_per_sqm": 38.844621513944226, - "url": "https://www.rightmove.co.uk/properties/162286934", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/162286934/212327_P161058_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.847646", - "last_seen": "2025-06-01T22:06:07.902869", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02484, - 51.50193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162287156", - "info": { - "identifier": 162287156, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162287156", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Robinson Jackson", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/60k/59433/162287156/59433_BAN250216_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.277328", - "last_seen": "2025-06-01T22:05:39.962265", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.144109, - 51.491333 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162287222", - "info": { - "identifier": 162287222, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162287222", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 985.0, - "service_charge": 4264.0, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/162287222/264404_RX583700_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.985637", - "last_seen": "2025-06-01T22:06:00.690479", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03766, - 51.49191 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 42.65, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162287336", - "info": { - "identifier": 162287336, - "sqm_ocr": 68.0, - "price": 2900.0, - "price_per_sqm": 42.64705882352941, - "url": "https://www.rightmove.co.uk/properties/162287336", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210107/162287336/210107_P300672_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.046601", - "last_seen": "2025-06-01T22:05:41.410983", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23254, - 51.54472 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 42.75, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162287378", - "info": { - "identifier": 162287378, - "sqm_ocr": 69.0, - "price": 2950.0, - "price_per_sqm": 42.7536231884058, - "url": "https://www.rightmove.co.uk/properties/162287378", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52518/162287378/52518_CWL160123_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.386106", - "last_seen": "2025-06-01T20:19:59.519160", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015503, - 51.497795 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.4, - "qmprice": 36.64, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162287573", - "info": { - "identifier": 162287573, - "sqm_ocr": 61.4, - "price": 2250.0, - "price_per_sqm": 36.644951140065146, - "url": "https://www.rightmove.co.uk/properties/162287573", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19269/162287573/19269_BET220042_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.421282", - "last_seen": "2025-06-01T22:06:08.348153", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.059212, - 51.528225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.6, - "qmprice": 36.86, - "rooms": 3, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/162287720", - "info": { - "identifier": 162287720, - "sqm_ocr": 67.6, - "price": 2492.0, - "price_per_sqm": 36.86390532544379, - "url": "https://www.rightmove.co.uk/properties/162287720", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/162287720/84833_33902904_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.013933", - "last_seen": "2025-06-01T22:05:49.331606", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.231508, - 51.51473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2449.0, - "url": "https://www.rightmove.co.uk/properties/162288638", - "info": { - "identifier": 162288638, - "sqm_ocr": null, - "price": 2449.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162288638", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "LAND ROYALE PROPERTIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272384/162288638/272384_OGBeaumontAvenue_IMG_01_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.675340", - "last_seen": "2025-06-01T22:05:40.293972", - "price": 2449.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30825, - 51.55663 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162288740", - "info": { - "identifier": 162288740, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162288740", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Waterfronts", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48795/162288740/48795_29088885_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.562917", - "last_seen": "2025-06-01T22:06:02.624325", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017002, - 51.5081 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.5, - "qmprice": 31.87, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162288992", - "info": { - "identifier": 162288992, - "sqm_ocr": 125.5, - "price": 4000.0, - "price_per_sqm": 31.872509960159363, - "url": "https://www.rightmove.co.uk/properties/162288992", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7963/162288992/7963_33902984_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.088415", - "last_seen": "2025-06-01T22:05:44.614903", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284258, - 51.523636 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.09, - "qmprice": 57.47, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162289178", - "info": { - "identifier": 162289178, - "sqm_ocr": 64.09, - "price": 3683.0, - "price_per_sqm": 57.466063348416284, - "url": "https://www.rightmove.co.uk/properties/162289178", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Laurence Leigh Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80035/162289178/80035_LLR150330_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.451590", - "last_seen": "2025-06-01T22:06:15.445287", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177019, - 51.5331 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162289430", - "info": { - "identifier": 162289430, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162289430", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/162289430/272819_33903009_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.291220", - "last_seen": "2025-06-01T22:05:48.491690", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.226847, - 51.510025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.6, - "qmprice": 42.49, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162289535", - "info": { - "identifier": 162289535, - "sqm_ocr": 70.6, - "price": 3000.0, - "price_per_sqm": 42.4929178470255, - "url": "https://www.rightmove.co.uk/properties/162289535", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162289535/26207_IUL190343_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.944488", - "last_seen": "2025-06-01T22:05:54.172406", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11418, - 51.536762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162289625", - "info": { - "identifier": 162289625, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162289625", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Coultons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115756/162289625/115756_33367640_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.649231", - "last_seen": "2025-06-01T22:06:11.880004", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004169, - 51.63135 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162289664", - "info": { - "identifier": 162289664, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162289664", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/162289664/17418_100415010764_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.917709", - "last_seen": "2025-06-01T22:05:50.633722", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36825, - 51.55667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.8, - "qmprice": 32.23, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162289979", - "info": { - "identifier": 162289979, - "sqm_ocr": 69.8, - "price": 2250.0, - "price_per_sqm": 32.23495702005731, - "url": "https://www.rightmove.co.uk/properties/162289979", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "jdm", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250727/162289979/250727_LGW250033_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.513655", - "last_seen": "2025-06-01T22:05:47.012905", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005311, - 51.48217 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3202.0, - "url": "https://www.rightmove.co.uk/properties/162290435", - "info": { - "identifier": 162290435, - "sqm_ocr": null, - "price": 3202.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162290435", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Sandersons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86681/162290435/86681_SHP0021CD_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.093761", - "last_seen": "2025-06-01T22:05:49.434870", - "price": 3202 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206241, - 51.49429 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.2, - "qmprice": 34.24, - "rooms": 3, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/162290438", - "info": { - "identifier": 162290438, - "sqm_ocr": 99.2, - "price": 3397.0, - "price_per_sqm": 34.243951612903224, - "url": "https://www.rightmove.co.uk/properties/162290438", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218729/162290438/218729_33903074_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.968094", - "last_seen": "2025-06-01T22:05:54.244152", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126528, - 51.555264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.1, - "qmprice": 35.16, - "rooms": 4, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/162290519", - "info": { - "identifier": 162290519, - "sqm_ocr": 88.1, - "price": 3098.0, - "price_per_sqm": 35.164585698070375, - "url": "https://www.rightmove.co.uk/properties/162290519", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84794/162290519/84794_33903079_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.622586", - "last_seen": "2025-06-01T22:05:49.054410", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190742, - 51.466328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162290717", - "info": { - "identifier": 162290717, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162290717", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Woolwich", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260435/162290717/260435_000016480_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.713173", - "last_seen": "2025-06-01T22:05:46.493706", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06681, - 51.49416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.17, - "qmprice": 31.29, - "rooms": 2, - "total_price": 2102.0, - "url": "https://www.rightmove.co.uk/properties/162290918", - "info": { - "identifier": 162290918, - "sqm_ocr": 67.17, - "price": 2102.0, - "price_per_sqm": 31.293732320976627, - "url": "https://www.rightmove.co.uk/properties/162290918", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Oakhill", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/141k/140510/162290918/140510_WES250061_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.588815", - "last_seen": "2025-06-01T22:05:41.458084", - "price": 2101 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216126, - 51.555935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162291173", - "info": { - "identifier": 162291173, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162291173", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "SAB Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261782/162291173/261782_c79cd7ba-904b-46b6-a073-220e25046fd3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.106224", - "last_seen": "2025-06-01T22:05:44.599989", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34948, - 51.536278 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/162291206", - "info": { - "identifier": 162291206, - "sqm_ocr": null, - "price": 2708.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162291206", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/162291206/67576_RL1560_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.395449", - "last_seen": "2025-06-01T22:05:50.054007", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11169, - 51.59446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/162291236", - "info": { - "identifier": 162291236, - "sqm_ocr": null, - "price": 3650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162291236", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "NEXIS Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272531/162291236/272531_MYR240085_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.750438", - "last_seen": "2025-06-01T22:06:13.837469", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132035, - 51.481583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.3, - "qmprice": 63.35, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162291284", - "info": { - "identifier": 162291284, - "sqm_ocr": 51.3, - "price": 3250.0, - "price_per_sqm": 63.35282651072125, - "url": "https://www.rightmove.co.uk/properties/162291284", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162291284/55101_1327244_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.747393", - "last_seen": "2025-06-01T22:06:06.742351", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071596, - 51.486233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.3, - "qmprice": 42.4, - "rooms": 2, - "total_price": 2175.0, - "url": "https://www.rightmove.co.uk/properties/162291293", - "info": { - "identifier": 162291293, - "sqm_ocr": 51.3, - "price": 2175.0, - "price_per_sqm": 42.397660818713454, - "url": "https://www.rightmove.co.uk/properties/162291293", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162291293/55101_1327243_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.699651", - "last_seen": "2025-06-01T22:06:05.452318", - "price": 2175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071596, - 51.486233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 30.04, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162291446", - "info": { - "identifier": 162291446, - "sqm_ocr": 69.9, - "price": 2100.0, - "price_per_sqm": 30.04291845493562, - "url": "https://www.rightmove.co.uk/properties/162291446", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12814/162291446/12814_EAM250418_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.838692", - "last_seen": "2025-06-01T22:05:44.357265", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307207, - 51.524918 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.7, - "qmprice": 48.73, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162291545", - "info": { - "identifier": 162291545, - "sqm_ocr": 70.7, - "price": 3445.0, - "price_per_sqm": 48.727015558698724, - "url": "https://www.rightmove.co.uk/properties/162291545", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/162291545/15954_1319532_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.947819", - "last_seen": "2025-06-01T22:05:54.185780", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120319, - 51.534897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162291581", - "info": { - "identifier": 162291581, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162291581", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Easymove", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237299/162291581/237299_10667356_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.365468", - "last_seen": "2025-06-01T22:06:03.377498", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.040416, - 51.523567 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/162291599", - "info": { - "identifier": 162291599, - "sqm_ocr": null, - "price": 2708.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162291599", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162291599/237116_1711_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.747935", - "last_seen": "2025-06-01T22:05:50.144377", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11179, - 51.59446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/162291737", - "info": { - "identifier": 162291737, - "sqm_ocr": null, - "price": 2448.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162291737", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/162291737/67576_RL1280_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.743716", - "last_seen": "2025-06-01T22:05:53.209193", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123773, - 51.552288 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162291740", - "info": { - "identifier": 162291740, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162291740", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Sincere lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96983/162291740/96983_33874669_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.855170", - "last_seen": "2025-06-01T22:06:03.819693", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.037689, - 51.607487 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 51.32, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162291911", - "info": { - "identifier": 162291911, - "sqm_ocr": 76.0, - "price": 3900.0, - "price_per_sqm": 51.31578947368421, - "url": "https://www.rightmove.co.uk/properties/162291911", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "AMBER & CO (MGMT)", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282725/162291911/282725_5534_AMBE_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.917346", - "last_seen": "2025-06-01T22:05:48.243722", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221873, - 51.511787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.0, - "qmprice": 16.92, - "rooms": 2, - "total_price": 2030.0, - "url": "https://www.rightmove.co.uk/properties/162292058", - "info": { - "identifier": 162292058, - "sqm_ocr": 120.0, - "price": 2030.0, - "price_per_sqm": 16.916666666666668, - "url": "https://www.rightmove.co.uk/properties/162292058", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89149/162292058/89149_HayesD40-2205_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.703617", - "last_seen": "2025-06-01T22:05:51.336532", - "price": 2030.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42562, - 51.50377 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.65, - "qmprice": 48.96, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162292091", - "info": { - "identifier": 162292091, - "sqm_ocr": 79.65, - "price": 3900.0, - "price_per_sqm": 48.964218455743875, - "url": "https://www.rightmove.co.uk/properties/162292091", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244724/162292091/244724_LHL221082_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.940653", - "last_seen": "2025-06-01T22:06:13.197591", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130311, - 51.481964 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/162292433", - "info": { - "identifier": 162292433, - "sqm_ocr": null, - "price": 2448.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162292433", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162292433/237116_1081_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.664059", - "last_seen": "2025-06-01T22:05:53.045870", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12378, - 51.55221 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162292721", - "info": { - "identifier": 162292721, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162292721", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marble Sales & Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280370/162292721/280370_MARB_001136_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.957182", - "last_seen": "2025-06-01T22:05:45.727329", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064965, - 51.66317 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.6, - "qmprice": 43.86, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162293105", - "info": { - "identifier": 162293105, - "sqm_ocr": 45.6, - "price": 2000.0, - "price_per_sqm": 43.859649122807014, - "url": "https://www.rightmove.co.uk/properties/162293105", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stonehouse Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/237k/236363/162293105/236363_TUF220104_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.941179", - "last_seen": "2025-06-01T22:05:57.007022", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144847, - 51.5572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/162293726", - "info": { - "identifier": 162293726, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162293726", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50966/162293726/50966_P4271E0209_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.965222", - "last_seen": "2025-06-01T22:05:49.474195", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22881, - 51.49593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.0, - "qmprice": 32.59, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162293945", - "info": { - "identifier": 162293945, - "sqm_ocr": 113.0, - "price": 3683.0, - "price_per_sqm": 32.5929203539823, - "url": "https://www.rightmove.co.uk/properties/162293945", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Landstones", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221669/162293945/221669_RL1681A_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.609661", - "last_seen": "2025-06-01T22:05:58.226609", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214408, - 51.506474 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.9, - "qmprice": 30.66, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162294410", - "info": { - "identifier": 162294410, - "sqm_ocr": 79.9, - "price": 2450.0, - "price_per_sqm": 30.663329161451813, - "url": "https://www.rightmove.co.uk/properties/162294410", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148610/162294410/148610_KCX250678_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.024573", - "last_seen": "2025-06-01T22:06:00.898562", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016708, - 51.433628 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162294548", - "info": { - "identifier": 162294548, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162294548", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64571/162294548/64571_33903340_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.604318", - "last_seen": "2025-06-01T22:05:42.713199", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178603, - 51.54403 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162294869", - "info": { - "identifier": 162294869, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162294869", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237452/162294869/237452_44t_IMG_09_0000_max_656x437.png", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.724699", - "last_seen": "2025-06-01T22:05:58.749563", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30351, - 51.40846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162294872", - "info": { - "identifier": 162294872, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162294872", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "SJW property management limited", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/233k/232853/162294872/232853_af1e19cb-5960-4df9-87b1-dd713db78bd5_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.667551", - "last_seen": "2025-06-01T22:05:39.675543", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240755, - 51.594765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/162295052", - "info": { - "identifier": 162295052, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162295052", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Homeview Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/184k/183968/162295052/183968_KBN000D4A_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.017338", - "last_seen": "2025-06-01T22:05:42.265577", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199868, - 51.54709 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.7, - "qmprice": 22.02, - "rooms": 4, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162295160", - "info": { - "identifier": 162295160, - "sqm_ocr": 106.7, - "price": 2350.0, - "price_per_sqm": 22.024367385192125, - "url": "https://www.rightmove.co.uk/properties/162295160", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85697/162295160/85697_KDG250379_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.644034", - "last_seen": "2025-06-01T22:05:45.339361", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.351884, - 51.52704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162295280", - "info": { - "identifier": 162295280, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162295280", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237452/162295280/237452_99_IMG_03_0000_max_656x437.png", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.601872", - "last_seen": "2025-06-01T22:05:58.810583", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30278, - 51.40872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.2, - "qmprice": 47.84, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/162295451", - "info": { - "identifier": 162295451, - "sqm_ocr": 74.2, - "price": 3550.0, - "price_per_sqm": 47.84366576819407, - "url": "https://www.rightmove.co.uk/properties/162295451", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/162295451/253853_1327318_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.505044", - "last_seen": "2025-06-01T22:06:05.728677", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101521, - 51.493492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.5, - "qmprice": 43.16, - "rooms": 2, - "total_price": 3302.0, - "url": "https://www.rightmove.co.uk/properties/162295487", - "info": { - "identifier": 162295487, - "sqm_ocr": 76.5, - "price": 3302.0, - "price_per_sqm": 43.16339869281046, - "url": "https://www.rightmove.co.uk/properties/162295487", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/162295487/253853_1327312_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.547491", - "last_seen": "2025-06-01T22:06:05.657186", - "price": 3302.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092814, - 51.49236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.6, - "qmprice": 39.11, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162295619", - "info": { - "identifier": 162295619, - "sqm_ocr": 71.6, - "price": 2800.0, - "price_per_sqm": 39.106145251396654, - "url": "https://www.rightmove.co.uk/properties/162295619", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/162295619/101522_1326999_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.972531", - "last_seen": "2025-06-01T22:05:47.645880", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075172, - 51.54905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.5, - "qmprice": 28.51, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162295709", - "info": { - "identifier": 162295709, - "sqm_ocr": 87.5, - "price": 2495.0, - "price_per_sqm": 28.514285714285716, - "url": "https://www.rightmove.co.uk/properties/162295709", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84809/162295709/84809_33903405_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.855859", - "last_seen": "2025-06-01T22:05:52.386899", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.326747, - 51.46518 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.12, - "qmprice": 27.33, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162295805", - "info": { - "identifier": 162295805, - "sqm_ocr": 106.12, - "price": 2900.0, - "price_per_sqm": 27.327553712777988, - "url": "https://www.rightmove.co.uk/properties/162295805", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/162295805/15954_1327121_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.382220", - "last_seen": "2025-06-01T22:05:57.009268", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088336, - 51.54087 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.0, - "qmprice": 32.0, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162295817", - "info": { - "identifier": 162295817, - "sqm_ocr": 125.0, - "price": 4000.0, - "price_per_sqm": 32.0, - "url": "https://www.rightmove.co.uk/properties/162295817", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/162295817/15966_1327281_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.239891", - "last_seen": "2025-06-01T22:06:12.240571", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14757, - 51.468765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162295946", - "info": { - "identifier": 162295946, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162295946", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kevin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278792/162295946/278792_HC12_IMG_00_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.219960", - "last_seen": "2025-06-01T22:05:50.372778", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32956, - 51.58131 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.5, - "qmprice": 26.79, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162295991", - "info": { - "identifier": 162295991, - "sqm_ocr": 104.5, - "price": 2800.0, - "price_per_sqm": 26.794258373205743, - "url": "https://www.rightmove.co.uk/properties/162295991", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Camerons Stiff & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34175/162295991/34175_33012081_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.815402", - "last_seen": "2025-06-01T22:05:40.721552", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.234923, - 51.533974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.79, - "qmprice": 32.01, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162296018", - "info": { - "identifier": 162296018, - "sqm_ocr": 82.79, - "price": 2650.0, - "price_per_sqm": 32.0086967025003, - "url": "https://www.rightmove.co.uk/properties/162296018", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/221k/220400/162296018/220400_WAL220059_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.359635", - "last_seen": "2025-06-01T22:06:12.238321", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15811, - 51.425602 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.7, - "qmprice": 38.98, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162296123", - "info": { - "identifier": 162296123, - "sqm_ocr": 66.7, - "price": 2600.0, - "price_per_sqm": 38.980509745127435, - "url": "https://www.rightmove.co.uk/properties/162296123", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105760/162296123/105760_33850202_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.293740", - "last_seen": "2025-06-01T22:06:15.097811", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141669, - 51.485718 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/162296228", - "info": { - "identifier": 162296228, - "sqm_ocr": null, - "price": 2448.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162296228", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/162296228/96542_ROCH_001389_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.964717", - "last_seen": "2025-06-01T22:05:54.231251", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124176, - 51.55185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.93, - "qmprice": 32.2, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162296297", - "info": { - "identifier": 162296297, - "sqm_ocr": 100.93, - "price": 3250.0, - "price_per_sqm": 32.200535024274245, - "url": "https://www.rightmove.co.uk/properties/162296297", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/162296297/15975_1326920_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.522118", - "last_seen": "2025-06-01T22:06:01.795222", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210282, - 51.420902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.4, - "qmprice": 32.37, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162296498", - "info": { - "identifier": 162296498, - "sqm_ocr": 100.4, - "price": 3250.0, - "price_per_sqm": 32.37051792828685, - "url": "https://www.rightmove.co.uk/properties/162296498", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/162296498/15969_1327410_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.187312", - "last_seen": "2025-06-01T22:05:44.064613", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.289787, - 51.503567 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162296591", - "info": { - "identifier": 162296591, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162296591", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162296591/191744_RL1460_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.081649", - "last_seen": "2025-06-01T22:05:53.467647", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09623, - 51.52906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.53, - "qmprice": 49.6, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162296696", - "info": { - "identifier": 162296696, - "sqm_ocr": 65.53, - "price": 3250.0, - "price_per_sqm": 49.59560506638181, - "url": "https://www.rightmove.co.uk/properties/162296696", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162296696/15963_1326135_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.684204", - "last_seen": "2025-06-01T22:06:13.960569", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220082, - 51.4644 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/162296699", - "info": { - "identifier": 162296699, - "sqm_ocr": null, - "price": 2708.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162296699", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/162296699/96542_ROCH_000857_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.678759", - "last_seen": "2025-06-01T22:05:50.101191", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.111162, - 51.59441 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.0, - "qmprice": 30.49, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162296780", - "info": { - "identifier": 162296780, - "sqm_ocr": 123.0, - "price": 3750.0, - "price_per_sqm": 30.48780487804878, - "url": "https://www.rightmove.co.uk/properties/162296780", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Sandfords", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151142/162296780/151142_RPL250002_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.075091", - "last_seen": "2025-06-01T22:05:59.698045", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144181, - 51.453552 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 39.47, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162296840", - "info": { - "identifier": 162296840, - "sqm_ocr": 57.0, - "price": 2250.0, - "price_per_sqm": 39.473684210526315, - "url": "https://www.rightmove.co.uk/properties/162296840", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Gibson Lane", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22316/162296840/22316_33903463_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.593551", - "last_seen": "2025-06-01T22:05:58.819480", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28761, - 51.41361 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162296933", - "info": { - "identifier": 162296933, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162296933", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Empire Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237251/162296933/237251_102658003159_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.564270", - "last_seen": "2025-06-01T22:05:40.172327", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21913, - 51.53346 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.5, - "qmprice": 40.31, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162297029", - "info": { - "identifier": 162297029, - "sqm_ocr": 64.5, - "price": 2600.0, - "price_per_sqm": 40.310077519379846, - "url": "https://www.rightmove.co.uk/properties/162297029", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hogarth Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95275/162297029/95275_402_HOGE_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.907109", - "last_seen": "2025-06-01T22:06:15.753091", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138988, - 51.485943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 51.43, - "rooms": 2, - "total_price": 3857.0, - "url": "https://www.rightmove.co.uk/properties/162297164", - "info": { - "identifier": 162297164, - "sqm_ocr": 75.0, - "price": 3857.0, - "price_per_sqm": 51.42666666666667, - "url": "https://www.rightmove.co.uk/properties/162297164", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Unihood", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289043/162297164/289043_18ErringtonHouse_IMG_25_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.593580", - "last_seen": "2025-06-01T22:06:05.024873", - "price": 3856 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09983, - 51.5038 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 135.73, - "qmprice": 21.73, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162297245", - "info": { - "identifier": 162297245, - "sqm_ocr": 135.73, - "price": 2950.0, - "price_per_sqm": 21.73432549915273, - "url": "https://www.rightmove.co.uk/properties/162297245", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69292/162297245/69292_P214641_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.147969", - "last_seen": "2025-06-01T22:05:38.844625", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21707, - 51.58999 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162297260", - "info": { - "identifier": 162297260, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162297260", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Mann Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89393/162297260/89393_000763431_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.418148", - "last_seen": "2025-06-01T22:05:41.598820", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00916, - 51.39704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162297287", - "info": { - "identifier": 162297287, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162297287", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237452/162297287/237452_efc_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.623633", - "last_seen": "2025-06-01T22:06:05.506819", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09745, - 51.49171 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 36.22, - "rooms": 2, - "total_price": 2427.0, - "url": "https://www.rightmove.co.uk/properties/162297443", - "info": { - "identifier": 162297443, - "sqm_ocr": 67.0, - "price": 2427.0, - "price_per_sqm": 36.223880597014926, - "url": "https://www.rightmove.co.uk/properties/162297443", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/162297443/80796_430_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.020643", - "last_seen": "2025-06-01T22:05:59.781620", - "price": 2426 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11932, - 51.47498 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162297539", - "info": { - "identifier": 162297539, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162297539", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Abc Gone", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285629/162297539/285629_RL0222/2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.858440", - "last_seen": "2025-06-01T22:06:03.821854", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.058848, - 51.58223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.1, - "qmprice": 30.94, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162297578", - "info": { - "identifier": 162297578, - "sqm_ocr": 71.1, - "price": 2200.0, - "price_per_sqm": 30.942334739803098, - "url": "https://www.rightmove.co.uk/properties/162297578", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162297578/96668_237553604022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.265323", - "last_seen": "2025-06-01T22:05:44.179172", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.289166, - 51.51848 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 30.15, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162297692", - "info": { - "identifier": 162297692, - "sqm_ocr": 68.0, - "price": 2050.0, - "price_per_sqm": 30.147058823529413, - "url": "https://www.rightmove.co.uk/properties/162297692", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162297692/96668_236180022012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.041019", - "last_seen": "2025-06-01T22:05:39.012391", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.288109, - 51.622738 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162297818", - "info": { - "identifier": 162297818, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162297818", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Jorgensen Turner", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73024/162297818/73024_33903545_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.118295", - "last_seen": "2025-06-01T22:05:49.483363", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.227483, - 51.504074 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.32, - "qmprice": 57.37, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162298010", - "info": { - "identifier": 162298010, - "sqm_ocr": 62.32, - "price": 3575.0, - "price_per_sqm": 57.36521181001284, - "url": "https://www.rightmove.co.uk/properties/162298010", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Fox Gregory", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75037/162298010/75037_33775290_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.068339", - "last_seen": "2025-06-01T22:06:16.064192", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176993, - 51.5331 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162298325", - "info": { - "identifier": 162298325, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162298325", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162298325/96668_234151306012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.213277", - "last_seen": "2025-06-01T22:06:15.242352", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190022, - 51.527065 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.04, - "qmprice": 39.72, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162298355", - "info": { - "identifier": 162298355, - "sqm_ocr": 78.04, - "price": 3100.0, - "price_per_sqm": 39.72321886212199, - "url": "https://www.rightmove.co.uk/properties/162298355", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68504/162298355/68504_HKR180083_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.405205", - "last_seen": "2025-06-01T22:05:47.507149", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057093, - 51.53885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162298379", - "info": { - "identifier": 162298379, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162298379", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162298379/96668_247409806052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.111290", - "last_seen": "2025-06-01T22:05:53.385220", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113458, - 51.5508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.04, - "qmprice": 47.77, - "rooms": 2, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/162299501", - "info": { - "identifier": 162299501, - "sqm_ocr": 69.04, - "price": 3298.0, - "price_per_sqm": 47.7694090382387, - "url": "https://www.rightmove.co.uk/properties/162299501", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3723/162299501/3723_PHL250407_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.022019", - "last_seen": "2025-06-01T22:05:42.573745", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153364, - 51.544056 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.6, - "qmprice": 34.99, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162299519", - "info": { - "identifier": 162299519, - "sqm_ocr": 78.6, - "price": 2750.0, - "price_per_sqm": 34.98727735368957, - "url": "https://www.rightmove.co.uk/properties/162299519", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Ariston Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21035/162299519/21035_4477_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.837891", - "last_seen": "2025-06-01T22:05:54.166690", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12719, - 51.54983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162299525", - "info": { - "identifier": 162299525, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162299525", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Surrey Quays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60474/162299525/60474_12282205AW_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.000848", - "last_seen": "2025-06-01T22:06:00.990322", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03882, - 51.49183 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 51.37, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162299567", - "info": { - "identifier": 162299567, - "sqm_ocr": 73.0, - "price": 3750.0, - "price_per_sqm": 51.36986301369863, - "url": "https://www.rightmove.co.uk/properties/162299567", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "CORE Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247241/162299567/247241_COR220008_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.179000", - "last_seen": "2025-06-01T22:05:47.796472", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08569, - 51.536316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.76, - "qmprice": 44.27, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162299633", - "info": { - "identifier": 162299633, - "sqm_ocr": 67.76, - "price": 3000.0, - "price_per_sqm": 44.27390791027155, - "url": "https://www.rightmove.co.uk/properties/162299633", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Wild & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/128k/127876/162299633/127876_33903626_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.994515", - "last_seen": "2025-06-01T22:05:47.621151", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089346, - 51.52827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162299726", - "info": { - "identifier": 162299726, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162299726", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101801/162299726/101801_KDY250603_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.934138", - "last_seen": "2025-06-01T22:05:58.208614", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2087, - 51.51674 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162299867", - "info": { - "identifier": 162299867, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162299867", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Harris and Company", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52827/162299867/52827_31550454_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.322426", - "last_seen": "2025-06-01T22:05:57.046285", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219987, - 51.535038 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.1, - "qmprice": 34.82, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/162299987", - "info": { - "identifier": 162299987, - "sqm_ocr": 63.1, - "price": 2197.0, - "price_per_sqm": 34.817749603803485, - "url": "https://www.rightmove.co.uk/properties/162299987", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84785/162299987/84785_33903648_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.873528", - "last_seen": "2025-06-01T22:05:44.311300", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.272665, - 51.507442 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.6, - "qmprice": 41.35, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162300164", - "info": { - "identifier": 162300164, - "sqm_ocr": 78.6, - "price": 3250.0, - "price_per_sqm": 41.348600508905854, - "url": "https://www.rightmove.co.uk/properties/162300164", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157394/162300164/157394_PHL230029_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.936128", - "last_seen": "2025-06-01T22:05:42.191402", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147628, - 51.540707 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162300191", - "info": { - "identifier": 162300191, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162300191", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162300191/221711_3476_EAF_182440_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.113968", - "last_seen": "2025-06-01T22:05:47.319897", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080692, - 51.534065 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 36.49, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162300299", - "info": { - "identifier": 162300299, - "sqm_ocr": 74.0, - "price": 2700.0, - "price_per_sqm": 36.486486486486484, - "url": "https://www.rightmove.co.uk/properties/162300299", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247499/162300299/247499_P285065_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.211394", - "last_seen": "2025-06-01T22:05:48.711929", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20806, - 51.47754 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 54.17, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162300455", - "info": { - "identifier": 162300455, - "sqm_ocr": 66.0, - "price": 3575.0, - "price_per_sqm": 54.166666666666664, - "url": "https://www.rightmove.co.uk/properties/162300455", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/162300455/15945_1327432_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.988611", - "last_seen": "2025-06-01T22:06:16.060367", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179997, - 51.515274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162300695", - "info": { - "identifier": 162300695, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162300695", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84806/162300695/84806_33903700_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.309495", - "last_seen": "2025-06-01T22:06:04.319758", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.291786, - 51.461525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.5, - "qmprice": 51.59, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162300785", - "info": { - "identifier": 162300785, - "sqm_ocr": 73.5, - "price": 3792.0, - "price_per_sqm": 51.59183673469388, - "url": "https://www.rightmove.co.uk/properties/162300785", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/162300785/15957_1327441_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.303862", - "last_seen": "2025-06-01T22:05:42.404228", - "price": 3792.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17475, - 51.5564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162300806", - "info": { - "identifier": 162300806, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162300806", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/162300806/67576_RL0488_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.630789", - "last_seen": "2025-06-01T22:05:39.784036", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242625, - 51.577618 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.79, - "qmprice": 42.79, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162300974", - "info": { - "identifier": 162300974, - "sqm_ocr": 74.79, - "price": 3200.0, - "price_per_sqm": 42.78646877924856, - "url": "https://www.rightmove.co.uk/properties/162300974", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Jack Rose Estates Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256244/162300974/256244_JLP-76093728_IMG_00_0000_max_656x437.png", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.995720", - "last_seen": "2025-06-01T22:05:47.651752", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07651, - 51.548107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3185.0, - "url": "https://www.rightmove.co.uk/properties/162301178", - "info": { - "identifier": 162301178, - "sqm_ocr": null, - "price": 3185.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162301178", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/162301178/49784_27863_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.324580", - "last_seen": "2025-06-01T22:06:06.180695", - "price": 3185 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08218, - 51.49182 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.2, - "qmprice": 28.5, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162301451", - "info": { - "identifier": 162301451, - "sqm_ocr": 77.2, - "price": 2200.0, - "price_per_sqm": 28.49740932642487, - "url": "https://www.rightmove.co.uk/properties/162301451", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/162301451/250739_1326110_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.125706", - "last_seen": "2025-06-01T22:05:38.819101", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290282, - 51.620373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.1, - "qmprice": 43.42, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162301574", - "info": { - "identifier": 162301574, - "sqm_ocr": 69.1, - "price": 3000.0, - "price_per_sqm": 43.41534008683068, - "url": "https://www.rightmove.co.uk/properties/162301574", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100855/162301574/100855_LHL140011_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.471437", - "last_seen": "2025-06-01T22:06:00.161826", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143344, - 51.46317 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.7, - "qmprice": 26.52, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162301673", - "info": { - "identifier": 162301673, - "sqm_ocr": 103.7, - "price": 2750.0, - "price_per_sqm": 26.518804243008677, - "url": "https://www.rightmove.co.uk/properties/162301673", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41343/162301673/41343_06731273_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.448030", - "last_seen": "2025-06-01T22:05:49.988568", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158626, - 51.580437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.2, - "qmprice": 48.36, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162301742", - "info": { - "identifier": 162301742, - "sqm_ocr": 67.2, - "price": 3250.0, - "price_per_sqm": 48.363095238095234, - "url": "https://www.rightmove.co.uk/properties/162301742", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50074/162301742/50074_P301206_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.208818", - "last_seen": "2025-06-01T22:05:57.612808", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21543, - 51.51749 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162302063", - "info": { - "identifier": 162302063, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162302063", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237452/162302063/237452_11t_IMG_09_0000_max_656x437.png", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.728499", - "last_seen": "2025-06-01T22:05:58.678819", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30351, - 51.40846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162302096", - "info": { - "identifier": 162302096, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162302096", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162302096/96668_245324516042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.803328", - "last_seen": "2025-06-01T22:06:11.812727", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02368, - 51.592686 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162302306", - "info": { - "identifier": 162302306, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162302306", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11523/162302306/11523_0445_HRT044502664_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.624073", - "last_seen": "2025-06-01T22:05:58.788103", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.260293, - 51.401497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.5, - "qmprice": 39.74, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162302693", - "info": { - "identifier": 162302693, - "sqm_ocr": 75.5, - "price": 3000.0, - "price_per_sqm": 39.735099337748345, - "url": "https://www.rightmove.co.uk/properties/162302693", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/162302693/96392_SVL170132_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.938578", - "last_seen": "2025-06-01T22:06:15.977679", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181889, - 51.534977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162302735", - "info": { - "identifier": 162302735, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162302735", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Bryants Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21740/162302735/21740_3007_BRYT_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.005975", - "last_seen": "2025-06-01T22:05:38.257877", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.13602, - 51.56388 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162302744", - "info": { - "identifier": 162302744, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162302744", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Bryants Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21740/162302744/21740_3041_BRYT_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.901172", - "last_seen": "2025-06-01T22:06:07.552646", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.003524, - 51.546803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.3, - "qmprice": 30.58, - "rooms": 2, - "total_price": 2180.0, - "url": "https://www.rightmove.co.uk/properties/162303179", - "info": { - "identifier": 162303179, - "sqm_ocr": 71.3, - "price": 2180.0, - "price_per_sqm": 30.575035063113607, - "url": "https://www.rightmove.co.uk/properties/162303179", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Neptune Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/277k/276332/162303179/276332_C105-2BED-16_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.902144", - "last_seen": "2025-06-01T22:06:00.284099", - "price": 2180.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04098, - 51.48483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162303245", - "info": { - "identifier": 162303245, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162303245", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162303245/237116_2604_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.153094", - "last_seen": "2025-06-01T22:05:53.190955", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13063, - 51.56446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162303629", - "info": { - "identifier": 162303629, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162303629", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Aaron Shohet Property", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265799/162303629/265799_33903877_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.976732", - "last_seen": "2025-06-01T22:05:38.993652", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205643, - 51.613667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.47, - "qmprice": 46.74, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162303779", - "info": { - "identifier": 162303779, - "sqm_ocr": 68.47, - "price": 3200.0, - "price_per_sqm": 46.73579669928436, - "url": "https://www.rightmove.co.uk/properties/162303779", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51322/162303779/51322_WEL220124_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.872528", - "last_seen": "2025-06-01T22:06:15.841539", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143147, - 51.49117 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.26, - "qmprice": 48.64, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162303794", - "info": { - "identifier": 162303794, - "sqm_ocr": 46.26, - "price": 2250.0, - "price_per_sqm": 48.63813229571985, - "url": "https://www.rightmove.co.uk/properties/162303794", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/146k/145463/162303794/145463_HEA745471_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.645018", - "last_seen": "2025-06-01T22:06:13.966190", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197159, - 51.456463 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162304223", - "info": { - "identifier": 162304223, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162304223", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162304223/237116_2605_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.659648", - "last_seen": "2025-06-01T22:05:52.908881", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13063, - 51.56446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.97, - "qmprice": 32.29, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162304250", - "info": { - "identifier": 162304250, - "sqm_ocr": 78.97, - "price": 2550.0, - "price_per_sqm": 32.2907433202482, - "url": "https://www.rightmove.co.uk/properties/162304250", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Websters Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96821/162304250/96821_2641955_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.273045", - "last_seen": "2025-06-01T22:06:04.279569", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33808, - 51.44654 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162304298", - "info": { - "identifier": 162304298, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162304298", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162304298/191744_RL2806_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.062999", - "last_seen": "2025-06-01T22:06:12.146183", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135455, - 51.480015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.4, - "qmprice": 39.57, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/162304454", - "info": { - "identifier": 162304454, - "sqm_ocr": 79.4, - "price": 3142.0, - "price_per_sqm": 39.57178841309823, - "url": "https://www.rightmove.co.uk/properties/162304454", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105760/162304454/105760_33903927_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.953740", - "last_seen": "2025-06-01T22:06:15.994248", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134748, - 51.497513 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162304832", - "info": { - "identifier": 162304832, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162304832", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "RocketPM", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250460/162304832/250460_33903952_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.669278", - "last_seen": "2025-06-01T22:06:05.568344", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097335, - 51.49261 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162304838", - "info": { - "identifier": 162304838, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162304838", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hiltons Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242060/162304838/242060_102765000878_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.897152", - "last_seen": "2025-06-01T22:05:44.317984", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35332, - 51.50692 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.7, - "qmprice": 36.87, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162305540", - "info": { - "identifier": 162305540, - "sqm_ocr": 101.7, - "price": 3750.0, - "price_per_sqm": 36.87315634218289, - "url": "https://www.rightmove.co.uk/properties/162305540", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/162305540/15975_1327414_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.468487", - "last_seen": "2025-06-01T22:06:01.714349", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224683, - 51.41706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 28.67, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162305588", - "info": { - "identifier": 162305588, - "sqm_ocr": 75.0, - "price": 2150.0, - "price_per_sqm": 28.666666666666668, - "url": "https://www.rightmove.co.uk/properties/162305588", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/162305588/227810_1326642_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.552856", - "last_seen": "2025-06-01T22:05:46.981474", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.080341, - 51.49716 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 119.95, - "qmprice": 27.93, - "rooms": 4, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162305594", - "info": { - "identifier": 162305594, - "sqm_ocr": 119.95, - "price": 3350.0, - "price_per_sqm": 27.928303459774906, - "url": "https://www.rightmove.co.uk/properties/162305594", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166334/162305594/166334_1327439_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.682656", - "last_seen": "2025-06-01T22:05:50.125621", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072046, - 51.581375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.83, - "qmprice": 26.36, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162305720", - "info": { - "identifier": 162305720, - "sqm_ocr": 113.83, - "price": 3000.0, - "price_per_sqm": 26.355090925063692, - "url": "https://www.rightmove.co.uk/properties/162305720", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/162305720/15969_1327446_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.911181", - "last_seen": "2025-06-01T22:05:44.260218", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.271839, - 51.51832 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3195.0, - "url": "https://www.rightmove.co.uk/properties/162306056", - "info": { - "identifier": 162306056, - "sqm_ocr": null, - "price": 3195.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162306056", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "HYBR", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269531/162306056/269531_7615cae4-43ac-4e74-8d8d-303fe267ca9f_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.378768", - "last_seen": "2025-06-01T22:06:04.198084", - "price": 3195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276779, - 51.464508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162306182", - "info": { - "identifier": 162306182, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162306182", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Portland Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139901/162306182/139901_33904044_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.229492", - "last_seen": "2025-06-01T22:05:40.663520", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222647, - 51.54998 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/162306326", - "info": { - "identifier": 162306326, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162306326", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "LAND ROYALE PROPERTIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272384/162306326/272384_OGChurchStreet_IMG_18_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.829861", - "last_seen": "2025-06-01T22:06:07.592128", - "price": 2799.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0075, - 51.53619 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 29.76, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/162307307", - "info": { - "identifier": 162307307, - "sqm_ocr": 80.5, - "price": 2396.0, - "price_per_sqm": 29.763975155279503, - "url": "https://www.rightmove.co.uk/properties/162307307", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Robertson Smith & Kempson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7963/162307307/7963_33904119_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.458268", - "last_seen": "2025-06-01T22:05:45.095759", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299587, - 51.521786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 45.71, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162307331", - "info": { - "identifier": 162307331, - "sqm_ocr": 70.0, - "price": 3200.0, - "price_per_sqm": 45.714285714285715, - "url": "https://www.rightmove.co.uk/properties/162307331", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "CROWN LUXURY HOMES LIMITED", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267257/162307331/267257_33904120_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.210700", - "last_seen": "2025-06-01T22:05:47.916183", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088976, - 51.57216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.09, - "qmprice": 33.29, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162307526", - "info": { - "identifier": 162307526, - "sqm_ocr": 66.09, - "price": 2200.0, - "price_per_sqm": 33.287940686942044, - "url": "https://www.rightmove.co.uk/properties/162307526", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Scarlett Dyer", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/201k/200492/162307526/200492_256_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.301858", - "last_seen": "2025-06-01T22:05:59.302587", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13616, - 51.42912 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162307628", - "info": { - "identifier": 162307628, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162307628", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Daniel Paul", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272840/162307628/272840_GR-May-25-W14_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.342614", - "last_seen": "2025-06-01T22:05:48.724018", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21361, - 51.49786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/162307631", - "info": { - "identifier": 162307631, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162307631", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Circle Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72729/162307631/72729_10101320_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.397679", - "last_seen": "2025-06-01T22:06:06.040574", - "price": 2167.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076293, - 51.495235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/162307691", - "info": { - "identifier": 162307691, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162307691", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Circle Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72729/162307691/72729_10101263_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.312908", - "last_seen": "2025-06-01T22:06:05.894567", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096217, - 51.500595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162308132", - "info": { - "identifier": 162308132, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162308132", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44645/162308132/44645_NUL250019_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.599309", - "last_seen": "2025-06-01T22:05:49.161562", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212971, - 51.4784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.86, - "qmprice": 37.13, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162308465", - "info": { - "identifier": 162308465, - "sqm_ocr": 53.86, - "price": 2000.0, - "price_per_sqm": 37.13330857779428, - "url": "https://www.rightmove.co.uk/properties/162308465", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162308465/96668_248522615052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.420874", - "last_seen": "2025-06-01T22:06:00.084479", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133048, - 51.417873 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162308510", - "info": { - "identifier": 162308510, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162308510", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162308510/96668_249165121052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.369271", - "last_seen": "2025-06-01T22:06:10.335173", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038274, - 51.52249 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162308684", - "info": { - "identifier": 162308684, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162308684", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162308684/96668_249224322052025_IMG_20_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.861548", - "last_seen": "2025-06-01T22:06:08.952845", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00623, - 51.505608 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 49.29, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162308726", - "info": { - "identifier": 162308726, - "sqm_ocr": 70.0, - "price": 3450.0, - "price_per_sqm": 49.285714285714285, - "url": "https://www.rightmove.co.uk/properties/162308726", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/162308726/60927_000016422c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.678899", - "last_seen": "2025-06-01T22:05:56.322947", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22818, - 51.49424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162309182", - "info": { - "identifier": 162309182, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162309182", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JBrown", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239306/162309182/239306_5869_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.784260", - "last_seen": "2025-06-01T22:05:43.783388", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12465, - 51.41176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.76, - "qmprice": 49.38, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162309293", - "info": { - "identifier": 162309293, - "sqm_ocr": 69.76, - "price": 3445.0, - "price_per_sqm": 49.38360091743119, - "url": "https://www.rightmove.co.uk/properties/162309293", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139751/162309293/139751_ECS150043_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.975501", - "last_seen": "2025-06-01T22:05:58.155414", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19694, - 51.492638 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.0, - "qmprice": 23.5, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162309320", - "info": { - "identifier": 162309320, - "sqm_ocr": 117.0, - "price": 2750.0, - "price_per_sqm": 23.504273504273506, - "url": "https://www.rightmove.co.uk/properties/162309320", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Accord Sales & Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68735/162309320/68735_afd2620a-0d70-441e-b976-d83335cbf274_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.270208", - "last_seen": "2025-06-01T22:05:50.899298", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.179793, - 51.59441 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162309359", - "info": { - "identifier": 162309359, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162309359", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Infinity Property Solutions", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111497/162309359/111497_29077349_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.690926", - "last_seen": "2025-06-01T22:05:50.287164", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28037, - 51.59202 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.18, - "qmprice": 29.51, - "rooms": 4, - "total_price": 2838.0, - "url": "https://www.rightmove.co.uk/properties/162309368", - "info": { - "identifier": 162309368, - "sqm_ocr": 96.18, - "price": 2838.0, - "price_per_sqm": 29.50717404865876, - "url": "https://www.rightmove.co.uk/properties/162309368", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/162309368/84788_33904251_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.079543", - "last_seen": "2025-06-01T22:05:51.834727", - "price": 2838 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26561, - 51.487385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162309374", - "info": { - "identifier": 162309374, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162309374", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/162309374/84791_33904252_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.252561", - "last_seen": "2025-06-01T22:05:44.082665", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307431, - 51.526527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162309734", - "info": { - "identifier": 162309734, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162309734", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Keller Williams Oxygen", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/244k/243590/162309734/243590_RX580896_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.147746", - "last_seen": "2025-06-01T22:05:39.548605", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.250854, - 51.598927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 142.7, - "qmprice": 16.82, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162309743", - "info": { - "identifier": 162309743, - "sqm_ocr": 142.7, - "price": 2400.0, - "price_per_sqm": 16.818500350385424, - "url": "https://www.rightmove.co.uk/properties/162309743", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17961/162309743/17961_SEL180115_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.252369", - "last_seen": "2025-06-01T22:05:41.703130", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.108333, - 51.329872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162309938", - "info": { - "identifier": 162309938, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162309938", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/162309938/228512_33904284_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.634216", - "last_seen": "2025-06-01T22:06:02.500323", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.072786, - 51.508022 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/162310193", - "info": { - "identifier": 162310193, - "sqm_ocr": null, - "price": 3650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162310193", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162310193/191744_RL4076_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.575928", - "last_seen": "2025-06-01T22:05:59.951651", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115172, - 51.48639 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2440.0, - "url": "https://www.rightmove.co.uk/properties/162310247", - "info": { - "identifier": 162310247, - "sqm_ocr": null, - "price": 2440.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162310247", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/162310247/80340_a1G4J00000260PWUAY_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.022109", - "last_seen": "2025-06-01T22:06:02.222765", - "price": 2440.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0339, - 51.50206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/162310346", - "info": { - "identifier": 162310346, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162310346", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/162310346/163859_2361770_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.568430", - "last_seen": "2025-06-01T22:06:02.554243", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02906, - 51.49894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162310367", - "info": { - "identifier": 162310367, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162310367", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hiltons Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.296339", - "last_seen": "2025-06-01T22:05:52.092195", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.39706, - 51.49646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.6, - "qmprice": 40.18, - "rooms": 3, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/162310694", - "info": { - "identifier": 162310694, - "sqm_ocr": 79.6, - "price": 3198.0, - "price_per_sqm": 40.175879396984925, - "url": "https://www.rightmove.co.uk/properties/162310694", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/162310694/264326_Y79864_1_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.394726", - "last_seen": "2025-06-01T22:06:04.377677", - "price": 3198.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276779, - 51.464508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162310838", - "info": { - "identifier": 162310838, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162310838", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hunt Property Services Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86834/162310838/86834_32987292_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.043909", - "last_seen": "2025-06-01T22:06:03.836604", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.066139, - 51.602734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162310979", - "info": { - "identifier": 162310979, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162310979", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162310979/237116_1494_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.217868", - "last_seen": "2025-06-01T22:06:07.065310", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08652, - 51.49828 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162311186", - "info": { - "identifier": 162311186, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162311186", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/162311186/29861_33904375_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.520120", - "last_seen": "2025-06-01T22:06:00.210898", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119731, - 51.502083 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162311360", - "info": { - "identifier": 162311360, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162311360", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50343/162311360/50343_33904394_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.689073", - "last_seen": "2025-06-01T22:05:40.262264", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224164, - 51.53819 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 31.59, - "rooms": 2, - "total_price": 2590.0, - "url": "https://www.rightmove.co.uk/properties/162311399", - "info": { - "identifier": 162311399, - "sqm_ocr": 82.0, - "price": 2590.0, - "price_per_sqm": 31.585365853658537, - "url": "https://www.rightmove.co.uk/properties/162311399", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Neptune Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/277k/276332/162311399/276332_B204-2BED-2BATH-FULLDUPLEX-3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.935842", - "last_seen": "2025-06-01T22:06:00.436502", - "price": 2590.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04097, - 51.48461 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.0, - "qmprice": 40.89, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/162311525", - "info": { - "identifier": 162311525, - "sqm_ocr": 53.0, - "price": 2167.0, - "price_per_sqm": 40.886792452830186, - "url": "https://www.rightmove.co.uk/properties/162311525", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/162311525/80796_617_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.357381", - "last_seen": "2025-06-01T22:05:59.672367", - "price": 2166 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12265, - 51.45345 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162311975", - "info": { - "identifier": 162311975, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162311975", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162311975/191744_RL4997_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.273211", - "last_seen": "2025-06-01T22:06:09.284593", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008402, - 51.508614 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162312296", - "info": { - "identifier": 162312296, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162312296", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kings Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162170/162312296/162170_33904457_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.431392", - "last_seen": "2025-06-01T20:19:58.826559", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.002707, - 51.512646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162312350", - "info": { - "identifier": 162312350, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162312350", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Wynn Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224318/162312350/224318_6PercivalRoad_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.963465", - "last_seen": "2025-06-01T22:05:52.261255", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42258, - 51.44133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.01, - "qmprice": 33.76, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162312356", - "info": { - "identifier": 162312356, - "sqm_ocr": 77.01, - "price": 2600.0, - "price_per_sqm": 33.761849110505125, - "url": "https://www.rightmove.co.uk/properties/162312356", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Ariston Property", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21035/162312356/21035_4560_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.554810", - "last_seen": "2025-06-01T22:05:53.824304", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11764, - 51.56461 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162312632", - "info": { - "identifier": 162312632, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162312632", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kevin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278792/162312632/278792_HC13_IMG_00_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.724261", - "last_seen": "2025-06-01T22:06:02.527258", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05114, - 51.51268 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/162312713", - "info": { - "identifier": 162312713, - "sqm_ocr": null, - "price": 2375.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162312713", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162312713/238769_cwadl22052025vac_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.368808", - "last_seen": "2025-06-01T22:06:03.533612", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0339, - 51.50206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.5, - "qmprice": 45.8, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162313115", - "info": { - "identifier": 162313115, - "sqm_ocr": 65.5, - "price": 3000.0, - "price_per_sqm": 45.80152671755725, - "url": "https://www.rightmove.co.uk/properties/162313115", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57973/162313115/57973_KFF220001_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.678060", - "last_seen": "2025-06-01T22:06:14.658193", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176285, - 51.524216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162313139", - "info": { - "identifier": 162313139, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162313139", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/162313139/252785_33904507_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.544659", - "last_seen": "2025-06-01T22:05:49.631792", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0562, - 51.587784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162313157", - "info": { - "identifier": 162313157, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162313157", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Star Estates & Lettings Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/191k/190457/162313157/190457_33889444_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.983826", - "last_seen": "2025-06-01T22:05:45.449749", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052905, - 51.63009 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162313328", - "info": { - "identifier": 162313328, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162313328", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dreamview Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85138/162313328/85138_house_hamilton_road_london_greater_london_nw11_9ej_3L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.675769", - "last_seen": "2025-06-01T22:05:39.637804", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211166, - 51.573578 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.2, - "qmprice": 43.13, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162313502", - "info": { - "identifier": 162313502, - "sqm_ocr": 74.2, - "price": 3200.0, - "price_per_sqm": 43.1266846361186, - "url": "https://www.rightmove.co.uk/properties/162313502", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Orlando Reid", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86327/162313502/86327_32409274_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.079035", - "last_seen": "2025-06-01T22:05:59.990297", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127456, - 51.484844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.81, - "qmprice": 34.81, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162313616", - "info": { - "identifier": 162313616, - "sqm_ocr": 71.81, - "price": 2500.0, - "price_per_sqm": 34.81409274474307, - "url": "https://www.rightmove.co.uk/properties/162313616", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "TRH Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258065/162313616/258065_33904550_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.903427", - "last_seen": "2025-06-01T22:06:00.357619", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037877, - 51.49149 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.45, - "qmprice": 49.72, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162313826", - "info": { - "identifier": 162313826, - "sqm_ocr": 80.45, - "price": 4000.0, - "price_per_sqm": 49.720323182100685, - "url": "https://www.rightmove.co.uk/properties/162313826", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162313826/26207_IUL220180_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.932392", - "last_seen": "2025-06-01T22:05:54.237961", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087734, - 51.524014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 40.62, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162314255", - "info": { - "identifier": 162314255, - "sqm_ocr": 64.0, - "price": 2600.0, - "price_per_sqm": 40.625, - "url": "https://www.rightmove.co.uk/properties/162314255", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Wilfords London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54072/162314255/54072_WKN240151_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.175504", - "last_seen": "2025-06-01T22:05:57.532159", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205035, - 51.509617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162314315", - "info": { - "identifier": 162314315, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162314315", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Goodfellows", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72259/162314315/72259_GCV190326_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.390328", - "last_seen": "2025-06-01T22:06:07.817896", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21743, - 51.35776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.8, - "qmprice": 37.12, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162314585", - "info": { - "identifier": 162314585, - "sqm_ocr": 80.8, - "price": 2999.0, - "price_per_sqm": 37.116336633663366, - "url": "https://www.rightmove.co.uk/properties/162314585", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233849/162314585/233849_2656694_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.659838", - "last_seen": "2025-06-01T22:05:58.716155", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30353, - 51.40801 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/162314690", - "info": { - "identifier": 162314690, - "sqm_ocr": null, - "price": 3198.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162314690", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50719/162314690/50719_33904633_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.503128", - "last_seen": "2025-06-01T22:05:48.437534", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205628, - 51.494083 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162314903", - "info": { - "identifier": 162314903, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162314903", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "EC Residential LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244844/162314903/244844_1282_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.183450", - "last_seen": "2025-06-01T22:05:47.881336", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07643, - 51.52905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162314945", - "info": { - "identifier": 162314945, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162314945", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Coultons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115756/162314945/115756_33904655_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.684183", - "last_seen": "2025-06-01T22:05:50.128356", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093414, - 51.597145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.16, - "qmprice": 45.08, - "rooms": 2, - "total_price": 3974.0, - "url": "https://www.rightmove.co.uk/properties/162314972", - "info": { - "identifier": 162314972, - "sqm_ocr": 88.16, - "price": 3974.0, - "price_per_sqm": 45.077132486388386, - "url": "https://www.rightmove.co.uk/properties/162314972", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Prime London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/269k/268739/162314972/268739_33903609_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.516778", - "last_seen": "2025-06-01T22:05:43.304966", - "price": 3973 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107861, - 51.514713 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.8, - "qmprice": 32.67, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162315254", - "info": { - "identifier": 162315254, - "sqm_ocr": 65.8, - "price": 2150.0, - "price_per_sqm": 32.67477203647417, - "url": "https://www.rightmove.co.uk/properties/162315254", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Butler & Stag", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/145k/144140/162315254/144140_33213202_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.216526", - "last_seen": "2025-06-01T22:06:10.783709", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01826, - 51.528145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.2, - "qmprice": 38.62, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162315365", - "info": { - "identifier": 162315365, - "sqm_ocr": 71.2, - "price": 2750.0, - "price_per_sqm": 38.62359550561798, - "url": "https://www.rightmove.co.uk/properties/162315365", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Gibson Lane", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22316/162315365/22316_33904647_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.708888", - "last_seen": "2025-06-01T22:05:58.556592", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.287578, - 51.41362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.65, - "qmprice": 47.04, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162315644", - "info": { - "identifier": 162315644, - "sqm_ocr": 61.65, - "price": 2900.0, - "price_per_sqm": 47.039740470397405, - "url": "https://www.rightmove.co.uk/properties/162315644", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11478/162315644/11478_0425_FJL042502197_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.977488", - "last_seen": "2025-06-01T22:05:54.423565", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096337, - 51.524586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.6, - "qmprice": 36.83, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162315842", - "info": { - "identifier": 162315842, - "sqm_ocr": 70.6, - "price": 2600.0, - "price_per_sqm": 36.8271954674221, - "url": "https://www.rightmove.co.uk/properties/162315842", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "TESSA LANG PROPERTY", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265526/162315842/265526_LNW632CR2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.794329", - "last_seen": "2025-06-01T22:05:42.012029", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1948, - 51.5437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.3, - "qmprice": 50.94, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162316298", - "info": { - "identifier": 162316298, - "sqm_ocr": 72.3, - "price": 3683.0, - "price_per_sqm": 50.940525587828496, - "url": "https://www.rightmove.co.uk/properties/162316298", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "O'Sullivan Property", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139934/162316298/139934_33904744_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.924325", - "last_seen": "2025-06-01T22:06:15.972695", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130546, - 51.495583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.0, - "qmprice": 25.6, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162316535", - "info": { - "identifier": 162316535, - "sqm_ocr": 125.0, - "price": 3200.0, - "price_per_sqm": 25.6, - "url": "https://www.rightmove.co.uk/properties/162316535", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78317/162316535/78317_KDS240126_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.200724", - "last_seen": "2025-06-01T22:06:04.239920", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.313475, - 51.436085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162316769", - "info": { - "identifier": 162316769, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162316769", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Stamfords", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18209/162316769/18209_33904781_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.224017", - "last_seen": "2025-06-01T22:05:52.633478", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.337006, - 51.46946 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.31, - "qmprice": 25.39, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162316997", - "info": { - "identifier": 162316997, - "sqm_ocr": 108.31, - "price": 2750.0, - "price_per_sqm": 25.390084018096204, - "url": "https://www.rightmove.co.uk/properties/162316997", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66176/162316997/66176_P5915H3001_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.485956", - "last_seen": "2025-06-01T22:05:38.534768", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14507, - 51.61387 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.51, - "qmprice": 38.21, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162317012", - "info": { - "identifier": 162317012, - "sqm_ocr": 78.51, - "price": 3000.0, - "price_per_sqm": 38.21169277799006, - "url": "https://www.rightmove.co.uk/properties/162317012", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82844/162317012/82844_P5442D1925_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.130780", - "last_seen": "2025-06-01T22:06:13.652428", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15653, - 51.445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.9, - "qmprice": 25.03, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162317351", - "info": { - "identifier": 162317351, - "sqm_ocr": 95.9, - "price": 2400.0, - "price_per_sqm": 25.026068821689258, - "url": "https://www.rightmove.co.uk/properties/162317351", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14614/162317351/14614_BLA230344_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.994140", - "last_seen": "2025-06-01T22:06:00.823077", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.010472, - 51.456432 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162317666", - "info": { - "identifier": 162317666, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162317666", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19269/162317666/19269_BET250066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.431987", - "last_seen": "2025-06-01T22:06:08.124005", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04277, - 51.526012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3125.0, - "url": "https://www.rightmove.co.uk/properties/162317813", - "info": { - "identifier": 162317813, - "sqm_ocr": null, - "price": 3125.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162317813", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162317813/238769_cw3vedadlay2205020205_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.252472", - "last_seen": "2025-06-01T22:06:03.299017", - "price": 3125.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0339, - 51.50206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2460.0, - "url": "https://www.rightmove.co.uk/properties/162317972", - "info": { - "identifier": 162317972, - "sqm_ocr": null, - "price": 2460.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162317972", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162317972/238769_cwna22052025vac_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.841375", - "last_seen": "2025-06-01T22:06:02.956781", - "price": 2460.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01024, - 51.5133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.61, - "qmprice": 41.88, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162318299", - "info": { - "identifier": 162318299, - "sqm_ocr": 71.61, - "price": 2999.0, - "price_per_sqm": 41.87962575059349, - "url": "https://www.rightmove.co.uk/properties/162318299", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25214/162318299/25214_33904876_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.711801", - "last_seen": "2025-06-01T22:06:08.780681", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065767, - 51.513466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162318356", - "info": { - "identifier": 162318356, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162318356", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie together with Thorgills", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242945/162318356/242945_BRE240241_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.339481", - "last_seen": "2025-06-01T22:05:52.174930", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302205, - 51.483562 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.02, - "qmprice": 30.33, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162318362", - "info": { - "identifier": 162318362, - "sqm_ocr": 75.02, - "price": 2275.0, - "price_per_sqm": 30.325246600906425, - "url": "https://www.rightmove.co.uk/properties/162318362", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/162318362/80340_a1G4J0000025zrbUAA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.377473", - "last_seen": "2025-06-01T22:05:52.167924", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28512, - 51.48876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162318542", - "info": { - "identifier": 162318542, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162318542", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218729/162318542/218729_33904897_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.213583", - "last_seen": "2025-06-01T22:05:43.199175", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137489, - 51.549713 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.9, - "qmprice": 43.12, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162318551", - "info": { - "identifier": 162318551, - "sqm_ocr": 71.9, - "price": 3100.0, - "price_per_sqm": 43.115438108484, - "url": "https://www.rightmove.co.uk/properties/162318551", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137360/162318551/137360_1326569_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.359704", - "last_seen": "2025-06-01T22:05:41.776952", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023157, - 51.411465 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 37.97, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162318665", - "info": { - "identifier": 162318665, - "sqm_ocr": 79.0, - "price": 3000.0, - "price_per_sqm": 37.9746835443038, - "url": "https://www.rightmove.co.uk/properties/162318665", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/162318665/15966_1325035_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.020766", - "last_seen": "2025-06-01T22:06:13.807681", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175485, - 51.472744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.3, - "qmprice": 36.45, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162318680", - "info": { - "identifier": 162318680, - "sqm_ocr": 82.3, - "price": 3000.0, - "price_per_sqm": 36.452004860267316, - "url": "https://www.rightmove.co.uk/properties/162318680", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162318680/48101_1326983_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.751672", - "last_seen": "2025-06-01T22:06:03.156469", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.070139, - 51.499653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.6, - "qmprice": 51.22, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/162318692", - "info": { - "identifier": 162318692, - "sqm_ocr": 56.6, - "price": 2899.0, - "price_per_sqm": 51.21908127208481, - "url": "https://www.rightmove.co.uk/properties/162318692", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162318692/48101_1327429_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.609554", - "last_seen": "2025-06-01T22:06:03.163391", - "price": 2899.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.058784, - 51.51877 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.3, - "qmprice": 38.41, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162318710", - "info": { - "identifier": 162318710, - "sqm_ocr": 70.3, - "price": 2700.0, - "price_per_sqm": 38.40682788051209, - "url": "https://www.rightmove.co.uk/properties/162318710", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/162318710/15966_1327390_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.336657", - "last_seen": "2025-06-01T22:06:12.499003", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15639, - 51.474533 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 28.75, - "rooms": 2, - "total_price": 2168.0, - "url": "https://www.rightmove.co.uk/properties/162318716", - "info": { - "identifier": 162318716, - "sqm_ocr": 75.4, - "price": 2168.0, - "price_per_sqm": 28.75331564986737, - "url": "https://www.rightmove.co.uk/properties/162318716", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100426/162318716/100426_1327494_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.937109", - "last_seen": "2025-06-01T22:06:00.442944", - "price": 2168.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.047162, - 51.425377 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.3, - "qmprice": 42.41, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162318749", - "info": { - "identifier": 162318749, - "sqm_ocr": 61.3, - "price": 2600.0, - "price_per_sqm": 42.41435562805873, - "url": "https://www.rightmove.co.uk/properties/162318749", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/162318749/15969_1327522_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.212264", - "last_seen": "2025-06-01T22:05:44.015331", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.287376, - 51.51407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162318815", - "info": { - "identifier": 162318815, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162318815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "LG New Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80511/162318815/80511_Cromwell_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.548609", - "last_seen": "2025-06-01T22:06:01.309386", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19644, - 51.42547 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.7, - "qmprice": 41.16, - "rooms": 2, - "total_price": 2910.0, - "url": "https://www.rightmove.co.uk/properties/162319046", - "info": { - "identifier": 162319046, - "sqm_ocr": 70.7, - "price": 2910.0, - "price_per_sqm": 41.15983026874116, - "url": "https://www.rightmove.co.uk/properties/162319046", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Knight Frank Lettings (ILM)", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137825/162319046/137825_BIQ012586630_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.059597", - "last_seen": "2025-06-01T22:05:38.900552", - "price": 2910.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223846, - 51.576427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162319124", - "info": { - "identifier": 162319124, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162319124", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "LG New Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80511/162319124/80511_Acre_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.389978", - "last_seen": "2025-06-01T22:06:00.051637", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12541, - 51.45979 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162319346", - "info": { - "identifier": 162319346, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162319346", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166334/162319346/166334_1327373_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.378239", - "last_seen": "2025-06-01T22:05:49.712289", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105035, - 51.59216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.3, - "qmprice": 29.74, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162319511", - "info": { - "identifier": 162319511, - "sqm_ocr": 72.3, - "price": 2150.0, - "price_per_sqm": 29.737206085753805, - "url": "https://www.rightmove.co.uk/properties/162319511", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/162319511/15975_1327510_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.041767", - "last_seen": "2025-06-01T22:06:12.873081", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210686, - 51.443695 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162320039", - "info": { - "identifier": 162320039, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162320039", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Alwyne Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/127k/126928/162320039/126928_33905002_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "11/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.897154", - "last_seen": "2025-06-01T22:05:54.182658", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098826, - 51.559837 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.04, - "qmprice": 39.98, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162320468", - "info": { - "identifier": 162320468, - "sqm_ocr": 75.04, - "price": 3000.0, - "price_per_sqm": 39.97867803837953, - "url": "https://www.rightmove.co.uk/properties/162320468", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3723/162320468/3723_PHL240123_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.792127", - "last_seen": "2025-06-01T22:06:15.852501", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184624, - 51.534748 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162320630", - "info": { - "identifier": 162320630, - "sqm_ocr": null, - "price": 3445.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162320630", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/162320630/65124_CEE240976_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.954924", - "last_seen": "2025-06-01T22:06:06.476790", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09652, - 51.492657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162320696", - "info": { - "identifier": 162320696, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162320696", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Capital Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49739/162320696/49739_CPT_CPT_LFSYCL_393_548422765_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.683466", - "last_seen": "2025-06-01T22:06:13.845714", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17517, - 51.43101 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162321173", - "info": { - "identifier": 162321173, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162321173", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22268/162321173/22268_HAC131108_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.185752", - "last_seen": "2025-06-01T22:05:47.885488", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04377, - 51.55456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.7, - "qmprice": 36.96, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162321266", - "info": { - "identifier": 162321266, - "sqm_ocr": 94.7, - "price": 3500.0, - "price_per_sqm": 36.95881731784583, - "url": "https://www.rightmove.co.uk/properties/162321266", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46013/162321266/46013_HEA247715_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.604002", - "last_seen": "2025-06-01T22:05:53.776335", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12937, - 51.552418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.51, - "qmprice": 48.77, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162321653", - "info": { - "identifier": 162321653, - "sqm_ocr": 61.51, - "price": 3000.0, - "price_per_sqm": 48.77255730775484, - "url": "https://www.rightmove.co.uk/properties/162321653", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/143k/142382/162321653/142382_ALQ012559946_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.462529", - "last_seen": "2025-06-01T20:19:58.886667", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07608, - 51.517406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162321755", - "info": { - "identifier": 162321755, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162321755", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "LG New Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80511/162321755/80511_kyrle_IMG_08_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.090647", - "last_seen": "2025-06-01T22:06:13.721363", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15626, - 51.45506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162321833", - "info": { - "identifier": 162321833, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162321833", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Concept Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82211/162321833/82211_1081_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.391867", - "last_seen": "2025-06-01T22:06:12.536732", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16512, - 51.43123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162321845", - "info": { - "identifier": 162321845, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162321845", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chase Apartments", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34047/162321845/34047_33905094_IMG_00_0000_max_656x437.png", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.705640", - "last_seen": "2025-06-01T22:06:08.760184", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013418, - 51.500072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.4, - "qmprice": 50.69, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162322016", - "info": { - "identifier": 162322016, - "sqm_ocr": 68.4, - "price": 3467.0, - "price_per_sqm": 50.687134502923975, - "url": "https://www.rightmove.co.uk/properties/162322016", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50637/162322016/50637_HPQ012581296_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.734240", - "last_seen": "2025-06-01T22:06:14.840722", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181731, - 51.5125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.7, - "qmprice": 26.96, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162322442", - "info": { - "identifier": 162322442, - "sqm_ocr": 105.7, - "price": 2850.0, - "price_per_sqm": 26.96310312204352, - "url": "https://www.rightmove.co.uk/properties/162322442", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129652/162322442/129652_P1908B4014_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.400143", - "last_seen": "2025-06-01T22:05:50.067785", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15718, - 51.58223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162322460", - "info": { - "identifier": 162322460, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162322460", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202517/162322460/202517_53CT_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.253365", - "last_seen": "2025-06-01T22:06:07.856500", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19009, - 51.36027 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162322901", - "info": { - "identifier": 162322901, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162322901", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Acorn Properties Nwl", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/224k/223670/162322901/223670_ACR220293_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.300269", - "last_seen": "2025-06-01T22:05:40.394568", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.259474, - 51.591827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162323018", - "info": { - "identifier": 162323018, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162323018", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Oakland Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55705/162323018/55705_700ff5f0-7240-43a2-ad65-dc4d76513bd2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.813574", - "last_seen": "2025-06-01T22:06:04.004628", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.047063, - 51.57437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.48, - "qmprice": 38.06, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162323129", - "info": { - "identifier": 162323129, - "sqm_ocr": 102.48, - "price": 3900.0, - "price_per_sqm": 38.05620608899297, - "url": "https://www.rightmove.co.uk/properties/162323129", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111863/162323129/111863_WSL170148_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.777669", - "last_seen": "2025-06-01T22:06:14.949822", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134982, - 51.49871 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.92, - "qmprice": 28.2, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162323165", - "info": { - "identifier": 162323165, - "sqm_ocr": 70.92, - "price": 2000.0, - "price_per_sqm": 28.20078962210942, - "url": "https://www.rightmove.co.uk/properties/162323165", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233849/162323165/233849_2714009_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.307560", - "last_seen": "2025-06-01T22:05:44.184631", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3876, - 51.50689 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.9, - "qmprice": 34.77, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162323627", - "info": { - "identifier": 162323627, - "sqm_ocr": 71.9, - "price": 2500.0, - "price_per_sqm": 34.77051460361613, - "url": "https://www.rightmove.co.uk/properties/162323627", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Daniel Watney", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87247/162323627/87247_299929-2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.331318", - "last_seen": "2025-06-01T22:06:12.479670", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21667, - 51.46179 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.37, - "qmprice": 33.57, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162323807", - "info": { - "identifier": 162323807, - "sqm_ocr": 89.37, - "price": 3000.0, - "price_per_sqm": 33.568311513930844, - "url": "https://www.rightmove.co.uk/properties/162323807", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Chestertons in Association with Allan Fuller", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51325/162323807/51325_WLS170116_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.600750", - "last_seen": "2025-06-01T22:06:13.916238", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199715, - 51.454075 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.4, - "qmprice": 38.97, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162323891", - "info": { - "identifier": 162323891, - "sqm_ocr": 83.4, - "price": 3250.0, - "price_per_sqm": 38.96882494004796, - "url": "https://www.rightmove.co.uk/properties/162323891", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/162323891/111050_1327541_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.683049", - "last_seen": "2025-06-01T22:06:14.029593", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175312, - 51.423996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 33.77, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162323942", - "info": { - "identifier": 162323942, - "sqm_ocr": 77.0, - "price": 2600.0, - "price_per_sqm": 33.76623376623377, - "url": "https://www.rightmove.co.uk/properties/162323942", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162323942/181787_181787_1083_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.111806", - "last_seen": "2025-06-01T22:05:59.726580", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11165, - 51.48987 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 51.42, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162324044", - "info": { - "identifier": 162324044, - "sqm_ocr": 73.9, - "price": 3800.0, - "price_per_sqm": 51.420838971583215, - "url": "https://www.rightmove.co.uk/properties/162324044", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/162324044/73120_1327531_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.863184", - "last_seen": "2025-06-01T22:05:54.125929", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096605, - 51.52447 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.0, - "qmprice": 23.96, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162324065", - "info": { - "identifier": 162324065, - "sqm_ocr": 96.0, - "price": 2300.0, - "price_per_sqm": 23.958333333333332, - "url": "https://www.rightmove.co.uk/properties/162324065", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Gibson Lane", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22316/162324065/22316_33797797_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.741866", - "last_seen": "2025-06-01T22:05:58.874363", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307735, - 51.431156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.48, - "qmprice": 31.38, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162324116", - "info": { - "identifier": 162324116, - "sqm_ocr": 76.48, - "price": 2400.0, - "price_per_sqm": 31.380753138075313, - "url": "https://www.rightmove.co.uk/properties/162324116", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166334/162324116/166334_1327536_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.492225", - "last_seen": "2025-06-01T22:05:49.902845", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05526, - 51.58928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 31.47, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162324221", - "info": { - "identifier": 162324221, - "sqm_ocr": 69.9, - "price": 2200.0, - "price_per_sqm": 31.473533619456365, - "url": "https://www.rightmove.co.uk/properties/162324221", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/162324221/250739_1327530_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.885127", - "last_seen": "2025-06-01T22:05:50.711123", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297847, - 51.605015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.7, - "qmprice": 44.69, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162324338", - "info": { - "identifier": 162324338, - "sqm_ocr": 53.7, - "price": 2400.0, - "price_per_sqm": 44.6927374301676, - "url": "https://www.rightmove.co.uk/properties/162324338", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Daniel Cobb", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38778/162324338/38778_13f50913-e2bd-4a6b-8de5-7ee612c05cfc_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.443432", - "last_seen": "2025-06-01T22:06:14.390519", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136831, - 51.489407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/162324611", - "info": { - "identifier": 162324611, - "sqm_ocr": null, - "price": 3098.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162324611", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "The London Broker", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174521/162324611/174521_FES250035_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.404106", - "last_seen": "2025-06-01T22:06:15.571068", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174113, - 51.51401 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162324713", - "info": { - "identifier": 162324713, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162324713", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Property Broker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61607/162324713/61607_fb07ecac-0892-465a-8786-1ed10cdf87d9_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.737558", - "last_seen": "2025-06-01T22:06:14.843116", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138759, - 51.493797 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.7, - "qmprice": 48.1, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162324869", - "info": { - "identifier": 162324869, - "sqm_ocr": 72.7, - "price": 3497.0, - "price_per_sqm": 48.10178817056396, - "url": "https://www.rightmove.co.uk/properties/162324869", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "The London Broker", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174521/162324869/174521_FES250036_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.131150", - "last_seen": "2025-06-01T22:06:15.265791", - "price": 3497.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174113, - 51.51401 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162324890", - "info": { - "identifier": 162324890, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162324890", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162324890/237116_695_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.050545", - "last_seen": "2025-06-01T22:05:53.453385", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113, - 51.55482 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 36.23, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162325064", - "info": { - "identifier": 162325064, - "sqm_ocr": 69.0, - "price": 2500.0, - "price_per_sqm": 36.231884057971016, - "url": "https://www.rightmove.co.uk/properties/162325064", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Madison Brook", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49239/162325064/49239_33896949_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.520640", - "last_seen": "2025-06-01T22:06:02.606199", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.045774, - 51.511 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162325181", - "info": { - "identifier": 162325181, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162325181", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Curtis And Parker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278867/162325181/278867_33905259_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.271314", - "last_seen": "2025-06-01T22:05:58.315423", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198215, - 51.508965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.68, - "qmprice": 46.37, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162325217", - "info": { - "identifier": 162325217, - "sqm_ocr": 64.68, - "price": 2999.0, - "price_per_sqm": 46.36672850958565, - "url": "https://www.rightmove.co.uk/properties/162325217", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71134/162325217/71134_33905263_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.295969", - "last_seen": "2025-06-01T22:05:48.028749", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084843, - 51.52997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.8, - "qmprice": 34.65, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162325226", - "info": { - "identifier": 162325226, - "sqm_ocr": 93.8, - "price": 3250.0, - "price_per_sqm": 34.64818763326226, - "url": "https://www.rightmove.co.uk/properties/162325226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6073/162325226/6073_33905264_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.002757", - "last_seen": "2025-06-01T22:05:53.632712", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0953, - 51.52416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 31.25, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162325262", - "info": { - "identifier": 162325262, - "sqm_ocr": 80.0, - "price": 2500.0, - "price_per_sqm": 31.25, - "url": "https://www.rightmove.co.uk/properties/162325262", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/277k/276209/162325262/276209_942_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.264886", - "last_seen": "2025-06-01T22:05:52.209424", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.377844, - 51.4751 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.8, - "qmprice": 29.68, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162325439", - "info": { - "identifier": 162325439, - "sqm_ocr": 75.8, - "price": 2250.0, - "price_per_sqm": 29.683377308707126, - "url": "https://www.rightmove.co.uk/properties/162325439", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11351/162325439/11351_29092387_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.462048", - "last_seen": "2025-06-01T22:06:05.040024", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.033044, - 51.50082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162325802", - "info": { - "identifier": 162325802, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162325802", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162325802/96668_239071218022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.226334", - "last_seen": "2025-06-01T22:05:50.914631", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.211865, - 51.60125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.3, - "qmprice": 42.41, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162325805", - "info": { - "identifier": 162325805, - "sqm_ocr": 61.3, - "price": 2600.0, - "price_per_sqm": 42.41435562805873, - "url": "https://www.rightmove.co.uk/properties/162325805", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162325805/55101_1326049_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.321088", - "last_seen": "2025-06-01T22:06:05.404214", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.086766, - 51.499214 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162325808", - "info": { - "identifier": 162325808, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162325808", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162325808/96668_241351810032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.589780", - "last_seen": "2025-06-01T22:05:58.577292", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.275505, - 51.40682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.2, - "qmprice": 24.22, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162325826", - "info": { - "identifier": 162325826, - "sqm_ocr": 103.2, - "price": 2500.0, - "price_per_sqm": 24.224806201550386, - "url": "https://www.rightmove.co.uk/properties/162325826", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253856/162325826/253856_1326937_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.710953", - "last_seen": "2025-06-01T22:05:43.391174", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114886, - 51.406307 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.1, - "qmprice": 29.97, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162325835", - "info": { - "identifier": 162325835, - "sqm_ocr": 100.1, - "price": 3000.0, - "price_per_sqm": 29.970029970029973, - "url": "https://www.rightmove.co.uk/properties/162325835", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162325835/96668_244220205042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.413613", - "last_seen": "2025-06-01T22:06:01.187918", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186162, - 51.4203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.4, - "qmprice": 36.6, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162325850", - "info": { - "identifier": 162325850, - "sqm_ocr": 72.4, - "price": 2650.0, - "price_per_sqm": 36.60220994475138, - "url": "https://www.rightmove.co.uk/properties/162325850", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/162325850/71419_1327558_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.284212", - "last_seen": "2025-06-01T22:05:59.286750", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116926, - 51.435753 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.9, - "qmprice": 29.7, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162325865", - "info": { - "identifier": 162325865, - "sqm_ocr": 90.9, - "price": 2700.0, - "price_per_sqm": 29.7029702970297, - "url": "https://www.rightmove.co.uk/properties/162325865", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162325865/15963_1327453_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.441373", - "last_seen": "2025-06-01T22:06:12.578922", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240467, - 51.45377 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.53, - "qmprice": 34.38, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162325871", - "info": { - "identifier": 162325871, - "sqm_ocr": 94.53, - "price": 3250.0, - "price_per_sqm": 34.380619909023586, - "url": "https://www.rightmove.co.uk/properties/162325871", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162325871/15963_1327456_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.424546", - "last_seen": "2025-06-01T22:06:12.565264", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199898, - 51.45386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.8, - "qmprice": 29.07, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/162325895", - "info": { - "identifier": 162325895, - "sqm_ocr": 73.8, - "price": 2145.0, - "price_per_sqm": 29.065040650406505, - "url": "https://www.rightmove.co.uk/properties/162325895", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/162325895/111056_1327550_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.729440", - "last_seen": "2025-06-01T22:06:08.793740", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04866, - 51.51197 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.6, - "qmprice": 31.54, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162325901", - "info": { - "identifier": 162325901, - "sqm_ocr": 85.6, - "price": 2700.0, - "price_per_sqm": 31.542056074766357, - "url": "https://www.rightmove.co.uk/properties/162325901", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212408/162325901/212408_P153749_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.305551", - "last_seen": "2025-06-01T22:06:07.210277", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00159, - 51.54273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162326084", - "info": { - "identifier": 162326084, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162326084", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162326084/96668_248148012052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.870666", - "last_seen": "2025-06-01T22:05:48.362582", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.227954, - 51.50331 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3029.0, - "url": "https://www.rightmove.co.uk/properties/162326087", - "info": { - "identifier": 162326087, - "sqm_ocr": null, - "price": 3029.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162326087", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162326087/96668_249124721052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.654003", - "last_seen": "2025-06-01T22:06:05.276816", - "price": 3029 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063306, - 51.49308 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162326117", - "info": { - "identifier": 162326117, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162326117", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162326117/96668_247496606052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.036753, - 51.5917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162326123", - "info": { - "identifier": 162326123, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162326123", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162326123/96668_249217722052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.926895", - "last_seen": "2025-06-01T22:06:00.286046", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04794, - 51.470745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162326141", - "info": { - "identifier": 162326141, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162326141", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162326141/96668_249239722052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.425171", - "last_seen": "2025-06-01T17:39:03.118332", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20225, - 51.35361 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162326177", - "info": { - "identifier": 162326177, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162326177", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162326177/96668_245091114042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.647638", - "last_seen": "2025-06-01T22:05:39.026741", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185089, - 51.65097 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2190.0, - "url": "https://www.rightmove.co.uk/properties/162326234", - "info": { - "identifier": 162326234, - "sqm_ocr": null, - "price": 2190.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162326234", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162326234/96668_63990102102019_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.343027", - "last_seen": "2025-06-01T22:05:50.942483", - "price": 2190.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.196024, - 51.56009 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162326237", - "info": { - "identifier": 162326237, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162326237", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162326237/96668_249271422052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.108061", - "last_seen": "2025-06-01T22:06:13.099852", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151936, - 51.466003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162326240", - "info": { - "identifier": 162326240, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162326240", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162326240/96668_249271822052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.118138", - "last_seen": "2025-06-01T22:06:12.976546", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154498, - 51.44119 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162326243", - "info": { - "identifier": 162326243, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162326243", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162326243/96668_249268222052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.726066", - "last_seen": "2025-06-01T22:06:02.485645", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.021602, - 51.50824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162326297", - "info": { - "identifier": 162326297, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162326297", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162326297/96668_249281722052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.215918, - 51.44482 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 33.12, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162326450", - "info": { - "identifier": 162326450, - "sqm_ocr": 80.0, - "price": 2650.0, - "price_per_sqm": 33.125, - "url": "https://www.rightmove.co.uk/properties/162326450", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212408/162326450/212408_P160816_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.781710", - "last_seen": "2025-06-01T22:06:07.628048", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00644, - 51.52838 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.97, - "qmprice": 55.8, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162326522", - "info": { - "identifier": 162326522, - "sqm_ocr": 51.97, - "price": 2900.0, - "price_per_sqm": 55.80142389840292, - "url": "https://www.rightmove.co.uk/properties/162326522", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118693/162326522/118693_33905310_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.716039", - "last_seen": "2025-06-01T22:05:53.060359", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110917, - 51.545998 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.9, - "qmprice": 30.8, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162326543", - "info": { - "identifier": 162326543, - "sqm_ocr": 90.9, - "price": 2800.0, - "price_per_sqm": 30.8030803080308, - "url": "https://www.rightmove.co.uk/properties/162326543", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212408/162326543/212408_P160783_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.039067", - "last_seen": "2025-06-01T22:06:07.251077", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00156, - 51.54003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.2, - "qmprice": 51.79, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162326747", - "info": { - "identifier": 162326747, - "sqm_ocr": 50.2, - "price": 2600.0, - "price_per_sqm": 51.79282868525896, - "url": "https://www.rightmove.co.uk/properties/162326747", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98852/162326747/98852_KEB250410_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.875541", - "last_seen": "2025-06-01T22:05:41.233588", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209005, - 51.543945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2821.0, - "url": "https://www.rightmove.co.uk/properties/162326792", - "info": { - "identifier": 162326792, - "sqm_ocr": null, - "price": 2821.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162326792", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22275/162326792/22275_CSZ231247_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.015069", - "last_seen": "2025-06-01T22:05:49.386737", - "price": 2821.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221554, - 51.505424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.8, - "qmprice": 43.44, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162326798", - "info": { - "identifier": 162326798, - "sqm_ocr": 51.8, - "price": 2250.0, - "price_per_sqm": 43.43629343629344, - "url": "https://www.rightmove.co.uk/properties/162326798", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22233/162326798/22233_CSV153724_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.431296", - "last_seen": "2025-06-01T22:06:00.099263", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12376, - 51.46841 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162326819", - "info": { - "identifier": 162326819, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162326819", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Japan Letting Agency", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258848/162326819/258848_33905320_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.149189", - "last_seen": "2025-06-01T22:05:44.604557", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.270489, - 51.5188 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.02, - "qmprice": 35.11, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162326954", - "info": { - "identifier": 162326954, - "sqm_ocr": 84.02, - "price": 2950.0, - "price_per_sqm": 35.11068793144489, - "url": "https://www.rightmove.co.uk/properties/162326954", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/162326954/15954_1327571_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.390300", - "last_seen": "2025-06-01T22:05:53.250649", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122557, - 51.537262 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 47.4, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/162327590", - "info": { - "identifier": 162327590, - "sqm_ocr": 77.0, - "price": 3650.0, - "price_per_sqm": 47.4025974025974, - "url": "https://www.rightmove.co.uk/properties/162327590", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "London Shared", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265295/162327590/265295_CamdenFlat25_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.552007", - "last_seen": "2025-06-01T22:05:42.848138", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14024, - 51.54114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162328013", - "info": { - "identifier": 162328013, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162328013", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/38k/37163/162328013/37163_P445882_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.339250", - "last_seen": "2025-06-01T22:06:00.134477", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12839, - 51.46784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162328154", - "info": { - "identifier": 162328154, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162328154", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162328154/96668_247018702052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.796725", - "last_seen": "2025-06-01T22:05:58.704325", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.281022, - 51.41196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3226.0, - "url": "https://www.rightmove.co.uk/properties/162328184", - "info": { - "identifier": 162328184, - "sqm_ocr": null, - "price": 3226.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162328184", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162328184/96668_249273522052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.582942", - "last_seen": "2025-06-01T22:05:40.827738", - "price": 3226.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284001, - 51.554733 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162329303", - "info": { - "identifier": 162329303, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162329303", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237557/162329303/237557_P66691_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.328025", - "last_seen": "2025-06-01T22:06:07.844310", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18892, - 51.36037 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162330932", - "info": { - "identifier": 162330932, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162330932", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162330932/96668_242052917032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.632845", - "last_seen": "2025-06-01T22:06:05.921181", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.033996, - 51.50508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162330959", - "info": { - "identifier": 162330959, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162330959", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162330959/96668_236404924012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.651320", - "last_seen": "2025-06-01T22:06:01.108847", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188416, - 51.392014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162330992", - "info": { - "identifier": 162330992, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162330992", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162330992/96668_248979420052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.724307", - "last_seen": "2025-06-01T22:06:11.824522", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010784, - 51.618176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.6, - "qmprice": 38.63, - "rooms": 4, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162331064", - "info": { - "identifier": 162331064, - "sqm_ocr": 68.6, - "price": 2650.0, - "price_per_sqm": 38.629737609329446, - "url": "https://www.rightmove.co.uk/properties/162331064", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Sandra Davidson Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13342/162331064/13342_33905394_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.021589", - "last_seen": "2025-06-01T22:06:03.959513", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.048099, - 51.580357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162331082", - "info": { - "identifier": 162331082, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162331082", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": 104.0, - "service_charge": 250.0, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "& Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279869/162331082/279869_RX583982_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.369323", - "last_seen": "2025-06-01T22:05:59.556238", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113552, - 51.48108 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162331424", - "info": { - "identifier": 162331424, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162331424", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162331424/96668_221450504092024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.081978", - "last_seen": "2025-06-01T22:05:47.256229", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074386, - 51.53492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.4, - "qmprice": 36.33, - "rooms": 2, - "total_price": 2630.0, - "url": "https://www.rightmove.co.uk/properties/162331451", - "info": { - "identifier": 162331451, - "sqm_ocr": 72.4, - "price": 2630.0, - "price_per_sqm": 36.32596685082873, - "url": "https://www.rightmove.co.uk/properties/162331451", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162331451/96668_249306922052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.314389", - "last_seen": "2025-06-01T22:06:12.411118", - "price": 2630.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181151, - 51.46651 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162331454", - "info": { - "identifier": 162331454, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162331454", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162331454/96668_206292723042024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.341064", - "last_seen": "2025-06-01T22:05:46.134891", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012234, - 51.486263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162331781", - "info": { - "identifier": 162331781, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162331781", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162331781/96668_249078520052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.967447", - "last_seen": "2025-06-01T22:05:50.600271", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.349572, - 51.57703 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162331817", - "info": { - "identifier": 162331817, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162331817", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162331817/96668_249313722052025_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.930899", - "last_seen": "2025-06-01T22:05:44.996689", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.308929, - 51.533596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162332165", - "info": { - "identifier": 162332165, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162332165", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Freder", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269027/162332165/269027_RL0159_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.384581", - "last_seen": "2025-06-01T22:06:07.214142", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008052, - 51.54129 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 50.36, - "rooms": 2, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/162332174", - "info": { - "identifier": 162332174, - "sqm_ocr": 77.0, - "price": 3878.0, - "price_per_sqm": 50.36363636363637, - "url": "https://www.rightmove.co.uk/properties/162332174", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54732/162332174/54732_STL230134_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.775940", - "last_seen": "2025-06-01T22:06:14.338388", - "price": 3878 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172352, - 51.52471 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.9, - "qmprice": 27.74, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162332270", - "info": { - "identifier": 162332270, - "sqm_ocr": 82.9, - "price": 2300.0, - "price_per_sqm": 27.744270205066343, - "url": "https://www.rightmove.co.uk/properties/162332270", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162332270/96668_249325422052025_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.128980", - "last_seen": "2025-06-01T22:06:00.424178", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.007488, - 51.42468 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162332273", - "info": { - "identifier": 162332273, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162332273", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162332273/96668_249328422052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.312539", - "last_seen": "2025-06-01T22:05:48.255662", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184713, - 51.47621 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 26.53, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162336578", - "info": { - "identifier": 162336578, - "sqm_ocr": 75.4, - "price": 2000.0, - "price_per_sqm": 26.52519893899204, - "url": "https://www.rightmove.co.uk/properties/162336578", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/162336578/87815_1320173_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.994985", - "last_seen": "2025-06-01T22:05:45.491330", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133419, - 51.640694 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.18, - "qmprice": 59.14, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162336758", - "info": { - "identifier": 162336758, - "sqm_ocr": 59.18, - "price": 3500.0, - "price_per_sqm": 59.14160189253126, - "url": "https://www.rightmove.co.uk/properties/162336758", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162336758/26207_HEA194198_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.191553", - "last_seen": "2025-06-01T22:05:53.137131", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11326, - 51.54806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3532.0, - "url": "https://www.rightmove.co.uk/properties/162337448", - "info": { - "identifier": 162337448, - "sqm_ocr": null, - "price": 3532.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162337448", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/162337448/65124_CEI241757_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.953727", - "last_seen": "2025-06-01T22:06:06.802322", - "price": 3531 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069824, - 51.500904 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.5, - "qmprice": 39.6, - "rooms": 2, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/162337460", - "info": { - "identifier": 162337460, - "sqm_ocr": 75.5, - "price": 2990.0, - "price_per_sqm": 39.602649006622514, - "url": "https://www.rightmove.co.uk/properties/162337460", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/162337460/65124_CEI243437_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.009376", - "last_seen": "2025-06-01T22:06:06.845564", - "price": 2990 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077854, - 51.495083 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.09, - "qmprice": 20.6, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162337799", - "info": { - "identifier": 162337799, - "sqm_ocr": 97.09, - "price": 2000.0, - "price_per_sqm": 20.599443815016993, - "url": "https://www.rightmove.co.uk/properties/162337799", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Daniels", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49744/162337799/49744_33905471_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.628740", - "last_seen": "2025-06-01T22:05:54.842694", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.256327, - 51.56328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3161.0, - "url": "https://www.rightmove.co.uk/properties/162338630", - "info": { - "identifier": 162338630, - "sqm_ocr": null, - "price": 3161.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162338630", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162338630/253604_144B2305_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.435093", - "last_seen": "2025-06-01T22:06:07.466271", - "price": 3161.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162338678", - "info": { - "identifier": 162338678, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162338678", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/162338678/264878_CAN250604_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.779531", - "last_seen": "2025-06-01T22:05:49.896622", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11395, - 51.592194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162338894", - "info": { - "identifier": 162338894, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162338894", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/162338894/264878_SKN220066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.403453", - "last_seen": "2025-06-01T22:05:56.474298", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242846, - 51.596523 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3123.0, - "url": "https://www.rightmove.co.uk/properties/162338924", - "info": { - "identifier": 162338924, - "sqm_ocr": null, - "price": 3123.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162338924", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162338924/253604_26X2305_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.595005", - "last_seen": "2025-06-01T22:06:07.382000", - "price": 3123.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00768, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 36.16, - "rooms": 2, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162339140", - "info": { - "identifier": 162339140, - "sqm_ocr": 69.0, - "price": 2495.0, - "price_per_sqm": 36.15942028985507, - "url": "https://www.rightmove.co.uk/properties/162339140", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66539/162339140/66539_33905542_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.089749", - "last_seen": "2025-06-01T22:05:53.362073", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097627, - 51.54796 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/162339668", - "info": { - "identifier": 162339668, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162339668", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/162339668/191255_33905576_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.225118", - "last_seen": "2025-06-01T22:06:10.225118", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053419, - 51.50709 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.8, - "qmprice": 36.28, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162339683", - "info": { - "identifier": 162339683, - "sqm_ocr": 75.8, - "price": 2750.0, - "price_per_sqm": 36.27968337730871, - "url": "https://www.rightmove.co.uk/properties/162339683", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Parkgate", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16775/162339683/16775_2693856_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.512994", - "last_seen": "2025-06-01T22:06:14.106465", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21789, - 51.46204 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162339770", - "info": { - "identifier": 162339770, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162339770", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/162339770/264878_CAN250605_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "15/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.229293", - "last_seen": "2025-06-01T20:19:59.229293", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021072, - 51.498833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.5, - "qmprice": 40.74, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/162339809", - "info": { - "identifier": 162339809, - "sqm_ocr": 58.5, - "price": 2383.0, - "price_per_sqm": 40.73504273504273, - "url": "https://www.rightmove.co.uk/properties/162339809", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/162339809/25485_33905588_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.588024", - "last_seen": "2025-06-01T22:05:42.820627", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182287, - 51.54448 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.1, - "qmprice": 35.57, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162340064", - "info": { - "identifier": 162340064, - "sqm_ocr": 73.1, - "price": 2600.0, - "price_per_sqm": 35.56771545827634, - "url": "https://www.rightmove.co.uk/properties/162340064", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50966/162340064/50966_P5609D4113_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.299375", - "last_seen": "2025-06-01T22:05:48.379461", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22838, - 51.49574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162340646", - "info": { - "identifier": 162340646, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162340646", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Prospect London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/198k/197495/162340646/197495_33905622_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.267285", - "last_seen": "2025-06-01T22:06:06.079727", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06819, - 51.47421 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.7, - "qmprice": 27.87, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162341036", - "info": { - "identifier": 162341036, - "sqm_ocr": 89.7, - "price": 2500.0, - "price_per_sqm": 27.870680044593087, - "url": "https://www.rightmove.co.uk/properties/162341036", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Reeds Rains", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46503/162341036/46503_PLA220266_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.000336", - "last_seen": "2025-06-01T22:06:02.176641", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.030507, - 51.51402 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.98, - "qmprice": 31.5, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162341168", - "info": { - "identifier": 162341168, - "sqm_ocr": 126.98, - "price": 4000.0, - "price_per_sqm": 31.501023783272956, - "url": "https://www.rightmove.co.uk/properties/162341168", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49027/162341168/49027_WAL190041_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.000140", - "last_seen": "2025-06-01T22:06:12.952720", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188584, - 51.45821 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.3, - "qmprice": 28.74, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162341240", - "info": { - "identifier": 162341240, - "sqm_ocr": 78.3, - "price": 2250.0, - "price_per_sqm": 28.73563218390805, - "url": "https://www.rightmove.co.uk/properties/162341240", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212408/162341240/212408_P161051_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.264232", - "last_seen": "2025-06-01T22:06:07.690086", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00049, - 51.54395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.1, - "qmprice": 41.31, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162341246", - "info": { - "identifier": 162341246, - "sqm_ocr": 58.1, - "price": 2400.0, - "price_per_sqm": 41.30808950086058, - "url": "https://www.rightmove.co.uk/properties/162341246", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50304/162341246/50304_33901389_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.464987", - "last_seen": "2025-06-01T22:05:45.145857", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300512, - 51.513664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 33.33, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162341381", - "info": { - "identifier": 162341381, - "sqm_ocr": 63.0, - "price": 2100.0, - "price_per_sqm": 33.333333333333336, - "url": "https://www.rightmove.co.uk/properties/162341381", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Aston Rowe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230534/162341381/230534_33905656_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.074535", - "last_seen": "2025-06-01T22:05:44.800765", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.251951, - 51.51514 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 58.32, - "rooms": 2, - "total_price": 3791.0, - "url": "https://www.rightmove.co.uk/properties/162341807", - "info": { - "identifier": 162341807, - "sqm_ocr": 65.0, - "price": 3791.0, - "price_per_sqm": 58.323076923076925, - "url": "https://www.rightmove.co.uk/properties/162341807", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43739/162341807/43739_P301266_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.374038", - "last_seen": "2025-06-01T22:06:15.640037", - "price": 3791.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17144, - 51.51834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.0, - "qmprice": 25.49, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162341837", - "info": { - "identifier": 162341837, - "sqm_ocr": 102.0, - "price": 2600.0, - "price_per_sqm": 25.49019607843137, - "url": "https://www.rightmove.co.uk/properties/162341837", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/162341837/87815_1327286_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.226249", - "last_seen": "2025-06-01T22:05:39.451432", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191576, - 51.603123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.24, - "qmprice": 44.14, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162341963", - "info": { - "identifier": 162341963, - "sqm_ocr": 53.24, - "price": 2350.0, - "price_per_sqm": 44.13974455296769, - "url": "https://www.rightmove.co.uk/properties/162341963", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162341963/15963_1324778_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.311554", - "last_seen": "2025-06-01T22:06:12.399358", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190829, - 51.462273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.24, - "qmprice": 70.44, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162341966", - "info": { - "identifier": 162341966, - "sqm_ocr": 53.24, - "price": 3750.0, - "price_per_sqm": 70.43576258452292, - "url": "https://www.rightmove.co.uk/properties/162341966", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162341966/15963_1324773_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.309703", - "last_seen": "2025-06-01T22:06:12.390065", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190829, - 51.462273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.4, - "qmprice": 45.87, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162342101", - "info": { - "identifier": 162342101, - "sqm_ocr": 65.4, - "price": 3000.0, - "price_per_sqm": 45.871559633027516, - "url": "https://www.rightmove.co.uk/properties/162342101", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/162342101/253853_1327490_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.613344", - "last_seen": "2025-06-01T22:06:05.212757", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101788, - 51.49341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.5, - "qmprice": 56.52, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162342305", - "info": { - "identifier": 162342305, - "sqm_ocr": 57.5, - "price": 3250.0, - "price_per_sqm": 56.52173913043478, - "url": "https://www.rightmove.co.uk/properties/162342305", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/162342305/54616_DAN210301_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.016336", - "last_seen": "2025-06-01T22:05:42.879295", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137517, - 51.542282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162342479", - "info": { - "identifier": 162342479, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162342479", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12814/162342479/12814_EAM250330_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.116981", - "last_seen": "2025-06-01T22:05:44.708837", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.315167, - 51.508965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162342590", - "info": { - "identifier": 162342590, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162342590", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Barrain London Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249296/162342590/249296_33905744_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.928081", - "last_seen": "2025-06-01T22:06:08.978751", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013972, - 51.486786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162342650", - "info": { - "identifier": 162342650, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162342650", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194036/162342650/194036_HWV090055_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.291902", - "last_seen": "2025-06-01T22:06:01.064154", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22281, - 51.42144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 41.09, - "rooms": 3, - "total_price": 2835.0, - "url": "https://www.rightmove.co.uk/properties/162342680", - "info": { - "identifier": 162342680, - "sqm_ocr": 69.0, - "price": 2835.0, - "price_per_sqm": 41.08695652173913, - "url": "https://www.rightmove.co.uk/properties/162342680", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/162342680/15981_1326616_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.303352", - "last_seen": "2025-06-01T22:05:58.965934", - "price": 2835.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141257, - 51.446983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162342701", - "info": { - "identifier": 162342701, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162342701", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48456/162342701/48456_YLM150091_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.638672", - "last_seen": "2025-06-01T22:06:04.444540", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.323853, - 51.454136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.16, - "qmprice": 22.19, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162342809", - "info": { - "identifier": 162342809, - "sqm_ocr": 99.16, - "price": 2200.0, - "price_per_sqm": 22.18636546994756, - "url": "https://www.rightmove.co.uk/properties/162342809", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Woolwich", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260435/162342809/260435_000020535_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.554405", - "last_seen": "2025-06-01T22:05:47.009880", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06625, - 51.48669 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/162342848", - "info": { - "identifier": 162342848, - "sqm_ocr": null, - "price": 3142.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162342848", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65902/162342848/65902_SJQ012566759_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.968939", - "last_seen": "2025-06-01T22:06:16.023287", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172271, - 51.527973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.4, - "qmprice": 38.56, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162343007", - "info": { - "identifier": 162343007, - "sqm_ocr": 80.4, - "price": 3100.0, - "price_per_sqm": 38.557213930348254, - "url": "https://www.rightmove.co.uk/properties/162343007", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Next Move", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13147/162343007/13147_3259_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.214540", - "last_seen": "2025-06-01T22:05:47.923650", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06931, - 51.55762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162343130", - "info": { - "identifier": 162343130, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162343130", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77583/162343130/77583_YLT250030_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.204312", - "last_seen": "2025-06-01T22:06:04.630698", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.320697, - 51.42894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 51.28, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162343295", - "info": { - "identifier": 162343295, - "sqm_ocr": 78.0, - "price": 4000.0, - "price_per_sqm": 51.282051282051285, - "url": "https://www.rightmove.co.uk/properties/162343295", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/162343295/54616_DAN200412_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.822626", - "last_seen": "2025-06-01T22:05:42.028345", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150045, - 51.545227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/162343634", - "info": { - "identifier": 162343634, - "sqm_ocr": null, - "price": 3650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162343634", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77583/162343634/77583_YLT210064_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.860671", - "last_seen": "2025-06-01T22:06:04.669527", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.322391, - 51.42924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 135.5, - "qmprice": 25.09, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162343784", - "info": { - "identifier": 162343784, - "sqm_ocr": 135.5, - "price": 3400.0, - "price_per_sqm": 25.092250922509226, - "url": "https://www.rightmove.co.uk/properties/162343784", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118048/162343784/118048_33905810_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.909962", - "last_seen": "2025-06-01T22:06:00.359466", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.001063, - 51.45322 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.8, - "qmprice": 30.08, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162344090", - "info": { - "identifier": 162344090, - "sqm_ocr": 79.8, - "price": 2400.0, - "price_per_sqm": 30.075187969924812, - "url": "https://www.rightmove.co.uk/properties/162344090", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9170/162344090/9170_P100165_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.823016", - "last_seen": "2025-06-01T22:05:58.594499", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29132, - 51.41134 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.9, - "qmprice": 49.8, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162344096", - "info": { - "identifier": 162344096, - "sqm_ocr": 60.9, - "price": 3033.0, - "price_per_sqm": 49.80295566502463, - "url": "https://www.rightmove.co.uk/properties/162344096", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86173/162344096/86173_P300762_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.653343", - "last_seen": "2025-06-01T22:06:04.430385", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34196, - 51.43859 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/162344333", - "info": { - "identifier": 162344333, - "sqm_ocr": null, - "price": 2899.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162344333", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/162344333/105856_3459_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.752220", - "last_seen": "2025-06-01T22:06:05.369107", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08791, - 51.4964 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3727.0, - "url": "https://www.rightmove.co.uk/properties/162344345", - "info": { - "identifier": 162344345, - "sqm_ocr": null, - "price": 3727.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162344345", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/162344345/115768_784511fo_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.704962", - "last_seen": "2025-06-01T22:06:05.353695", - "price": 3726 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10224, - 51.48406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.82, - "qmprice": 32.04, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162344369", - "info": { - "identifier": 162344369, - "sqm_ocr": 85.82, - "price": 2750.0, - "price_per_sqm": 32.04381263108833, - "url": "https://www.rightmove.co.uk/properties/162344369", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/162344369/84878_33905847_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.404900", - "last_seen": "2025-06-01T22:06:01.180098", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199568, - 51.419815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162344396", - "info": { - "identifier": 162344396, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162344396", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Churchill & Mathesons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266774/162344396/266774_33905850_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.737662", - "last_seen": "2025-06-01T22:05:40.304987", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.250797, - 51.544518 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162344702", - "info": { - "identifier": 162344702, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162344702", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Elkay Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52868/162344702/52868_102387002140_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.448504", - "last_seen": "2025-06-01T22:05:41.053813", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28746, - 51.5762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.6, - "qmprice": 32.75, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162344774", - "info": { - "identifier": 162344774, - "sqm_ocr": 91.6, - "price": 3000.0, - "price_per_sqm": 32.75109170305677, - "url": "https://www.rightmove.co.uk/properties/162344774", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210116/162344774/210116_P301272_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.531872", - "last_seen": "2025-06-01T22:05:42.874470", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2059, - 51.55097 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 37.32, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162344837", - "info": { - "identifier": 162344837, - "sqm_ocr": 71.0, - "price": 2650.0, - "price_per_sqm": 37.32394366197183, - "url": "https://www.rightmove.co.uk/properties/162344837", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14546/162344837/14546_ALE180030_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.079242", - "last_seen": "2025-06-01T22:06:02.267944", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02923, - 51.500095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2099.0, - "url": "https://www.rightmove.co.uk/properties/162344852", - "info": { - "identifier": 162344852, - "sqm_ocr": null, - "price": 2099.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162344852", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "LAND ROYALE PROPERTIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272384/162344852/272384_OGLOCKWOODROAD_IMG_10_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.240852", - "last_seen": "2025-06-01T22:05:44.023958", - "price": 2099.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36902, - 51.50282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.0, - "qmprice": 30.61, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162344870", - "info": { - "identifier": 162344870, - "sqm_ocr": 98.0, - "price": 3000.0, - "price_per_sqm": 30.612244897959183, - "url": "https://www.rightmove.co.uk/properties/162344870", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Maplewood Property", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280013/162344870/280013_P277_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.691234", - "last_seen": "2025-06-01T22:05:52.985216", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08668, - 51.52473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162344897", - "info": { - "identifier": 162344897, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162344897", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "HES Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16373/162344897/16373_6947_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.356403", - "last_seen": "2025-06-01T22:06:07.749308", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184882, - 51.35175 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.1, - "qmprice": 32.56, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162344936", - "info": { - "identifier": 162344936, - "sqm_ocr": 69.1, - "price": 2250.0, - "price_per_sqm": 32.561505065123015, - "url": "https://www.rightmove.co.uk/properties/162344936", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191213/162344936/191213_KCK240052_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.701623", - "last_seen": "2025-06-01T22:05:44.425023", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27722, - 51.50791 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162344942", - "info": { - "identifier": 162344942, - "sqm_ocr": null, - "price": 3445.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162344942", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/162344942/17888_21533_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.152662", - "last_seen": "2025-06-01T22:06:15.228640", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16154, - 51.52553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162344990", - "info": { - "identifier": 162344990, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162344990", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Langford Russell", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/110k/109573/162344990/109573_P277046_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.399402", - "last_seen": "2025-06-01T22:05:43.448787", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04552, - 51.38906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.5, - "qmprice": 24.05, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162345437", - "info": { - "identifier": 162345437, - "sqm_ocr": 118.5, - "price": 2850.0, - "price_per_sqm": 24.050632911392405, - "url": "https://www.rightmove.co.uk/properties/162345437", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "gLocalAgents.co.uk", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176603/162345437/176603_11859_EAF_112466_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.911077", - "last_seen": "2025-06-01T22:05:45.528466", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14589, - 51.6468 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.2, - "qmprice": 22.46, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162345710", - "info": { - "identifier": 162345710, - "sqm_ocr": 100.2, - "price": 2250.0, - "price_per_sqm": 22.45508982035928, - "url": "https://www.rightmove.co.uk/properties/162345710", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Andrews Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/191k/190292/162345710/190292_101809019656_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.573786", - "last_seen": "2025-06-01T22:05:51.628265", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.46387, - 51.52748 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162346484", - "info": { - "identifier": 162346484, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162346484", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Alex Crown Lettings & Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102122/162346484/102122_466_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.591591", - "last_seen": "2025-06-01T22:05:40.816801", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21921, - 51.53157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/162346511", - "info": { - "identifier": 162346511, - "sqm_ocr": null, - "price": 3142.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162346511", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/162346511/120463_33905975_IMG_00_0000_max_656x437.png", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.530696", - "last_seen": "2025-06-01T22:05:42.876918", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169266, - 51.53881 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162346562", - "info": { - "identifier": 162346562, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162346562", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "A2Dominion Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101431/162346562/101431_401iona_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.472225", - "last_seen": "2025-06-01T20:19:56.928936", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03402, - 51.51306 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.2, - "qmprice": 39.79, - "rooms": 4, - "total_price": 3390.0, - "url": "https://www.rightmove.co.uk/properties/162346646", - "info": { - "identifier": 162346646, - "sqm_ocr": 85.2, - "price": 3390.0, - "price_per_sqm": 39.78873239436619, - "url": "https://www.rightmove.co.uk/properties/162346646", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191213/162346646/191213_KCK250604_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.188873", - "last_seen": "2025-06-01T22:05:43.972409", - "price": 3390.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.255355, - 51.515404 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.6, - "qmprice": 30.16, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162346799", - "info": { - "identifier": 162346799, - "sqm_ocr": 74.6, - "price": 2250.0, - "price_per_sqm": 30.160857908847188, - "url": "https://www.rightmove.co.uk/properties/162346799", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92261/162346799/92261_KDJ250817_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.130400", - "last_seen": "2025-06-01T22:05:38.805625", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190408, - 51.591732 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 39.37, - "rooms": 2, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/162346835", - "info": { - "identifier": 162346835, - "sqm_ocr": 71.0, - "price": 2795.0, - "price_per_sqm": 39.36619718309859, - "url": "https://www.rightmove.co.uk/properties/162346835", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kubie Gold Associates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82958/162346835/82958_29093840_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.911168", - "last_seen": "2025-06-01T22:06:15.914085", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166047, - 51.521633 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162346868", - "info": { - "identifier": 162346868, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162346868", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11443/162346868/11443_0407_HRT040705182_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.481500", - "last_seen": "2025-06-01T22:05:45.161554", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.373559, - 51.532288 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 47.37, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162346877", - "info": { - "identifier": 162346877, - "sqm_ocr": 57.0, - "price": 2700.0, - "price_per_sqm": 47.36842105263158, - "url": "https://www.rightmove.co.uk/properties/162346877", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162346877/87187_32826_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.321333", - "last_seen": "2025-06-01T17:38:56.359813", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178114, - 51.486717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.3, - "qmprice": 63.24, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162347330", - "info": { - "identifier": 162347330, - "sqm_ocr": 59.3, - "price": 3750.0, - "price_per_sqm": 63.23777403035413, - "url": "https://www.rightmove.co.uk/properties/162347330", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/162347330/15981_1326322_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.337945", - "last_seen": "2025-06-01T22:06:12.082277", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164179, - 51.44162 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.3, - "qmprice": 37.94, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162347339", - "info": { - "identifier": 162347339, - "sqm_ocr": 59.3, - "price": 2250.0, - "price_per_sqm": 37.94266441821248, - "url": "https://www.rightmove.co.uk/properties/162347339", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/162347339/15981_1326009_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.312778", - "last_seen": "2025-06-01T22:06:12.077328", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164179, - 51.44162 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.04, - "qmprice": 45.11, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162347399", - "info": { - "identifier": 162347399, - "sqm_ocr": 72.04, - "price": 3250.0, - "price_per_sqm": 45.11382565241532, - "url": "https://www.rightmove.co.uk/properties/162347399", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80905/162347399/80905_BSL210124_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.871245", - "last_seen": "2025-06-01T22:06:15.311613", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132154, - 51.51086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.46, - "qmprice": 26.06, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162347411", - "info": { - "identifier": 162347411, - "sqm_ocr": 107.46, - "price": 2800.0, - "price_per_sqm": 26.056206960729575, - "url": "https://www.rightmove.co.uk/properties/162347411", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Keller Williams Oxygen", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/244k/243590/162347411/243590_RX585077_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.205038", - "last_seen": "2025-06-01T22:05:50.282590", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.368067, - 51.609818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.5, - "qmprice": 47.34, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162347483", - "info": { - "identifier": 162347483, - "sqm_ocr": 84.5, - "price": 4000.0, - "price_per_sqm": 47.337278106508876, - "url": "https://www.rightmove.co.uk/properties/162347483", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/162347483/101522_1316988_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.123828", - "last_seen": "2025-06-01T22:05:47.918360", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052664, - 51.539825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/162347690", - "info": { - "identifier": 162347690, - "sqm_ocr": null, - "price": 2295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162347690", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57934/162347690/57934_KDN110085_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.573363", - "last_seen": "2025-06-01T22:05:49.217582", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222588, - 51.48953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162347723", - "info": { - "identifier": 162347723, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162347723", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CITY REALTOR LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/179k/178868/162347723/178868_33906058_IMG_00_0000_max_656x437.png", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.664699", - "last_seen": "2025-06-01T22:06:08.668933", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056691, - 51.5291 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 52.08, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162347732", - "info": { - "identifier": 162347732, - "sqm_ocr": 72.0, - "price": 3750.0, - "price_per_sqm": 52.083333333333336, - "url": "https://www.rightmove.co.uk/properties/162347732", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162347732/98531_1327022_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.844381", - "last_seen": "2025-06-01T22:05:48.290819", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216974, - 51.50169 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 38.19, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162347735", - "info": { - "identifier": 162347735, - "sqm_ocr": 72.0, - "price": 2750.0, - "price_per_sqm": 38.19444444444444, - "url": "https://www.rightmove.co.uk/properties/162347735", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162347735/98531_1327024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.841370", - "last_seen": "2025-06-01T22:05:48.288431", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216974, - 51.50169 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.0, - "qmprice": 27.04, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162347744", - "info": { - "identifier": 162347744, - "sqm_ocr": 98.0, - "price": 2650.0, - "price_per_sqm": 27.040816326530614, - "url": "https://www.rightmove.co.uk/properties/162347744", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118048/162347744/118048_33905809_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.358711", - "last_seen": "2025-06-01T22:05:46.143419", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.036394, - 51.4617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 50.0, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162347786", - "info": { - "identifier": 162347786, - "sqm_ocr": 65.0, - "price": 3250.0, - "price_per_sqm": 50.0, - "url": "https://www.rightmove.co.uk/properties/162347786", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/162347786/15948_1327589_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.790732", - "last_seen": "2025-06-01T22:05:48.251625", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185363, - 51.47469 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.3, - "qmprice": 64.73, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162347822", - "info": { - "identifier": 162347822, - "sqm_ocr": 53.3, - "price": 3450.0, - "price_per_sqm": 64.72795497185741, - "url": "https://www.rightmove.co.uk/properties/162347822", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162347822/15963_1325868_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.914209", - "last_seen": "2025-06-01T22:06:13.130238", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188453, - 51.462307 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.3, - "qmprice": 43.15, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162347831", - "info": { - "identifier": 162347831, - "sqm_ocr": 53.3, - "price": 2300.0, - "price_per_sqm": 43.151969981238274, - "url": "https://www.rightmove.co.uk/properties/162347831", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162347831/15963_1325879_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.927345", - "last_seen": "2025-06-01T22:06:13.112627", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188453, - 51.462307 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 45.14, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162347888", - "info": { - "identifier": 162347888, - "sqm_ocr": 72.0, - "price": 3250.0, - "price_per_sqm": 45.138888888888886, - "url": "https://www.rightmove.co.uk/properties/162347888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Tavistock Bow", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/111k/110768/162347888/110768_101184000203_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.199359", - "last_seen": "2025-06-01T22:06:15.179670", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132355, - 51.510727 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 32.59, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/162348059", - "info": { - "identifier": 162348059, - "sqm_ocr": 69.0, - "price": 2249.0, - "price_per_sqm": 32.594202898550726, - "url": "https://www.rightmove.co.uk/properties/162348059", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50713/162348059/50713_33906078_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.484841", - "last_seen": "2025-06-01T22:05:57.775393", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215067, - 51.508892 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162348074", - "info": { - "identifier": 162348074, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162348074", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84803/162348074/84803_33906080_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.958603", - "last_seen": "2025-06-01T22:06:13.058312", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.248716, - 51.46413 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.3, - "qmprice": 37.15, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162348341", - "info": { - "identifier": 162348341, - "sqm_ocr": 67.3, - "price": 2500.0, - "price_per_sqm": 37.147102526002975, - "url": "https://www.rightmove.co.uk/properties/162348341", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84878/162348341/84878_33906092_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.864530", - "last_seen": "2025-06-01T22:06:01.213187", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200002, - 51.414967 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162348533", - "info": { - "identifier": 162348533, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162348533", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219908/162348533/219908_4076_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.811720", - "last_seen": "2025-06-01T22:05:44.302404", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.383633, - 51.4974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3720.0, - "url": "https://www.rightmove.co.uk/properties/162349331", - "info": { - "identifier": 162349331, - "sqm_ocr": null, - "price": 3720.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162349331", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Allsop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250628/162349331/250628_A702_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.850081", - "last_seen": "2025-06-01T22:06:13.316274", - "price": 3720.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13734, - 51.48106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.01, - "qmprice": 44.26, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162349466", - "info": { - "identifier": 162349466, - "sqm_ocr": 79.01, - "price": 3497.0, - "price_per_sqm": 44.26022022528794, - "url": "https://www.rightmove.co.uk/properties/162349466", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36789/162349466/36789_CAL180029_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.463256", - "last_seen": "2025-06-01T20:19:56.925172", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.060134, - 51.505795 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.0, - "qmprice": 34.78, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162349589", - "info": { - "identifier": 162349589, - "sqm_ocr": 92.0, - "price": 3200.0, - "price_per_sqm": 34.78260869565217, - "url": "https://www.rightmove.co.uk/properties/162349589", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212408/162349589/212408_P148311_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.949636", - "last_seen": "2025-06-01T22:06:07.225087", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00918, - 51.53071 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.5, - "qmprice": 33.81, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162349676", - "info": { - "identifier": 162349676, - "sqm_ocr": 69.5, - "price": 2350.0, - "price_per_sqm": 33.81294964028777, - "url": "https://www.rightmove.co.uk/properties/162349676", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212357/162349676/212357_P161107_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.773235", - "last_seen": "2025-06-01T22:05:46.318430", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01377, - 51.4966 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162349775", - "info": { - "identifier": 162349775, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162349775", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Excel Property Services", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99425/162349775/99425_102708036962_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.738685", - "last_seen": "2025-06-01T22:05:39.762262", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19737, - 51.5807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/162349808", - "info": { - "identifier": 162349808, - "sqm_ocr": null, - "price": 2695.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162349808", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Folio London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97670/162349808/97670_SPE210008_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.127663", - "last_seen": "2025-06-01T22:05:44.692294", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300411, - 51.49625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.1, - "qmprice": 42.71, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162349949", - "info": { - "identifier": 162349949, - "sqm_ocr": 76.1, - "price": 3250.0, - "price_per_sqm": 42.70696452036794, - "url": "https://www.rightmove.co.uk/properties/162349949", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48618/162349949/48618_HOP130157_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.773756", - "last_seen": "2025-06-01T22:06:14.929496", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169594, - 51.518715 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.5, - "qmprice": 64.05, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162350042", - "info": { - "identifier": 162350042, - "sqm_ocr": 57.5, - "price": 3683.0, - "price_per_sqm": 64.05217391304348, - "url": "https://www.rightmove.co.uk/properties/162350042", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32391/162350042/32391_33906172_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.287108", - "last_seen": "2025-06-01T22:05:42.409705", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125405, - 51.525814 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.37, - "qmprice": 29.18, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162350108", - "info": { - "identifier": 162350108, - "sqm_ocr": 123.37, - "price": 3600.0, - "price_per_sqm": 29.180513901272594, - "url": "https://www.rightmove.co.uk/properties/162350108", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48606/162350108/48606_MYL220146_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.195936", - "last_seen": "2025-06-01T22:06:03.090224", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012041, - 51.510033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162350225", - "info": { - "identifier": 162350225, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162350225", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Vonder", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282818/162350225/282818_25PA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.266891", - "last_seen": "2025-06-01T22:05:52.216026", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29146, - 51.49213 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.79, - "qmprice": 22.07, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162350387", - "info": { - "identifier": 162350387, - "sqm_ocr": 117.79, - "price": 2600.0, - "price_per_sqm": 22.073181084981744, - "url": "https://www.rightmove.co.uk/properties/162350387", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/162350387/65785_33906199_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.354434", - "last_seen": "2025-06-01T22:05:59.320967", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131798, - 51.43984 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 30.3, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162350393", - "info": { - "identifier": 162350393, - "sqm_ocr": 69.3, - "price": 2100.0, - "price_per_sqm": 30.303030303030305, - "url": "https://www.rightmove.co.uk/properties/162350393", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/162350393/52415_33906200_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.258793", - "last_seen": "2025-06-01T22:05:59.310808", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131733, - 51.42506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.9, - "qmprice": 31.5, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162350546", - "info": { - "identifier": 162350546, - "sqm_ocr": 88.9, - "price": 2800.0, - "price_per_sqm": 31.49606299212598, - "url": "https://www.rightmove.co.uk/properties/162350546", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212408/162350546/212408_P161118_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.647321", - "last_seen": "2025-06-01T22:06:07.352132", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00856, - 51.53101 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162350669", - "info": { - "identifier": 162350669, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162350669", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Porters Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81215/162350669/81215_12674274_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.749823", - "last_seen": "2025-06-01T22:06:14.128428", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155814, - 51.44239 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162351053", - "info": { - "identifier": 162351053, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162351053", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Curtis And Parker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278867/162351053/278867_33906246_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.193971", - "last_seen": "2025-06-01T22:05:57.558034", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193582, - 51.509636 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162351209", - "info": { - "identifier": 162351209, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162351209", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162351209/191744_RL4189_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.891658", - "last_seen": "2025-06-01T22:05:44.477056", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.387994, - 51.507122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3770.0, - "url": "https://www.rightmove.co.uk/properties/162351248", - "info": { - "identifier": 162351248, - "sqm_ocr": null, - "price": 3770.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162351248", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/162351248/120463_33906252_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.820481", - "last_seen": "2025-06-01T22:06:15.421859", - "price": 3770 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179034, - 51.53036 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.2, - "qmprice": 45.35, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162351356", - "info": { - "identifier": 162351356, - "sqm_ocr": 88.2, - "price": 4000.0, - "price_per_sqm": 45.35147392290249, - "url": "https://www.rightmove.co.uk/properties/162351356", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/143k/142382/162351356/142382_ALQ012583264_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.486695", - "last_seen": "2025-06-01T22:06:10.171210", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070257, - 51.513718 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.3, - "qmprice": 36.33, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162351608", - "info": { - "identifier": 162351608, - "sqm_ocr": 63.3, - "price": 2300.0, - "price_per_sqm": 36.3349131121643, - "url": "https://www.rightmove.co.uk/properties/162351608", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Wembley Park Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80783/162351608/80783_2304676_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.107924", - "last_seen": "2025-06-01T22:05:40.588371", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28393, - 51.55871 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 47.79, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162351626", - "info": { - "identifier": 162351626, - "sqm_ocr": 68.0, - "price": 3250.0, - "price_per_sqm": 47.794117647058826, - "url": "https://www.rightmove.co.uk/properties/162351626", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Greater London Properties", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6474/162351626/6474_GRT_SH_LFSYCL_252_40097339_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.196514", - "last_seen": "2025-06-01T22:06:15.188699", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132154, - 51.51086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3870.0, - "url": "https://www.rightmove.co.uk/properties/162351773", - "info": { - "identifier": 162351773, - "sqm_ocr": null, - "price": 3870.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162351773", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Knight Frank Lettings (ILM)", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137825/162351773/137825_BIQ012521218_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.325684", - "last_seen": "2025-06-01T20:19:58.581550", - "price": 3869 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071469, - 51.515022 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162351887", - "info": { - "identifier": 162351887, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162351887", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25055/162351887/25055_BOW230507_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.213257", - "last_seen": "2025-06-01T22:06:10.900478", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.042676, - 51.52188 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162351959", - "info": { - "identifier": 162351959, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162351959", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "STONEBANKS UK LTD", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272417/162351959/272417_33906290_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.895437", - "last_seen": "2025-06-01T22:05:48.383425", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210188, - 51.48299 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162352022", - "info": { - "identifier": 162352022, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162352022", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99758/162352022/99758_2714052_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.114044", - "last_seen": "2025-06-01T22:05:44.710963", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300363, - 51.51304 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162352238", - "info": { - "identifier": 162352238, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162352238", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Choices", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12401/162352238/12401_SUT130104_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.700043", - "last_seen": "2025-06-01T22:05:58.490910", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.301792, - 51.363613 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.18, - "qmprice": 54.35, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162352250", - "info": { - "identifier": 162352250, - "sqm_ocr": 55.18, - "price": 2999.0, - "price_per_sqm": 54.34940195723088, - "url": "https://www.rightmove.co.uk/properties/162352250", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "LDG", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50021/162352250/50021_LDG150089_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.495876", - "last_seen": "2025-06-01T22:06:15.356027", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140375, - 51.520172 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 49.69, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162352697", - "info": { - "identifier": 162352697, - "sqm_ocr": 80.5, - "price": 4000.0, - "price_per_sqm": 49.68944099378882, - "url": "https://www.rightmove.co.uk/properties/162352697", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/162352697/54616_DAN220388_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.684336", - "last_seen": "2025-06-01T22:05:52.952187", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115351, - 51.54748 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162352700", - "info": { - "identifier": 162352700, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162352700", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/237k/236303/162352700/236303_P66703_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.978963", - "last_seen": "2025-06-01T22:05:38.977073", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2468, - 51.59394 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162352814", - "info": { - "identifier": 162352814, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162352814", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162352814/96668_196560825012024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.010794", - "last_seen": "2025-06-01T22:05:45.859084", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.051885, - 51.679077 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162352892", - "info": { - "identifier": 162352892, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162352892", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162352892/96668_248749217052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.474304", - "last_seen": "2025-06-01T22:06:01.733762", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195945, - 51.40665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162352934", - "info": { - "identifier": 162352934, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162352934", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/162352934/51465_63da3f8e0076f_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.327797", - "last_seen": "2025-06-01T22:06:01.444796", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22414, - 51.417454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162352976", - "info": { - "identifier": 162352976, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162352976", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162352976/96668_246385326042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.882801", - "last_seen": "2025-06-01T22:06:00.721644", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.002432, - 51.469017 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.1, - "qmprice": 66.55, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162352991", - "info": { - "identifier": 162352991, - "sqm_ocr": 52.1, - "price": 3467.0, - "price_per_sqm": 66.54510556621881, - "url": "https://www.rightmove.co.uk/properties/162352991", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162352991/55101_1326863_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.251651", - "last_seen": "2025-06-01T22:06:06.260894", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038037, - 51.502384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.7, - "qmprice": 64.56, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162352997", - "info": { - "identifier": 162352997, - "sqm_ocr": 53.7, - "price": 3467.0, - "price_per_sqm": 64.56238361266294, - "url": "https://www.rightmove.co.uk/properties/162352997", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162352997/55101_1326865_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.246456", - "last_seen": "2025-06-01T22:06:06.262933", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.036936, - 51.503544 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162353000", - "info": { - "identifier": 162353000, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162353000", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162353000/96668_249155321052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.047979", - "last_seen": "2025-06-01T22:06:11.184410", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028854, - 51.51523 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.1, - "qmprice": 42.23, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162353003", - "info": { - "identifier": 162353003, - "sqm_ocr": 52.1, - "price": 2200.0, - "price_per_sqm": 42.22648752399232, - "url": "https://www.rightmove.co.uk/properties/162353003", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162353003/55101_1326862_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.844985", - "last_seen": "2025-06-01T22:06:06.436460", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038037, - 51.502384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.7, - "qmprice": 40.97, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162353018", - "info": { - "identifier": 162353018, - "sqm_ocr": 53.7, - "price": 2200.0, - "price_per_sqm": 40.968342644320295, - "url": "https://www.rightmove.co.uk/properties/162353018", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162353018/55101_1326864_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.848168", - "last_seen": "2025-06-01T22:06:06.686084", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.036936, - 51.503544 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162353045", - "info": { - "identifier": 162353045, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162353045", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162353045/96668_249330923052025_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.843860", - "last_seen": "2025-06-01T17:38:53.459483", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107486, - 51.553493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.91, - "qmprice": 40.83, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162353111", - "info": { - "identifier": 162353111, - "sqm_ocr": 64.91, - "price": 2650.0, - "price_per_sqm": 40.825758742874754, - "url": "https://www.rightmove.co.uk/properties/162353111", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156782/162353111/156782_KBI250644_L_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.880244", - "last_seen": "2025-06-01T22:06:13.358240", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177516, - 51.468266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162353114", - "info": { - "identifier": 162353114, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162353114", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162353114/96668_249329222052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.003564", - "last_seen": "2025-06-01T22:05:39.110176", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171201, - 51.608467 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.2, - "qmprice": 32.38, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162353180", - "info": { - "identifier": 162353180, - "sqm_ocr": 77.2, - "price": 2500.0, - "price_per_sqm": 32.38341968911917, - "url": "https://www.rightmove.co.uk/properties/162353180", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Alliance London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77148/162353180/77148_2002466_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.328041", - "last_seen": "2025-06-01T22:06:10.582078", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.030924, - 51.5081 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.4, - "qmprice": 44.51, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162353243", - "info": { - "identifier": 162353243, - "sqm_ocr": 67.4, - "price": 3000.0, - "price_per_sqm": 44.510385756676556, - "url": "https://www.rightmove.co.uk/properties/162353243", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108938/162353243/108938_1327624_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.409816", - "last_seen": "2025-06-01T22:05:53.285897", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079211, - 51.550396 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 34.39, - "rooms": 2, - "total_price": 2270.0, - "url": "https://www.rightmove.co.uk/properties/162353270", - "info": { - "identifier": 162353270, - "sqm_ocr": 66.0, - "price": 2270.0, - "price_per_sqm": 34.39393939393939, - "url": "https://www.rightmove.co.uk/properties/162353270", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Una Living", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87553/162353270/87553_101435001918_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.318859", - "last_seen": "2025-06-01T22:05:40.404530", - "price": 2270.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28255, - 51.53018 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.1, - "qmprice": 40.19, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/162353315", - "info": { - "identifier": 162353315, - "sqm_ocr": 57.1, - "price": 2295.0, - "price_per_sqm": 40.19264448336252, - "url": "https://www.rightmove.co.uk/properties/162353315", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/162353315/15951_1327567_IMG_01_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.176575", - "last_seen": "2025-06-01T22:05:57.000905", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27611, - 51.504074 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.9, - "qmprice": 32.48, - "rooms": 2, - "total_price": 2465.0, - "url": "https://www.rightmove.co.uk/properties/162353318", - "info": { - "identifier": 162353318, - "sqm_ocr": 75.9, - "price": 2465.0, - "price_per_sqm": 32.47694334650856, - "url": "https://www.rightmove.co.uk/properties/162353318", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/162353318/15951_1327566_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.026630", - "last_seen": "2025-06-01T22:05:56.985925", - "price": 2465.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284639, - 51.488346 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162353333", - "info": { - "identifier": 162353333, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162353333", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/162353333/120463_33906381_IMG_00_0000_max_656x437.png", - "let_date_available": "10/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.541620", - "last_seen": "2025-06-01T22:06:14.450378", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167487, - 51.522194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.9, - "qmprice": 51.55, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162353363", - "info": { - "identifier": 162353363, - "sqm_ocr": 67.9, - "price": 3500.0, - "price_per_sqm": 51.546391752577314, - "url": "https://www.rightmove.co.uk/properties/162353363", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Nine Elms", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/197k/196106/162353363/196106_000018504b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.043620", - "last_seen": "2025-06-01T22:05:59.000215", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12739, - 51.48176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.9, - "qmprice": 47.13, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162353396", - "info": { - "identifier": 162353396, - "sqm_ocr": 67.9, - "price": 3200.0, - "price_per_sqm": 47.1281296023564, - "url": "https://www.rightmove.co.uk/properties/162353396", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/162353396/15975_1325368_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.391491", - "last_seen": "2025-06-01T22:06:01.042685", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202916, - 51.420612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.4, - "qmprice": 39.89, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162353408", - "info": { - "identifier": 162353408, - "sqm_ocr": 56.4, - "price": 2250.0, - "price_per_sqm": 39.8936170212766, - "url": "https://www.rightmove.co.uk/properties/162353408", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/162353408/253853_1327534_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.494853", - "last_seen": "2025-06-01T22:06:05.571511", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094021, - 51.496246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162353432", - "info": { - "identifier": 162353432, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162353432", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Sherwoods International Properties Limited", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253421/162353432/253421_103405000802_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.530913", - "last_seen": "2025-06-01T22:05:57.707758", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19002, - 51.48581 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3640.0, - "url": "https://www.rightmove.co.uk/properties/162353525", - "info": { - "identifier": 162353525, - "sqm_ocr": null, - "price": 3640.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162353525", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/162353525/120463_33763100_IMG_00_0000_max_656x437.png", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.949631", - "last_seen": "2025-06-01T22:06:16.001286", - "price": 3640 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16708, - 51.521996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.9, - "qmprice": 27.55, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162353732", - "info": { - "identifier": 162353732, - "sqm_ocr": 108.9, - "price": 3000.0, - "price_per_sqm": 27.548209366391184, - "url": "https://www.rightmove.co.uk/properties/162353732", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26204/162353732/26204_33906412_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.394251", - "last_seen": "2025-06-01T22:06:01.165683", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209874, - 51.41683 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3423.0, - "url": "https://www.rightmove.co.uk/properties/162354602", - "info": { - "identifier": 162354602, - "sqm_ocr": null, - "price": 3423.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162354602", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/162354602/120463_33906451_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.883789", - "last_seen": "2025-06-01T22:06:15.867784", - "price": 3423 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166082, - 51.516087 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162354650", - "info": { - "identifier": 162354650, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162354650", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Messila Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92735/162354650/92735_33906453_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.125385", - "last_seen": "2025-06-01T22:05:43.070155", - "price": 2275 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182312, - 51.549946 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3655.0, - "url": "https://www.rightmove.co.uk/properties/162354728", - "info": { - "identifier": 162354728, - "sqm_ocr": null, - "price": 3655.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162354728", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Allsop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250628/162354728/250628_B206_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.189476", - "last_seen": "2025-06-01T22:06:13.477962", - "price": 3655.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13734, - 51.48106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.4, - "qmprice": 31.09, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162355073", - "info": { - "identifier": 162355073, - "sqm_ocr": 80.4, - "price": 2500.0, - "price_per_sqm": 31.094527363184078, - "url": "https://www.rightmove.co.uk/properties/162355073", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239978/162355073/239978_KEI250088_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.967319", - "last_seen": "2025-06-01T22:06:00.497009", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069595, - 51.429775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.74, - "qmprice": 48.12, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162355175", - "info": { - "identifier": 162355175, - "sqm_ocr": 72.74, - "price": 3500.0, - "price_per_sqm": 48.116579598570254, - "url": "https://www.rightmove.co.uk/properties/162355175", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/162355175/44537_TOL251469_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.887051", - "last_seen": "2025-06-01T22:06:09.968661", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053436, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.74, - "qmprice": 34.37, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162355181", - "info": { - "identifier": 162355181, - "sqm_ocr": 72.74, - "price": 2500.0, - "price_per_sqm": 34.36898542755018, - "url": "https://www.rightmove.co.uk/properties/162355181", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/162355181/44537_TOL251360_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.844628", - "last_seen": "2025-06-01T22:06:09.923966", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053436, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 65.57, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162355190", - "info": { - "identifier": 162355190, - "sqm_ocr": 61.0, - "price": 4000.0, - "price_per_sqm": 65.57377049180327, - "url": "https://www.rightmove.co.uk/properties/162355190", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/201k/200876/162355190/200876_CSC191353_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.586896", - "last_seen": "2025-06-01T22:05:57.852465", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158804, - 51.495327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162355349", - "info": { - "identifier": 162355349, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162355349", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224522/162355349/224522_P193205_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.372606", - "last_seen": "2025-06-01T22:06:03.552572", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02908, - 51.54472 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162355580", - "info": { - "identifier": 162355580, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162355580", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74963/162355580/74963_STK250373_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.071072", - "last_seen": "2025-06-01T22:05:47.222335", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066738, - 51.54589 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 145.1, - "qmprice": 20.33, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162355676", - "info": { - "identifier": 162355676, - "sqm_ocr": 145.1, - "price": 2950.0, - "price_per_sqm": 20.33080634045486, - "url": "https://www.rightmove.co.uk/properties/162355676", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Rigby & Marchant", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230237/162355676/230237_53ea1c71-2f0c-4e9e-aa47-b911d2665e69_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.610109", - "last_seen": "2025-06-01T22:06:04.464418", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.274463, - 51.46441 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.54, - "qmprice": 27.44, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162356138", - "info": { - "identifier": 162356138, - "sqm_ocr": 76.54, - "price": 2100.0, - "price_per_sqm": 27.43663443950875, - "url": "https://www.rightmove.co.uk/properties/162356138", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50939/162356138/50939_P2991K3015_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.881580", - "last_seen": "2025-06-01T22:05:52.406459", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42043, - 51.43275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162356408", - "info": { - "identifier": 162356408, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162356408", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Concept Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82211/162356408/82211_1409_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.697008", - "last_seen": "2025-06-01T22:06:14.059863", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162615, - 51.4309 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162356804", - "info": { - "identifier": 162356804, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162356804", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50680/162356804/50680_P277053_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.140821", - "last_seen": "2025-06-01T22:06:00.425947", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03248, - 51.42499 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162356819", - "info": { - "identifier": 162356819, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162356819", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48798/162356819/48798_YLG250037_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.690616", - "last_seen": "2025-06-01T22:06:04.675086", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32379, - 51.448624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.23, - "qmprice": 41.87, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162357044", - "info": { - "identifier": 162357044, - "sqm_ocr": 75.23, - "price": 3150.0, - "price_per_sqm": 41.87159377907749, - "url": "https://www.rightmove.co.uk/properties/162357044", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43763/162357044/43763_P301261_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.804025", - "last_seen": "2025-06-01T22:05:53.635091", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0989, - 51.52609 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.26, - "qmprice": 39.74, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162357059", - "info": { - "identifier": 162357059, - "sqm_ocr": 79.26, - "price": 3150.0, - "price_per_sqm": 39.74261922785768, - "url": "https://www.rightmove.co.uk/properties/162357059", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hemmingfords", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201083/162357059/201083_32821164_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.558542", - "last_seen": "2025-06-01T22:06:13.525526", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159949, - 51.463924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.9, - "qmprice": 30.04, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162357110", - "info": { - "identifier": 162357110, - "sqm_ocr": 74.9, - "price": 2250.0, - "price_per_sqm": 30.040053404539382, - "url": "https://www.rightmove.co.uk/properties/162357110", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58000/162357110/58000_KEO240009_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.506905", - "last_seen": "2025-06-01T22:06:01.846648", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205802, - 51.419132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 49.22, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/162357323", - "info": { - "identifier": 162357323, - "sqm_ocr": 81.0, - "price": 3987.0, - "price_per_sqm": 49.22222222222222, - "url": "https://www.rightmove.co.uk/properties/162357323", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162357323/270461_JAX240622_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.205891", - "last_seen": "2025-06-01T22:05:59.131203", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125111, - 51.482582 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162357614", - "info": { - "identifier": 162357614, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162357614", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Cranbrook Lettings & Sales", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/237k/236963/162357614/236963_cranbrook_1561915717_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.906069", - "last_seen": "2025-06-01T22:06:02.828706", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.046151, - 51.53284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.2, - "qmprice": 42.44, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162357833", - "info": { - "identifier": 162357833, - "sqm_ocr": 54.2, - "price": 2300.0, - "price_per_sqm": 42.43542435424354, - "url": "https://www.rightmove.co.uk/properties/162357833", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/162357833/56751_1327629_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.257603", - "last_seen": "2025-06-01T22:05:58.961994", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125993, - 51.458134 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.74, - "qmprice": 62.79, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162358049", - "info": { - "identifier": 162358049, - "sqm_ocr": 55.74, - "price": 3500.0, - "price_per_sqm": 62.79153211338357, - "url": "https://www.rightmove.co.uk/properties/162358049", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162358049/43310_CWL250204_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.586121", - "last_seen": "2025-06-01T22:06:07.911511", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018767, - 51.500824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162358211", - "info": { - "identifier": 162358211, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162358211", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Vantage Properties & Management Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/3k/2521/162358211/2521_VANT2_000662_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.448881", - "last_seen": "2025-06-01T20:19:58.925526", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016228, - 51.494743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3999.0, - "url": "https://www.rightmove.co.uk/properties/162358382", - "info": { - "identifier": 162358382, - "sqm_ocr": null, - "price": 3999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162358382", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "SW16", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76165/162358382/76165_tbrE_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.031697", - "last_seen": "2025-06-01T22:06:13.805633", - "price": 3999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17786, - 51.42968 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.5, - "qmprice": 46.85, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162358430", - "info": { - "identifier": 162358430, - "sqm_ocr": 71.5, - "price": 3350.0, - "price_per_sqm": 46.85314685314685, - "url": "https://www.rightmove.co.uk/properties/162358430", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162358430/16050_1327631_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.663135", - "last_seen": "2025-06-01T22:06:08.651438", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056155, - 51.52421 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 42.24, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162358445", - "info": { - "identifier": 162358445, - "sqm_ocr": 80.5, - "price": 3400.0, - "price_per_sqm": 42.2360248447205, - "url": "https://www.rightmove.co.uk/properties/162358445", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162358445/16050_1327630_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.648052", - "last_seen": "2025-06-01T22:06:08.588626", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056155, - 51.52421 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.9, - "qmprice": 44.99, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162358481", - "info": { - "identifier": 162358481, - "sqm_ocr": 48.9, - "price": 2200.0, - "price_per_sqm": 44.989775051124745, - "url": "https://www.rightmove.co.uk/properties/162358481", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/162358481/15981_1326612_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.302219", - "last_seen": "2025-06-01T22:06:12.366382", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.152326, - 51.44796 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.5, - "qmprice": 48.44, - "rooms": 2, - "total_price": 2882.0, - "url": "https://www.rightmove.co.uk/properties/162358499", - "info": { - "identifier": 162358499, - "sqm_ocr": 59.5, - "price": 2882.0, - "price_per_sqm": 48.436974789915965, - "url": "https://www.rightmove.co.uk/properties/162358499", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/162358499/16023_1327598_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.138788", - "last_seen": "2025-06-01T22:05:57.474816", - "price": 2882.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168384, - 51.488262 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 37.88, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162358817", - "info": { - "identifier": 162358817, - "sqm_ocr": 66.0, - "price": 2500.0, - "price_per_sqm": 37.878787878787875, - "url": "https://www.rightmove.co.uk/properties/162358817", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246848/162358817/246848_BEL240141_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.394022", - "last_seen": "2025-06-01T22:06:06.683321", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070765, - 51.49542 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.2, - "qmprice": 45.01, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162358973", - "info": { - "identifier": 162358973, - "sqm_ocr": 72.2, - "price": 3250.0, - "price_per_sqm": 45.013850415512465, - "url": "https://www.rightmove.co.uk/properties/162358973", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43763/162358973/43763_P300445_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.900764", - "last_seen": "2025-06-01T22:05:55.655465", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08834, - 51.57178 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162359123", - "info": { - "identifier": 162359123, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162359123", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Maalems", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42021/162359123/42021_33906708_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.242707", - "last_seen": "2025-06-01T22:06:12.244839", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186589, - 51.43933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 35.21, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162359438", - "info": { - "identifier": 162359438, - "sqm_ocr": 71.0, - "price": 2500.0, - "price_per_sqm": 35.2112676056338, - "url": "https://www.rightmove.co.uk/properties/162359438", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162359438/249341_FAIR3225_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.138828", - "last_seen": "2025-06-01T22:06:13.659191", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18962, - 51.45749 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162359471", - "info": { - "identifier": 162359471, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162359471", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130954/162359471/130954_HU405FH_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.019713", - "last_seen": "2025-06-01T22:06:06.389948", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09732, - 51.49144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162359489", - "info": { - "identifier": 162359489, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162359489", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Sandra Davidson Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13342/162359489/13342_33906730_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.786607", - "last_seen": "2025-06-01T22:06:04.017495", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.093412, - 51.573658 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162359525", - "info": { - "identifier": 162359525, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162359525", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65794/162359525/65794_33906733_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.446142", - "last_seen": "2025-06-01T22:06:12.567178", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185721, - 51.43846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.23, - "qmprice": 46.28, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162359741", - "info": { - "identifier": 162359741, - "sqm_ocr": 70.23, - "price": 3250.0, - "price_per_sqm": 46.276520005695566, - "url": "https://www.rightmove.co.uk/properties/162359741", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97525/162359741/97525_PTL230048_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.812286", - "last_seen": "2025-06-01T22:06:15.364711", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189852, - 51.51525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 39.98, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/162360341", - "info": { - "identifier": 162360341, - "sqm_ocr": 84.0, - "price": 3358.0, - "price_per_sqm": 39.976190476190474, - "url": "https://www.rightmove.co.uk/properties/162360341", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43802/162360341/43802_P301220_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.996786", - "last_seen": "2025-06-01T22:05:58.135142", - "price": 3358.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18378, - 51.48337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.32, - "qmprice": 40.35, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162360353", - "info": { - "identifier": 162360353, - "sqm_ocr": 74.32, - "price": 2999.0, - "price_per_sqm": 40.35252960172229, - "url": "https://www.rightmove.co.uk/properties/162360353", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/162360353/136139_2309109_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.016711", - "last_seen": "2025-06-01T22:06:11.414609", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00561, - 51.50682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3166.0, - "url": "https://www.rightmove.co.uk/properties/162360401", - "info": { - "identifier": 162360401, - "sqm_ocr": null, - "price": 3166.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162360401", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Living by Lendlease", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278564/162360401/278564_278564_p0193211_C-0802_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.630735", - "last_seen": "2025-06-01T22:06:05.220405", - "price": 3166.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096831, - 51.494312 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2165.0, - "url": "https://www.rightmove.co.uk/properties/162360419", - "info": { - "identifier": 162360419, - "sqm_ocr": null, - "price": 2165.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162360419", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Vonder", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79578/162360419/79578_625252_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.087529", - "last_seen": "2025-06-01T22:05:51.850747", - "price": 2165.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31384, - 51.48711 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162360461", - "info": { - "identifier": 162360461, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162360461", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Iconia London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64538/162360461/64538_20longnorrd_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.629057", - "last_seen": "2025-06-01T22:06:08.534013", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04283, - 51.52598 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.1, - "qmprice": 44.86, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162360551", - "info": { - "identifier": 162360551, - "sqm_ocr": 82.1, - "price": 3683.0, - "price_per_sqm": 44.859926918392205, - "url": "https://www.rightmove.co.uk/properties/162360551", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43763/162360551/43763_P301207_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.288977", - "last_seen": "2025-06-01T22:05:42.402237", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13072, - 51.53775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.9, - "qmprice": 35.88, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162360986", - "info": { - "identifier": 162360986, - "sqm_ocr": 105.9, - "price": 3800.0, - "price_per_sqm": 35.88290840415486, - "url": "https://www.rightmove.co.uk/properties/162360986", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238829/162360986/238829_33906791_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.727804", - "last_seen": "2025-06-01T22:06:12.120334", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.159271, - 51.425728 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162361097", - "info": { - "identifier": 162361097, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162361097", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162361097/96668_249350323052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.301710", - "last_seen": "2025-06-01T22:05:40.386284", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.314618, - 51.555897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162361109", - "info": { - "identifier": 162361109, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162361109", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162361109/96668_248444615052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.537839", - "last_seen": "2025-06-01T22:06:08.197791", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014608, - 51.52427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162361118", - "info": { - "identifier": 162361118, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162361118", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162361118/96668_249353423052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.322122", - "last_seen": "2025-06-01T22:05:57.070581", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016923, - 51.47955 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162361175", - "info": { - "identifier": 162361175, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162361175", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162361175/96668_232784918122024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.840995", - "last_seen": "2025-06-01T22:06:00.315883", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.002342, - 51.43226 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162362288", - "info": { - "identifier": 162362288, - "sqm_ocr": null, - "price": 3445.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162362288", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/162362288/49784_36880_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.247145", - "last_seen": "2025-06-01T22:06:12.257876", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17284, - 51.4618 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.5, - "qmprice": 37.78, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162362843", - "info": { - "identifier": 162362843, - "sqm_ocr": 55.5, - "price": 2097.0, - "price_per_sqm": 37.78378378378378, - "url": "https://www.rightmove.co.uk/properties/162362843", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/162362843/163859_2664375_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.696288", - "last_seen": "2025-06-01T22:06:02.674751", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02728, - 51.50419 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162362846", - "info": { - "identifier": 162362846, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162362846", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/162362846/163859_2612478_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.697382", - "last_seen": "2025-06-01T22:06:02.667012", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.027094, - 51.499554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2548.0, - "url": "https://www.rightmove.co.uk/properties/162362849", - "info": { - "identifier": 162362849, - "sqm_ocr": null, - "price": 2548.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162362849", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/162362849/163859_2713047_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.699771", - "last_seen": "2025-06-01T22:06:02.661771", - "price": 2548 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.021346, - 51.508945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.8, - "qmprice": 25.05, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162363047", - "info": { - "identifier": 162363047, - "sqm_ocr": 107.8, - "price": 2700.0, - "price_per_sqm": 25.04638218923933, - "url": "https://www.rightmove.co.uk/properties/162363047", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/162363047/52415_32429790_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.763306", - "last_seen": "2025-06-01T22:05:59.572853", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12161, - 51.418484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162363176", - "info": { - "identifier": 162363176, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162363176", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/162363176/163859_2372027_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.398969", - "last_seen": "2025-06-01T22:06:03.584886", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02968, - 51.50019 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.36, - "qmprice": 37.33, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162363287", - "info": { - "identifier": 162363287, - "sqm_ocr": 80.36, - "price": 3000.0, - "price_per_sqm": 37.33200597312096, - "url": "https://www.rightmove.co.uk/properties/162363287", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97142/162363287/97142_33819181_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.539155", - "last_seen": "2025-06-01T22:05:42.881766", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163789, - 51.536873 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.4, - "qmprice": 35.88, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162363347", - "info": { - "identifier": 162363347, - "sqm_ocr": 86.4, - "price": 3100.0, - "price_per_sqm": 35.879629629629626, - "url": "https://www.rightmove.co.uk/properties/162363347", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Urban Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41919/162363347/41919_33906916_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.344359", - "last_seen": "2025-06-01T22:06:12.473040", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175899, - 51.474697 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162363509", - "info": { - "identifier": 162363509, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162363509", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Vonder", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79578/162363509/79578_5262523_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.152338", - "last_seen": "2025-06-01T22:05:52.283176", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32516, - 51.48503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.23, - "qmprice": 37.02, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162363599", - "info": { - "identifier": 162363599, - "sqm_ocr": 70.23, - "price": 2600.0, - "price_per_sqm": 37.02121600455646, - "url": "https://www.rightmove.co.uk/properties/162363599", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14606/162363599/14606_29095421_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.037590", - "last_seen": "2025-06-01T22:06:06.868095", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092312, - 51.499645 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162363857", - "info": { - "identifier": 162363857, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162363857", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Northwood", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42308/162363857/42308_P1721_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.984808", - "last_seen": "2025-06-01T22:05:50.213803", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31371, - 51.58432 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.7, - "qmprice": 33.48, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162364217", - "info": { - "identifier": 162364217, - "sqm_ocr": 68.7, - "price": 2300.0, - "price_per_sqm": 33.47889374090247, - "url": "https://www.rightmove.co.uk/properties/162364217", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169979/162364217/169979_1327648_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.568945", - "last_seen": "2025-06-01T22:05:51.625899", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.419111, - 51.503437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.0, - "qmprice": 31.37, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162364268", - "info": { - "identifier": 162364268, - "sqm_ocr": 102.0, - "price": 3200.0, - "price_per_sqm": 31.372549019607842, - "url": "https://www.rightmove.co.uk/properties/162364268", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49980/162364268/49980_SOU250119_L_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.742517", - "last_seen": "2025-06-01T22:06:14.117967", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220642, - 51.462765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162364499", - "info": { - "identifier": 162364499, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162364499", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162364499/43310_CDL240044_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.669607", - "last_seen": "2025-06-01T22:06:08.667154", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021786, - 51.498665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162364514", - "info": { - "identifier": 162364514, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162364514", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/162364514/44537_NUL250020_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.360401", - "last_seen": "2025-06-01T22:06:06.021567", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079614, - 51.494938 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.59, - "qmprice": 38.17, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162364517", - "info": { - "identifier": 162364517, - "sqm_ocr": 78.59, - "price": 3000.0, - "price_per_sqm": 38.17279552105866, - "url": "https://www.rightmove.co.uk/properties/162364517", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/162364517/63031_KGL240135_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.272041", - "last_seen": "2025-06-01T22:05:42.523233", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14045, - 51.539642 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.06, - "qmprice": 47.13, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162364538", - "info": { - "identifier": 162364538, - "sqm_ocr": 62.06, - "price": 2925.0, - "price_per_sqm": 47.13180792781179, - "url": "https://www.rightmove.co.uk/properties/162364538", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120061/162364538/120061_DOL210090_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.539457", - "last_seen": "2025-06-01T22:05:43.270941", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08501, - 51.51088 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 31.51, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162364985", - "info": { - "identifier": 162364985, - "sqm_ocr": 73.0, - "price": 2300.0, - "price_per_sqm": 31.506849315068493, - "url": "https://www.rightmove.co.uk/properties/162364985", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Property Inside London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270212/162364985/270212_Atwell_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.427354", - "last_seen": "2025-06-01T22:05:56.942520", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17715, - 51.62067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162365060", - "info": { - "identifier": 162365060, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162365060", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jaffe Properties LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76282/162365060/76282_29077237_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.375577", - "last_seen": "2025-06-01T22:05:41.142314", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229297, - 51.54568 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.7, - "qmprice": 34.93, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162365840", - "info": { - "identifier": 162365840, - "sqm_ocr": 68.7, - "price": 2400.0, - "price_per_sqm": 34.93449781659388, - "url": "https://www.rightmove.co.uk/properties/162365840", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Aspire", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45018/162365840/45018_BLM250319_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.775491", - "last_seen": "2025-06-01T22:06:14.174257", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167395, - 51.425835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.1, - "qmprice": 41.48, - "rooms": 2, - "total_price": 3115.0, - "url": "https://www.rightmove.co.uk/properties/162365876", - "info": { - "identifier": 162365876, - "sqm_ocr": 75.1, - "price": 3115.0, - "price_per_sqm": 41.47802929427431, - "url": "https://www.rightmove.co.uk/properties/162365876", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Living by Lendlease", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277814/162365876/277814_277814_p0195669_A-0504_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.230141", - "last_seen": "2025-06-01T22:06:07.171141", - "price": 3115.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096254, - 51.49232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 36.83, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/162365885", - "info": { - "identifier": 162365885, - "sqm_ocr": 70.0, - "price": 2578.0, - "price_per_sqm": 36.82857142857143, - "url": "https://www.rightmove.co.uk/properties/162365885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65872/162365885/65872_CWQ012507058_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.576512", - "last_seen": "2025-06-01T20:19:59.192885", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009969, - 51.50656 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162365984", - "info": { - "identifier": 162365984, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162365984", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "HIGH CLASS PROPERTY MANAGEMENT LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282776/162365984/282776_NW10_IMG_07_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.412914", - "last_seen": "2025-06-01T22:05:41.105525", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25566, - 51.53608 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.7, - "qmprice": 22.81, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162365987", - "info": { - "identifier": 162365987, - "sqm_ocr": 87.7, - "price": 2000.0, - "price_per_sqm": 22.805017103762825, - "url": "https://www.rightmove.co.uk/properties/162365987", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Streets Ahead", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/24k/23060/162365987/23060_CRP250184_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.578858", - "last_seen": "2025-06-01T22:05:43.653923", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.082748, - 51.414696 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162366026", - "info": { - "identifier": 162366026, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162366026", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cornerstone Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278312/162366026/278312_RX582007_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.775028", - "last_seen": "2025-06-01T22:05:43.768813", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094791, - 51.3579 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.5, - "qmprice": 41.9, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162366068", - "info": { - "identifier": 162366068, - "sqm_ocr": 52.5, - "price": 2200.0, - "price_per_sqm": 41.904761904761905, - "url": "https://www.rightmove.co.uk/properties/162366068", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "London Move", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261842/162366068/261842_321_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.273544", - "last_seen": "2025-06-01T22:05:48.009274", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08589, - 51.5649 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162366092", - "info": { - "identifier": 162366092, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162366092", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "London Move", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261842/162366092/261842_1412_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.289177", - "last_seen": "2025-06-01T22:05:48.027144", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02797, - 51.54614 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3501.0, - "url": "https://www.rightmove.co.uk/properties/162366098", - "info": { - "identifier": 162366098, - "sqm_ocr": null, - "price": 3501.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162366098", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JS Estate Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264161/162366098/264161_615005_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.252841", - "last_seen": "2025-06-01T22:06:07.200829", - "price": 3501 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04163, - 51.4934 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3870.0, - "url": "https://www.rightmove.co.uk/properties/162366176", - "info": { - "identifier": 162366176, - "sqm_ocr": null, - "price": 3870.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162366176", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Native Communities", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272588/162366176/272588_2b1mrf101_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.963315", - "last_seen": "2025-06-01T22:06:11.495717", - "price": 3870.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07097, - 51.51502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162366302", - "info": { - "identifier": 162366302, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162366302", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Strawberry Star", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/160k/159227/162366302/159227_ROY190211_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.351033", - "last_seen": "2025-06-01T22:06:02.617186", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.014888, - 51.508385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162366464", - "info": { - "identifier": 162366464, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162366464", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19059/162366464/19059_0b7c79ee-ba6a-456f-8592-2febfa30a70b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.068255", - "last_seen": "2025-06-01T22:05:50.734313", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299947, - 51.606377 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2125.0, - "url": "https://www.rightmove.co.uk/properties/162367205", - "info": { - "identifier": 162367205, - "sqm_ocr": null, - "price": 2125.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162367205", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162367205/96668_243657131032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.394978", - "last_seen": "2025-06-01T17:38:51.862100", - "price": 2155.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.481349, - 51.5391 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162367400", - "info": { - "identifier": 162367400, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162367400", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162367400/96668_249037420052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.122634", - "last_seen": "2025-06-01T22:05:39.046347", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166093, - 51.647804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 29.85, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162367460", - "info": { - "identifier": 162367460, - "sqm_ocr": 67.0, - "price": 2000.0, - "price_per_sqm": 29.850746268656717, - "url": "https://www.rightmove.co.uk/properties/162367460", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162367460/96668_249211321052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.885149", - "last_seen": "2025-06-01T22:05:38.984925", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.250111, - 51.602665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162367478", - "info": { - "identifier": 162367478, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162367478", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Inner City Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/104k/103850/162367478/103850_skellejems_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.455275", - "last_seen": "2025-06-01T22:06:07.435381", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01256, - 51.5397 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162367544", - "info": { - "identifier": 162367544, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162367544", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162367544/96668_242195518032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.161369", - "last_seen": "2025-06-01T22:06:03.575691", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.039174, - 51.531277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162367901", - "info": { - "identifier": 162367901, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162367901", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Tate Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111214/162367901/111214_EVE72x_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.943325", - "last_seen": "2025-06-01T22:06:13.077083", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15441, - 51.46996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.18, - "qmprice": 29.54, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162367952", - "info": { - "identifier": 162367952, - "sqm_ocr": 76.18, - "price": 2250.0, - "price_per_sqm": 29.53531110527697, - "url": "https://www.rightmove.co.uk/properties/162367952", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162367952/43310_MRL090143_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.597898", - "last_seen": "2025-06-01T22:06:02.505104", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02, - 51.51 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 51.02, - "rooms": 2, - "total_price": 3163.0, - "url": "https://www.rightmove.co.uk/properties/162368021", - "info": { - "identifier": 162368021, - "sqm_ocr": 62.0, - "price": 3163.0, - "price_per_sqm": 51.016129032258064, - "url": "https://www.rightmove.co.uk/properties/162368021", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49000/162368021/49000_DOL220087_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.496773", - "last_seen": "2025-06-01T22:05:43.234142", - "price": 3163.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084102, - 51.510044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.12, - "qmprice": 32.25, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162368024", - "info": { - "identifier": 162368024, - "sqm_ocr": 65.12, - "price": 2100.0, - "price_per_sqm": 32.24815724815725, - "url": "https://www.rightmove.co.uk/properties/162368024", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/162368024/80340_a1G4J0000025zbrUAA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.524794", - "last_seen": "2025-06-01T22:06:05.137369", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06857, - 51.45932 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.8, - "qmprice": 28.82, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162368114", - "info": { - "identifier": 162368114, - "sqm_ocr": 79.8, - "price": 2300.0, - "price_per_sqm": 28.82205513784461, - "url": "https://www.rightmove.co.uk/properties/162368114", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/162368114/65785_33907241_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.639502", - "last_seen": "2025-06-01T22:05:59.486735", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134768, - 51.44124 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.8, - "qmprice": 25.05, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162368129", - "info": { - "identifier": 162368129, - "sqm_ocr": 91.8, - "price": 2300.0, - "price_per_sqm": 25.05446623093682, - "url": "https://www.rightmove.co.uk/properties/162368129", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Cortland", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260993/162368129/260993_LIVGR_023031_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.429532", - "last_seen": "2025-06-01T22:06:05.670129", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.062566, - 51.47437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.3, - "qmprice": 31.76, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162368219", - "info": { - "identifier": 162368219, - "sqm_ocr": 80.3, - "price": 2550.0, - "price_per_sqm": 31.755915317559154, - "url": "https://www.rightmove.co.uk/properties/162368219", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86531/162368219/86531_P301296_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.734489", - "last_seen": "2025-06-01T22:05:58.864420", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30796, - 51.4087 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.3, - "qmprice": 36.77, - "rooms": 2, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/162368522", - "info": { - "identifier": 162368522, - "sqm_ocr": 73.3, - "price": 2695.0, - "price_per_sqm": 36.76671214188268, - "url": "https://www.rightmove.co.uk/properties/162368522", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "RiverHomes", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11121/162368522/11121_33907267_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.572025", - "last_seen": "2025-06-01T22:05:55.530129", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18446, - 51.46871 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.6, - "qmprice": 38.16, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162368552", - "info": { - "identifier": 162368552, - "sqm_ocr": 78.6, - "price": 2999.0, - "price_per_sqm": 38.15521628498728, - "url": "https://www.rightmove.co.uk/properties/162368552", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hanover", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74440/162368552/74440_HNV250493_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.612019", - "last_seen": "2025-06-01T22:06:14.285930", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178992, - 51.530273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.7, - "qmprice": 38.89, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162368699", - "info": { - "identifier": 162368699, - "sqm_ocr": 94.7, - "price": 3683.0, - "price_per_sqm": 38.89123548046462, - "url": "https://www.rightmove.co.uk/properties/162368699", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/162368699/212327_P161125_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.942192", - "last_seen": "2025-06-01T17:39:04.459603", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00699, - 51.50496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162368885", - "info": { - "identifier": 162368885, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162368885", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44870/162368885/44870_33907294_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.196924", - "last_seen": "2025-06-01T22:05:39.504869", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.271846, - 51.610825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.35, - "qmprice": 46.03, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162368978", - "info": { - "identifier": 162368978, - "sqm_ocr": 67.35, - "price": 3100.0, - "price_per_sqm": 46.028210838901266, - "url": "https://www.rightmove.co.uk/properties/162368978", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Peter Martin", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202550/162368978/202550_PMLL_003674_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.805854", - "last_seen": "2025-06-01T22:05:42.003368", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165213, - 51.542 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.6, - "qmprice": 42.89, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162368990", - "info": { - "identifier": 162368990, - "sqm_ocr": 81.6, - "price": 3500.0, - "price_per_sqm": 42.892156862745104, - "url": "https://www.rightmove.co.uk/properties/162368990", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Canary Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85774/162368990/85774_000006971c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.595277", - "last_seen": "2025-06-01T22:06:08.357250", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00699, - 51.50496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/162369302", - "info": { - "identifier": 162369302, - "sqm_ocr": null, - "price": 2375.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162369302", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162369302/43310_KYC210301_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.185361", - "last_seen": "2025-06-01T22:06:02.943069", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0343, - 51.50203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.45, - "qmprice": 48.18, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162369626", - "info": { - "identifier": 162369626, - "sqm_ocr": 67.45, - "price": 3250.0, - "price_per_sqm": 48.183839881393624, - "url": "https://www.rightmove.co.uk/properties/162369626", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Farrar & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128314/162369626/128314_17085_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.107703", - "last_seen": "2025-06-01T22:05:57.445922", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18466, - 51.4868 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162369698", - "info": { - "identifier": 162369698, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162369698", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Next Move", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13147/162369698/13147_3338_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.392569", - "last_seen": "2025-06-01T22:05:55.295307", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09904, - 51.52978 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 150.6, - "qmprice": 21.88, - "rooms": 4, - "total_price": 3295.0, - "url": "https://www.rightmove.co.uk/properties/162369896", - "info": { - "identifier": 162369896, - "sqm_ocr": 150.6, - "price": 3295.0, - "price_per_sqm": 21.879150066401063, - "url": "https://www.rightmove.co.uk/properties/162369896", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Christopher Nevill", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9211/162369896/9211_46a22ee6-678d-4772-a31b-9292119d8137_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.595674", - "last_seen": "2025-06-01T22:05:51.670233", - "price": 3295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.439805, - 51.566383 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162369917", - "info": { - "identifier": 162369917, - "sqm_ocr": null, - "price": 3445.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162369917", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Daniels", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/25k/24347/162369917/24347_33907369_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.498866", - "last_seen": "2025-06-01T22:05:40.992212", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.280233, - 51.558163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162369977", - "info": { - "identifier": 162369977, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162369977", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Knight Frank Lettings (ILM)", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33966/162369977/33966_WLQ012500304_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.643704", - "last_seen": "2025-06-01T22:05:49.109894", - "price": 3349 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225992, - 51.51562 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162370160", - "info": { - "identifier": 162370160, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162370160", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100441/162370160/100441_YLI250026_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.305035", - "last_seen": "2025-06-01T22:05:52.071925", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.329404, - 51.464436 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.2, - "qmprice": 27.55, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/162370217", - "info": { - "identifier": 162370217, - "sqm_ocr": 86.2, - "price": 2375.0, - "price_per_sqm": 27.552204176334104, - "url": "https://www.rightmove.co.uk/properties/162370217", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Canary Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85774/162370217/85774_0002556999_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.164818", - "last_seen": "2025-06-01T17:39:04.641357", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01942, - 51.49726 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.6, - "qmprice": 22.1, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162370346", - "info": { - "identifier": 162370346, - "sqm_ocr": 108.6, - "price": 2400.0, - "price_per_sqm": 22.099447513812155, - "url": "https://www.rightmove.co.uk/properties/162370346", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Lawrence Rand", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46205/162370346/46205_0b027395-9712-4682-ac9e-1c3f89b91f40_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.402807", - "last_seen": "2025-06-01T22:05:51.413642", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.402106, - 51.554165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162370475", - "info": { - "identifier": 162370475, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162370475", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Daniel Paul", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272840/162370475/272840_93a-NA-May2025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.329707", - "last_seen": "2025-06-01T22:05:44.194951", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31714, - 51.50334 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162370604", - "info": { - "identifier": 162370604, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162370604", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99758/162370604/99758_2714059_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.825942", - "last_seen": "2025-06-01T22:05:44.274182", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.309368, - 51.51778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.39, - "qmprice": 48.53, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162370610", - "info": { - "identifier": 162370610, - "sqm_ocr": 47.39, - "price": 2300.0, - "price_per_sqm": 48.5334458746571, - "url": "https://www.rightmove.co.uk/properties/162370610", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Orlando Reid", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86327/162370610/86327_32376824_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.738864", - "last_seen": "2025-06-01T22:05:59.327110", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131264, - 51.4662 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.3, - "qmprice": 43.92, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162370667", - "info": { - "identifier": 162370667, - "sqm_ocr": 68.3, - "price": 3000.0, - "price_per_sqm": 43.92386530014642, - "url": "https://www.rightmove.co.uk/properties/162370667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "MY LONDON HOME", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6464/162370667/6464_CWE250250_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.771908", - "last_seen": "2025-06-01T22:05:59.447598", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1107, - 51.4986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.9, - "qmprice": 31.8, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162370760", - "info": { - "identifier": 162370760, - "sqm_ocr": 73.9, - "price": 2350.0, - "price_per_sqm": 31.79972936400541, - "url": "https://www.rightmove.co.uk/properties/162370760", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/162370760/281513_LDN200098_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.627023", - "last_seen": "2025-06-01T22:05:47.079442", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026816, - 51.461105 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162370976", - "info": { - "identifier": 162370976, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162370976", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Alex Crown Lettings & Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102122/162370976/102122_1722_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.703295", - "last_seen": "2025-06-01T22:05:53.003999", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11997, - 51.56411 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162371075", - "info": { - "identifier": 162371075, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162371075", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89593/162371075/89593_000296277_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.582233", - "last_seen": "2025-06-01T22:05:43.649778", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07979, - 51.37722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162371078", - "info": { - "identifier": 162371078, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162371078", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "LDB", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88034/162371078/88034_33907435_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.608683", - "last_seen": "2025-06-01T22:05:49.169483", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228559, - 51.48903 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 148.0, - "qmprice": 27.03, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162371213", - "info": { - "identifier": 162371213, - "sqm_ocr": 148.0, - "price": 4000.0, - "price_per_sqm": 27.027027027027028, - "url": "https://www.rightmove.co.uk/properties/162371213", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Aston Rowe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230534/162371213/230534_33907449_IMG_18_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.585449", - "last_seen": "2025-06-01T22:05:44.475036", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.264355, - 51.51527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162371351", - "info": { - "identifier": 162371351, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162371351", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/162371351/54730_WLL250233_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.413249", - "last_seen": "2025-06-01T22:05:45.036604", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375651, - 51.504913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3380.0, - "url": "https://www.rightmove.co.uk/properties/162371438", - "info": { - "identifier": 162371438, - "sqm_ocr": null, - "price": 3380.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162371438", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/162371438/120463_33907465_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.106734", - "last_seen": "2025-06-01T22:06:15.443111", - "price": 3380 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16509, - 51.51495 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.4, - "qmprice": 44.05, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162371576", - "info": { - "identifier": 162371576, - "sqm_ocr": 66.4, - "price": 2925.0, - "price_per_sqm": 44.0512048192771, - "url": "https://www.rightmove.co.uk/properties/162371576", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "M2 Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33998/162371576/33998_2624489_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.719441", - "last_seen": "2025-06-01T22:05:57.664900", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20218, - 51.5136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2195.0, - "url": "https://www.rightmove.co.uk/properties/162371651", - "info": { - "identifier": 162371651, - "sqm_ocr": null, - "price": 2195.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162371651", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "HC-GB", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238694/162371651/238694_3bedcoombhouse003_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.017997", - "last_seen": "2025-06-01T22:05:56.444909", - "price": 2195.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33892, - 51.47396 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2016.0, - "url": "https://www.rightmove.co.uk/properties/162371720", - "info": { - "identifier": 162371720, - "sqm_ocr": null, - "price": 2016.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162371720", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "HC-GB", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238694/162371720/238694_bradstowehouseharrow_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.181043", - "last_seen": "2025-06-01T22:05:50.391575", - "price": 2016.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34084, - 51.58063 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.04, - "qmprice": 34.33, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162371903", - "info": { - "identifier": 162371903, - "sqm_ocr": 99.04, - "price": 3400.0, - "price_per_sqm": 34.329563812600966, - "url": "https://www.rightmove.co.uk/properties/162371903", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/162371903/44537_TOL251506_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.120783", - "last_seen": "2025-06-01T22:06:06.304970", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057204, - 51.478176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162372038", - "info": { - "identifier": 162372038, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162372038", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Perkins Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237644/162372038/237644_33907511_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.494362", - "last_seen": "2025-06-01T22:05:45.191754", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.342213, - 51.553337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162372098", - "info": { - "identifier": 162372098, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162372098", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "View Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43275/162372098/43275_12299466_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.196376", - "last_seen": "2025-06-01T22:06:07.057147", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.045861, - 51.49187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162372245", - "info": { - "identifier": 162372245, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162372245", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/162372245/105856_3460_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.670452", - "last_seen": "2025-06-01T22:06:05.280239", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087523, - 51.5016 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 130.54, - "qmprice": 26.05, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162372269", - "info": { - "identifier": 162372269, - "sqm_ocr": 130.54, - "price": 3400.0, - "price_per_sqm": 26.04565650375364, - "url": "https://www.rightmove.co.uk/properties/162372269", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/126k/125260/162372269/125260_101425001959_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.701691", - "last_seen": "2025-06-01T22:05:58.545214", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25244, - 51.4015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 40.99, - "rooms": 3, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162372422", - "info": { - "identifier": 162372422, - "sqm_ocr": 74.0, - "price": 3033.0, - "price_per_sqm": 40.986486486486484, - "url": "https://www.rightmove.co.uk/properties/162372422", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/162372422/80796_59_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.787767", - "last_seen": "2025-06-01T22:05:59.808495", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11337, - 51.46553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162372788", - "info": { - "identifier": 162372788, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162372788", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Andrew Lloyd Estates Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25238/162372788/25238_10923_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.032801", - "last_seen": "2025-06-01T22:05:57.011366", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08503, - 51.53027 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.84, - "qmprice": 43.22, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162372980", - "info": { - "identifier": 162372980, - "sqm_ocr": 57.84, - "price": 2500.0, - "price_per_sqm": 43.222683264177036, - "url": "https://www.rightmove.co.uk/properties/162372980", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84827/162372980/84827_33907025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.026672", - "last_seen": "2025-06-01T22:05:49.398478", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206273, - 51.49146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.0, - "qmprice": 29.09, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162373184", - "info": { - "identifier": 162373184, - "sqm_ocr": 110.0, - "price": 3200.0, - "price_per_sqm": 29.09090909090909, - "url": "https://www.rightmove.co.uk/properties/162373184", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "C James & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/221k/220112/162373184/220112_33906509_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.700297", - "last_seen": "2025-06-01T22:06:14.068507", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169744, - 51.42651 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 128.5, - "qmprice": 28.66, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162373193", - "info": { - "identifier": 162373193, - "sqm_ocr": 128.5, - "price": 3683.0, - "price_per_sqm": 28.66147859922179, - "url": "https://www.rightmove.co.uk/properties/162373193", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57124/162373193/57124_P214649_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.338195", - "last_seen": "2025-06-01T20:19:58.598792", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04626, - 51.50985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162373322", - "info": { - "identifier": 162373322, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162373322", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/128k/127549/162373322/127549_P296016_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.567918", - "last_seen": "2025-06-01T22:06:12.698219", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18536, - 51.43636 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162373475", - "info": { - "identifier": 162373475, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162373475", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Lessel", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191471/162373475/191471_33907607_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.652424", - "last_seen": "2025-06-01T22:05:53.608957", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119138, - 51.54665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162373550", - "info": { - "identifier": 162373550, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162373550", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Oak Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267236/162373550/267236_RL0728_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.089364", - "last_seen": "2025-06-01T22:05:45.679902", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068763, - 51.6334 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2095.0, - "url": "https://www.rightmove.co.uk/properties/162373871", - "info": { - "identifier": 162373871, - "sqm_ocr": null, - "price": 2095.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162373871", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "RE/MAX Property Hub", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258956/162373871/258956_33883701_IMG_09_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.078052", - "last_seen": "2025-06-01T22:05:47.232689", - "price": 2095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058642, - 51.563503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162374018", - "info": { - "identifier": 162374018, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162374018", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Folio London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97670/162374018/97670_HEO210110_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.285036", - "last_seen": "2025-06-01T22:05:44.112377", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2493, - 51.52879 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.75, - "qmprice": 50.19, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162374030", - "info": { - "identifier": 162374030, - "sqm_ocr": 64.75, - "price": 3250.0, - "price_per_sqm": 50.19305019305019, - "url": "https://www.rightmove.co.uk/properties/162374030", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70038/162374030/70038_5189_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.859543", - "last_seen": "2025-06-01T22:05:48.321320", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184716, - 51.474594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2816.0, - "url": "https://www.rightmove.co.uk/properties/162374042", - "info": { - "identifier": 162374042, - "sqm_ocr": null, - "price": 2816.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162374042", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22209/162374042/22209_CSZ170876_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.851106", - "last_seen": "2025-06-01T22:05:48.310705", - "price": 2816.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192333, - 51.482952 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162374126", - "info": { - "identifier": 162374126, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162374126", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71342/162374126/71342_0484_HRT048401353_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.062176", - "last_seen": "2025-06-01T22:05:40.656244", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28379, - 51.54313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162374141", - "info": { - "identifier": 162374141, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162374141", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "GBP Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42510/162374141/42510_9d0aa23a-5bc7-4968-8f46-f3487b8b3134_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.319573", - "last_seen": "2025-06-01T22:05:50.944993", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.192521, - 51.549267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3315.0, - "url": "https://www.rightmove.co.uk/properties/162374192", - "info": { - "identifier": 162374192, - "sqm_ocr": null, - "price": 3315.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162374192", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202517/162374192/202517_114CT_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.454524", - "last_seen": "2025-06-01T22:06:07.796192", - "price": 3315.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19009, - 51.36027 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.8, - "qmprice": 59.06, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162374420", - "info": { - "identifier": 162374420, - "sqm_ocr": 50.8, - "price": 3000.0, - "price_per_sqm": 59.05511811023622, - "url": "https://www.rightmove.co.uk/properties/162374420", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71263/162374420/71263_0604_HRT060401800_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.151368", - "last_seen": "2025-06-01T22:05:39.581758", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25355, - 51.611256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162374786", - "info": { - "identifier": 162374786, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162374786", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Pomp Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117175/162374786/117175_33907685_IMG_00_0000_max_656x437.png", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.345979", - "last_seen": "2025-06-01T22:05:58.430234", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192686, - 51.492935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.5, - "qmprice": 37.32, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162375071", - "info": { - "identifier": 162375071, - "sqm_ocr": 104.5, - "price": 3900.0, - "price_per_sqm": 37.32057416267943, - "url": "https://www.rightmove.co.uk/properties/162375071", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162375071/15963_1327424_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.115217", - "last_seen": "2025-06-01T22:06:13.705538", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205857, - 51.447586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.68, - "qmprice": 64.13, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162375194", - "info": { - "identifier": 162375194, - "sqm_ocr": 50.68, - "price": 3250.0, - "price_per_sqm": 64.12786108918705, - "url": "https://www.rightmove.co.uk/properties/162375194", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162375194/16050_1327673_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.089083", - "last_seen": "2025-06-01T22:05:47.265615", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076608, - 51.52873 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.46, - "qmprice": 52.17, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162375221", - "info": { - "identifier": 162375221, - "sqm_ocr": 66.46, - "price": 3467.0, - "price_per_sqm": 52.166716822148665, - "url": "https://www.rightmove.co.uk/properties/162375221", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94246/162375221/94246_1327259_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.273586", - "last_seen": "2025-06-01T22:05:42.521059", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115852, - 51.52193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162375230", - "info": { - "identifier": 162375230, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162375230", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "relocate-me.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33012/162375230/33012_57067_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.251109", - "last_seen": "2025-06-01T22:05:48.679483", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.235197, - 51.510845 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.8, - "qmprice": 53.57, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162375290", - "info": { - "identifier": 162375290, - "sqm_ocr": 72.8, - "price": 3900.0, - "price_per_sqm": 53.57142857142858, - "url": "https://www.rightmove.co.uk/properties/162375290", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/162375290/16023_1327668_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.452066", - "last_seen": "2025-06-01T22:05:57.804183", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166062, - 51.497314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162375389", - "info": { - "identifier": 162375389, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162375389", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/162375389/264404_RX585266_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.393422", - "last_seen": "2025-06-01T22:05:44.953533", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.314873, - 51.542374 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162375572", - "info": { - "identifier": 162375572, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162375572", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Hilton & Fox", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237869/162375572/237869_hilton_1611940983_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.374434", - "last_seen": "2025-06-01T22:05:41.147674", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.315891, - 51.555046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.38, - "qmprice": 34.41, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162375602", - "info": { - "identifier": 162375602, - "sqm_ocr": 65.38, - "price": 2250.0, - "price_per_sqm": 34.41419394310187, - "url": "https://www.rightmove.co.uk/properties/162375602", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62634/162375602/62634_33907751_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.370044", - "last_seen": "2025-06-01T22:06:01.115289", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177271, - 51.42253 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162375653", - "info": { - "identifier": 162375653, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162375653", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48474/162375653/48474_33907761_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.050116", - "last_seen": "2025-06-01T22:05:51.769327", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.355973, - 51.47876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 53.85, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162375659", - "info": { - "identifier": 162375659, - "sqm_ocr": 65.0, - "price": 3500.0, - "price_per_sqm": 53.84615384615385, - "url": "https://www.rightmove.co.uk/properties/162375659", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Rooted", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266030/162375659/266030_LDN250105_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.056978", - "last_seen": "2025-06-01T22:05:47.217167", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056928, - 51.542625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.4, - "qmprice": 34.32, - "rooms": 4, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/162375923", - "info": { - "identifier": 162375923, - "sqm_ocr": 116.4, - "price": 3995.0, - "price_per_sqm": 34.3213058419244, - "url": "https://www.rightmove.co.uk/properties/162375923", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Gibson Lane", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22316/162375923/22316_33907754_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.655715", - "last_seen": "2025-06-01T22:05:58.730224", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293218, - 51.42558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.1, - "qmprice": 35.29, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162376112", - "info": { - "identifier": 162376112, - "sqm_ocr": 92.1, - "price": 3250.0, - "price_per_sqm": 35.28773072747014, - "url": "https://www.rightmove.co.uk/properties/162376112", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162376112/238769_3b3c9fe5-20f3-4952-bfe3-4b9e58539a64_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.285823", - "last_seen": "2025-06-01T22:05:46.583011", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00012, - 51.50376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/162376403", - "info": { - "identifier": 162376403, - "sqm_ocr": null, - "price": 3995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162376403", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/162376403/80105_1877_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.257316", - "last_seen": "2025-06-01T22:06:15.069151", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137601, - 51.486755 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 44.51, - "qmprice": 58.41, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162376484", - "info": { - "identifier": 162376484, - "sqm_ocr": 44.51, - "price": 2600.0, - "price_per_sqm": 58.413839586609754, - "url": "https://www.rightmove.co.uk/properties/162376484", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "GMS", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90902/162376484/90902_28_GMSE_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.309894", - "last_seen": "2025-06-01T22:06:16.100966", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188527, - 51.513058 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162376520", - "info": { - "identifier": 162376520, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162376520", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "NEXIS Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272531/162376520/272531_MYR250078_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.327462", - "last_seen": "2025-06-01T22:06:07.714783", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005749, - 51.528904 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.21, - "qmprice": 38.34, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162376577", - "info": { - "identifier": 162376577, - "sqm_ocr": 65.21, - "price": 2500.0, - "price_per_sqm": 38.33767827020396, - "url": "https://www.rightmove.co.uk/properties/162376577", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162376577/221711_3548_EAF_183488_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.040278", - "last_seen": "2025-06-01T22:06:01.019793", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.030191, - 51.47583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.12, - "qmprice": 46.05, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162376928", - "info": { - "identifier": 162376928, - "sqm_ocr": 65.12, - "price": 2999.0, - "price_per_sqm": 46.0534398034398, - "url": "https://www.rightmove.co.uk/properties/162376928", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hanover", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74440/162376928/74440_HNV220380_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.840149", - "last_seen": "2025-06-01T22:06:15.796946", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177872, - 51.524734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162377429", - "info": { - "identifier": 162377429, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162377429", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Lettings of London Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98582/162377429/98582_Bawtry29G_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.429840", - "last_seen": "2025-06-01T22:05:56.990134", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15724, - 51.62369 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162377480", - "info": { - "identifier": 162377480, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162377480", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Lettings of London Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98582/162377480/98582_Bawtry21G_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.269305", - "last_seen": "2025-06-01T22:05:55.670563", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15724, - 51.62369 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.0, - "qmprice": 29.76, - "rooms": 3, - "total_price": 3601.0, - "url": "https://www.rightmove.co.uk/properties/162377513", - "info": { - "identifier": 162377513, - "sqm_ocr": 121.0, - "price": 3601.0, - "price_per_sqm": 29.760330578512395, - "url": "https://www.rightmove.co.uk/properties/162377513", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Keating Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106135/162377513/106135_32120229_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.700657", - "last_seen": "2025-06-01T22:05:59.429525", - "price": 3601 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124088, - 51.45583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162377747", - "info": { - "identifier": 162377747, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162377747", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "MacArthur Morrison", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72343/162377747/72343_MM2LP5_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.199004", - "last_seen": "2025-06-01T22:06:10.956648", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06254, - 51.51413 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162377804", - "info": { - "identifier": 162377804, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162377804", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Sonia Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181958/162377804/181958_sonia_1350543469_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.041668", - "last_seen": "2025-06-01T22:05:50.331360", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.298204, - 51.605736 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.4, - "qmprice": 47.39, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162377876", - "info": { - "identifier": 162377876, - "sqm_ocr": 84.4, - "price": 4000.0, - "price_per_sqm": 47.393364928909946, - "url": "https://www.rightmove.co.uk/properties/162377876", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162377876/26207_HEA257175_L_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.100937", - "last_seen": "2025-06-01T22:05:47.279236", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08248, - 51.524906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2773.0, - "url": "https://www.rightmove.co.uk/properties/162377978", - "info": { - "identifier": 162377978, - "sqm_ocr": null, - "price": 2773.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162377978", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Hellas-Helvetia", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/127k/126823/162377978/126823_PorchesterSquare27_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.008120", - "last_seen": "2025-06-01T22:06:15.276831", - "price": 2773 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1876, - 51.51778 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.86, - "qmprice": 35.76, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162378131", - "info": { - "identifier": 162378131, - "sqm_ocr": 111.86, - "price": 4000.0, - "price_per_sqm": 35.758984444841765, - "url": "https://www.rightmove.co.uk/properties/162378131", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26204/162378131/26204_33907924_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.580218", - "last_seen": "2025-06-01T22:06:01.367512", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188879, - 51.423664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.1, - "qmprice": 37.66, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162378227", - "info": { - "identifier": 162378227, - "sqm_ocr": 53.1, - "price": 2000.0, - "price_per_sqm": 37.664783427495294, - "url": "https://www.rightmove.co.uk/properties/162378227", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260939/162378227/260939_FIN250120_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.855433", - "last_seen": "2025-06-01T22:05:50.022441", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116475, - 51.588028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 39.0, - "qmprice": 61.54, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162378581", - "info": { - "identifier": 162378581, - "sqm_ocr": 39.0, - "price": 2400.0, - "price_per_sqm": 61.53846153846154, - "url": "https://www.rightmove.co.uk/properties/162378581", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "David Daniels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76481/162378581/76481_Brydges1-t-4768_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.976418", - "last_seen": "2025-06-01T22:06:07.231992", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.001697, - 51.549595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162378980", - "info": { - "identifier": 162378980, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162378980", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Michael Steven", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65060/162378980/65060_JU_PRP_1094_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.866994", - "last_seen": "2025-06-01T22:06:03.817344", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.061622, - 51.5609 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.77, - "qmprice": 38.63, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162378995", - "info": { - "identifier": 162378995, - "sqm_ocr": 73.77, - "price": 2850.0, - "price_per_sqm": 38.63359089060594, - "url": "https://www.rightmove.co.uk/properties/162378995", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129652/162378995/129652_P2276L2913_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.908538", - "last_seen": "2025-06-01T22:05:42.111480", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20243, - 51.55119 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162379070", - "info": { - "identifier": 162379070, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162379070", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Belvoir", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224096/162379070/224096_P70_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.319892", - "last_seen": "2025-06-01T22:05:39.329380", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23401, - 51.59232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162379073", - "info": { - "identifier": 162379073, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162379073", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Belvoir", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224096/162379073/224096_P560_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.317189", - "last_seen": "2025-06-01T22:05:39.331296", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24523, - 51.59338 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162379244", - "info": { - "identifier": 162379244, - "sqm_ocr": null, - "price": 3792.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162379244", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Newington estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120463/162379244/120463_33907994_IMG_00_0000_max_656x437.png", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.781582", - "last_seen": "2025-06-01T22:06:14.315799", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166073, - 51.524303 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.9, - "qmprice": 49.32, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162379616", - "info": { - "identifier": 162379616, - "sqm_ocr": 65.9, - "price": 3250.0, - "price_per_sqm": 49.317147192716234, - "url": "https://www.rightmove.co.uk/properties/162379616", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Pomp Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117175/162379616/117175_33907709_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.189114", - "last_seen": "2025-06-01T22:05:57.536534", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180857, - 51.48067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.1, - "qmprice": 34.44, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162380018", - "info": { - "identifier": 162380018, - "sqm_ocr": 87.1, - "price": 3000.0, - "price_per_sqm": 34.443168771526985, - "url": "https://www.rightmove.co.uk/properties/162380018", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6769/162380018/6769_GGL250034_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.584836", - "last_seen": "2025-06-01T22:05:38.667698", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197453, - 51.57288 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.9, - "qmprice": 34.61, - "rooms": 4, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162380204", - "info": { - "identifier": 162380204, - "sqm_ocr": 106.9, - "price": 3700.0, - "price_per_sqm": 34.61178671655753, - "url": "https://www.rightmove.co.uk/properties/162380204", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238829/162380204/238829_33908073_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.091198", - "last_seen": "2025-06-01T22:06:13.069695", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165491, - 51.433094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162380243", - "info": { - "identifier": 162380243, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162380243", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Lettings of London Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98582/162380243/98582_Bawtry21C_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.603138", - "last_seen": "2025-06-01T22:05:39.771864", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15724, - 51.62369 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.0, - "qmprice": 24.35, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162380324", - "info": { - "identifier": 162380324, - "sqm_ocr": 123.0, - "price": 2995.0, - "price_per_sqm": 24.349593495934958, - "url": "https://www.rightmove.co.uk/properties/162380324", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Neil King", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/162k/161201/162380324/161201_NLK_NLK_LFSYCL_196_332420048_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.973951", - "last_seen": "2025-06-01T22:06:04.171575", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.030718, - 51.59995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162380357", - "info": { - "identifier": 162380357, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162380357", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Waterfronts", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48795/162380357/48795_29096441_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.797475", - "last_seen": "2025-06-01T22:05:43.542913", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098285, - 51.38206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.9, - "qmprice": 50.08, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162380642", - "info": { - "identifier": 162380642, - "sqm_ocr": 64.9, - "price": 3250.0, - "price_per_sqm": 50.07704160246533, - "url": "https://www.rightmove.co.uk/properties/162380642", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43062/162380642/43062_NHL090135_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.506402", - "last_seen": "2025-06-01T22:05:57.747610", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202525, - 51.519352 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/162380717", - "info": { - "identifier": 162380717, - "sqm_ocr": null, - "price": 2448.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162380717", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Scott City Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6242/162380717/6242_32259217_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.512496", - "last_seen": "2025-06-01T22:05:43.296761", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098603, - 51.51945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.57, - "qmprice": 53.85, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162380975", - "info": { - "identifier": 162380975, - "sqm_ocr": 57.57, - "price": 3100.0, - "price_per_sqm": 53.84749001215911, - "url": "https://www.rightmove.co.uk/properties/162380975", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73120/162380975/73120_1327686_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.782719", - "last_seen": "2025-06-01T22:05:53.182534", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1025, - 51.526203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.2, - "qmprice": 50.62, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162381395", - "info": { - "identifier": 162381395, - "sqm_ocr": 64.2, - "price": 3250.0, - "price_per_sqm": 50.62305295950156, - "url": "https://www.rightmove.co.uk/properties/162381395", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162381395/15963_1326782_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.121708", - "last_seen": "2025-06-01T22:06:13.952985", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200109, - 51.456528 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.8, - "qmprice": 37.59, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162381554", - "info": { - "identifier": 162381554, - "sqm_ocr": 79.8, - "price": 3000.0, - "price_per_sqm": 37.59398496240602, - "url": "https://www.rightmove.co.uk/properties/162381554", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/162381554/65785_33908191_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.078838", - "last_seen": "2025-06-01T22:06:13.763220", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155137, - 51.445377 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162381695", - "info": { - "identifier": 162381695, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162381695", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Regency Estate Group Ltd", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286280/162381695/286280_REG250094_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.216531", - "last_seen": "2025-06-01T22:05:59.136855", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124902, - 51.482777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.1, - "qmprice": 37.79, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162381731", - "info": { - "identifier": 162381731, - "sqm_ocr": 74.1, - "price": 2800.0, - "price_per_sqm": 37.7867746288799, - "url": "https://www.rightmove.co.uk/properties/162381731", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/162381731/111050_1327500_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.898491", - "last_seen": "2025-06-01T22:06:13.148858", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150947, - 51.42154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162381812", - "info": { - "identifier": 162381812, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162381812", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253307/162381812/253307_KOF150170_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.239016", - "last_seen": "2025-06-01T22:05:58.042186", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169673, - 51.491367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.25, - "qmprice": 42.07, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162381875", - "info": { - "identifier": 162381875, - "sqm_ocr": 77.25, - "price": 3250.0, - "price_per_sqm": 42.07119741100323, - "url": "https://www.rightmove.co.uk/properties/162381875", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/162381875/15954_1327697_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.165284", - "last_seen": "2025-06-01T22:05:47.859953", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08601, - 51.537884 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/162381884", - "info": { - "identifier": 162381884, - "sqm_ocr": null, - "price": 2295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162381884", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Rosewood Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63096/162381884/63096_PORTINSCALE_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.639939", - "last_seen": "2025-06-01T22:06:13.979081", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20864, - 51.45552 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/162381890", - "info": { - "identifier": 162381890, - "sqm_ocr": null, - "price": 2496.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162381890", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Absolute Living", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91853/162381890/91853_33908227_IMG_01_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.464901", - "last_seen": "2025-06-01T22:06:01.722579", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175702, - 51.420948 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.1, - "qmprice": 56.57, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162382052", - "info": { - "identifier": 162382052, - "sqm_ocr": 65.1, - "price": 3683.0, - "price_per_sqm": 56.57450076804916, - "url": "https://www.rightmove.co.uk/properties/162382052", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Fox Gregory", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75037/162382052/75037_33908240_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.856474", - "last_seen": "2025-06-01T22:06:15.843470", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176993, - 51.5331 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/162382115", - "info": { - "identifier": 162382115, - "sqm_ocr": null, - "price": 3050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162382115", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Ak247 Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261134/162382115/261134_G01_Cairncross_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.671800", - "last_seen": "2025-06-01T22:05:46.549178", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0287, - 51.45848 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.66, - "qmprice": 21.8, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162382214", - "info": { - "identifier": 162382214, - "sqm_ocr": 114.66, - "price": 2500.0, - "price_per_sqm": 21.803593232164662, - "url": "https://www.rightmove.co.uk/properties/162382214", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Durden & Hunt", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/204k/203339/162382214/203339_33675144_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.775532", - "last_seen": "2025-06-01T22:06:04.049797", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07258, - 51.57806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.5, - "qmprice": 49.69, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162382397", - "info": { - "identifier": 162382397, - "sqm_ocr": 80.5, - "price": 4000.0, - "price_per_sqm": 49.68944099378882, - "url": "https://www.rightmove.co.uk/properties/162382397", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/162382397/54616_DAN210377_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.500472", - "last_seen": "2025-06-01T22:05:55.519842", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115351, - 51.54748 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.48, - "qmprice": 36.33, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/162382433", - "info": { - "identifier": 162382433, - "sqm_ocr": 60.48, - "price": 2197.0, - "price_per_sqm": 36.3260582010582, - "url": "https://www.rightmove.co.uk/properties/162382433", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Avrasons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38414/162382433/38414_343683_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.710598", - "last_seen": "2025-06-01T22:05:59.411788", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11308, - 51.47947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162382604", - "info": { - "identifier": 162382604, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162382604", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Phillip Shaw", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267362/162382604/267362_e65eca7a-cf7f-48fd-b145-db954604cff0_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.961355", - "last_seen": "2025-06-01T22:05:50.622706", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.331717, - 51.58041 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162382715", - "info": { - "identifier": 162382715, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162382715", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "John Payne", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34400/162382715/34400_P277063_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.433324", - "last_seen": "2025-06-01T22:05:46.225598", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02184, - 51.47406 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162382841", - "info": { - "identifier": 162382841, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162382841", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Wellington Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288956/162382841/288956_33908312_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.533491", - "last_seen": "2025-06-01T22:05:57.861627", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217695, - 51.509415 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.4, - "qmprice": 35.26, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162383132", - "info": { - "identifier": 162383132, - "sqm_ocr": 62.4, - "price": 2200.0, - "price_per_sqm": 35.256410256410255, - "url": "https://www.rightmove.co.uk/properties/162383132", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66897/162383132/66897_33908334_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.147302", - "last_seen": "2025-06-01T22:06:00.877662", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015416, - 51.464146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.95, - "qmprice": 26.42, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162383432", - "info": { - "identifier": 162383432, - "sqm_ocr": 88.95, - "price": 2350.0, - "price_per_sqm": 26.419336706014615, - "url": "https://www.rightmove.co.uk/properties/162383432", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44703/162383432/44703_BEK250226_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.288721", - "last_seen": "2025-06-01T22:05:41.509061", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.032611, - 51.407104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162383438", - "info": { - "identifier": 162383438, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162383438", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/218k/217511/162383438/217511_P66720_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.669474", - "last_seen": "2025-06-01T22:05:40.197411", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29732, - 51.5518 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162383705", - "info": { - "identifier": 162383705, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162383705", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137699/162383705/137699_33908362_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.981355", - "last_seen": "2025-06-01T22:05:50.579463", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.346706, - 51.59512 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162383993", - "info": { - "identifier": 162383993, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162383993", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "L&Q", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102784/162383993/102784_12655473_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.929961", - "last_seen": "2025-06-01T22:06:13.228210", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150906, - 51.46762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.82, - "qmprice": 54.84, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162384254", - "info": { - "identifier": 162384254, - "sqm_ocr": 63.82, - "price": 3500.0, - "price_per_sqm": 54.84174240050141, - "url": "https://www.rightmove.co.uk/properties/162384254", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/162384254/135416_HEA205462_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.083526", - "last_seen": "2025-06-01T22:06:13.257180", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170448, - 51.479824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.7, - "qmprice": 38.23, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162384614", - "info": { - "identifier": 162384614, - "sqm_ocr": 83.7, - "price": 3200.0, - "price_per_sqm": 38.231780167264034, - "url": "https://www.rightmove.co.uk/properties/162384614", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Surrey Quays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60474/162384614/60474_17152305AW_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.025835", - "last_seen": "2025-06-01T22:06:00.652820", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03809, - 51.49208 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 33.73, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162385073", - "info": { - "identifier": 162385073, - "sqm_ocr": 83.0, - "price": 2800.0, - "price_per_sqm": 33.734939759036145, - "url": "https://www.rightmove.co.uk/properties/162385073", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Camerons Stiff & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34175/162385073/34175_29875066_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.578926", - "last_seen": "2025-06-01T22:05:40.848660", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.251935, - 51.538765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.26, - "qmprice": 37.94, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162385178", - "info": { - "identifier": 162385178, - "sqm_ocr": 63.26, - "price": 2400.0, - "price_per_sqm": 37.938665823585204, - "url": "https://www.rightmove.co.uk/properties/162385178", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50930/162385178/50930_P4352F1323_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.914540", - "last_seen": "2025-06-01T22:05:44.242884", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29761, - 51.50927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162385784", - "info": { - "identifier": 162385784, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162385784", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Andrews Letting and Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34325/162385784/34325_APX244042_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.000927", - "last_seen": "2025-06-01T22:05:40.665636", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.256231, - 51.57454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2199.0, - "url": "https://www.rightmove.co.uk/properties/162385859", - "info": { - "identifier": 162385859, - "sqm_ocr": null, - "price": 2199.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162385859", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "LAND ROYALE PROPERTIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272384/162385859/272384_OGVESTYCOURT_IMG_13_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.277339", - "last_seen": "2025-06-01T22:05:51.067706", - "price": 2199.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.17657, - 51.57094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.8, - "qmprice": 38.13, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162385928", - "info": { - "identifier": 162385928, - "sqm_ocr": 91.8, - "price": 3500.0, - "price_per_sqm": 38.12636165577342, - "url": "https://www.rightmove.co.uk/properties/162385928", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44538/162385928/44538_JPL200019_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.812127", - "last_seen": "2025-06-01T22:06:14.214003", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151109, - 51.46974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.78, - "qmprice": 37.44, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162385949", - "info": { - "identifier": 162385949, - "sqm_ocr": 74.78, - "price": 2800.0, - "price_per_sqm": 37.44316662209147, - "url": "https://www.rightmove.co.uk/properties/162385949", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162385949/43310_CWL240423_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.648478", - "last_seen": "2025-06-01T22:05:47.120386", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.015187, - 51.495724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.5, - "qmprice": 65.04, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162385979", - "info": { - "identifier": 162385979, - "sqm_ocr": 61.5, - "price": 4000.0, - "price_per_sqm": 65.04065040650407, - "url": "https://www.rightmove.co.uk/properties/162385979", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77695/162385979/77695_33908495_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.397072", - "last_seen": "2025-06-01T22:05:57.926113", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158697, - 51.495155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162386147", - "info": { - "identifier": 162386147, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162386147", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162386147/96668_245270115042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.533051", - "last_seen": "2025-06-01T22:06:04.848007", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.231444, - 51.48676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 41.15, - "rooms": 2, - "total_price": 3210.0, - "url": "https://www.rightmove.co.uk/properties/162386537", - "info": { - "identifier": 162386537, - "sqm_ocr": 78.0, - "price": 3210.0, - "price_per_sqm": 41.15384615384615, - "url": "https://www.rightmove.co.uk/properties/162386537", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80829/162386537/80829_TDL230135_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.473197", - "last_seen": "2025-06-01T22:06:04.713892", - "price": 3210.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.320719, - 51.42894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162386540", - "info": { - "identifier": 162386540, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162386540", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Daniel Cobb", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58939/162386540/58939_b9ac48a2-e3f0-452d-b40a-150a5ae6eccb_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.407424", - "last_seen": "2025-06-01T22:06:00.087489", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.111666, - 51.487743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.2, - "qmprice": 50.74, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162386603", - "info": { - "identifier": 162386603, - "sqm_ocr": 54.2, - "price": 2750.0, - "price_per_sqm": 50.738007380073796, - "url": "https://www.rightmove.co.uk/properties/162386603", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/162386603/54616_DAN220373_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.630079", - "last_seen": "2025-06-01T22:05:53.746391", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120277, - 51.55676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.4, - "qmprice": 40.54, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162386621", - "info": { - "identifier": 162386621, - "sqm_ocr": 81.4, - "price": 3300.0, - "price_per_sqm": 40.54054054054054, - "url": "https://www.rightmove.co.uk/properties/162386621", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Daniel Cobb", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58939/162386621/58939_6675fe4d-590a-432d-a522-7271b937158f_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.117682", - "last_seen": "2025-06-01T22:05:59.738329", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.111666, - 51.487743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162386693", - "info": { - "identifier": 162386693, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162386693", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162386693/96668_62380007092019_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.158993", - "last_seen": "2025-06-01T22:06:13.621020", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165798, - 51.4793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162386801", - "info": { - "identifier": 162386801, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162386801", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3723/162386801/3723_PHL250417_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.642350", - "last_seen": "2025-06-01T22:05:56.287023", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132915, - 51.57033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162386819", - "info": { - "identifier": 162386819, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162386819", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162386819/96668_249379123052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.355803", - "last_seen": "2025-06-01T22:06:08.024242", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071376, - 51.51025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162386885", - "info": { - "identifier": 162386885, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162386885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162386885/96668_244856311042025_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.355191", - "last_seen": "2025-06-01T22:05:41.633390", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.055418, - 51.407623 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.9, - "qmprice": 37.23, - "rooms": 3, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/162386987", - "info": { - "identifier": 162386987, - "sqm_ocr": 85.9, - "price": 3198.0, - "price_per_sqm": 37.229336437718274, - "url": "https://www.rightmove.co.uk/properties/162386987", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84794/162386987/84794_33908538_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.348581", - "last_seen": "2025-06-01T22:05:48.459113", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208844, - 51.47888 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162387026", - "info": { - "identifier": 162387026, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162387026", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162387026/96668_249317722052025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.949315", - "last_seen": "2025-06-01T22:05:55.690400", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077325, - 51.536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2425.0, - "url": "https://www.rightmove.co.uk/properties/162387083", - "info": { - "identifier": 162387083, - "sqm_ocr": null, - "price": 2425.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162387083", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162387083/96668_249399823052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.246118", - "last_seen": "2025-06-01T22:05:59.586591", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115115, - 51.48489 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.31, - "qmprice": 30.69, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162387305", - "info": { - "identifier": 162387305, - "sqm_ocr": 73.31, - "price": 2250.0, - "price_per_sqm": 30.691583685718182, - "url": "https://www.rightmove.co.uk/properties/162387305", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/162387305/15951_1327704_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.954524", - "last_seen": "2025-06-01T22:05:52.281159", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284676, - 51.48851 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.69, - "qmprice": 42.97, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162387593", - "info": { - "identifier": 162387593, - "sqm_ocr": 54.69, - "price": 2350.0, - "price_per_sqm": 42.96946425306272, - "url": "https://www.rightmove.co.uk/properties/162387593", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/146k/145463/162387593/145463_JWL190003_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.950814", - "last_seen": "2025-06-01T22:06:13.060399", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194177, - 51.457264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.01, - "qmprice": 33.76, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162387599", - "info": { - "identifier": 162387599, - "sqm_ocr": 77.01, - "price": 2600.0, - "price_per_sqm": 33.761849110505125, - "url": "https://www.rightmove.co.uk/properties/162387599", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44538/162387599/44538_JSL170028_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.951968", - "last_seen": "2025-06-01T22:06:13.051718", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149389, - 51.448536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.8, - "qmprice": 42.48, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162387605", - "info": { - "identifier": 162387605, - "sqm_ocr": 91.8, - "price": 3900.0, - "price_per_sqm": 42.48366013071895, - "url": "https://www.rightmove.co.uk/properties/162387605", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/162387605/63031_HEA251415_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.984789", - "last_seen": "2025-06-01T22:05:42.666377", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144057, - 51.53747 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.2, - "qmprice": 50.74, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162387734", - "info": { - "identifier": 162387734, - "sqm_ocr": 54.2, - "price": 2750.0, - "price_per_sqm": 50.738007380073796, - "url": "https://www.rightmove.co.uk/properties/162387734", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/162387734/54616_DAN210376_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.017481", - "last_seen": "2025-06-01T22:05:53.694060", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120277, - 51.55676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162387896", - "info": { - "identifier": 162387896, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162387896", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "RCAM", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240482/162387896/240482_2bed2305G_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.325012", - "last_seen": "2025-06-01T22:05:40.398695", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22728, - 51.54958 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.2, - "qmprice": 64.74, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162388010", - "info": { - "identifier": 162388010, - "sqm_ocr": 50.2, - "price": 3250.0, - "price_per_sqm": 64.7410358565737, - "url": "https://www.rightmove.co.uk/properties/162388010", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/162388010/15942_1327071_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.750460", - "last_seen": "2025-06-01T22:05:58.234975", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179313, - 51.485798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.5, - "qmprice": 28.63, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162388034", - "info": { - "identifier": 162388034, - "sqm_ocr": 113.5, - "price": 3250.0, - "price_per_sqm": 28.634361233480178, - "url": "https://www.rightmove.co.uk/properties/162388034", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Wayne & Silver", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91636/162388034/91636_33908584_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.146168", - "last_seen": "2025-06-01T22:05:39.587452", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174753, - 51.587654 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.7, - "qmprice": 52.46, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162388310", - "info": { - "identifier": 162388310, - "sqm_ocr": 53.7, - "price": 2817.0, - "price_per_sqm": 52.45810055865922, - "url": "https://www.rightmove.co.uk/properties/162388310", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/162388310/108515_1327701_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.298649", - "last_seen": "2025-06-01T22:05:58.386611", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189218, - 51.485714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.22, - "qmprice": 56.01, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162388358", - "info": { - "identifier": 162388358, - "sqm_ocr": 52.22, - "price": 2925.0, - "price_per_sqm": 56.013021830716205, - "url": "https://www.rightmove.co.uk/properties/162388358", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151658/162388358/151658_1327707_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.954865", - "last_seen": "2025-06-01T22:06:16.006669", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194119, - 51.523674 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.12, - "qmprice": 32.8, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162388616", - "info": { - "identifier": 162388616, - "sqm_ocr": 70.12, - "price": 2300.0, - "price_per_sqm": 32.80091272104963, - "url": "https://www.rightmove.co.uk/properties/162388616", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Blackfinch Property Management Ltd", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282167/162388616/282167_661237_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.595766", - "last_seen": "2025-06-01T22:05:40.729770", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283529, - 51.540894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162388658", - "info": { - "identifier": 162388658, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162388658", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kurtis Property", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34830/162388658/34830_33908604_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.068290", - "last_seen": "2025-06-01T22:06:03.945389", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.070818, - 51.54868 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.1, - "qmprice": 41.58, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162388832", - "info": { - "identifier": 162388832, - "sqm_ocr": 48.1, - "price": 2000.0, - "price_per_sqm": 41.58004158004158, - "url": "https://www.rightmove.co.uk/properties/162388832", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Assure Move Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246137/162388832/246137_78f60bcf-b53b-43eb-b1f7-a732513b5f33_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.559156", - "last_seen": "2025-06-01T20:19:59.167045", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056377, - 51.511353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3685.0, - "url": "https://www.rightmove.co.uk/properties/162388880", - "info": { - "identifier": 162388880, - "sqm_ocr": null, - "price": 3685.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162388880", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Get Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57558/162388880/57558_57558_p0192942_SIEN0004_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.449908", - "last_seen": "2025-06-01T22:06:07.472904", - "price": 3685.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008613, - 51.545925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162388982", - "info": { - "identifier": 162388982, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162388982", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191426/162388982/191426_2714103_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.161098", - "last_seen": "2025-06-01T22:05:39.571515", - "price": 3497.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19992, - 51.57462 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162389093", - "info": { - "identifier": 162389093, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162389093", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "L&Q", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102784/162389093/102784_12679676_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.000605", - "last_seen": "2025-06-01T22:05:39.113564", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240386, - 51.59263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162389102", - "info": { - "identifier": 162389102, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162389102", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162389102/96668_249083820052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.002142", - "last_seen": "2025-06-01T22:05:44.869331", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254924, - 51.511684 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.91, - "qmprice": 48.67, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162389120", - "info": { - "identifier": 162389120, - "sqm_ocr": 77.91, - "price": 3792.0, - "price_per_sqm": 48.67154408933385, - "url": "https://www.rightmove.co.uk/properties/162389120", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76580/162389120/76580_SKN140170_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.978128", - "last_seen": "2025-06-01T22:05:58.164593", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176972, - 51.486618 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162389138", - "info": { - "identifier": 162389138, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162389138", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "L&Q", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102784/162389138/102784_12679677_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.978888", - "last_seen": "2025-06-01T22:05:44.910844", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277, - 51.50195 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2225.0, - "url": "https://www.rightmove.co.uk/properties/162389213", - "info": { - "identifier": 162389213, - "sqm_ocr": null, - "price": 2225.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162389213", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "L&Q", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102784/162389213/102784_12679678_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.248291", - "last_seen": "2025-06-01T22:05:44.021708", - "price": 2225.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277768, - 51.50128 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.14, - "qmprice": 54.18, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162389297", - "info": { - "identifier": 162389297, - "sqm_ocr": 70.14, - "price": 3800.0, - "price_per_sqm": 54.177359566581124, - "url": "https://www.rightmove.co.uk/properties/162389297", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/162389297/63031_CAL250045_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.759094", - "last_seen": "2025-06-01T22:05:56.944708", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138339, - 51.53626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/162389306", - "info": { - "identifier": 162389306, - "sqm_ocr": null, - "price": 3298.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162389306", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Avrasons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38414/162389306/38414_552612_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.715459", - "last_seen": "2025-06-01T22:05:46.442802", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00288, - 51.48349 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162389384", - "info": { - "identifier": 162389384, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162389384", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Letting International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/184k/183545/162389384/183545_33908636_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.624960", - "last_seen": "2025-06-01T22:06:02.488888", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017761, - 51.54656 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.82, - "qmprice": 29.0, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162389510", - "info": { - "identifier": 162389510, - "sqm_ocr": 94.82, - "price": 2750.0, - "price_per_sqm": 29.002320185614852, - "url": "https://www.rightmove.co.uk/properties/162389510", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/130k/129652/162389510/129652_P5684L2516_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.486729", - "last_seen": "2025-06-01T22:05:49.924258", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10136, - 51.60211 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162389630", - "info": { - "identifier": 162389630, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162389630", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Dimension Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87953/162389630/87953_3789_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.564611", - "last_seen": "2025-06-01T22:06:02.407736", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05917, - 51.52985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.54, - "qmprice": 34.0, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162389708", - "info": { - "identifier": 162389708, - "sqm_ocr": 73.54, - "price": 2500.0, - "price_per_sqm": 33.99510470492249, - "url": "https://www.rightmove.co.uk/properties/162389708", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/146k/145463/162389708/145463_WBL110116_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.232499", - "last_seen": "2025-06-01T22:06:12.165455", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188684, - 51.462936 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162389831", - "info": { - "identifier": 162389831, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162389831", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Una Living", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87553/162389831/87553_101435001921_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.199873", - "last_seen": "2025-06-01T22:05:40.246712", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28255, - 51.53018 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.7, - "qmprice": 43.21, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162389942", - "info": { - "identifier": 162389942, - "sqm_ocr": 67.7, - "price": 2925.0, - "price_per_sqm": 43.205317577548, - "url": "https://www.rightmove.co.uk/properties/162389942", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/162389942/264326_Y64025_3_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.075440", - "last_seen": "2025-06-01T22:05:49.485681", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209627, - 51.469154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 26.19, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162390080", - "info": { - "identifier": 162390080, - "sqm_ocr": 84.0, - "price": 2200.0, - "price_per_sqm": 26.19047619047619, - "url": "https://www.rightmove.co.uk/properties/162390080", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/256k/255212/162390080/255212_33908667_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.815352", - "last_seen": "2025-06-01T22:06:05.422460", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067508, - 51.449173 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.07, - "qmprice": 46.28, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162390266", - "info": { - "identifier": 162390266, - "sqm_ocr": 68.07, - "price": 3150.0, - "price_per_sqm": 46.275892463640375, - "url": "https://www.rightmove.co.uk/properties/162390266", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "BPS London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95999/162390266/95999_7795759_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.377817", - "last_seen": "2025-06-01T22:05:42.279321", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1304, - 51.52582 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2125.0, - "url": "https://www.rightmove.co.uk/properties/162390341", - "info": { - "identifier": 162390341, - "sqm_ocr": null, - "price": 2125.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162390341", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/162390341/208253_PRL251104_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.485670", - "last_seen": "2025-06-01T22:05:45.189739", - "price": 2125.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.377413, - 51.504986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162390362", - "info": { - "identifier": 162390362, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162390362", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/162390362/208253_PRL251105_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.506680", - "last_seen": "2025-06-01T22:05:45.207582", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.377413, - 51.504986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3055.0, - "url": "https://www.rightmove.co.uk/properties/162390389", - "info": { - "identifier": 162390389, - "sqm_ocr": null, - "price": 3055.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162390389", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Get Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57558/162390389/57558_57558_p0192955_EMPE0031_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.317795", - "last_seen": "2025-06-01T22:06:07.712539", - "price": 3055.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008613, - 51.545925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 44.01, - "rooms": 2, - "total_price": 3125.0, - "url": "https://www.rightmove.co.uk/properties/162390440", - "info": { - "identifier": 162390440, - "sqm_ocr": 71.0, - "price": 3125.0, - "price_per_sqm": 44.014084507042256, - "url": "https://www.rightmove.co.uk/properties/162390440", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Get Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57558/162390440/57558_57558_p0193752_SKYL004D_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.859965", - "last_seen": "2025-06-01T22:06:07.586302", - "price": 3125.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01052, - 51.546146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162390521", - "info": { - "identifier": 162390521, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162390521", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "eddisonwhite", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20183/162390521/20183_33908684_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.414873", - "last_seen": "2025-06-01T22:06:01.184053", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175114, - 51.415447 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.23, - "qmprice": 27.72, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162390542", - "info": { - "identifier": 162390542, - "sqm_ocr": 108.23, - "price": 3000.0, - "price_per_sqm": 27.71874711263051, - "url": "https://www.rightmove.co.uk/properties/162390542", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48606/162390542/48606_MYL250027_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.127698", - "last_seen": "2025-06-01T22:06:02.363616", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012041, - 51.510033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3249.0, - "url": "https://www.rightmove.co.uk/properties/162390545", - "info": { - "identifier": 162390545, - "sqm_ocr": null, - "price": 3249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162390545", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Way of Life", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259979/162390545/259979_EVER-2599792y10CVm6LzApiDs9gV1mbkcsMzm6SHngWMl4gHdKGG0R4x4KBsMRwu_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.576019", - "last_seen": "2025-06-01T22:05:49.666080", - "price": 3249.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061882, - 51.590843 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162390632", - "info": { - "identifier": 162390632, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162390632", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57985/162390632/57985_KCW251053_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.143490", - "last_seen": "2025-06-01T22:06:06.011260", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061812, - 51.49263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.1, - "qmprice": 24.69, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162390740", - "info": { - "identifier": 162390740, - "sqm_ocr": 89.1, - "price": 2200.0, - "price_per_sqm": 24.69135802469136, - "url": "https://www.rightmove.co.uk/properties/162390740", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/208k/207812/162390740/207812_CSV240150_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.791143", - "last_seen": "2025-06-01T22:06:00.090957", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119286, - 51.4367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162391142", - "info": { - "identifier": 162391142, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162391142", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/218k/217508/162391142/217508_P66724_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.783128", - "last_seen": "2025-06-01T22:06:03.135699", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03943, - 51.53429 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162391148", - "info": { - "identifier": 162391148, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162391148", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/218k/217508/162391148/217508_P66722_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.774666", - "last_seen": "2025-06-01T22:06:03.137646", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03969, - 51.53365 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/162391295", - "info": { - "identifier": 162391295, - "sqm_ocr": null, - "price": 3402.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162391295", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162391295/96668_249421723052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.045952", - "last_seen": "2025-06-01T22:05:57.024629", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090327, - 51.53244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.6, - "qmprice": 38.88, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162391880", - "info": { - "identifier": 162391880, - "sqm_ocr": 83.6, - "price": 3250.0, - "price_per_sqm": 38.875598086124405, - "url": "https://www.rightmove.co.uk/properties/162391880", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "EweMove", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264530/162391880/264530_10336091_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.568393", - "last_seen": "2025-06-01T22:05:57.683676", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198155, - 51.509106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162392177", - "info": { - "identifier": 162392177, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162392177", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162392177/96668_249147021052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.926848", - "last_seen": "2025-06-01T22:05:39.856336", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178176, - 51.621098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162392192", - "info": { - "identifier": 162392192, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162392192", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162392192/96668_249424023052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.227265", - "last_seen": "2025-06-01T22:06:07.183618", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.049716, - 51.49841 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.7, - "qmprice": 31.36, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162393125", - "info": { - "identifier": 162393125, - "sqm_ocr": 87.7, - "price": 2750.0, - "price_per_sqm": 31.356898517673887, - "url": "https://www.rightmove.co.uk/properties/162393125", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162393125/15963_1327591_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.983701", - "last_seen": "2025-06-01T22:06:12.966077", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252069, - 51.463627 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.15, - "qmprice": 38.5, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162393623", - "info": { - "identifier": 162393623, - "sqm_ocr": 57.15, - "price": 2200.0, - "price_per_sqm": 38.495188101487315, - "url": "https://www.rightmove.co.uk/properties/162393623", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162393623/96668_249406623052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.103491", - "last_seen": "2025-06-01T22:06:12.339265", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148109, - 51.44827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162394097", - "info": { - "identifier": 162394097, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162394097", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162394097/96668_246053223042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.499482", - "last_seen": "2025-06-01T22:05:42.930816", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17707, - 51.54438 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 42.31, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162394178", - "info": { - "identifier": 162394178, - "sqm_ocr": 78.0, - "price": 3300.0, - "price_per_sqm": 42.30769230769231, - "url": "https://www.rightmove.co.uk/properties/162394178", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14543/162394178/14543_CIT160113_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.681897", - "last_seen": "2025-06-01T22:05:52.906859", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103741, - 51.52133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.9, - "qmprice": 46.1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162394181", - "info": { - "identifier": 162394181, - "sqm_ocr": 62.9, - "price": 2900.0, - "price_per_sqm": 46.10492845786963, - "url": "https://www.rightmove.co.uk/properties/162394181", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111509/162394181/111509_WEL180147_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.669067", - "last_seen": "2025-06-01T22:05:57.292830", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121574, - 51.54095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162394184", - "info": { - "identifier": 162394184, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162394184", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Andrews Letting and Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34337/162394184/34337_APX253624_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.351485", - "last_seen": "2025-06-01T22:06:01.098030", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149516, - 51.4145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.82, - "qmprice": 48.1, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/162395297", - "info": { - "identifier": 162395297, - "sqm_ocr": 69.82, - "price": 3358.0, - "price_per_sqm": 48.09510169006016, - "url": "https://www.rightmove.co.uk/properties/162395297", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246071/162395297/246071_SJD250129_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.646078", - "last_seen": "2025-06-01T22:06:14.576616", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190432, - 51.526222 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162395363", - "info": { - "identifier": 162395363, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162395363", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162395363/96668_173801517062023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.791515", - "last_seen": "2025-06-01T22:05:49.802189", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140199, - 51.574245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 44.37, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162395492", - "info": { - "identifier": 162395492, - "sqm_ocr": 71.0, - "price": 3150.0, - "price_per_sqm": 44.36619718309859, - "url": "https://www.rightmove.co.uk/properties/162395492", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Hotblack Desiato", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51388/162395492/51388_ISL220231_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.859046", - "last_seen": "2025-06-01T22:05:54.132254", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101122, - 51.546116 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162395507", - "info": { - "identifier": 162395507, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162395507", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/162395507/249692_RL4642_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.226755", - "last_seen": "2025-06-01T22:05:42.580729", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125013, - 51.526466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/162397484", - "info": { - "identifier": 162397484, - "sqm_ocr": null, - "price": 2535.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162397484", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Landstones", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221669/162397484/221669_RL2161QQ_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.217805", - "last_seen": "2025-06-01T22:05:57.623224", - "price": 2535 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197695, - 51.494133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162398120", - "info": { - "identifier": 162398120, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162398120", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162398120/96668_248645516052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.696467", - "last_seen": "2025-06-01T22:06:11.621084", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.003476, - 51.59318 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.52, - "qmprice": 43.08, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162399863", - "info": { - "identifier": 162399863, - "sqm_ocr": 90.52, - "price": 3900.0, - "price_per_sqm": 43.08440123729563, - "url": "https://www.rightmove.co.uk/properties/162399863", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/162399863/76585_1317833_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.200838", - "last_seen": "2025-06-01T22:06:15.157946", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165186, - 51.51553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.35, - "qmprice": 38.72, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/162399992", - "info": { - "identifier": 162399992, - "sqm_ocr": 78.35, - "price": 3034.0, - "price_per_sqm": 38.72367581365667, - "url": "https://www.rightmove.co.uk/properties/162399992", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/162399992/15942_1324111_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.310114", - "last_seen": "2025-06-01T22:05:58.396267", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169694, - 51.493668 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.5, - "qmprice": 39.45, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162400406", - "info": { - "identifier": 162400406, - "sqm_ocr": 54.5, - "price": 2150.0, - "price_per_sqm": 39.44954128440367, - "url": "https://www.rightmove.co.uk/properties/162400406", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Garrison Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181970/162400406/181970_05651c79-7035-45a6-abf4-6ce0b0e71b03_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.577724", - "last_seen": "2025-06-01T22:05:40.982615", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229592, - 51.548313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162400454", - "info": { - "identifier": 162400454, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162400454", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Goodfellows", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72253/162400454/72253_GCB150152_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.344956", - "last_seen": "2025-06-01T22:06:07.837448", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16833, - 51.35922 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.42, - "qmprice": 49.23, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162400571", - "info": { - "identifier": 162400571, - "sqm_ocr": 70.42, - "price": 3467.0, - "price_per_sqm": 49.23317239420619, - "url": "https://www.rightmove.co.uk/properties/162400571", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Greater London Properties", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/154k/153329/162400571/153329_GRT_BLM_LFSYCL_253_4014537_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.919282", - "last_seen": "2025-06-01T22:05:42.057876", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115577, - 51.522152 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162400967", - "info": { - "identifier": 162400967, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162400967", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "EAZY 2 LET LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61167/162400967/61167_584984125_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.999691", - "last_seen": "2025-06-01T20:19:57.121969", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05737, - 51.51624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162401057", - "info": { - "identifier": 162401057, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162401057", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162401057/96668_247156803052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.426793", - "last_seen": "2025-06-01T22:06:07.826537", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19246, - 51.353935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162401549", - "info": { - "identifier": 162401549, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162401549", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14614/162401549/14614_BLA210788_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.898294", - "last_seen": "2025-06-01T22:06:00.751469", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.003159, - 51.464382 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162401573", - "info": { - "identifier": 162401573, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162401573", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Japan Letting Agency", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258848/162401573/258848_33908831_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.138900", - "last_seen": "2025-06-01T22:05:44.766344", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300424, - 51.51331 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162401834", - "info": { - "identifier": 162401834, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162401834", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14614/162401834/14614_BLA220557_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.774874", - "last_seen": "2025-06-01T22:05:56.658746", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01587, - 51.46336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/162401855", - "info": { - "identifier": 162401855, - "sqm_ocr": null, - "price": 3995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162401855", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9170/162401855/9170_P100314_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.825998", - "last_seen": "2025-06-01T22:05:58.617637", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29296, - 51.42548 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162401915", - "info": { - "identifier": 162401915, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162401915", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Proctors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9274/162401915/9274_29097621_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.337760", - "last_seen": "2025-06-01T22:05:41.753430", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0671, - 51.386925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162401948", - "info": { - "identifier": 162401948, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162401948", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "FMX PROPERTIES LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264155/162401948/264155_69BHFR_IMG_17_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.044397", - "last_seen": "2025-06-01T22:05:49.499872", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22553, - 51.48761 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162402275", - "info": { - "identifier": 162402275, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162402275", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Mantlestates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/24k/23909/162402275/23909_mantlestates_159977010_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.946014", - "last_seen": "2025-06-01T22:05:45.847093", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14052, - 51.63964 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 149.1, - "qmprice": 18.78, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162402350", - "info": { - "identifier": 162402350, - "sqm_ocr": 149.1, - "price": 2800.0, - "price_per_sqm": 18.779342723004696, - "url": "https://www.rightmove.co.uk/properties/162402350", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Sinclair Hammelton", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/212k/211676/162402350/211676_SHL250042_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.300285", - "last_seen": "2025-06-01T22:05:41.512808", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.007762, - 51.37381 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162403094", - "info": { - "identifier": 162403094, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162403094", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162403094/96668_160134817012023_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.765882", - "last_seen": "2025-06-01T22:05:55.298460", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229684, - 51.50659 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3475.0, - "url": "https://www.rightmove.co.uk/properties/162403166", - "info": { - "identifier": 162403166, - "sqm_ocr": null, - "price": 3475.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162403166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162403166/96668_245376716042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.306645", - "last_seen": "2025-06-01T22:05:51.968353", - "price": 3475.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.323301, - 51.46909 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162403175", - "info": { - "identifier": 162403175, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162403175", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162403175/96668_249449724052025_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.345130", - "last_seen": "2025-06-01T22:05:42.168313", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124943, - 51.52678 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.7, - "qmprice": 30.11, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162403553", - "info": { - "identifier": 162403553, - "sqm_ocr": 79.7, - "price": 2400.0, - "price_per_sqm": 30.112923462986195, - "url": "https://www.rightmove.co.uk/properties/162403553", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73524/162403553/73524_HSU230079_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.696263", - "last_seen": "2025-06-01T22:05:58.664042", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299597, - 51.37628 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162403730", - "info": { - "identifier": 162403730, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162403730", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Streets Ahead", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58139/162403730/58139_PUR250132_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.776168", - "last_seen": "2025-06-01T22:05:43.803194", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149743, - 51.306202 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.4, - "qmprice": 34.54, - "rooms": 2, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/162403763", - "info": { - "identifier": 162403763, - "sqm_ocr": 73.4, - "price": 2535.0, - "price_per_sqm": 34.53678474114441, - "url": "https://www.rightmove.co.uk/properties/162403763", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76478/162403763/76478_CEI242495_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.523752", - "last_seen": "2025-06-01T22:06:10.183561", - "price": 2535 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020568, - 51.498543 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162403940", - "info": { - "identifier": 162403940, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162403940", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hinton Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69686/162403940/69686_102800004721_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.015368", - "last_seen": "2025-06-01T22:05:50.249428", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34275, - 51.59948 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162404012", - "info": { - "identifier": 162404012, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162404012", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "James Anderson", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56085/162404012/56085_31553269_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.112817", - "last_seen": "2025-06-01T22:06:13.797644", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218797, - 51.465668 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162404045", - "info": { - "identifier": 162404045, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162404045", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57096/162404045/57096_KQP250258_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.438022", - "last_seen": "2025-06-01T22:05:41.127337", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221679, - 51.537582 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.62, - "qmprice": 60.96, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162404228", - "info": { - "identifier": 162404228, - "sqm_ocr": 65.62, - "price": 4000.0, - "price_per_sqm": 60.957025297165494, - "url": "https://www.rightmove.co.uk/properties/162404228", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/162404228/253853_1327724_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.349163", - "last_seen": "2025-06-01T22:06:05.668164", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.086079, - 51.48915 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162404747", - "info": { - "identifier": 162404747, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162404747", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Target Property", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74120/162404747/74120_33909034_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.083996", - "last_seen": "2025-06-01T22:05:45.700562", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.051884, - 51.679077 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.2, - "qmprice": 44.39, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162405185", - "info": { - "identifier": 162405185, - "sqm_ocr": 64.2, - "price": 2850.0, - "price_per_sqm": 44.39252336448598, - "url": "https://www.rightmove.co.uk/properties/162405185", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "David Andrew", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80996/162405185/80996_c2af3d9d-9cd0-42bd-8e82-464dd290590d_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.538743", - "last_seen": "2025-06-01T22:05:53.945129", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098079, - 51.557693 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.4, - "qmprice": 32.12, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162405548", - "info": { - "identifier": 162405548, - "sqm_ocr": 79.4, - "price": 2550.0, - "price_per_sqm": 32.11586901763224, - "url": "https://www.rightmove.co.uk/properties/162405548", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98900/162405548/98900_P301312_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.538004", - "last_seen": "2025-06-01T22:06:04.556884", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28545, - 51.4608 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 122.01, - "qmprice": 28.69, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162405599", - "info": { - "identifier": 162405599, - "sqm_ocr": 122.01, - "price": 3500.0, - "price_per_sqm": 28.686173264486516, - "url": "https://www.rightmove.co.uk/properties/162405599", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/162405599/51286_CLL100116_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "18/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.640569", - "last_seen": "2025-06-01T22:05:44.721271", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254826, - 51.500114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.8, - "qmprice": 35.99, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162405767", - "info": { - "identifier": 162405767, - "sqm_ocr": 77.8, - "price": 2800.0, - "price_per_sqm": 35.98971722365039, - "url": "https://www.rightmove.co.uk/properties/162405767", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64604/162405767/64604_000660194_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.183976", - "last_seen": "2025-06-01T22:05:59.008931", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1293, - 51.46687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.1, - "qmprice": 35.68, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162406268", - "info": { - "identifier": 162406268, - "sqm_ocr": 112.1, - "price": 4000.0, - "price_per_sqm": 35.68242640499554, - "url": "https://www.rightmove.co.uk/properties/162406268", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78317/162406268/78317_KDS250234_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.644994", - "last_seen": "2025-06-01T22:05:58.773951", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.291427, - 51.425007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.3, - "qmprice": 42.14, - "rooms": 2, - "total_price": 3510.0, - "url": "https://www.rightmove.co.uk/properties/162406427", - "info": { - "identifier": 162406427, - "sqm_ocr": 83.3, - "price": 3510.0, - "price_per_sqm": 42.13685474189676, - "url": "https://www.rightmove.co.uk/properties/162406427", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Wapping", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32766/162406427/32766_2405252BKAKR_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.987465", - "last_seen": "2025-06-01T22:06:09.926662", - "price": 3510.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07281, - 51.51595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162406637", - "info": { - "identifier": 162406637, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162406637", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50680/162406637/50680_P277065_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.033258", - "last_seen": "2025-06-01T22:06:01.037050", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03248, - 51.42499 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.8, - "qmprice": 31.91, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162406952", - "info": { - "identifier": 162406952, - "sqm_ocr": 65.8, - "price": 2100.0, - "price_per_sqm": 31.914893617021278, - "url": "https://www.rightmove.co.uk/properties/162406952", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Rolfe East", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/5k/4083/162406952/4083_33704541_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.699124", - "last_seen": "2025-06-01T22:05:44.364085", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.251906, - 51.515114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162406973", - "info": { - "identifier": 162406973, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162406973", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Aston Chase", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84235/162406973/84235_RGS210190_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.301558", - "last_seen": "2025-06-01T22:05:42.306135", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13872, - 51.521973 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.1, - "qmprice": 31.29, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162407108", - "info": { - "identifier": 162407108, - "sqm_ocr": 83.1, - "price": 2600.0, - "price_per_sqm": 31.287605294825514, - "url": "https://www.rightmove.co.uk/properties/162407108", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Rolfe East", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/5k/4083/162407108/4083_33909232_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.510739", - "last_seen": "2025-06-01T22:05:44.385978", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252741, - 51.506496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 43.65, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162407135", - "info": { - "identifier": 162407135, - "sqm_ocr": 63.0, - "price": 2750.0, - "price_per_sqm": 43.65079365079365, - "url": "https://www.rightmove.co.uk/properties/162407135", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162407135/238265_L109810_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.271760", - "last_seen": "2025-06-01T22:05:52.087345", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.255637, - 51.483776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 30.82, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162407150", - "info": { - "identifier": 162407150, - "sqm_ocr": 73.0, - "price": 2250.0, - "price_per_sqm": 30.82191780821918, - "url": "https://www.rightmove.co.uk/properties/162407150", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12685/162407150/12685_CRO230128_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.819582", - "last_seen": "2025-06-01T22:05:43.440882", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09565, - 51.389393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.6, - "qmprice": 36.51, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162407270", - "info": { - "identifier": 162407270, - "sqm_ocr": 98.6, - "price": 3600.0, - "price_per_sqm": 36.51115618661258, - "url": "https://www.rightmove.co.uk/properties/162407270", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "The London Broker", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174521/162407270/174521_FES250034_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.167956", - "last_seen": "2025-06-01T22:05:47.921868", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076202, - 51.547993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162407336", - "info": { - "identifier": 162407336, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162407336", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Seymours Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70149/162407336/70149_2706349_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.798163", - "last_seen": "2025-06-01T22:05:58.741048", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30449, - 51.3975 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162407342", - "info": { - "identifier": 162407342, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162407342", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22320/162407342/22320_CSZ240972_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.891589", - "last_seen": "2025-06-01T22:06:13.521301", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.157643, - 51.43942 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162407483", - "info": { - "identifier": 162407483, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162407483", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44870/162407483/44870_33909208_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.113928", - "last_seen": "2025-06-01T22:05:38.655055", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225523, - 51.58322 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162407546", - "info": { - "identifier": 162407546, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162407546", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162407546/96668_124873901112021_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.616424", - "last_seen": "2025-06-01T22:05:40.043427", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27916, - 51.55327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162407600", - "info": { - "identifier": 162407600, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162407600", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162407600/96668_249465324052025_IMG_50_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.799629", - "last_seen": "2025-06-01T22:06:09.214139", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00918, - 51.508217 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.31, - "qmprice": 30.61, - "rooms": 3, - "total_price": 2856.0, - "url": "https://www.rightmove.co.uk/properties/162407681", - "info": { - "identifier": 162407681, - "sqm_ocr": 93.31, - "price": 2856.0, - "price_per_sqm": 30.607651912978245, - "url": "https://www.rightmove.co.uk/properties/162407681", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Borthwicks", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52337/162407681/52337_BOR1001363_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.836890", - "last_seen": "2025-06-01T22:05:44.984774", - "price": 2855 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26742, - 51.5224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.0, - "qmprice": 25.85, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/162407684", - "info": { - "identifier": 162407684, - "sqm_ocr": 114.0, - "price": 2947.0, - "price_per_sqm": 25.850877192982455, - "url": "https://www.rightmove.co.uk/properties/162407684", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Borthwicks", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52337/162407684/52337_BOR1001364_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.345681", - "last_seen": "2025-06-01T22:05:52.419977", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.271429, - 51.492947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.08, - "qmprice": 34.57, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162407789", - "info": { - "identifier": 162407789, - "sqm_ocr": 65.08, - "price": 2250.0, - "price_per_sqm": 34.57283343577136, - "url": "https://www.rightmove.co.uk/properties/162407789", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/127k/126934/162407789/126934_6831b759407fc_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.752997", - "last_seen": "2025-06-01T22:06:14.249845", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17235, - 51.47216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.5, - "qmprice": 43.02, - "rooms": 2, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/162407954", - "info": { - "identifier": 162407954, - "sqm_ocr": 69.5, - "price": 2990.0, - "price_per_sqm": 43.02158273381295, - "url": "https://www.rightmove.co.uk/properties/162407954", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Wapping", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32766/162407954/32766_2505252BGAKR_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.764017", - "last_seen": "2025-06-01T22:06:08.560791", - "price": 2990.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05571, - 51.51801 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162408389", - "info": { - "identifier": 162408389, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162408389", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44870/162408389/44870_33909293_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.653224", - "last_seen": "2025-06-01T22:05:39.683544", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210206, - 51.60048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.4, - "qmprice": 53.88, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162408449", - "info": { - "identifier": 162408449, - "sqm_ocr": 46.4, - "price": 2500.0, - "price_per_sqm": 53.87931034482759, - "url": "https://www.rightmove.co.uk/properties/162408449", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Andrew", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93623/162408449/93623_66915edd-7062-46b8-bf8b-a856cbbc52cb_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.988462", - "last_seen": "2025-06-01T22:05:53.737438", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1158, - 51.570843 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162408506", - "info": { - "identifier": 162408506, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162408506", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Infinity Property Solutions", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111497/162408506/111497_28894568_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.913224", - "last_seen": "2025-06-01T22:05:50.701950", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.292398, - 51.597984 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 28.57, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162408554", - "info": { - "identifier": 162408554, - "sqm_ocr": 77.0, - "price": 2200.0, - "price_per_sqm": 28.571428571428573, - "url": "https://www.rightmove.co.uk/properties/162408554", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/162408554/107533_1326879_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.150179", - "last_seen": "2025-06-01T22:05:46.247472", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01991, - 51.476665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162408656", - "info": { - "identifier": 162408656, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162408656", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Sharpes Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5353/162408656/5353_CQX-17325196_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.356427", - "last_seen": "2025-06-01T22:06:01.077913", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135459, - 51.4022 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.61, - "qmprice": 39.82, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162408662", - "info": { - "identifier": 162408662, - "sqm_ocr": 81.61, - "price": 3250.0, - "price_per_sqm": 39.82355103541233, - "url": "https://www.rightmove.co.uk/properties/162408662", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162408662/16050_1327732_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.554554", - "last_seen": "2025-06-01T22:06:08.031881", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0601, - 51.519897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.2, - "qmprice": 59.96, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162408899", - "info": { - "identifier": 162408899, - "sqm_ocr": 54.2, - "price": 3250.0, - "price_per_sqm": 59.963099630996304, - "url": "https://www.rightmove.co.uk/properties/162408899", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94658/162408899/94658_33909336_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.319485", - "last_seen": "2025-06-01T22:05:58.436155", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194469, - 51.50459 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 51.87, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162408956", - "info": { - "identifier": 162408956, - "sqm_ocr": 71.0, - "price": 3683.0, - "price_per_sqm": 51.87323943661972, - "url": "https://www.rightmove.co.uk/properties/162408956", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hotblack Desiato", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51388/162408956/51388_ISL220251_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.601956", - "last_seen": "2025-06-01T22:05:53.856340", - "price": 3683.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107339, - 51.543392 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162409238", - "info": { - "identifier": 162409238, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162409238", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162409238/96668_249095321052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.419423", - "last_seen": "2025-06-01T22:06:08.833692", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008716, - 51.524467 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.02, - "qmprice": 33.99, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162409355", - "info": { - "identifier": 162409355, - "sqm_ocr": 100.02, - "price": 3400.0, - "price_per_sqm": 33.993201359728054, - "url": "https://www.rightmove.co.uk/properties/162409355", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44538/162409355/44538_WBL120162_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.349250", - "last_seen": "2025-06-01T22:06:13.189646", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164524, - 51.46014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162409358", - "info": { - "identifier": 162409358, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162409358", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162409358/43310_MRL090332_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.650592", - "last_seen": "2025-06-01T22:06:09.792356", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.000921, - 51.50917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.86, - "qmprice": 31.49, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162409559", - "info": { - "identifier": 162409559, - "sqm_ocr": 69.86, - "price": 2200.0, - "price_per_sqm": 31.49155453764672, - "url": "https://www.rightmove.co.uk/properties/162409559", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Helliwell & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/244k/243986/162409559/243986_33895322_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.564969", - "last_seen": "2025-06-01T22:05:44.561759", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2479, - 51.50602 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162409673", - "info": { - "identifier": 162409673, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162409673", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50692/162409673/50692_P277066_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.951593", - "last_seen": "2025-06-01T22:06:06.660440", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06674, - 51.48231 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.4, - "qmprice": 22.99, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162409697", - "info": { - "identifier": 162409697, - "sqm_ocr": 104.4, - "price": 2400.0, - "price_per_sqm": 22.988505747126435, - "url": "https://www.rightmove.co.uk/properties/162409697", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Aspire", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45021/162409697/45021_CLM180066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.974744", - "last_seen": "2025-06-01T22:05:59.994151", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132509, - 51.465443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.6, - "qmprice": 23.46, - "rooms": 3, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/162410345", - "info": { - "identifier": 162410345, - "sqm_ocr": 110.6, - "price": 2595.0, - "price_per_sqm": 23.462929475587703, - "url": "https://www.rightmove.co.uk/properties/162410345", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Settle", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244682/162410345/244682_33909412_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.713846", - "last_seen": "2025-06-01T22:06:11.943068", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.003568, - 51.573357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.5, - "qmprice": 23.04, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162410483", - "info": { - "identifier": 162410483, - "sqm_ocr": 95.5, - "price": 2200.0, - "price_per_sqm": 23.036649214659686, - "url": "https://www.rightmove.co.uk/properties/162410483", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Trading Places", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9059/162410483/9059_TRD_LYT_LFSYCL_381_536194659_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.788179", - "last_seen": "2025-06-01T22:06:11.872733", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.009566, - 51.569073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162410687", - "info": { - "identifier": 162410687, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162410687", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162410687/96668_249452324052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.527382", - "last_seen": "2025-06-01T22:06:07.990955", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010757, - 51.520996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.9, - "qmprice": 42.67, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162410696", - "info": { - "identifier": 162410696, - "sqm_ocr": 53.9, - "price": 2300.0, - "price_per_sqm": 42.67161410018553, - "url": "https://www.rightmove.co.uk/properties/162410696", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162410696/96668_206118522042024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.159510", - "last_seen": "2025-06-01T22:05:58.972610", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.111905, - 51.497047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162410723", - "info": { - "identifier": 162410723, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162410723", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162410723/96668_231483004122024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.102389", - "last_seen": "2025-06-01T22:05:40.504219", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215932, - 51.531 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.5, - "qmprice": 57.14, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162410867", - "info": { - "identifier": 162410867, - "sqm_ocr": 52.5, - "price": 3000.0, - "price_per_sqm": 57.142857142857146, - "url": "https://www.rightmove.co.uk/properties/162410867", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Sandra Davidson Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13342/162410867/13342_33909449_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.924565", - "last_seen": "2025-06-01T22:06:04.122050", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.019967, - 51.57612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162411113", - "info": { - "identifier": 162411113, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162411113", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "SAB Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261782/162411113/261782_c92b4039-727c-42d6-aaba-8dff1747018c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.144271", - "last_seen": "2025-06-01T22:05:44.757251", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.383779, - 51.507935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.2, - "qmprice": 34.66, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162411215", - "info": { - "identifier": 162411215, - "sqm_ocr": 108.2, - "price": 3750.0, - "price_per_sqm": 34.65804066543438, - "url": "https://www.rightmove.co.uk/properties/162411215", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "JBrown", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239306/162411215/239306_6726_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.857461", - "last_seen": "2025-06-01T22:05:47.306480", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.085349, - 51.5731 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.7, - "qmprice": 32.64, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162411803", - "info": { - "identifier": 162411803, - "sqm_ocr": 69.7, - "price": 2275.0, - "price_per_sqm": 32.639885222381636, - "url": "https://www.rightmove.co.uk/properties/162411803", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/162411803/15951_1327705_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.186017", - "last_seen": "2025-06-01T22:05:52.105092", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284676, - 51.48851 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162412022", - "info": { - "identifier": 162412022, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162412022", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Rosewood Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63096/162412022/63096_DOWNSIDE_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.844389", - "last_seen": "2025-06-01T22:06:13.062662", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21439, - 51.45929 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2288.0, - "url": "https://www.rightmove.co.uk/properties/162412559", - "info": { - "identifier": 162412559, - "sqm_ocr": null, - "price": 2288.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162412559", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162412559/96668_240239428022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.528006", - "last_seen": "2025-06-01T22:06:05.836481", - "price": 2288 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095902, - 51.48046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162412586", - "info": { - "identifier": 162412586, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162412586", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162412586/96668_243104726032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.831650", - "last_seen": "2025-06-01T22:05:58.732699", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.263973, - 51.410812 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162412604", - "info": { - "identifier": 162412604, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162412604", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162412604/96668_245566818042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.259123", - "last_seen": "2025-06-01T22:05:40.007548", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.120198, - 51.467213 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162412709", - "info": { - "identifier": 162412709, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162412709", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162412709/96668_207322302052024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.003616", - "last_seen": "2025-06-01T22:05:38.289415", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.109068, - 51.538296 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162412712", - "info": { - "identifier": 162412712, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162412712", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162412712/96668_52728921032019_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.172018", - "last_seen": "2025-06-01T22:06:13.707667", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165827, - 51.43328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2477.0, - "url": "https://www.rightmove.co.uk/properties/162412733", - "info": { - "identifier": 162412733, - "sqm_ocr": null, - "price": 2477.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162412733", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162412733/96668_249479324052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.246350", - "last_seen": "2025-06-01T22:05:46.747900", - "price": 2477.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.027116, - 51.483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.2, - "qmprice": 34.57, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162412760", - "info": { - "identifier": 162412760, - "sqm_ocr": 75.2, - "price": 2600.0, - "price_per_sqm": 34.57446808510638, - "url": "https://www.rightmove.co.uk/properties/162412760", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162412760/96668_249473724052025_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.046005", - "last_seen": "2025-06-01T22:06:06.483080", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099281, - 51.49582 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.05, - "qmprice": 40.94, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162413228", - "info": { - "identifier": 162413228, - "sqm_ocr": 83.05, - "price": 3400.0, - "price_per_sqm": 40.93919325707405, - "url": "https://www.rightmove.co.uk/properties/162413228", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Jonathan Arron Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69315/162413228/69315_JOW250088_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.178248", - "last_seen": "2025-06-01T22:05:39.585559", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197246, - 51.564907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.22, - "qmprice": 28.13, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162413381", - "info": { - "identifier": 162413381, - "sqm_ocr": 78.22, - "price": 2200.0, - "price_per_sqm": 28.12579902838149, - "url": "https://www.rightmove.co.uk/properties/162413381", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46220/162413381/46220_CLS201883_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.995625", - "last_seen": "2025-06-01T22:05:39.167771", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197117, - 51.577194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.44, - "qmprice": 28.95, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162413495", - "info": { - "identifier": 162413495, - "sqm_ocr": 79.44, - "price": 2300.0, - "price_per_sqm": 28.95266868076536, - "url": "https://www.rightmove.co.uk/properties/162413495", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46220/162413495/46220_GOL230285_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.145073", - "last_seen": "2025-06-01T22:05:38.744657", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197382, - 51.563667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2970.0, - "url": "https://www.rightmove.co.uk/properties/162413522", - "info": { - "identifier": 162413522, - "sqm_ocr": null, - "price": 2970.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162413522", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "One Eighty, Stratford", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262661/162413522/262661_349_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.040838", - "last_seen": "2025-06-01T22:06:07.229834", - "price": 2970.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005499, - 51.535694 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162413663", - "info": { - "identifier": 162413663, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162413663", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "LG New Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80511/162413663/80511_kew_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.625840", - "last_seen": "2025-06-01T22:06:04.413943", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27803, - 51.47814 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.3, - "qmprice": 20.89, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162413666", - "info": { - "identifier": 162413666, - "sqm_ocr": 117.3, - "price": 2450.0, - "price_per_sqm": 20.886615515771528, - "url": "https://www.rightmove.co.uk/properties/162413666", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253856/162413666/253856_1327740_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.574554", - "last_seen": "2025-06-01T22:06:01.219312", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138244, - 51.400394 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162413693", - "info": { - "identifier": 162413693, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162413693", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Royal Arsenal Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13540/162413693/13540_102719000557_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.767293", - "last_seen": "2025-06-01T22:05:46.126791", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0728, - 51.49126 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162413828", - "info": { - "identifier": 162413828, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162413828", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Prime London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/269k/268739/162413828/268739_33766929_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.348919", - "last_seen": "2025-06-01T22:06:10.803626", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064106, - 51.50837 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162413846", - "info": { - "identifier": 162413846, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162413846", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "LG New Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80511/162413846/80511_hoptonhouse_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.100475", - "last_seen": "2025-06-01T22:05:59.820690", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13096, - 51.42625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.6, - "qmprice": 53.57, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162413852", - "info": { - "identifier": 162413852, - "sqm_ocr": 61.6, - "price": 3300.0, - "price_per_sqm": 53.57142857142857, - "url": "https://www.rightmove.co.uk/properties/162413852", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99755/162413852/99755_2588150_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.459092", - "last_seen": "2025-06-01T22:06:15.591362", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164167, - 51.52355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.2, - "qmprice": 56.82, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162414155", - "info": { - "identifier": 162414155, - "sqm_ocr": 57.2, - "price": 3250.0, - "price_per_sqm": 56.81818181818181, - "url": "https://www.rightmove.co.uk/properties/162414155", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84830/162414155/84830_33909543_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.268104", - "last_seen": "2025-06-01T22:05:57.597195", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194684, - 51.494568 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162414266", - "info": { - "identifier": 162414266, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162414266", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "One Eighty, Stratford", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262661/162414266/262661_344_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.037288", - "last_seen": "2025-06-01T22:06:07.439257", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005454, - 51.53567 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162414524", - "info": { - "identifier": 162414524, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162414524", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162414524/96668_224367530092024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.267861", - "last_seen": "2025-06-01T22:05:39.499570", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.233852, - 51.578487 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162414599", - "info": { - "identifier": 162414599, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162414599", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162414599/96668_249170221052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.631196", - "last_seen": "2025-06-01T22:06:11.928088", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023152, - 51.581608 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162414644", - "info": { - "identifier": 162414644, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162414644", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162414644/96668_26093020072017_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.678479", - "last_seen": "2025-06-01T22:06:08.321992", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01947, - 51.48701 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162414911", - "info": { - "identifier": 162414911, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162414911", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Prime London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/269k/268739/162414911/268739_33831412_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.125865", - "last_seen": "2025-06-01T22:05:48.899523", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.234559, - 51.492577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.8, - "qmprice": 44.07, - "rooms": 2, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/162415478", - "info": { - "identifier": 162415478, - "sqm_ocr": 70.8, - "price": 3120.0, - "price_per_sqm": 44.067796610169495, - "url": "https://www.rightmove.co.uk/properties/162415478", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/162415478/97423_CEI240201_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:08.671206", - "last_seen": "2025-06-01T22:06:08.671206", - "price": 3120 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055591, - 51.51846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.2, - "qmprice": 55.83, - "rooms": 2, - "total_price": 3640.0, - "url": "https://www.rightmove.co.uk/properties/162415739", - "info": { - "identifier": 162415739, - "sqm_ocr": 65.2, - "price": 3640.0, - "price_per_sqm": 55.828220858895705, - "url": "https://www.rightmove.co.uk/properties/162415739", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/162415739/97423_CEI243286_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.111338", - "last_seen": "2025-06-01T22:05:47.264056", - "price": 3640 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07315, - 51.531544 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.5, - "qmprice": 47.7, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162415865", - "info": { - "identifier": 162415865, - "sqm_ocr": 79.5, - "price": 3792.0, - "price_per_sqm": 47.698113207547166, - "url": "https://www.rightmove.co.uk/properties/162415865", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/162415865/97423_CEI241746_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.514666", - "last_seen": "2025-06-01T22:05:53.424811", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094474, - 51.521626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162416177", - "info": { - "identifier": 162416177, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162416177", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162416177/96668_245673419042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.811131", - "last_seen": "2025-06-01T17:38:53.420849", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105215, - 51.55518 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 49.24, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162416405", - "info": { - "identifier": 162416405, - "sqm_ocr": 66.0, - "price": 3250.0, - "price_per_sqm": 49.24242424242424, - "url": "https://www.rightmove.co.uk/properties/162416405", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Proper Local", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/159k/158741/162416405/158741_10403654_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.821235", - "last_seen": "2025-06-01T22:05:41.969663", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14014, - 51.52716 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.2, - "qmprice": 33.59, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162416618", - "info": { - "identifier": 162416618, - "sqm_ocr": 104.2, - "price": 3500.0, - "price_per_sqm": 33.589251439539346, - "url": "https://www.rightmove.co.uk/properties/162416618", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Proper Local", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/159k/158741/162416618/158741_12048188_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.226714", - "last_seen": "2025-06-01T22:06:03.338227", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.025272, - 51.49869 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.64, - "qmprice": 26.19, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162417476", - "info": { - "identifier": 162417476, - "sqm_ocr": 91.64, - "price": 2400.0, - "price_per_sqm": 26.189436927106065, - "url": "https://www.rightmove.co.uk/properties/162417476", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Madison Brook", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49239/162417476/49239_33909587_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:43.995368", - "last_seen": "2025-06-01T22:05:38.305974", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.106803, - 51.52184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162417638", - "info": { - "identifier": 162417638, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162417638", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hub Of Homes", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281309/162417638/281309_28194_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.076971", - "last_seen": "2025-06-01T22:05:38.227858", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.09504, - 51.54485 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162417644", - "info": { - "identifier": 162417644, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162417644", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162417644/96668_249453724052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.906586", - "last_seen": "2025-06-01T22:06:13.015202", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197723, - 51.45178 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.96, - "qmprice": 32.16, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162417674", - "info": { - "identifier": 162417674, - "sqm_ocr": 83.96, - "price": 2700.0, - "price_per_sqm": 32.15817055740829, - "url": "https://www.rightmove.co.uk/properties/162417674", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162417674/96668_249492824052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.712796", - "last_seen": "2025-06-01T17:38:47.647926", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.298995, - 51.51363 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 43.67, - "rooms": 2, - "total_price": 2882.0, - "url": "https://www.rightmove.co.uk/properties/162418322", - "info": { - "identifier": 162418322, - "sqm_ocr": 66.0, - "price": 2882.0, - "price_per_sqm": 43.666666666666664, - "url": "https://www.rightmove.co.uk/properties/162418322", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/29k/28238/162418322/28238_CEI241950_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.626564", - "last_seen": "2025-06-01T22:06:07.300104", - "price": 2881 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010637, - 51.541294 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.42, - "qmprice": 36.73, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/162418574", - "info": { - "identifier": 162418574, - "sqm_ocr": 91.42, - "price": 3358.0, - "price_per_sqm": 36.7315685845548, - "url": "https://www.rightmove.co.uk/properties/162418574", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Liv International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54583/162418574/54583_LIVH_018036_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.616409", - "last_seen": "2025-06-01T22:05:42.857071", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172179, - 51.543167 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162418916", - "info": { - "identifier": 162418916, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162418916", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162418916/96668_249128721052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.799586", - "last_seen": "2025-06-01T22:06:13.353791", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.216275, - 51.457794 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3495.0, - "url": "https://www.rightmove.co.uk/properties/162418931", - "info": { - "identifier": 162418931, - "sqm_ocr": null, - "price": 3495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162418931", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162418931/96668_249498024052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.236856", - "last_seen": "2025-06-01T22:06:06.146992", - "price": 3495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095495, - 51.483818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162423617", - "info": { - "identifier": 162423617, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162423617", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162423617/96668_248891419052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.127453", - "last_seen": "2025-06-01T22:05:57.824130", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.160716, - 51.49202 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162423671", - "info": { - "identifier": 162423671, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162423671", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Jubilee International", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266501/162423671/266501_R111222121_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.211423", - "last_seen": "2025-06-01T22:06:09.598144", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015903, - 51.496643 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162425843", - "info": { - "identifier": 162425843, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162425843", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162425843/96668_249342823052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.110774", - "last_seen": "2025-06-01T22:05:57.397819", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224051, - 51.519985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162427643", - "info": { - "identifier": 162427643, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162427643", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Touchstone CPS", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/226k/225275/162427643/225275_26555_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.893851", - "last_seen": "2025-06-01T22:06:07.444479", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0202, - 51.54592 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.9, - "qmprice": 26.4, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162428012", - "info": { - "identifier": 162428012, - "sqm_ocr": 90.9, - "price": 2400.0, - "price_per_sqm": 26.402640264026402, - "url": "https://www.rightmove.co.uk/properties/162428012", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162428012/96668_106236021032021_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.309427", - "last_seen": "2025-06-01T22:06:03.578220", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.023701, - 51.510216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162428024", - "info": { - "identifier": 162428024, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162428024", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162428024/96668_247959111052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.476120", - "last_seen": "2025-06-01T22:06:00.245127", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107507, - 51.43453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162428039", - "info": { - "identifier": 162428039, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162428039", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162428039/96668_249525725052025_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.322797", - "last_seen": "2025-06-01T22:06:03.606404", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.041448, - 51.524734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162428051", - "info": { - "identifier": 162428051, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162428051", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Metro Village Ltd", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93680/162428051/93680_TOH250056_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.197961", - "last_seen": "2025-06-01T22:06:06.066659", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.062522, - 51.489616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 33.8, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162428069", - "info": { - "identifier": 162428069, - "sqm_ocr": 71.0, - "price": 2400.0, - "price_per_sqm": 33.80281690140845, - "url": "https://www.rightmove.co.uk/properties/162428069", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "McS Mckenzie Sakowicz Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244001/162428069/244001_McS12tm_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.991954", - "last_seen": "2025-06-01T22:06:15.390117", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17405, - 51.52503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162428102", - "info": { - "identifier": 162428102, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162428102", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/162428102/252785_33909659_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.941757", - "last_seen": "2025-06-01T22:05:47.776112", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074946, - 51.53003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2372.0, - "url": "https://www.rightmove.co.uk/properties/162428339", - "info": { - "identifier": 162428339, - "sqm_ocr": null, - "price": 2372.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162428339", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Allsop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284159/162428339/284159_514Alameda_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.045270", - "last_seen": "2025-06-01T22:05:40.570583", - "price": 2372.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28034, - 51.55829 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162428396", - "info": { - "identifier": 162428396, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162428396", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/162428396/252785_33909675_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.101036", - "last_seen": "2025-06-01T22:05:40.481894", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277786, - 51.561596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162428438", - "info": { - "identifier": 162428438, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162428438", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/162428438/252785_33909677_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.827710", - "last_seen": "2025-06-01T22:05:41.254019", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277707, - 51.561638 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162428489", - "info": { - "identifier": 162428489, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162428489", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162428489/270461_JAX250519_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.139327", - "last_seen": "2025-06-01T17:39:04.622910", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068802, - 51.514584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 39.56, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162428513", - "info": { - "identifier": 162428513, - "sqm_ocr": 91.0, - "price": 3600.0, - "price_per_sqm": 39.56043956043956, - "url": "https://www.rightmove.co.uk/properties/162428513", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162428513/270461_JAX250522_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.620275", - "last_seen": "2025-06-01T22:06:10.479059", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068802, - 51.514584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162428537", - "info": { - "identifier": 162428537, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162428537", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162428537/270461_JAX250523_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.377434, - 51.504986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/162428558", - "info": { - "identifier": 162428558, - "sqm_ocr": null, - "price": 3550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162428558", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162428558/270461_JAX250524_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.071058, - 51.513996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162428687", - "info": { - "identifier": 162428687, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162428687", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162428687/270461_JAX250527_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.029334, - 51.499992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 29.41, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162428825", - "info": { - "identifier": 162428825, - "sqm_ocr": 85.0, - "price": 2500.0, - "price_per_sqm": 29.41176470588235, - "url": "https://www.rightmove.co.uk/properties/162428825", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/162428825/32793_35627_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.142640", - "last_seen": "2025-06-01T22:05:40.336516", - "price": 2500 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23441, - 51.56714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 45.24, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162428912", - "info": { - "identifier": 162428912, - "sqm_ocr": 84.0, - "price": 3800.0, - "price_per_sqm": 45.23809523809524, - "url": "https://www.rightmove.co.uk/properties/162428912", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162428912/270461_JAX250529_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.069052, - 51.513756 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.5, - "qmprice": 36.36, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162429101", - "info": { - "identifier": 162429101, - "sqm_ocr": 60.5, - "price": 2200.0, - "price_per_sqm": 36.36363636363637, - "url": "https://www.rightmove.co.uk/properties/162429101", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162429101/270461_JAX250531_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.245947", - "last_seen": "2025-06-01T22:06:03.398338", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.033854, - 51.5015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162429155", - "info": { - "identifier": 162429155, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162429155", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162429155/270461_JAX250533_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.350038", - "last_seen": "2025-06-01T20:19:58.859201", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068802, - 51.514584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162429227", - "info": { - "identifier": 162429227, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162429227", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162429227/96668_245915222042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.267163", - "last_seen": "2025-06-01T22:06:11.146602", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024897, - 51.492348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162429362", - "info": { - "identifier": 162429362, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162429362", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162429362/270461_JAX250535_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.029334, - 51.499992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162429389", - "info": { - "identifier": 162429389, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162429389", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162429389/270461_JAX250536_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.291933", - "last_seen": "2025-06-01T22:05:44.009893", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.377434, - 51.504986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162429446", - "info": { - "identifier": 162429446, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162429446", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162429446/270461_JAX250538_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.643118", - "last_seen": "2025-06-01T22:06:09.698415", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075832, - 51.517105 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162429479", - "info": { - "identifier": 162429479, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162429479", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162429479/270461_JAX250539_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2202", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.242905", - "last_seen": "2025-06-01T22:06:09.593948", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06878, - 51.514313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3695.0, - "url": "https://www.rightmove.co.uk/properties/162429485", - "info": { - "identifier": 162429485, - "sqm_ocr": null, - "price": 3695.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162429485", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162429485/270461_JAX250540_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.406747", - "last_seen": "2025-06-01T22:06:09.572154", - "price": 3695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068985, - 51.514637 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162429533", - "info": { - "identifier": 162429533, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162429533", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162429533/270461_JAX250541_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.068802, - 51.514584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162429551", - "info": { - "identifier": 162429551, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162429551", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162429551/96668_249541825052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.136451, - 51.56894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162429623", - "info": { - "identifier": 162429623, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162429623", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162429623/270461_JAX250544_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.770716", - "last_seen": "2025-06-01T22:06:11.847435", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.002157, - 51.562645 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162429722", - "info": { - "identifier": 162429722, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162429722", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162429722/96668_248587616052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.797066", - "last_seen": "2025-06-01T22:06:03.182370", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.010835, - 51.51273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162429803", - "info": { - "identifier": 162429803, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162429803", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "The Property Shop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167138/162429803/167138_TPR1001082_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.520522", - "last_seen": "2025-06-01T22:05:38.459551", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22807, - 51.57451 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162430007", - "info": { - "identifier": 162430007, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162430007", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162430007/96668_220322926082024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.019687, - 51.56392 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162430019", - "info": { - "identifier": 162430019, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162430019", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "Let agreed", - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162430019/238265_L17412_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.067173, - 51.475704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3770.0, - "url": "https://www.rightmove.co.uk/properties/162430058", - "info": { - "identifier": 162430058, - "sqm_ocr": null, - "price": 3770.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162430058", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162430058/96668_249461124052025_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.172279", - "last_seen": "2025-06-01T22:05:42.566664", - "price": 3770.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193126, - 51.55743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2835.0, - "url": "https://www.rightmove.co.uk/properties/162430718", - "info": { - "identifier": 162430718, - "sqm_ocr": null, - "price": 2835.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162430718", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162430718/96668_249553925052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.192897", - "last_seen": "2025-06-01T22:05:59.012730", - "price": 2835.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141083, - 51.4472 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162430721", - "info": { - "identifier": 162430721, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162430721", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162430721/96668_147228219082022_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.043206", - "last_seen": "2025-06-01T22:05:51.711263", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.371348, - 51.45784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.33, - "qmprice": 31.15, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162430874", - "info": { - "identifier": 162430874, - "sqm_ocr": 104.33, - "price": 3250.0, - "price_per_sqm": 31.151154988977286, - "url": "https://www.rightmove.co.uk/properties/162430874", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Loney Miller Limited", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/188k/187115/162430874/187115_33909748_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.032500", - "last_seen": "2025-06-01T22:06:13.011319", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203885, - 51.442284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162430931", - "info": { - "identifier": 162430931, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162430931", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162430931/96668_247665908052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.691411", - "last_seen": "2025-06-01T22:06:14.148380", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147461, - 51.43929 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.1, - "qmprice": 33.09, - "rooms": 2, - "total_price": 2816.0, - "url": "https://www.rightmove.co.uk/properties/162430958", - "info": { - "identifier": 162430958, - "sqm_ocr": 85.1, - "price": 2816.0, - "price_per_sqm": 33.090481786133964, - "url": "https://www.rightmove.co.uk/properties/162430958", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Unique Property Company", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91220/162430958/91220_P66_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.340412", - "last_seen": "2025-06-01T20:19:58.839765", - "price": 2816.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05779, - 51.52002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162430964", - "info": { - "identifier": 162430964, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162430964", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Way of Life (Balfron Tower) LLP", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267971/162430964/267971_EVER-2679712y10W5xpjrZXuBpo2Zf1PnbFzuq03TmSs4FjClgBCBtJ6JfBaWTXbeewm_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.359267", - "last_seen": "2025-06-01T20:19:58.879938", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010127, - 51.513493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162431030", - "info": { - "identifier": 162431030, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162431030", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162431030/238265_L109847_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.699115", - "last_seen": "2025-06-01T22:05:59.229301", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117794, - 51.487507 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162431318", - "info": { - "identifier": 162431318, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162431318", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Lakin & Co", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201140/162431318/201140_33909765_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.487982", - "last_seen": "2025-06-01T22:05:51.176046", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.445033, - 51.56934 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162431363", - "info": { - "identifier": 162431363, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162431363", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "Gibson Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/178k/177572/162431363/177572_151515_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.266815", - "last_seen": "2025-06-01T22:05:59.180334", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12858, - 51.44914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162431501", - "info": { - "identifier": 162431501, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162431501", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 7, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162431501/96668_247614607052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.854845", - "last_seen": "2025-06-01T22:05:44.576829", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265088, - 51.52067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 41.03, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162432650", - "info": { - "identifier": 162432650, - "sqm_ocr": 78.0, - "price": 3200.0, - "price_per_sqm": 41.02564102564103, - "url": "https://www.rightmove.co.uk/properties/162432650", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/162432650/272819_33909770_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.836811", - "last_seen": "2025-06-01T22:05:58.922660", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303404, - 51.4085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.7, - "qmprice": 36.51, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162433946", - "info": { - "identifier": 162433946, - "sqm_ocr": 76.7, - "price": 2800.0, - "price_per_sqm": 36.50586701434159, - "url": "https://www.rightmove.co.uk/properties/162433946", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/162433946/107533_1318755_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.249485", - "last_seen": "2025-06-01T22:05:46.756055", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.009684, - 51.48499 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 152.7, - "qmprice": 18.01, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162434111", - "info": { - "identifier": 162434111, - "sqm_ocr": 152.7, - "price": 2750.0, - "price_per_sqm": 18.009168303863788, - "url": "https://www.rightmove.co.uk/properties/162434111", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9205/162434111/9205_100653003168_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.618134", - "last_seen": "2025-06-01T22:05:43.612839", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10662, - 51.34672 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162434144", - "info": { - "identifier": 162434144, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162434144", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162434144/96668_154181304112022_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.250862", - "last_seen": "2025-06-01T22:05:46.750635", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005311, - 51.48217 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 143.13, - "qmprice": 27.95, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162434189", - "info": { - "identifier": 162434189, - "sqm_ocr": 143.13, - "price": 4000.0, - "price_per_sqm": 27.946621952071546, - "url": "https://www.rightmove.co.uk/properties/162434189", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JONES DAVIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205322/162434189/205322_Graces_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.042793", - "last_seen": "2025-06-01T22:06:06.496884", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0836, - 51.4717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3670.0, - "url": "https://www.rightmove.co.uk/properties/162434261", - "info": { - "identifier": 162434261, - "sqm_ocr": null, - "price": 3670.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162434261", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/162434261/78429_LON-575_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.761286", - "last_seen": "2025-06-01T22:05:53.048367", - "price": 3670.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10567, - 51.52296 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.13, - "qmprice": 39.68, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162434300", - "info": { - "identifier": 162434300, - "sqm_ocr": 78.13, - "price": 3100.0, - "price_per_sqm": 39.67746064251888, - "url": "https://www.rightmove.co.uk/properties/162434300", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162434300/87187_71878_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.720026", - "last_seen": "2025-06-01T22:05:58.667859", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303443, - 51.40845 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3790.0, - "url": "https://www.rightmove.co.uk/properties/162434348", - "info": { - "identifier": 162434348, - "sqm_ocr": null, - "price": 3790.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162434348", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/162434348/78429_LON-63_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.274911", - "last_seen": "2025-06-01T22:05:42.441616", - "price": 3790.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13349, - 51.51936 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162434651", - "info": { - "identifier": 162434651, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162434651", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/162434651/249692_RL4643_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.540475", - "last_seen": "2025-06-01T22:05:42.947403", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125013, - 51.526466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.3, - "qmprice": 58.73, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162434786", - "info": { - "identifier": 162434786, - "sqm_ocr": 61.3, - "price": 3600.0, - "price_per_sqm": 58.72756933115824, - "url": "https://www.rightmove.co.uk/properties/162434786", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162434786/87187_72043_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.677103", - "last_seen": "2025-06-01T22:05:55.838546", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095112, - 51.528927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162435644", - "info": { - "identifier": 162435644, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162435644", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/162435644/272819_33909817_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.766309", - "last_seen": "2025-06-01T22:05:58.949483", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302904, - 51.40844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162436079", - "info": { - "identifier": 162436079, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162436079", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Jake Charles Property", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83112/162436079/83112_33909828_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.518164", - "last_seen": "2025-06-01T22:05:38.452211", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178784, - 51.61285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162436559", - "info": { - "identifier": 162436559, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162436559", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162436559/96668_249501324052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.281458", - "last_seen": "2025-06-01T22:06:04.192025", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.231444, - 51.48676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162436583", - "info": { - "identifier": 162436583, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162436583", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162436583/96668_249596526052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.140429", - "last_seen": "2025-06-01T22:05:59.594799", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10132, - 51.4679 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162436592", - "info": { - "identifier": 162436592, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162436592", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162436592/96668_249514024052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.243032", - "last_seen": "2025-06-01T22:05:50.982942", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.183829, - 51.58266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162436772", - "info": { - "identifier": 162436772, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162436772", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84806/162436772/84806_33909848_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.504157", - "last_seen": "2025-06-01T22:06:04.807619", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.282821, - 51.46537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.2, - "qmprice": 40.77, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162437072", - "info": { - "identifier": 162437072, - "sqm_ocr": 93.2, - "price": 3800.0, - "price_per_sqm": 40.772532188841204, - "url": "https://www.rightmove.co.uk/properties/162437072", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84800/162437072/84800_33900073_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.630916", - "last_seen": "2025-06-01T22:05:58.793796", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303082, - 51.407986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162437270", - "info": { - "identifier": 162437270, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162437270", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162437270/181787_181787_1084_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.350876", - "last_seen": "2025-06-01T22:05:59.503188", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11165, - 51.48987 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.28, - "qmprice": 33.7, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162437378", - "info": { - "identifier": 162437378, - "sqm_ocr": 65.28, - "price": 2200.0, - "price_per_sqm": 33.700980392156865, - "url": "https://www.rightmove.co.uk/properties/162437378", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/162437378/51465_6826f6cca25d2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.431571", - "last_seen": "2025-06-01T22:06:01.709874", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200494, - 51.41997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.8, - "qmprice": 33.88, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162437504", - "info": { - "identifier": 162437504, - "sqm_ocr": 67.8, - "price": 2297.0, - "price_per_sqm": 33.87905604719764, - "url": "https://www.rightmove.co.uk/properties/162437504", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/162437504/84791_33909880_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.011356", - "last_seen": "2025-06-01T22:05:44.938770", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.285658, - 51.512066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/162437558", - "info": { - "identifier": 162437558, - "sqm_ocr": null, - "price": 2747.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162437558", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162437558/181787_181787_1085_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.923658", - "last_seen": "2025-06-01T22:06:06.744639", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08121, - 51.491 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162437630", - "info": { - "identifier": 162437630, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162437630", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162437630/96668_247688108052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.320096", - "last_seen": "2025-06-01T22:06:12.261804", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212356, - 51.45856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3289.0, - "url": "https://www.rightmove.co.uk/properties/162437663", - "info": { - "identifier": 162437663, - "sqm_ocr": null, - "price": 3289.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162437663", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162437663/96668_249521425052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.797285", - "last_seen": "2025-06-01T22:05:56.448902", - "price": 3289 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209497, - 51.47606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.8, - "qmprice": 32.82, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162437753", - "info": { - "identifier": 162437753, - "sqm_ocr": 83.8, - "price": 2750.0, - "price_per_sqm": 32.81622911694511, - "url": "https://www.rightmove.co.uk/properties/162437753", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230516/162437753/230516_LBA150685_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.648637", - "last_seen": "2025-06-01T22:05:59.397047", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11393, - 51.49089 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.96, - "qmprice": 44.33, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162439493", - "info": { - "identifier": 162439493, - "sqm_ocr": 78.96, - "price": 3500.0, - "price_per_sqm": 44.326241134751776, - "url": "https://www.rightmove.co.uk/properties/162439493", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Wellington Estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288956/162439493/288956_33909920_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.491544", - "last_seen": "2025-06-01T22:06:15.332155", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163619, - 51.525635 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.88, - "qmprice": 35.53, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162439736", - "info": { - "identifier": 162439736, - "sqm_ocr": 92.88, - "price": 3300.0, - "price_per_sqm": 35.5297157622739, - "url": "https://www.rightmove.co.uk/properties/162439736", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36308/162439736/36308_HAR130661_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.461036", - "last_seen": "2025-06-01T22:05:50.012363", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10255, - 51.57858 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/162440000", - "info": { - "identifier": 162440000, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162440000", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Live London Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141884/162440000/141884_21hamilton_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.659880", - "last_seen": "2025-06-01T22:05:39.714515", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21123, - 51.57318 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162441017", - "info": { - "identifier": 162441017, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162441017", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Visum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35298/162441017/35298_33104_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.450392", - "last_seen": "2025-06-01T22:05:46.439992", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.068505, - 51.439342 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.5, - "qmprice": 35.95, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162442157", - "info": { - "identifier": 162442157, - "sqm_ocr": 76.5, - "price": 2750.0, - "price_per_sqm": 35.947712418300654, - "url": "https://www.rightmove.co.uk/properties/162442157", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Conran Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17519/162442157/17519_GRE180090_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.083224", - "last_seen": "2025-06-01T22:06:00.642188", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009109, - 51.4698 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2165.0, - "url": "https://www.rightmove.co.uk/properties/162442316", - "info": { - "identifier": 162442316, - "sqm_ocr": null, - "price": 2165.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162442316", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "One Eighty, Stratford", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262661/162442316/262661_338_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.352145", - "last_seen": "2025-06-01T22:06:07.468456", - "price": 2165.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005499, - 51.53569 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162442415", - "info": { - "identifier": 162442415, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162442415", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/162442415/82537_33909967_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.054990", - "last_seen": "2025-06-01T20:19:57.178825", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023061, - 51.507797 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.81, - "qmprice": 25.82, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/162442418", - "info": { - "identifier": 162442418, - "sqm_ocr": 92.81, - "price": 2396.0, - "price_per_sqm": 25.816183600905074, - "url": "https://www.rightmove.co.uk/properties/162442418", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/162442418/82537_33903525_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.048976", - "last_seen": "2025-06-01T20:19:57.176200", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014787, - 51.48661 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.81, - "qmprice": 25.82, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/162442439", - "info": { - "identifier": 162442439, - "sqm_ocr": 92.81, - "price": 2396.0, - "price_per_sqm": 25.816183600905074, - "url": "https://www.rightmove.co.uk/properties/162442439", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/162442439/198539_33903670_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.993087", - "last_seen": "2025-06-01T20:19:57.090000", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014787, - 51.48661 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.48, - "qmprice": 34.85, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162442442", - "info": { - "identifier": 162442442, - "sqm_ocr": 77.48, - "price": 2700.0, - "price_per_sqm": 34.84770263293753, - "url": "https://www.rightmove.co.uk/properties/162442442", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/162442442/198539_33909968_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.981159", - "last_seen": "2025-06-01T20:19:57.056339", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018096, - 51.498302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162442484", - "info": { - "identifier": 162442484, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162442484", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162442484/96668_247396406052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.959470", - "last_seen": "2025-06-01T22:05:57.671340", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199, - 51.49211 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162442511", - "info": { - "identifier": 162442511, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162442511", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162442511/96668_249320122052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.348067", - "last_seen": "2025-06-01T22:06:12.298804", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17199, - 51.458107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162442547", - "info": { - "identifier": 162442547, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162442547", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kings Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162170/162442547/162170_33909969_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.052012", - "last_seen": "2025-06-01T22:06:02.116240", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005748, - 51.51274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162442556", - "info": { - "identifier": 162442556, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162442556", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162442556/96668_249529625052025_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.662196", - "last_seen": "2025-06-01T22:05:43.329541", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097789, - 51.3681 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162442586", - "info": { - "identifier": 162442586, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162442586", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162442586/96668_249531625052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.570870", - "last_seen": "2025-06-01T22:06:08.028604", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025587, - 51.49599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162442598", - "info": { - "identifier": 162442598, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162442598", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162442598/96668_249541125052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.674431", - "last_seen": "2025-06-01T22:05:55.694857", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118525, - 51.57153 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2725.0, - "url": "https://www.rightmove.co.uk/properties/162442619", - "info": { - "identifier": 162442619, - "sqm_ocr": null, - "price": 2725.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162442619", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162442619/96668_249553625052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.803841", - "last_seen": "2025-06-01T22:05:58.606111", - "price": 2725.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.292119, - 51.39825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/162442895", - "info": { - "identifier": 162442895, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162442895", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162442895/181787_181787_1086_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.123056", - "last_seen": "2025-06-01T22:06:06.387695", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06525, - 51.49029 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162442940", - "info": { - "identifier": 162442940, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162442940", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84785/162442940/84785_33909978_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.912906", - "last_seen": "2025-06-01T22:05:44.182849", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27049, - 51.5188 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.1, - "qmprice": 33.71, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162442946", - "info": { - "identifier": 162442946, - "sqm_ocr": 80.1, - "price": 2700.0, - "price_per_sqm": 33.70786516853933, - "url": "https://www.rightmove.co.uk/properties/162442946", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/242k/241370/162442946/241370_33909979_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.692822", - "last_seen": "2025-06-01T22:06:05.298321", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.063656, - 51.474262 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162442964", - "info": { - "identifier": 162442964, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162442964", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162442964/181787_181787_1087_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.426844", - "last_seen": "2025-06-01T22:06:05.268445", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08793, - 51.49893 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.5, - "qmprice": 31.42, - "rooms": 3, - "total_price": 3975.0, - "url": "https://www.rightmove.co.uk/properties/162443156", - "info": { - "identifier": 162443156, - "sqm_ocr": 126.5, - "price": 3975.0, - "price_per_sqm": 31.42292490118577, - "url": "https://www.rightmove.co.uk/properties/162443156", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/162443156/281129_260501_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.110646", - "last_seen": "2025-06-01T22:05:38.629978", - "price": 3975.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22083, - 51.57143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 41.85, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162443204", - "info": { - "identifier": 162443204, - "sqm_ocr": 69.9, - "price": 2925.0, - "price_per_sqm": 41.84549356223176, - "url": "https://www.rightmove.co.uk/properties/162443204", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/162443204/281129_260502_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.422419", - "last_seen": "2025-06-01T22:05:54.874861", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22111, - 51.57144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.6, - "qmprice": 38.14, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162443219", - "info": { - "identifier": 162443219, - "sqm_ocr": 82.6, - "price": 3150.0, - "price_per_sqm": 38.13559322033898, - "url": "https://www.rightmove.co.uk/properties/162443219", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/162443219/65785_33909985_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.238969", - "last_seen": "2025-06-01T22:06:13.287748", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150491, - 51.44224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.2, - "qmprice": 33.68, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162443279", - "info": { - "identifier": 162443279, - "sqm_ocr": 77.2, - "price": 2600.0, - "price_per_sqm": 33.67875647668394, - "url": "https://www.rightmove.co.uk/properties/162443279", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/162443279/25485_33909989_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.568160", - "last_seen": "2025-06-01T22:05:38.991544", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197374, - 51.5632 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162443321", - "info": { - "identifier": 162443321, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162443321", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "More Homes Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289757/162443321/289757_1026_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.644374", - "last_seen": "2025-06-01T22:06:02.460655", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05002, - 51.51342 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162443432", - "info": { - "identifier": 162443432, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162443432", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162443432/96668_237751005022025_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.405539", - "last_seen": "2025-06-01T20:19:59.039156", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024199, - 51.49217 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162443438", - "info": { - "identifier": 162443438, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162443438", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Your Move", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/32k/31359/162443438/31359_ABB250009_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.593112", - "last_seen": "2025-06-01T22:05:47.101256", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.113541, - 51.49105 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.79, - "qmprice": 34.35, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162443489", - "info": { - "identifier": 162443489, - "sqm_ocr": 104.79, - "price": 3600.0, - "price_per_sqm": 34.35442313197824, - "url": "https://www.rightmove.co.uk/properties/162443489", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162443489/96668_249435323052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.794831", - "last_seen": "2025-06-01T22:06:13.345710", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165526, - 51.478355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/162443492", - "info": { - "identifier": 162443492, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162443492", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Statuum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237224/162443492/237224_403_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.520652", - "last_seen": "2025-06-01T22:06:10.205863", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.031904, - 51.534733 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162443516", - "info": { - "identifier": 162443516, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162443516", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162443516/96668_249557825052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.068356", - "last_seen": "2025-06-01T22:05:44.876888", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.363544, - 51.51046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162443525", - "info": { - "identifier": 162443525, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162443525", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162443525/96668_249186121052025_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.220768", - "last_seen": "2025-06-01T22:05:39.991815", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.123811, - 51.50843 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162443543", - "info": { - "identifier": 162443543, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162443543", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162443543/96668_249538925052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.277133", - "last_seen": "2025-06-01T22:05:39.511661", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199348, - 51.57394 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162443552", - "info": { - "identifier": 162443552, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162443552", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162443552/96668_249567025052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.824614", - "last_seen": "2025-06-01T22:06:03.147736", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012347, - 51.51066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2680.0, - "url": "https://www.rightmove.co.uk/properties/162443588", - "info": { - "identifier": 162443588, - "sqm_ocr": null, - "price": 2680.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162443588", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162443588/96668_241496211032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.207012", - "last_seen": "2025-06-01T22:05:46.840763", - "price": 2680.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.028875, - 51.4584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162443603", - "info": { - "identifier": 162443603, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162443603", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162443603/96668_238561612022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.030173", - "last_seen": "2025-06-01T22:05:38.200218", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.118813, - 51.550247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162444119", - "info": { - "identifier": 162444119, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162444119", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/125k/124141/162444119/124141_33910009_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.548149", - "last_seen": "2025-06-01T22:06:04.566468", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.258542, - 51.469646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.8, - "qmprice": 36.79, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162444209", - "info": { - "identifier": 162444209, - "sqm_ocr": 59.8, - "price": 2200.0, - "price_per_sqm": 36.78929765886288, - "url": "https://www.rightmove.co.uk/properties/162444209", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162444209/96668_241389411032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.029928", - "last_seen": "2025-06-01T22:06:12.766465", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210692, - 51.44344 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162444344", - "info": { - "identifier": 162444344, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162444344", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162444344/96668_249584426052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.452571", - "last_seen": "2025-06-01T22:06:04.899940", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.082968, - 51.47179 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162444830", - "info": { - "identifier": 162444830, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162444830", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Smarthost", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288713/162444830/288713_BondCourt_IMG_27_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.319625", - "last_seen": "2025-06-01T22:05:46.471383", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00345, - 51.48926 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.4, - "qmprice": 34.55, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162444836", - "info": { - "identifier": 162444836, - "sqm_ocr": 98.4, - "price": 3400.0, - "price_per_sqm": 34.55284552845528, - "url": "https://www.rightmove.co.uk/properties/162444836", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Akelius Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102505/162444836/102505_40042-5_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.021785", - "last_seen": "2025-06-01T22:05:47.549719", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05614, - 51.54184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162444971", - "info": { - "identifier": 162444971, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162444971", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/162444971/247697_102708032231_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.952743", - "last_seen": "2025-06-01T17:39:04.470248", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0736, - 51.51758 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162444992", - "info": { - "identifier": 162444992, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162444992", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/162444992/247697_102708030612_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.808484", - "last_seen": "2025-06-01T22:05:54.130019", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10984, - 51.55099 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162445658", - "info": { - "identifier": 162445658, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162445658", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162445658/96668_248992820052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.648907", - "last_seen": "2025-06-01T22:06:14.087339", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.226692, - 51.45405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162445964", - "info": { - "identifier": 162445964, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162445964", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162445964/96668_248754218052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.869409", - "last_seen": "2025-06-01T22:05:47.575109", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080077, - 51.538383 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162445970", - "info": { - "identifier": 162445970, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162445970", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162445970/96668_249557625052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.490167", - "last_seen": "2025-06-01T17:39:06.283700", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206033, - 51.455196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162445991", - "info": { - "identifier": 162445991, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162445991", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162445991/96668_249066620052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.676050", - "last_seen": "2025-06-01T22:05:58.655051", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.274136, - 51.381626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2499.0, - "url": "https://www.rightmove.co.uk/properties/162445994", - "info": { - "identifier": 162445994, - "sqm_ocr": null, - "price": 2499.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162445994", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162445994/96668_249572025052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.443412", - "last_seen": "2025-06-01T22:06:05.842712", - "price": 2499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095495, - 51.483818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162446156", - "info": { - "identifier": 162446156, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162446156", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162446156/96668_244099204042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.321533", - "last_seen": "2025-06-01T22:06:07.822617", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232273, - 51.38311 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162446186", - "info": { - "identifier": 162446186, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162446186", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162446186/96668_249594726052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.374040", - "last_seen": "2025-06-01T22:06:01.346798", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186505, - 51.41942 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 38.7, - "qmprice": 89.15, - "rooms": 3, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162446195", - "info": { - "identifier": 162446195, - "sqm_ocr": 38.7, - "price": 3450.0, - "price_per_sqm": 89.14728682170542, - "url": "https://www.rightmove.co.uk/properties/162446195", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162446195/96668_178798003082023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.041865", - "last_seen": "2025-06-01T22:05:47.559348", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.085408, - 51.527195 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162446240", - "info": { - "identifier": 162446240, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162446240", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 6, - "status": null, - "last_seen": 0, - "agency": "Wren & co Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81351/162446240/81351_wren_641164504_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.261810", - "last_seen": "2025-06-01T22:06:15.837848", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201423, - 51.53153 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2340.0, - "url": "https://www.rightmove.co.uk/properties/162446720", - "info": { - "identifier": 162446720, - "sqm_ocr": null, - "price": 2340.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162446720", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "CHAMPS PROPERTY", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287132/162446720/287132_champs_504211922_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.625914", - "last_seen": "2025-06-01T22:05:39.658688", - "price": 2340 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.243584, - 51.592148 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162446954", - "info": { - "identifier": 162446954, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162446954", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Akelius Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102505/162446954/102505_40123-22_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.486948", - "last_seen": "2025-06-01T22:06:14.987256", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1701, - 51.5337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162446984", - "info": { - "identifier": 162446984, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162446984", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162446984/96668_247872809052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.077589, - 51.53147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162447146", - "info": { - "identifier": 162447146, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162447146", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Residential Links", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289685/162447146/289685_289685-75062_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.628961", - "last_seen": "2025-06-01T22:06:09.037324", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026704, - 51.49282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/162447869", - "info": { - "identifier": 162447869, - "sqm_ocr": null, - "price": 2535.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162447869", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/162447869/169658_343094_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.836774", - "last_seen": "2025-06-01T22:05:46.926270", - "price": 2535 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01322, - 51.495834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.3, - "qmprice": 41.95, - "rooms": 2, - "total_price": 2362.0, - "url": "https://www.rightmove.co.uk/properties/162448094", - "info": { - "identifier": 162448094, - "sqm_ocr": 56.3, - "price": 2362.0, - "price_per_sqm": 41.95381882770871, - "url": "https://www.rightmove.co.uk/properties/162448094", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Monreal Shaw", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/170k/169658/162448094/169658_629144_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.003444", - "last_seen": "2025-06-01T17:39:04.508469", - "price": 2361 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066021, - 51.514694 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3696.0, - "url": "https://www.rightmove.co.uk/properties/162448541", - "info": { - "identifier": 162448541, - "sqm_ocr": null, - "price": 3696.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162448541", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - White City", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260429/162448541/260429_wclbrafpwl2705117_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.972869", - "last_seen": "2025-06-01T22:05:49.409159", - "price": 3696 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22258, - 51.51157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.09, - "qmprice": 30.95, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162450206", - "info": { - "identifier": 162450206, - "sqm_ocr": 71.09, - "price": 2200.0, - "price_per_sqm": 30.94668729779153, - "url": "https://www.rightmove.co.uk/properties/162450206", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/162450206/15951_1324257_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.938308", - "last_seen": "2025-06-01T22:05:52.359663", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.310125, - 51.482674 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.91, - "qmprice": 49.84, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/162450263", - "info": { - "identifier": 162450263, - "sqm_ocr": 73.91, - "price": 3684.0, - "price_per_sqm": 49.84440535786768, - "url": "https://www.rightmove.co.uk/properties/162450263", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/162450263/15942_1324191_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.972899", - "last_seen": "2025-06-01T22:05:58.285695", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193357, - 51.49995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162450266", - "info": { - "identifier": 162450266, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162450266", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162450266/96668_246552628042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.487291", - "last_seen": "2025-06-01T22:05:54.080638", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.126958, - 51.566822 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.1, - "qmprice": 36.73, - "rooms": 2, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/162450284", - "info": { - "identifier": 162450284, - "sqm_ocr": 76.1, - "price": 2795.0, - "price_per_sqm": 36.72798948751643, - "url": "https://www.rightmove.co.uk/properties/162450284", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foreman King", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69401/162450284/69401_7725604_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.022039", - "last_seen": "2025-06-01T22:06:12.748728", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155542, - 51.475483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162450311", - "info": { - "identifier": 162450311, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162450311", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162450311/181787_181787_167_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.944634", - "last_seen": "2025-06-01T22:06:00.384720", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03234, - 51.48515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.7, - "qmprice": 41.88, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162450317", - "info": { - "identifier": 162450317, - "sqm_ocr": 59.7, - "price": 2500.0, - "price_per_sqm": 41.87604690117253, - "url": "https://www.rightmove.co.uk/properties/162450317", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162450317/238265_L109828_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.853257", - "last_seen": "2025-06-01T22:05:48.231121", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221933, - 51.501694 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 36.31, - "rooms": 3, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/162450428", - "info": { - "identifier": 162450428, - "sqm_ocr": 84.0, - "price": 3050.0, - "price_per_sqm": 36.30952380952381, - "url": "https://www.rightmove.co.uk/properties/162450428", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "McMahon & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65019/162450428/65019_646_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.383009", - "last_seen": "2025-06-01T22:06:05.591865", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0716, - 51.471 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162450665", - "info": { - "identifier": 162450665, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162450665", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162450665/96668_164080901032023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.622193", - "last_seen": "2025-06-01T22:05:43.603955", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117584, - 51.401985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.6, - "qmprice": 47.64, - "rooms": 2, - "total_price": 3649.0, - "url": "https://www.rightmove.co.uk/properties/162450692", - "info": { - "identifier": 162450692, - "sqm_ocr": 76.6, - "price": 3649.0, - "price_per_sqm": 47.637075718015666, - "url": "https://www.rightmove.co.uk/properties/162450692", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86531/162450692/86531_P300739_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.646221", - "last_seen": "2025-06-01T22:05:58.778812", - "price": 3648 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30717, - 51.4068 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3420.0, - "url": "https://www.rightmove.co.uk/properties/162450722", - "info": { - "identifier": 162450722, - "sqm_ocr": null, - "price": 3420.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162450722", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/162450722/78429_LON-437_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.479831", - "last_seen": "2025-06-01T22:05:53.193557", - "price": 3420.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09796, - 51.52095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.17, - "qmprice": 45.69, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162450767", - "info": { - "identifier": 162450767, - "sqm_ocr": 83.17, - "price": 3800.0, - "price_per_sqm": 45.68955152098112, - "url": "https://www.rightmove.co.uk/properties/162450767", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Nine Elms", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/197k/196106/162450767/196106_000014519b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.508110", - "last_seen": "2025-06-01T22:05:59.252798", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12827, - 51.48142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.7, - "qmprice": 34.29, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162450926", - "info": { - "identifier": 162450926, - "sqm_ocr": 62.7, - "price": 2150.0, - "price_per_sqm": 34.2902711323764, - "url": "https://www.rightmove.co.uk/properties/162450926", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57991/162450926/57991_KEJ190131_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.027409", - "last_seen": "2025-06-01T22:06:12.974905", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166906, - 51.4242 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3074.0, - "url": "https://www.rightmove.co.uk/properties/162451187", - "info": { - "identifier": 162451187, - "sqm_ocr": null, - "price": 3074.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162451187", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162451187/253604_181B2705_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.694707", - "last_seen": "2025-06-01T22:06:07.568527", - "price": 3074.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00768, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162451205", - "info": { - "identifier": 162451205, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162451205", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/256k/255362/162451205/255362_P161131_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.019999", - "last_seen": "2025-06-01T22:06:00.998084", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01249, - 51.47124 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3155.0, - "url": "https://www.rightmove.co.uk/properties/162451238", - "info": { - "identifier": 162451238, - "sqm_ocr": null, - "price": 3155.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162451238", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162451238/253604_48X2705_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.311215", - "last_seen": "2025-06-01T22:06:07.730998", - "price": 3155.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.4, - "qmprice": 32.5, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162451259", - "info": { - "identifier": 162451259, - "sqm_ocr": 115.4, - "price": 3750.0, - "price_per_sqm": 32.49566724436742, - "url": "https://www.rightmove.co.uk/properties/162451259", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Core London Property Advisors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266807/162451259/266807_RX585303_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.536356", - "last_seen": "2025-06-01T22:05:45.388426", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290387, - 51.50586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3143.0, - "url": "https://www.rightmove.co.uk/properties/162451298", - "info": { - "identifier": 162451298, - "sqm_ocr": null, - "price": 3143.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162451298", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162451298/253604_214B2705_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.363845", - "last_seen": "2025-06-01T22:06:07.470621", - "price": 3143.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162451472", - "info": { - "identifier": 162451472, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162451472", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/256k/255362/162451472/255362_P161130_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.945965", - "last_seen": "2025-06-01T22:06:00.386859", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01306, - 51.47143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/162451502", - "info": { - "identifier": 162451502, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162451502", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162451502/181787_181787_443_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.437328", - "last_seen": "2025-06-01T22:06:05.784180", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08852, - 51.49517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.92, - "qmprice": 29.61, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162451667", - "info": { - "identifier": 162451667, - "sqm_ocr": 70.92, - "price": 2100.0, - "price_per_sqm": 29.61082910321489, - "url": "https://www.rightmove.co.uk/properties/162451667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Southall", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266303/162451667/266303_000018157b_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.396621", - "last_seen": "2025-06-01T22:05:45.100827", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3876, - 51.50689 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.4, - "qmprice": 41.34, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162451730", - "info": { - "identifier": 162451730, - "sqm_ocr": 77.4, - "price": 3200.0, - "price_per_sqm": 41.343669250645995, - "url": "https://www.rightmove.co.uk/properties/162451730", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Rampton Baseley", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89369/162451730/89369_PGL160002_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.555497", - "last_seen": "2025-06-01T22:05:59.731718", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12968, - 51.46279 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/162451742", - "info": { - "identifier": 162451742, - "sqm_ocr": null, - "price": 2747.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162451742", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162451742/181787_181787_864_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.265825", - "last_seen": "2025-06-01T22:06:06.233411", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08852, - 51.49517 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.2, - "qmprice": 31.25, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162451805", - "info": { - "identifier": 162451805, - "sqm_ocr": 83.2, - "price": 2600.0, - "price_per_sqm": 31.25, - "url": "https://www.rightmove.co.uk/properties/162451805", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50719/162451805/50719_33910163_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.591942", - "last_seen": "2025-06-01T22:05:49.312336", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225172, - 51.50553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162451859", - "info": { - "identifier": 162451859, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162451859", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "James Gorey Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/221k/220718/162451859/220718_RX583201_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.137588", - "last_seen": "2025-06-01T22:05:46.240920", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.102917, - 51.491737 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162451961", - "info": { - "identifier": 162451961, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162451961", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/162451961/249692_RL4645_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.754396", - "last_seen": "2025-06-01T22:05:55.101128", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135491, - 51.532448 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 40.03, - "rooms": 2, - "total_price": 2362.0, - "url": "https://www.rightmove.co.uk/properties/162452144", - "info": { - "identifier": 162452144, - "sqm_ocr": 59.0, - "price": 2362.0, - "price_per_sqm": 40.03389830508475, - "url": "https://www.rightmove.co.uk/properties/162452144", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/162452144/80796_55_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.181001", - "last_seen": "2025-06-01T22:05:58.984826", - "price": 2361 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11337, - 51.46553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 34.67, - "rooms": 2, - "total_price": 2427.0, - "url": "https://www.rightmove.co.uk/properties/162452228", - "info": { - "identifier": 162452228, - "sqm_ocr": 70.0, - "price": 2427.0, - "price_per_sqm": 34.67142857142857, - "url": "https://www.rightmove.co.uk/properties/162452228", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/162452228/80796_84_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.675328", - "last_seen": "2025-06-01T22:05:59.381020", - "price": 2426 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12758, - 51.46315 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.7, - "qmprice": 31.4, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162452348", - "info": { - "identifier": 162452348, - "sqm_ocr": 63.7, - "price": 2000.0, - "price_per_sqm": 31.39717425431711, - "url": "https://www.rightmove.co.uk/properties/162452348", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42912/162452348/42912_PUT100284_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.686396", - "last_seen": "2025-06-01T22:06:14.150712", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217681, - 51.451393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162452396", - "info": { - "identifier": 162452396, - "sqm_ocr": null, - "price": 2925.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162452396", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Landstones", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221669/162452396/221669_MRRL0229R_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.331265", - "last_seen": "2025-06-01T22:05:58.473124", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186539, - 51.492657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.4, - "qmprice": 40.8, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162452513", - "info": { - "identifier": 162452513, - "sqm_ocr": 67.4, - "price": 2750.0, - "price_per_sqm": 40.80118694362017, - "url": "https://www.rightmove.co.uk/properties/162452513", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57095/162452513/57095_P297731_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.377612", - "last_seen": "2025-06-01T22:06:12.543625", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22137, - 51.4612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162452522", - "info": { - "identifier": 162452522, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162452522", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Century 21 London Central", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45920/162452522/45920_R210162_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.260947", - "last_seen": "2025-06-01T22:05:59.231583", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113728, - 51.476753 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162452594", - "info": { - "identifier": 162452594, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162452594", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Conran Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17516/162452594/17516_CHA250067_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.393090", - "last_seen": "2025-06-01T22:05:46.132772", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.038748, - 51.47867 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 47.53, - "rooms": 3, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/162452612", - "info": { - "identifier": 162452612, - "sqm_ocr": 62.0, - "price": 2947.0, - "price_per_sqm": 47.53225806451613, - "url": "https://www.rightmove.co.uk/properties/162452612", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/162452612/80796_147_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.756225", - "last_seen": "2025-06-01T22:05:59.546146", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12828, - 51.44941 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.96, - "qmprice": 36.32, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162452663", - "info": { - "identifier": 162452663, - "sqm_ocr": 72.96, - "price": 2650.0, - "price_per_sqm": 36.32127192982456, - "url": "https://www.rightmove.co.uk/properties/162452663", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205358/162452663/205358_CUS012567969_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.804581", - "last_seen": "2025-06-01T22:05:49.810108", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061885, - 51.58988 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3163.0, - "url": "https://www.rightmove.co.uk/properties/162452684", - "info": { - "identifier": 162452684, - "sqm_ocr": null, - "price": 3163.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162452684", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/162452684/80796_552_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.796084", - "last_seen": "2025-06-01T22:05:59.501592", - "price": 3163 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13329, - 51.47134 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.6, - "qmprice": 27.29, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162452699", - "info": { - "identifier": 162452699, - "sqm_ocr": 91.6, - "price": 2500.0, - "price_per_sqm": 27.292576419213976, - "url": "https://www.rightmove.co.uk/properties/162452699", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Charles Henry Peppiatt Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78489/162452699/78489_16422_AGRN_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.665900", - "last_seen": "2025-06-01T22:05:49.798963", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073061, - 51.594547 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.45, - "qmprice": 45.96, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162452789", - "info": { - "identifier": 162452789, - "sqm_ocr": 67.45, - "price": 3100.0, - "price_per_sqm": 45.95997034840622, - "url": "https://www.rightmove.co.uk/properties/162452789", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Parkheath", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72716/162452789/72716_31944282_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.951277", - "last_seen": "2025-06-01T22:05:43.010915", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196862, - 51.551144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162452804", - "info": { - "identifier": 162452804, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162452804", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162452804/238265_L107200_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.191073", - "last_seen": "2025-06-01T22:06:06.061183", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101688, - 51.491024 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.67, - "qmprice": 37.62, - "rooms": 3, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/162452888", - "info": { - "identifier": 162452888, - "sqm_ocr": 87.67, - "price": 3298.0, - "price_per_sqm": 37.618341507927454, - "url": "https://www.rightmove.co.uk/properties/162452888", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3355/162452888/3355_33096236_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.762356", - "last_seen": "2025-06-01T22:05:49.914874", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110075, - 51.5719 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.86, - "qmprice": 44.91, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162453680", - "info": { - "identifier": 162453680, - "sqm_ocr": 77.86, - "price": 3497.0, - "price_per_sqm": 44.91394811199589, - "url": "https://www.rightmove.co.uk/properties/162453680", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "View Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43275/162453680/43275_7767876_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.292650", - "last_seen": "2025-06-01T22:06:08.778560", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071948, - 51.517498 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162454034", - "info": { - "identifier": 162454034, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162454034", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/121k/120061/162454034/120061_HKR070078_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:05:57.140977", - "last_seen": "2025-06-01T22:06:08.167277", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06116, - 51.53112 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 35.82, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162454280", - "info": { - "identifier": 162454280, - "sqm_ocr": 67.0, - "price": 2400.0, - "price_per_sqm": 35.82089552238806, - "url": "https://www.rightmove.co.uk/properties/162454280", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112915/162454280/112915_P301321_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.217041", - "last_seen": "2025-06-01T22:05:46.836311", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01228, - 51.49753 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.39, - "qmprice": 34.06, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162454589", - "info": { - "identifier": 162454589, - "sqm_ocr": 73.39, - "price": 2500.0, - "price_per_sqm": 34.06458645592043, - "url": "https://www.rightmove.co.uk/properties/162454589", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "TRH Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258065/162454589/258065_33910299_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.999660", - "last_seen": "2025-06-01T22:06:00.915326", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037755, - 51.49147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162454661", - "info": { - "identifier": 162454661, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162454661", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50680/162454661/50680_P277069_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.065418", - "last_seen": "2025-06-01T22:06:00.744298", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03248, - 51.42499 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2270.0, - "url": "https://www.rightmove.co.uk/properties/162454733", - "info": { - "identifier": 162454733, - "sqm_ocr": null, - "price": 2270.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162454733", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/162454733/208253_PRL251123_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.382863", - "last_seen": "2025-06-01T22:05:40.414124", - "price": 2270.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.280258, - 51.558357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 38.0, - "qmprice": 85.53, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162454769", - "info": { - "identifier": 162454769, - "sqm_ocr": 38.0, - "price": 3250.0, - "price_per_sqm": 85.52631578947368, - "url": "https://www.rightmove.co.uk/properties/162454769", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77493/162454769/77493_CLL250055_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.429173", - "last_seen": "2025-06-01T22:05:53.222956", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108917, - 51.529507 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162454772", - "info": { - "identifier": 162454772, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162454772", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Lawrence Rand", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46205/162454772/46205_0e442762-1e0e-4aeb-9d96-2a6da19cdbae_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.355981", - "last_seen": "2025-06-01T22:05:51.226211", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.397379, - 51.561577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.1, - "qmprice": 35.03, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162454835", - "info": { - "identifier": 162454835, - "sqm_ocr": 57.1, - "price": 2000.0, - "price_per_sqm": 35.02626970227671, - "url": "https://www.rightmove.co.uk/properties/162454835", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162454835/48101_1327427_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.002097", - "last_seen": "2025-06-01T22:06:02.036017", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.063572, - 51.515953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.79, - "qmprice": 25.44, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162455048", - "info": { - "identifier": 162455048, - "sqm_ocr": 125.79, - "price": 3200.0, - "price_per_sqm": 25.439224103664838, - "url": "https://www.rightmove.co.uk/properties/162455048", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "New Space", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56651/162455048/56651_NSL_007522_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.995318", - "last_seen": "2025-06-01T22:06:01.957236", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.028108, - 51.51186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162455078", - "info": { - "identifier": 162455078, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162455078", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Stoneshaw Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42177/162455078/42177_b8961ddf-4a00-42f7-906d-2d44ccb644c8_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.012413", - "last_seen": "2025-06-01T22:05:38.140667", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.160024, - 51.553722 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 38.66, - "rooms": 2, - "total_price": 2915.0, - "url": "https://www.rightmove.co.uk/properties/162455081", - "info": { - "identifier": 162455081, - "sqm_ocr": 75.4, - "price": 2915.0, - "price_per_sqm": 38.660477453580896, - "url": "https://www.rightmove.co.uk/properties/162455081", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214295/162455081/214295_LCS250094_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.413909", - "last_seen": "2025-06-01T22:05:39.052937", - "price": 2915.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222233, - 51.570724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/162455123", - "info": { - "identifier": 162455123, - "sqm_ocr": null, - "price": 3397.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162455123", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162455123/181787_181787_666_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.451432", - "last_seen": "2025-06-01T22:06:05.459377", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06852, - 51.48773 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 42.95, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162455180", - "info": { - "identifier": 162455180, - "sqm_ocr": 78.0, - "price": 3350.0, - "price_per_sqm": 42.94871794871795, - "url": "https://www.rightmove.co.uk/properties/162455180", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/162455180/264326_Y70663_1_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.267328", - "last_seen": "2025-06-01T22:05:48.533109", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2367, - 51.498295 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 32.94, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162455186", - "info": { - "identifier": 162455186, - "sqm_ocr": 85.0, - "price": 2800.0, - "price_per_sqm": 32.94117647058823, - "url": "https://www.rightmove.co.uk/properties/162455186", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77508/162455186/77508_BAN170130_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.522659", - "last_seen": "2025-06-01T22:06:05.625928", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.082964, - 51.50402 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162455588", - "info": { - "identifier": 162455588, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162455588", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48997/162455588/48997_CLV220040_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.349708", - "last_seen": "2025-06-01T22:05:44.393909", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267408, - 51.50319 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162455609", - "info": { - "identifier": 162455609, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162455609", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Route Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281087/162455609/281087_14591_008433_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.433491", - "last_seen": "2025-06-01T22:05:48.005792", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07281, - 51.545563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162455684", - "info": { - "identifier": 162455684, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162455684", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/162455684/272819_33910357_IMG_00_0000_max_656x437.png", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.780380", - "last_seen": "2025-06-01T22:06:06.799113", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097386, - 51.491768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162455804", - "info": { - "identifier": 162455804, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162455804", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "relocate-me.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33012/162455804/33012_27304_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.592745", - "last_seen": "2025-06-01T22:05:42.896180", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120899, - 51.529404 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.55, - "qmprice": 31.46, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162456254", - "info": { - "identifier": 162456254, - "sqm_ocr": 98.55, - "price": 3100.0, - "price_per_sqm": 31.45611364789447, - "url": "https://www.rightmove.co.uk/properties/162456254", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247496/162456254/247496_P290350_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.418652", - "last_seen": "2025-06-01T22:06:05.527134", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0769, - 51.45298 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2362.0, - "url": "https://www.rightmove.co.uk/properties/162456317", - "info": { - "identifier": 162456317, - "sqm_ocr": null, - "price": 2362.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162456317", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/162456317/96542_ROCH_000051_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.826759", - "last_seen": "2025-06-01T22:05:54.170076", - "price": 2361 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120062, - 51.56784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162456389", - "info": { - "identifier": 162456389, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162456389", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162456389/181787_181787_166_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.051534", - "last_seen": "2025-06-01T22:06:07.008506", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0626, - 51.49159 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.3, - "qmprice": 41.14, - "rooms": 3, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/162456506", - "info": { - "identifier": 162456506, - "sqm_ocr": 75.3, - "price": 3098.0, - "price_per_sqm": 41.14209827357238, - "url": "https://www.rightmove.co.uk/properties/162456506", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25214/162456506/25214_33910411_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.408995", - "last_seen": "2025-06-01T22:06:05.373013", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068723, - 51.49764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.97, - "qmprice": 26.68, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162456530", - "info": { - "identifier": 162456530, - "sqm_ocr": 74.97, - "price": 2000.0, - "price_per_sqm": 26.67733760170735, - "url": "https://www.rightmove.co.uk/properties/162456530", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "TRH Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258065/162456530/258065_33910414_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.125990", - "last_seen": "2025-06-01T22:05:46.221834", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013066, - 51.49687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162456587", - "info": { - "identifier": 162456587, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162456587", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Campden Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45915/162456587/45915_1698_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.280204", - "last_seen": "2025-06-01T22:06:12.534595", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19666, - 51.46267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2125.0, - "url": "https://www.rightmove.co.uk/properties/162456593", - "info": { - "identifier": 162456593, - "sqm_ocr": null, - "price": 2125.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162456593", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162456593/238769_7940928893465ggb_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.343762", - "last_seen": "2025-06-01T22:05:44.120307", - "price": 2125.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37684, - 51.5055 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162456938", - "info": { - "identifier": 162456938, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162456938", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14614/162456938/14614_CHS160095_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.235859", - "last_seen": "2025-06-01T22:05:46.808776", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017725, - 51.482655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 36.84, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162456983", - "info": { - "identifier": 162456983, - "sqm_ocr": 57.0, - "price": 2100.0, - "price_per_sqm": 36.8421052631579, - "url": "https://www.rightmove.co.uk/properties/162456983", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Urban Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41919/162456983/41919_32503673_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.007117", - "last_seen": "2025-06-01T22:05:59.953201", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108229, - 51.46742 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.18, - "qmprice": 34.17, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162456986", - "info": { - "identifier": 162456986, - "sqm_ocr": 92.18, - "price": 3150.0, - "price_per_sqm": 34.1722716424387, - "url": "https://www.rightmove.co.uk/properties/162456986", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/162456986/135416_BPL250085_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.082579", - "last_seen": "2025-06-01T22:06:13.849163", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167017, - 51.468803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162457346", - "info": { - "identifier": 162457346, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162457346", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25214/162457346/25214_33910461_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.154168", - "last_seen": "2025-06-01T22:06:05.676563", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065595, - 51.49774 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.1, - "qmprice": 41.31, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162457349", - "info": { - "identifier": 162457349, - "sqm_ocr": 58.1, - "price": 2400.0, - "price_per_sqm": 41.30808950086058, - "url": "https://www.rightmove.co.uk/properties/162457349", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78395/162457349/78395_33910459_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.420748", - "last_seen": "2025-06-01T22:06:09.553382", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067616, - 51.518665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.5, - "qmprice": 33.57, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162457391", - "info": { - "identifier": 162457391, - "sqm_ocr": 71.5, - "price": 2400.0, - "price_per_sqm": 33.56643356643357, - "url": "https://www.rightmove.co.uk/properties/162457391", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194036/162457391/194036_LWI170304_L_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.546648", - "last_seen": "2025-06-01T22:06:01.251341", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1839, - 51.41719 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/162457418", - "info": { - "identifier": 162457418, - "sqm_ocr": null, - "price": 3397.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162457418", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162457418/181787_181787_1002_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.759550", - "last_seen": "2025-06-01T22:06:06.788549", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06852, - 51.48773 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.8, - "qmprice": 29.86, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162457451", - "info": { - "identifier": 162457451, - "sqm_ocr": 98.8, - "price": 2950.0, - "price_per_sqm": 29.858299595141702, - "url": "https://www.rightmove.co.uk/properties/162457451", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/162457451/264326_Y74838_2_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.923010", - "last_seen": "2025-06-01T22:05:49.367759", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224287, - 51.485073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 40.32, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162457466", - "info": { - "identifier": 162457466, - "sqm_ocr": 62.0, - "price": 2500.0, - "price_per_sqm": 40.32258064516129, - "url": "https://www.rightmove.co.uk/properties/162457466", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "The London Letting Company", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233057/162457466/233057_33910471_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.447786", - "last_seen": "2025-06-01T22:06:04.715894", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.291159, - 51.465336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162457754", - "info": { - "identifier": 162457754, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162457754", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162457754/96668_246957101052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.252941", - "last_seen": "2025-06-01T22:05:50.862982", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.160856, - 51.60385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162457937", - "info": { - "identifier": 162457937, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162457937", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162457937/96668_249552925052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.193212", - "last_seen": "2025-06-01T22:05:47.945071", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092466, - 51.53118 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.2, - "qmprice": 35.37, - "rooms": 3, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/162457943", - "info": { - "identifier": 162457943, - "sqm_ocr": 76.2, - "price": 2695.0, - "price_per_sqm": 35.36745406824147, - "url": "https://www.rightmove.co.uk/properties/162457943", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162457943/96668_249623126052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.197715", - "last_seen": "2025-06-01T22:05:47.955114", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.040444, - 51.546383 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162458075", - "info": { - "identifier": 162458075, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162458075", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30467/162458075/30467_LMWA_115HO_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.861725", - "last_seen": "2025-06-01T22:06:11.814299", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01674, - 51.58885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.2, - "qmprice": 18.61, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162458084", - "info": { - "identifier": 162458084, - "sqm_ocr": 118.2, - "price": 2200.0, - "price_per_sqm": 18.612521150592215, - "url": "https://www.rightmove.co.uk/properties/162458084", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "David Charles", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/29k/28997/162458084/28997_L109871_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.191592", - "last_seen": "2025-06-01T22:05:50.434881", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.381841, - 51.59814 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162458144", - "info": { - "identifier": 162458144, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162458144", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Apo", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/232k/231224/162458144/231224_2Bedad261_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.051432", - "last_seen": "2025-06-01T22:05:38.330876", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07346, - 51.53558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3796.0, - "url": "https://www.rightmove.co.uk/properties/162458168", - "info": { - "identifier": 162458168, - "sqm_ocr": null, - "price": 3796.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162458168", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Goldschmidt & Howland", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73968/162458168/73968_2605600_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.734602", - "last_seen": "2025-06-01T22:05:39.822999", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223993, - 51.584793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162458288", - "info": { - "identifier": 162458288, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162458288", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Nelsons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230450/162458288/230450_Apt702_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.194556", - "last_seen": "2025-06-01T22:06:11.426536", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00424, - 51.51605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.6, - "qmprice": 45.69, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162458312", - "info": { - "identifier": 162458312, - "sqm_ocr": 76.6, - "price": 3500.0, - "price_per_sqm": 45.69190600522194, - "url": "https://www.rightmove.co.uk/properties/162458312", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Cow & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191477/162458312/191477_COW220215_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.394436", - "last_seen": "2025-06-01T22:06:08.796618", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072556, - 51.51539 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/162458333", - "info": { - "identifier": 162458333, - "sqm_ocr": null, - "price": 3012.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162458333", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49012/162458333/49012_ISL190159_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.790035", - "last_seen": "2025-06-01T22:05:53.117310", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10304, - 51.544373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 30.07, - "rooms": 2, - "total_price": 2075.0, - "url": "https://www.rightmove.co.uk/properties/162458366", - "info": { - "identifier": 162458366, - "sqm_ocr": 69.0, - "price": 2075.0, - "price_per_sqm": 30.07246376811594, - "url": "https://www.rightmove.co.uk/properties/162458366", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Apo", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/232k/231224/162458366/231224_2Bedad262_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.131031", - "last_seen": "2025-06-01T22:06:02.274055", - "price": 2075.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07909, - 51.5276 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162458393", - "info": { - "identifier": 162458393, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162458393", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89228/162458393/89228_WCL250077_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.739268", - "last_seen": "2025-06-01T22:05:40.220562", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276402, - 51.561123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 27.71, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162458429", - "info": { - "identifier": 162458429, - "sqm_ocr": 83.0, - "price": 2300.0, - "price_per_sqm": 27.710843373493976, - "url": "https://www.rightmove.co.uk/properties/162458429", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "SeOUL Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73282/162458429/73282_4438_SR4U_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.707454", - "last_seen": "2025-06-01T22:05:58.659353", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.259476, - 51.396896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.3, - "qmprice": 25.95, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162458432", - "info": { - "identifier": 162458432, - "sqm_ocr": 123.3, - "price": 3200.0, - "price_per_sqm": 25.952960259529604, - "url": "https://www.rightmove.co.uk/properties/162458432", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "SeOUL Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73282/162458432/73282_5486_SR4U_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.691051", - "last_seen": "2025-06-01T22:05:58.657288", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.263762, - 51.407085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.3, - "qmprice": 36.9, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162458609", - "info": { - "identifier": 162458609, - "sqm_ocr": 81.3, - "price": 3000.0, - "price_per_sqm": 36.90036900369004, - "url": "https://www.rightmove.co.uk/properties/162458609", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52448/162458609/52448_33910536_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.758205", - "last_seen": "2025-06-01T22:06:13.318251", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179117, - 51.464863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162458690", - "info": { - "identifier": 162458690, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162458690", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/162458690/77511_CLK150521_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.617654", - "last_seen": "2025-06-01T22:06:10.500910", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071948, - 51.5175 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162458804", - "info": { - "identifier": 162458804, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162458804", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Orlando Reid", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86327/162458804/86327_32655113_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.244549", - "last_seen": "2025-06-01T22:05:59.104276", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128769, - 51.48031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.01, - "qmprice": 27.77, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162458879", - "info": { - "identifier": 162458879, - "sqm_ocr": 81.01, - "price": 2250.0, - "price_per_sqm": 27.774348845821503, - "url": "https://www.rightmove.co.uk/properties/162458879", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Alliance London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77148/162458879/77148_2002602_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.597737", - "last_seen": "2025-06-01T22:06:08.064017", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035208, - 51.5097 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.04, - "qmprice": 37.29, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162458972", - "info": { - "identifier": 162458972, - "sqm_ocr": 67.04, - "price": 2500.0, - "price_per_sqm": 37.29116945107398, - "url": "https://www.rightmove.co.uk/properties/162458972", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205358/162458972/205358_CUS012565353_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.739883", - "last_seen": "2025-06-01T22:05:46.287786", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.067137, - 51.494522 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162459053", - "info": { - "identifier": 162459053, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162459053", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95869/162459053/95869_SHO240093_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.623562", - "last_seen": "2025-06-01T22:06:08.117540", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07353, - 51.517647 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.3, - "qmprice": 37.23, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162459065", - "info": { - "identifier": 162459065, - "sqm_ocr": 87.3, - "price": 3250.0, - "price_per_sqm": 37.22794959908362, - "url": "https://www.rightmove.co.uk/properties/162459065", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218729/162459065/218729_33910581_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.797967", - "last_seen": "2025-06-01T22:05:56.615053", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139381, - 51.539562 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.34, - "qmprice": 34.33, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162459194", - "info": { - "identifier": 162459194, - "sqm_ocr": 100.34, - "price": 3445.0, - "price_per_sqm": 34.33326689256528, - "url": "https://www.rightmove.co.uk/properties/162459194", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Napier Watt Limited", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83443/162459194/83443_32413056_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.231549", - "last_seen": "2025-06-01T22:05:48.428479", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223831, - 51.486076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162459233", - "info": { - "identifier": 162459233, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162459233", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Gardiner Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75433/162459233/75433_3047_GARD_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.418740", - "last_seen": "2025-06-01T22:05:45.154963", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.297575, - 51.50934 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162459302", - "info": { - "identifier": 162459302, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162459302", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162459302/181787_181787_881_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.297055", - "last_seen": "2025-06-01T22:06:06.266920", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07268, - 51.48816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.0, - "qmprice": 33.0, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162459311", - "info": { - "identifier": 162459311, - "sqm_ocr": 100.0, - "price": 3300.0, - "price_per_sqm": 33.0, - "url": "https://www.rightmove.co.uk/properties/162459311", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Propertymade Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280319/162459311/280319_PRM250226_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.055196", - "last_seen": "2025-06-01T22:05:40.960758", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283566, - 51.540955 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.8, - "qmprice": 22.63, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162459395", - "info": { - "identifier": 162459395, - "sqm_ocr": 92.8, - "price": 2100.0, - "price_per_sqm": 22.629310344827587, - "url": "https://www.rightmove.co.uk/properties/162459395", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kearns Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/224k/223367/162459395/223367_RUI250120_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.401362", - "last_seen": "2025-06-01T22:05:51.478367", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.478604, - 51.604057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/162459407", - "info": { - "identifier": 162459407, - "sqm_ocr": null, - "price": 3684.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162459407", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/162459407/272819_33910619_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.411887", - "last_seen": "2025-06-01T22:06:08.960807", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064661, - 51.50789 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.1, - "qmprice": 25.22, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162459440", - "info": { - "identifier": 162459440, - "sqm_ocr": 103.1, - "price": 2600.0, - "price_per_sqm": 25.218234723569353, - "url": "https://www.rightmove.co.uk/properties/162459440", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/162459440/108947_1323768_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.884019", - "last_seen": "2025-06-01T22:05:50.315831", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37669, - 51.56156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.5, - "qmprice": 37.78, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162459557", - "info": { - "identifier": 162459557, - "sqm_ocr": 67.5, - "price": 2550.0, - "price_per_sqm": 37.77777777777778, - "url": "https://www.rightmove.co.uk/properties/162459557", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49006/162459557/49006_HAL220013_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.456789", - "last_seen": "2025-06-01T22:05:49.844598", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141129, - 51.577118 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.1, - "qmprice": 34.73, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162459608", - "info": { - "identifier": 162459608, - "sqm_ocr": 69.1, - "price": 2400.0, - "price_per_sqm": 34.73227206946455, - "url": "https://www.rightmove.co.uk/properties/162459608", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Surrey Quays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60474/162459608/60474_000019361b_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.501713", - "last_seen": "2025-06-01T22:06:04.857036", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03904, - 51.49327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162459659", - "info": { - "identifier": 162459659, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162459659", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co, Docklands & City", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47285/162459659/47285_DCL240063_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.018205, - 51.49779 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162459791", - "info": { - "identifier": 162459791, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162459791", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/162459791/247697_102708022031_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.186942", - "last_seen": "2025-06-01T22:05:42.608205", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10879, - 51.52067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.0, - "qmprice": 32.6, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162459965", - "info": { - "identifier": 162459965, - "sqm_ocr": 92.0, - "price": 2999.0, - "price_per_sqm": 32.59782608695652, - "url": "https://www.rightmove.co.uk/properties/162459965", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/162459965/119137_WWS131_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.615926", - "last_seen": "2025-06-01T22:06:05.071221", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0853, - 51.47929 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/162460184", - "info": { - "identifier": 162460184, - "sqm_ocr": null, - "price": 3142.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162460184", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/162460184/49784_36435_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.448055", - "last_seen": "2025-06-01T22:06:00.223101", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10818, - 51.48667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162460406", - "info": { - "identifier": 162460406, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162460406", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/162460406/247697_102708025956_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.527593", - "last_seen": "2025-06-01T22:05:53.541703", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0895, - 51.54419 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 29.1, - "rooms": 2, - "total_price": 2037.0, - "url": "https://www.rightmove.co.uk/properties/162460580", - "info": { - "identifier": 162460580, - "sqm_ocr": 70.0, - "price": 2037.0, - "price_per_sqm": 29.1, - "url": "https://www.rightmove.co.uk/properties/162460580", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49922/162460580/49922_CEI220328_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.154252", - "last_seen": "2025-06-01T22:06:03.203990", - "price": 2036 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.078123, - 51.50754 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.4, - "qmprice": 44.58, - "rooms": 4, - "total_price": 3495.0, - "url": "https://www.rightmove.co.uk/properties/162460604", - "info": { - "identifier": 162460604, - "sqm_ocr": 78.4, - "price": 3495.0, - "price_per_sqm": 44.57908163265306, - "url": "https://www.rightmove.co.uk/properties/162460604", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/162460604/249692_RL4646_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.441784", - "last_seen": "2025-06-01T22:06:10.088338", - "price": 3495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01867, - 51.51995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162460619", - "info": { - "identifier": 162460619, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162460619", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Qube Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284837/162460619/284837_6Fulhamroad_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.353304", - "last_seen": "2025-06-01T22:05:57.913749", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17201, - 51.4923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.81, - "qmprice": 52.0, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162460964", - "info": { - "identifier": 162460964, - "sqm_ocr": 54.81, - "price": 2850.0, - "price_per_sqm": 51.997810618500274, - "url": "https://www.rightmove.co.uk/properties/162460964", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Casa Londra", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212255/162460964/212255_2286_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.490239", - "last_seen": "2025-06-01T22:05:57.709662", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194345, - 51.496395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162461165", - "info": { - "identifier": 162461165, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162461165", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Inner City Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/104k/103850/162461165/103850_bconenweg_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:09.294246", - "last_seen": "2025-06-01T22:06:09.294246", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02272, - 51.53085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.6, - "qmprice": 44.16, - "rooms": 2, - "total_price": 2058.0, - "url": "https://www.rightmove.co.uk/properties/162461360", - "info": { - "identifier": 162461360, - "sqm_ocr": 46.6, - "price": 2058.0, - "price_per_sqm": 44.163090128755364, - "url": "https://www.rightmove.co.uk/properties/162461360", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Borthwicks", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52337/162461360/52337_BOR1001119_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.996318", - "last_seen": "2025-06-01T22:05:52.267340", - "price": 2058 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247493, - 51.494076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2058.0, - "url": "https://www.rightmove.co.uk/properties/162461486", - "info": { - "identifier": 162461486, - "sqm_ocr": null, - "price": 2058.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162461486", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "ea2", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10387/162461486/10387_33910739_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.348253", - "last_seen": "2025-06-01T22:06:08.791862", - "price": 2058 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057501, - 51.508953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.4, - "qmprice": 49.8, - "rooms": 2, - "total_price": 3207.0, - "url": "https://www.rightmove.co.uk/properties/162461630", - "info": { - "identifier": 162461630, - "sqm_ocr": 64.4, - "price": 3207.0, - "price_per_sqm": 49.79813664596273, - "url": "https://www.rightmove.co.uk/properties/162461630", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Districts London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245744/162461630/245744_33910750_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.029012", - "last_seen": "2025-06-01T22:06:12.875466", - "price": 3206 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135309, - 51.48007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162461639", - "info": { - "identifier": 162461639, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162461639", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Sinclair Hammelton", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/212k/211676/162461639/211676_CUS210238_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.409115", - "last_seen": "2025-06-01T22:05:41.589790", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.009844, - 51.388645 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162461834", - "info": { - "identifier": 162461834, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162461834", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84839/162461834/84839_33910758_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.957141", - "last_seen": "2025-06-01T22:05:52.330460", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.368003, - 51.48836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 29.01, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162462146", - "info": { - "identifier": 162462146, - "sqm_ocr": 81.0, - "price": 2350.0, - "price_per_sqm": 29.012345679012345, - "url": "https://www.rightmove.co.uk/properties/162462146", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Campbell Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50214/162462146/50214_100088004351_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.750249", - "last_seen": "2025-06-01T22:06:08.408512", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03537, - 51.51173 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.0, - "qmprice": 50.88, - "rooms": 2, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/162462605", - "info": { - "identifier": 162462605, - "sqm_ocr": 51.0, - "price": 2595.0, - "price_per_sqm": 50.88235294117647, - "url": "https://www.rightmove.co.uk/properties/162462605", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "McMahon & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65019/162462605/65019_647_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.537617", - "last_seen": "2025-06-01T22:06:04.967884", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097799, - 51.4972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162462839", - "info": { - "identifier": 162462839, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162462839", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dorrington", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281918/162462839/281918_32149_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.059848", - "last_seen": "2025-06-01T22:06:07.016151", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08945, - 51.48682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.5, - "qmprice": 37.41, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162463028", - "info": { - "identifier": 162463028, - "sqm_ocr": 73.5, - "price": 2750.0, - "price_per_sqm": 37.414965986394556, - "url": "https://www.rightmove.co.uk/properties/162463028", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6073/162463028/6073_33860091_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.873782", - "last_seen": "2025-06-01T22:05:54.286657", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09513, - 51.524227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.6, - "qmprice": 31.96, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162463424", - "info": { - "identifier": 162463424, - "sqm_ocr": 87.6, - "price": 2800.0, - "price_per_sqm": 31.963470319634705, - "url": "https://www.rightmove.co.uk/properties/162463424", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55147/162463424/55147_STR190273_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.692151", - "last_seen": "2025-06-01T22:06:07.550431", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013765, - 51.550003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.9, - "qmprice": 26.78, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162463778", - "info": { - "identifier": 162463778, - "sqm_ocr": 85.9, - "price": 2300.0, - "price_per_sqm": 26.77532013969732, - "url": "https://www.rightmove.co.uk/properties/162463778", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/162463778/54730_HKO220041_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.999948", - "last_seen": "2025-06-01T22:05:50.219411", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.347285, - 51.59549 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 157.4, - "qmprice": 14.93, - "rooms": 4, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162463838", - "info": { - "identifier": 162463838, - "sqm_ocr": 157.4, - "price": 2350.0, - "price_per_sqm": 14.930114358322744, - "url": "https://www.rightmove.co.uk/properties/162463838", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Alan de Maid", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3276/162463838/3276_000896820_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.381796", - "last_seen": "2025-06-01T22:05:41.601033", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02795, - 51.31146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 28.34, - "rooms": 2, - "total_price": 2579.0, - "url": "https://www.rightmove.co.uk/properties/162463919", - "info": { - "identifier": 162463919, - "sqm_ocr": 91.0, - "price": 2579.0, - "price_per_sqm": 28.34065934065934, - "url": "https://www.rightmove.co.uk/properties/162463919", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162463919/48101_1325498_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.067342", - "last_seen": "2025-06-01T17:39:04.562948", - "price": 2579.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.002259, - 51.50809 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 30.02, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/162463928", - "info": { - "identifier": 162463928, - "sqm_ocr": 83.0, - "price": 2492.0, - "price_per_sqm": 30.02409638554217, - "url": "https://www.rightmove.co.uk/properties/162463928", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162463928/48101_1326590_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.095640", - "last_seen": "2025-06-01T17:39:04.588285", - "price": 2492.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026905, - 51.492603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.4, - "qmprice": 42.27, - "rooms": 2, - "total_price": 2384.0, - "url": "https://www.rightmove.co.uk/properties/162463991", - "info": { - "identifier": 162463991, - "sqm_ocr": 56.4, - "price": 2384.0, - "price_per_sqm": 42.269503546099294, - "url": "https://www.rightmove.co.uk/properties/162463991", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/162463991/15957_1322422_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.059984", - "last_seen": "2025-06-01T22:05:43.136721", - "price": 2384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162431, - 51.55248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162464114", - "info": { - "identifier": 162464114, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162464114", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "James Anderson", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85685/162464114/85685_33910926_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.450936", - "last_seen": "2025-06-01T22:06:04.733950", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.249532, - 51.474995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.0, - "qmprice": 35.35, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162464135", - "info": { - "identifier": 162464135, - "sqm_ocr": 99.0, - "price": 3500.0, - "price_per_sqm": 35.35353535353536, - "url": "https://www.rightmove.co.uk/properties/162464135", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77493/162464135/77493_CSC180674_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.834949", - "last_seen": "2025-06-01T22:05:54.198968", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107864, - 51.528328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.6, - "qmprice": 61.84, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162464165", - "info": { - "identifier": 162464165, - "sqm_ocr": 56.6, - "price": 3500.0, - "price_per_sqm": 61.83745583038869, - "url": "https://www.rightmove.co.uk/properties/162464165", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162464165/98531_1326387_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.976412", - "last_seen": "2025-06-01T22:05:49.417653", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214176, - 51.49956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.6, - "qmprice": 45.94, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162464171", - "info": { - "identifier": 162464171, - "sqm_ocr": 56.6, - "price": 2600.0, - "price_per_sqm": 45.936395759717314, - "url": "https://www.rightmove.co.uk/properties/162464171", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162464171/98531_1326388_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.983063", - "last_seen": "2025-06-01T22:05:49.425188", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214176, - 51.49956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 34.87, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/162464180", - "info": { - "identifier": 162464180, - "sqm_ocr": 63.0, - "price": 2197.0, - "price_per_sqm": 34.87301587301587, - "url": "https://www.rightmove.co.uk/properties/162464180", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/162464180/84866_33910933_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.184436", - "last_seen": "2025-06-01T22:05:52.606795", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279602, - 51.489952 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162464228", - "info": { - "identifier": 162464228, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162464228", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69659/162464228/69659_FES120176_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.582489", - "last_seen": "2025-06-01T22:06:04.593276", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269824, - 51.46373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.36, - "qmprice": 28.25, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162464231", - "info": { - "identifier": 162464231, - "sqm_ocr": 97.36, - "price": 2750.0, - "price_per_sqm": 28.245686113393592, - "url": "https://www.rightmove.co.uk/properties/162464231", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162464231/43310_CWL250206_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.397676", - "last_seen": "2025-06-01T22:06:10.733833", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017031, - 51.486923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.3, - "qmprice": 36.89, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162464324", - "info": { - "identifier": 162464324, - "sqm_ocr": 79.3, - "price": 2925.0, - "price_per_sqm": 36.885245901639344, - "url": "https://www.rightmove.co.uk/properties/162464324", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/162464324/15948_1322604_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.534866", - "last_seen": "2025-06-01T22:05:48.392152", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183901, - 51.46891 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.94, - "qmprice": 41.02, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162464621", - "info": { - "identifier": 162464621, - "sqm_ocr": 60.94, - "price": 2500.0, - "price_per_sqm": 41.02395799146702, - "url": "https://www.rightmove.co.uk/properties/162464621", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92503/162464621/92503_FUL130120_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.042101", - "last_seen": "2025-06-01T22:05:49.503678", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210581, - 51.476524 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162464654", - "info": { - "identifier": 162464654, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162464654", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98240/162464654/98240_2609635_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.340071", - "last_seen": "2025-06-01T22:05:58.482492", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171269, - 51.49199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.2, - "qmprice": 45.29, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162464660", - "info": { - "identifier": 162464660, - "sqm_ocr": 55.2, - "price": 2500.0, - "price_per_sqm": 45.289855072463766, - "url": "https://www.rightmove.co.uk/properties/162464660", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Aspire", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45438/162464660/45438_BSE210020_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.745707", - "last_seen": "2025-06-01T22:06:14.270162", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166864, - 51.472515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162464918", - "info": { - "identifier": 162464918, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162464918", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "City and Town Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80802/162464918/80802_2-Bedroom-E14_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.627515", - "last_seen": "2025-06-01T22:06:09.650562", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00893, - 51.50337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.8, - "qmprice": 35.53, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162465134", - "info": { - "identifier": 162465134, - "sqm_ocr": 78.8, - "price": 2800.0, - "price_per_sqm": 35.53299492385787, - "url": "https://www.rightmove.co.uk/properties/162465134", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/162465134/56751_1326320_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.355739", - "last_seen": "2025-06-01T22:05:59.494546", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102727, - 51.463867 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.6, - "qmprice": 35.98, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162465155", - "info": { - "identifier": 162465155, - "sqm_ocr": 80.6, - "price": 2900.0, - "price_per_sqm": 35.980148883374696, - "url": "https://www.rightmove.co.uk/properties/162465155", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/162465155/66771_1322949_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.492460", - "last_seen": "2025-06-01T22:05:59.472943", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120941, - 51.49177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.18, - "qmprice": 44.56, - "rooms": 2, - "total_price": 2058.0, - "url": "https://www.rightmove.co.uk/properties/162465194", - "info": { - "identifier": 162465194, - "sqm_ocr": 46.18, - "price": 2058.0, - "price_per_sqm": 44.56474664356865, - "url": "https://www.rightmove.co.uk/properties/162465194", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65911/162465194/65911_WAQ012560557_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.538924", - "last_seen": "2025-06-01T22:06:09.369827", - "price": 2058 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057169, - 51.509335 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 154.0, - "qmprice": 24.35, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162465323", - "info": { - "identifier": 162465323, - "sqm_ocr": 154.0, - "price": 3750.0, - "price_per_sqm": 24.350649350649352, - "url": "https://www.rightmove.co.uk/properties/162465323", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Rolfe East", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/5k/4083/162465323/4083_33911025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.602479", - "last_seen": "2025-06-01T22:05:44.628204", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265281, - 51.509605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162465344", - "info": { - "identifier": 162465344, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162465344", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19059/162465344/19059_c601d965-1740-4811-b380-42476562b370_IMG_18_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.133654", - "last_seen": "2025-06-01T22:05:50.583331", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303929, - 51.59252 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162465557", - "info": { - "identifier": 162465557, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162465557", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "UNCLE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147557/162465557/147557_RST254482_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.634400", - "last_seen": "2025-06-01T22:05:40.068078", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.292867, - 51.553997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.4, - "qmprice": 30.91, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162465779", - "info": { - "identifier": 162465779, - "sqm_ocr": 74.4, - "price": 2300.0, - "price_per_sqm": 30.913978494623652, - "url": "https://www.rightmove.co.uk/properties/162465779", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Filtons Stratford Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49212/162465779/49212_23Dyne_IMG_08_0001_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.928704", - "last_seen": "2025-06-01T22:05:41.400218", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20431, - 51.54376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/162465878", - "info": { - "identifier": 162465878, - "sqm_ocr": null, - "price": 2395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162465878", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Sincere lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96983/162465878/96983_33911067_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.002304", - "last_seen": "2025-06-01T22:05:38.294999", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.16669, - 51.541527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162466016", - "info": { - "identifier": 162466016, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162466016", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Homequarters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269855/162466016/269855_28774_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.314957", - "last_seen": "2025-06-01T22:06:01.558385", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21659, - 51.42497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162466019", - "info": { - "identifier": 162466019, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162466019", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "UNCLE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147557/162466019/147557_RST254487_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.562488", - "last_seen": "2025-06-01T22:05:41.033336", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.292867, - 51.553997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 63.79, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162466274", - "info": { - "identifier": 162466274, - "sqm_ocr": 58.0, - "price": 3700.0, - "price_per_sqm": 63.793103448275865, - "url": "https://www.rightmove.co.uk/properties/162466274", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Pomp Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117175/162466274/117175_33911106_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.185948", - "last_seen": "2025-06-01T22:06:15.235854", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198029, - 51.517033 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.64, - "qmprice": 52.96, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162466277", - "info": { - "identifier": 162466277, - "sqm_ocr": 73.64, - "price": 3900.0, - "price_per_sqm": 52.96034763715372, - "url": "https://www.rightmove.co.uk/properties/162466277", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/162466277/135416_KYC250191_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.963328", - "last_seen": "2025-06-01T22:06:13.102702", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179719, - 51.466564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.93, - "qmprice": 36.27, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162466283", - "info": { - "identifier": 162466283, - "sqm_ocr": 68.93, - "price": 2500.0, - "price_per_sqm": 36.26867836936022, - "url": "https://www.rightmove.co.uk/properties/162466283", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons in Association with Allan Fuller", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51325/162466283/51325_PUL190046_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.049742", - "last_seen": "2025-06-01T22:06:13.086581", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.227803, - 51.46368 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.78, - "qmprice": 28.56, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162466292", - "info": { - "identifier": 162466292, - "sqm_ocr": 78.78, - "price": 2250.0, - "price_per_sqm": 28.56054836252856, - "url": "https://www.rightmove.co.uk/properties/162466292", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons in Association with Allan Fuller", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51325/162466292/51325_PTL150066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.501531", - "last_seen": "2025-06-01T22:06:13.078762", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225279, - 51.462566 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.12, - "qmprice": 26.67, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162466301", - "info": { - "identifier": 162466301, - "sqm_ocr": 103.12, - "price": 2750.0, - "price_per_sqm": 26.667959658650116, - "url": "https://www.rightmove.co.uk/properties/162466301", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162466301/43310_CWL250222_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.011331, - 51.507793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.4, - "qmprice": 37.46, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162466355", - "info": { - "identifier": 162466355, - "sqm_ocr": 65.4, - "price": 2450.0, - "price_per_sqm": 37.461773700305805, - "url": "https://www.rightmove.co.uk/properties/162466355", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Apo", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80388/162466355/80388_2Bedad263_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.361963", - "last_seen": "2025-06-01T22:05:52.409555", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28789, - 51.49168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/162466361", - "info": { - "identifier": 162466361, - "sqm_ocr": null, - "price": 3987.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162466361", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Lessel", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191471/162466361/191471_33911114_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.017448, - 51.500355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.0, - "qmprice": 47.0, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162466367", - "info": { - "identifier": 162466367, - "sqm_ocr": 50.0, - "price": 2350.0, - "price_per_sqm": 47.0, - "url": "https://www.rightmove.co.uk/properties/162466367", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33101/162466367/33101_SHE200280_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.355293", - "last_seen": "2025-06-01T22:05:49.322916", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228029, - 51.50431 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/162466415", - "info": { - "identifier": 162466415, - "sqm_ocr": null, - "price": 3878.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162466415", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50701/162466415/50701_33911125_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.347374", - "last_seen": "2025-06-01T22:05:57.908342", - "price": 3878 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177197, - 51.49381 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.5, - "qmprice": 46.1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162466424", - "info": { - "identifier": 162466424, - "sqm_ocr": 70.5, - "price": 3250.0, - "price_per_sqm": 46.09929078014184, - "url": "https://www.rightmove.co.uk/properties/162466424", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53654/162466424/53654_33911126_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.765750", - "last_seen": "2025-06-01T22:06:13.336962", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179848, - 51.466682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162466505", - "info": { - "identifier": 162466505, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162466505", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Apo", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80388/162466505/80388_2Bedad264_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.942623", - "last_seen": "2025-06-01T22:05:52.353540", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28774, - 51.49177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.1, - "qmprice": 33.97, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162466556", - "info": { - "identifier": 162466556, - "sqm_ocr": 100.1, - "price": 3400.0, - "price_per_sqm": 33.96603396603397, - "url": "https://www.rightmove.co.uk/properties/162466556", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/242k/241370/162466556/241370_33911144_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.963522", - "last_seen": "2025-06-01T22:06:06.720884", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057794, - 51.47813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.86, - "qmprice": 29.74, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162466697", - "info": { - "identifier": 162466697, - "sqm_ocr": 100.86, - "price": 3000.0, - "price_per_sqm": 29.7441998810232, - "url": "https://www.rightmove.co.uk/properties/162466697", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Parkes Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/206k/205670/162466697/205670_PEA250184_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.014150", - "last_seen": "2025-06-01T22:06:02.054286", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.030597, - 51.499233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2499.0, - "url": "https://www.rightmove.co.uk/properties/162466760", - "info": { - "identifier": 162466760, - "sqm_ocr": null, - "price": 2499.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162466760", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "SW16", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76165/162466760/76165_batrs_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.948736", - "last_seen": "2025-06-01T22:06:12.881526", - "price": 2499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16943, - 51.47847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162466766", - "info": { - "identifier": 162466766, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162466766", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Parkfields Estates", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90161/162466766/90161_33911162_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.722254", - "last_seen": "2025-06-01T22:05:44.313352", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.390499, - 51.50358 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162466784", - "info": { - "identifier": 162466784, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162466784", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Apo", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80388/162466784/80388_3Bedad181_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.294957", - "last_seen": "2025-06-01T22:05:51.970132", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28738, - 51.48997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162466799", - "info": { - "identifier": 162466799, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162466799", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Birchills", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115933/162466799/115933_7f4c88fb-3fba-49cc-8bd9-30223835a982_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.010129", - "last_seen": "2025-06-01T22:06:03.828551", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.018551, - 51.575783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2325.0, - "url": "https://www.rightmove.co.uk/properties/162466811", - "info": { - "identifier": 162466811, - "sqm_ocr": null, - "price": 2325.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162466811", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Folio London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97670/162466811/97670_HEO240103_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.492962", - "last_seen": "2025-06-01T22:05:46.970424", - "price": 2325.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.028149, - 51.462288 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162467336", - "info": { - "identifier": 162467336, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162467336", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Filtons Stratford Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49212/162467336/49212_15wren_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.730706", - "last_seen": "2025-06-01T22:05:42.546713", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11522, - 51.52536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 124.0, - "qmprice": 20.97, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162467507", - "info": { - "identifier": 162467507, - "sqm_ocr": 124.0, - "price": 2600.0, - "price_per_sqm": 20.967741935483872, - "url": "https://www.rightmove.co.uk/properties/162467507", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Anthony Webb Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9316/162467507/9316_33910772_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.030461", - "last_seen": "2025-06-01T22:05:45.932303", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105359, - 51.618595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162467546", - "info": { - "identifier": 162467546, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162467546", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Regency Estate Group Ltd", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286280/162467546/286280_REG250097_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.00147, - 51.54266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.78, - "qmprice": 37.23, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162467579", - "info": { - "identifier": 162467579, - "sqm_ocr": 61.78, - "price": 2300.0, - "price_per_sqm": 37.228876659112984, - "url": "https://www.rightmove.co.uk/properties/162467579", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247910/162467579/247910_6825afde4030c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.221515", - "last_seen": "2025-06-01T22:05:52.194427", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.270551, - 51.49061 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162467615", - "info": { - "identifier": 162467615, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162467615", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/162467615/67576_RL1725_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.644102", - "last_seen": "2025-06-01T22:05:42.843719", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130443, - 51.544186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162467681", - "info": { - "identifier": 162467681, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162467681", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "PMP International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240842/162467681/240842_33911246_IMG_07_0000_max_656x437.png", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.000586", - "last_seen": "2025-06-01T22:05:58.218796", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169393, - 51.49336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.7, - "qmprice": 58.03, - "rooms": 2, - "total_price": 2652.0, - "url": "https://www.rightmove.co.uk/properties/162467873", - "info": { - "identifier": 162467873, - "sqm_ocr": 45.7, - "price": 2652.0, - "price_per_sqm": 58.030634573304155, - "url": "https://www.rightmove.co.uk/properties/162467873", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50719/162467873/50719_33911259_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.153628", - "last_seen": "2025-06-01T22:05:48.505657", - "price": 2652 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.231547, - 51.498924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.53, - "qmprice": 46.34, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162468071", - "info": { - "identifier": 162468071, - "sqm_ocr": 75.53, - "price": 3500.0, - "price_per_sqm": 46.33920296570899, - "url": "https://www.rightmove.co.uk/properties/162468071", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Goldman Greg Housing Management", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/226k/225413/162468071/225413_33911268_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:56.648259", - "last_seen": "2025-06-01T22:06:09.446916", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073339, - 51.517536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/162468350", - "info": { - "identifier": 162468350, - "sqm_ocr": null, - "price": 3597.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162468350", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Robert Lehrer Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57714/162468350/57714_ROBEL_003072_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.439815", - "last_seen": "2025-06-01T22:05:53.235629", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136886, - 51.560806 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.0, - "qmprice": 44.64, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162468929", - "info": { - "identifier": 162468929, - "sqm_ocr": 56.0, - "price": 2500.0, - "price_per_sqm": 44.642857142857146, - "url": "https://www.rightmove.co.uk/properties/162468929", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/162468929/15957_1324005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.430827", - "last_seen": "2025-06-01T22:05:42.482021", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19649, - 51.558876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.68, - "qmprice": 55.82, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162468932", - "info": { - "identifier": 162468932, - "sqm_ocr": 45.68, - "price": 2550.0, - "price_per_sqm": 55.823117338003506, - "url": "https://www.rightmove.co.uk/properties/162468932", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75148/162468932/75148_1327813_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.395119", - "last_seen": "2025-06-01T22:05:46.475632", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.014269, - 51.459106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.5, - "qmprice": 53.79, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162469010", - "info": { - "identifier": 162469010, - "sqm_ocr": 72.5, - "price": 3900.0, - "price_per_sqm": 53.793103448275865, - "url": "https://www.rightmove.co.uk/properties/162469010", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3615/162469010/3615_NGL230066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.511383", - "last_seen": "2025-06-01T22:06:14.824121", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191998, - 51.511654 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.4, - "qmprice": 32.81, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162469154", - "info": { - "identifier": 162469154, - "sqm_ocr": 88.4, - "price": 2900.0, - "price_per_sqm": 32.80542986425339, - "url": "https://www.rightmove.co.uk/properties/162469154", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Bricks Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244235/162469154/244235_33911309_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.662728", - "last_seen": "2025-06-01T22:06:11.801101", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00749, - 51.553936 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162469370", - "info": { - "identifier": 162469370, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162469370", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Waterfronts", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48795/162469370/48795_29102861_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.637591", - "last_seen": "2025-06-01T22:05:46.570987", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017724, - 51.49255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162469511", - "info": { - "identifier": 162469511, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162469511", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162469511/238265_L76815_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.691395", - "last_seen": "2025-06-01T22:06:08.253832", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027909, - 51.514305 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 27.98, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162469559", - "info": { - "identifier": 162469559, - "sqm_ocr": 82.2, - "price": 2300.0, - "price_per_sqm": 27.980535279805352, - "url": "https://www.rightmove.co.uk/properties/162469559", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43829/162469559/43829_P301342_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.633116", - "last_seen": "2025-06-01T22:06:08.140753", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00892, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 33.45, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162469631", - "info": { - "identifier": 162469631, - "sqm_ocr": 82.2, - "price": 2750.0, - "price_per_sqm": 33.454987834549875, - "url": "https://www.rightmove.co.uk/properties/162469631", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/162469631/95098_P301343_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.533321", - "last_seen": "2025-06-01T22:06:09.366536", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00892, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 33.45, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162470081", - "info": { - "identifier": 162470081, - "sqm_ocr": 82.2, - "price": 2750.0, - "price_per_sqm": 33.454987834549875, - "url": "https://www.rightmove.co.uk/properties/162470081", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/162470081/238841_P301347_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:56.376233", - "last_seen": "2025-06-01T22:06:09.421131", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00892, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.7, - "qmprice": 36.08, - "rooms": 3, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/162470201", - "info": { - "identifier": 162470201, - "sqm_ocr": 106.7, - "price": 3850.0, - "price_per_sqm": 36.08247422680412, - "url": "https://www.rightmove.co.uk/properties/162470201", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/162470201/238841_P301348_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.538266", - "last_seen": "2025-06-01T22:06:10.308740", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00892, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162470282", - "info": { - "identifier": 162470282, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162470282", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Birchills", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115933/162470282/115933_2008ab37-27bc-4c63-8e1d-3f1325d6d0ca_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.464115", - "last_seen": "2025-06-01T22:06:07.566405", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.000593, - 51.54698 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162470819", - "info": { - "identifier": 162470819, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162470819", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/162470819/264404_RX585729_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.383118", - "last_seen": "2025-06-01T22:05:49.656588", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112621, - 51.590942 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162470825", - "info": { - "identifier": 162470825, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162470825", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Petty Son & Prestwich Ltd", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70202/162470825/70202_33911376_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.432006", - "last_seen": "2025-06-01T22:06:03.796676", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.024922, - 51.573673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.5, - "qmprice": 42.02, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162471044", - "info": { - "identifier": 162471044, - "sqm_ocr": 82.5, - "price": 3467.0, - "price_per_sqm": 42.02424242424242, - "url": "https://www.rightmove.co.uk/properties/162471044", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Districts London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245744/162471044/245744_33911385_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.493373", - "last_seen": "2025-06-01T22:06:12.524053", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134158, - 51.48046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162471134", - "info": { - "identifier": 162471134, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162471134", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Olivers Town", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54833/162471134/54833_27596_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.929062", - "last_seen": "2025-06-01T22:05:42.470609", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135082, - 51.540203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162471170", - "info": { - "identifier": 162471170, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162471170", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48456/162471170/48456_YLM210092_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.556824", - "last_seen": "2025-06-01T22:06:04.502030", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.308137, - 51.452168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162471215", - "info": { - "identifier": 162471215, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162471215", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/143k/142988/162471215/142988_33911371_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.473971", - "last_seen": "2025-06-01T22:06:07.891933", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169277, - 51.384438 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162471413", - "info": { - "identifier": 162471413, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162471413", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247481/162471413/247481_P285336_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.100007", - "last_seen": "2025-06-01T22:06:13.829308", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16806, - 51.45516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3725.0, - "url": "https://www.rightmove.co.uk/properties/162471869", - "info": { - "identifier": 162471869, - "sqm_ocr": null, - "price": 3725.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162471869", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247484/162471869/247484_P284771_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.700852", - "last_seen": "2025-06-01T22:05:42.763087", - "price": 3725.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11735, - 51.51937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162472013", - "info": { - "identifier": 162472013, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162472013", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Orlando Reid", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86327/162472013/86327_33096966_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.577230", - "last_seen": "2025-06-01T22:05:59.766010", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128769, - 51.48031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.86, - "qmprice": 48.7, - "rooms": 2, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/162472163", - "info": { - "identifier": 162472163, - "sqm_ocr": 69.86, - "price": 3402.0, - "price_per_sqm": 48.69739478957916, - "url": "https://www.rightmove.co.uk/properties/162472163", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices London", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191579/162472163/191579_KCR180416_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.407445", - "last_seen": "2025-06-01T22:05:53.146849", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121248, - 51.533134 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3420.0, - "url": "https://www.rightmove.co.uk/properties/162472238", - "info": { - "identifier": 162472238, - "sqm_ocr": null, - "price": 3420.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162472238", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/235k/234359/162472238/234359_a1G4J0000025yHgUAI_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.503225", - "last_seen": "2025-06-01T22:05:49.852793", - "price": 3420.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07286, - 51.58235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2545.0, - "url": "https://www.rightmove.co.uk/properties/162472301", - "info": { - "identifier": 162472301, - "sqm_ocr": null, - "price": 2545.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162472301", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/235k/234359/162472301/234359_a1G4J0000025yWUUAY_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.830319", - "last_seen": "2025-06-01T22:05:49.598502", - "price": 2545.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07288, - 51.58241 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 29.33, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162472316", - "info": { - "identifier": 162472316, - "sqm_ocr": 69.9, - "price": 2050.0, - "price_per_sqm": 29.327610872675248, - "url": "https://www.rightmove.co.uk/properties/162472316", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238214/162472316/238214_KDK240038_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.105591", - "last_seen": "2025-06-01T22:06:00.273743", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.041528, - 51.431377 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162472343", - "info": { - "identifier": 162472343, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162472343", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/235k/234359/162472343/234359_a1G4J0000025xbmUAA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.834481", - "last_seen": "2025-06-01T22:05:57.004953", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07286, - 51.58235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.4, - "qmprice": 22.44, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162472391", - "info": { - "identifier": 162472391, - "sqm_ocr": 111.4, - "price": 2500.0, - "price_per_sqm": 22.44165170556553, - "url": "https://www.rightmove.co.uk/properties/162472391", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CKB Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/187k/186113/162472391/186113_CKBE_004162_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.812441", - "last_seen": "2025-06-01T22:05:46.601911", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06787, - 51.433544 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.73, - "qmprice": 38.97, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162472631", - "info": { - "identifier": 162472631, - "sqm_ocr": 57.73, - "price": 2250.0, - "price_per_sqm": 38.97453663606444, - "url": "https://www.rightmove.co.uk/properties/162472631", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50951/162472631/50951_P5245F1727_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.265309", - "last_seen": "2025-06-01T22:05:59.166294", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11865, - 51.47362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162472706", - "info": { - "identifier": 162472706, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162472706", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Property Liaisons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7769/162472706/7769_LIAIS_001334_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.082103", - "last_seen": "2025-06-01T22:06:09.706724", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065905, - 51.50465 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2440.0, - "url": "https://www.rightmove.co.uk/properties/162472712", - "info": { - "identifier": 162472712, - "sqm_ocr": null, - "price": 2440.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162472712", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/218k/217697/162472712/217697_a1G4J00000260PWUAY_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.524344", - "last_seen": "2025-06-01T22:06:02.593730", - "price": 2440.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0339, - 51.50206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162472829", - "info": { - "identifier": 162472829, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162472829", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50939/162472829/50939_P3834E5501_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.374572", - "last_seen": "2025-06-01T22:05:52.430043", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.40346, - 51.46984 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 66.98, - "rooms": 2, - "total_price": 3885.0, - "url": "https://www.rightmove.co.uk/properties/162472856", - "info": { - "identifier": 162472856, - "sqm_ocr": 58.0, - "price": 3885.0, - "price_per_sqm": 66.98275862068965, - "url": "https://www.rightmove.co.uk/properties/162472856", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Breteuil", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/184k/183611/162472856/183611_house_brompton_road_london_sw3_2at_2L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.237532", - "last_seen": "2025-06-01T22:05:58.359876", - "price": 3885.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165812, - 51.498398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/162472859", - "info": { - "identifier": 162472859, - "sqm_ocr": null, - "price": 2375.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162472859", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/218k/217697/162472859/217697_a1G4J00000260OTUAY_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.177338", - "last_seen": "2025-06-01T22:06:03.247594", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0339, - 51.50206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162472961", - "info": { - "identifier": 162472961, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162472961", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "AJ Dwellings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80172/162472961/80172_PDL_SECOND72_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.065624", - "last_seen": "2025-06-01T22:05:38.264249", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.159517, - 51.529545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 45.44, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162472973", - "info": { - "identifier": 162472973, - "sqm_ocr": 66.0, - "price": 2999.0, - "price_per_sqm": 45.43939393939394, - "url": "https://www.rightmove.co.uk/properties/162472973", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52518/162472973/52518_CWL250627_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.726937", - "last_seen": "2025-06-01T22:06:10.635315", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015857, - 51.496838 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.1, - "qmprice": 37.26, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162472985", - "info": { - "identifier": 162472985, - "sqm_ocr": 67.1, - "price": 2500.0, - "price_per_sqm": 37.257824143070046, - "url": "https://www.rightmove.co.uk/properties/162472985", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Charles Henry Peppiatt Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78489/162472985/78489_16898_AGRN_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.020988", - "last_seen": "2025-06-01T22:05:53.791354", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124769, - 51.566086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162473480", - "info": { - "identifier": 162473480, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162473480", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "SAB Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261782/162473480/261782_eb60d374-7447-4940-89a5-8899e79e331b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.796319", - "last_seen": "2025-06-01T22:05:44.489869", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.373603, - 51.53146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.0, - "qmprice": 50.0, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162473579", - "info": { - "identifier": 162473579, - "sqm_ocr": 47.0, - "price": 2350.0, - "price_per_sqm": 50.0, - "url": "https://www.rightmove.co.uk/properties/162473579", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/162473579/77511_SXX120182_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.207321", - "last_seen": "2025-06-01T22:05:47.968009", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08593, - 51.529503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2499.0, - "url": "https://www.rightmove.co.uk/properties/162473591", - "info": { - "identifier": 162473591, - "sqm_ocr": null, - "price": 2499.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162473591", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Edward Chase", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281156/162473591/281156_10407886_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.052771", - "last_seen": "2025-06-01T22:05:38.339381", - "price": 2499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.136071, - 51.56906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.9, - "qmprice": 35.16, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162473690", - "info": { - "identifier": 162473690, - "sqm_ocr": 83.9, - "price": 2950.0, - "price_per_sqm": 35.160905840286055, - "url": "https://www.rightmove.co.uk/properties/162473690", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233849/162473690/233849_2648912_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.961379", - "last_seen": "2025-06-01T22:05:52.326089", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.309211, - 51.482487 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 42.08, - "rooms": 2, - "total_price": 3240.0, - "url": "https://www.rightmove.co.uk/properties/162473711", - "info": { - "identifier": 162473711, - "sqm_ocr": 77.0, - "price": 3240.0, - "price_per_sqm": 42.077922077922075, - "url": "https://www.rightmove.co.uk/properties/162473711", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dolphin Square", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58030/162473711/58030_HAW709_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.585086", - "last_seen": "2025-06-01T22:06:14.833773", - "price": 3240.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1366, - 51.48551 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.0, - "qmprice": 63.83, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162473768", - "info": { - "identifier": 162473768, - "sqm_ocr": 47.0, - "price": 3000.0, - "price_per_sqm": 63.829787234042556, - "url": "https://www.rightmove.co.uk/properties/162473768", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "CORE Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247241/162473768/247241_COR220048_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.777318", - "last_seen": "2025-06-01T22:05:53.102583", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120084, - 51.53135 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162473789", - "info": { - "identifier": 162473789, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162473789", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Panda & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157706/162473789/157706_151409_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.803116", - "last_seen": "2025-06-01T22:06:08.581506", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016149, - 51.495747 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.9, - "qmprice": 39.29, - "rooms": 2, - "total_price": 2825.0, - "url": "https://www.rightmove.co.uk/properties/162473858", - "info": { - "identifier": 162473858, - "sqm_ocr": 71.9, - "price": 2825.0, - "price_per_sqm": 39.29068150208623, - "url": "https://www.rightmove.co.uk/properties/162473858", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162473858/98531_1326885_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.770083", - "last_seen": "2025-06-01T22:05:48.610842", - "price": 2825.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22172, - 51.505203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 44.2, - "qmprice": 53.17, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162473861", - "info": { - "identifier": 162473861, - "sqm_ocr": 44.2, - "price": 2350.0, - "price_per_sqm": 53.167420814479634, - "url": "https://www.rightmove.co.uk/properties/162473861", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162473861/98531_1326421_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.896910", - "last_seen": "2025-06-01T22:05:44.444168", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.259312, - 51.516884 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 34.57, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162473927", - "info": { - "identifier": 162473927, - "sqm_ocr": 81.0, - "price": 2800.0, - "price_per_sqm": 34.5679012345679, - "url": "https://www.rightmove.co.uk/properties/162473927", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Hotblack Desiato", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48488/162473927/48488_HIG230091_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/01/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.151099", - "last_seen": "2025-06-01T22:05:53.699091", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108103, - 51.553493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 43.01, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162473933", - "info": { - "identifier": 162473933, - "sqm_ocr": 68.0, - "price": 2925.0, - "price_per_sqm": 43.01470588235294, - "url": "https://www.rightmove.co.uk/properties/162473933", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Sandfords", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151142/162473933/151142_RPL220052_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.283914", - "last_seen": "2025-06-01T22:06:15.518866", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170168, - 51.525337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.46, - "qmprice": 38.18, - "rooms": 2, - "total_price": 3034.0, - "url": "https://www.rightmove.co.uk/properties/162474017", - "info": { - "identifier": 162474017, - "sqm_ocr": 79.46, - "price": 3034.0, - "price_per_sqm": 38.18273345079285, - "url": "https://www.rightmove.co.uk/properties/162474017", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162474017/48101_1327830_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.811585", - "last_seen": "2025-06-01T22:06:02.646254", - "price": 3034.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.006689, - 51.511894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.5, - "qmprice": 31.19, - "rooms": 3, - "total_price": 3010.0, - "url": "https://www.rightmove.co.uk/properties/162474062", - "info": { - "identifier": 162474062, - "sqm_ocr": 96.5, - "price": 3010.0, - "price_per_sqm": 31.191709844559586, - "url": "https://www.rightmove.co.uk/properties/162474062", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Farrell Lewis Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267680/162474062/267680_190_FLEW_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.882852", - "last_seen": "2025-06-01T22:05:44.442053", - "price": 3010.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.251014, - 51.508617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.7, - "qmprice": 38.48, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162474158", - "info": { - "identifier": 162474158, - "sqm_ocr": 95.7, - "price": 3683.0, - "price_per_sqm": 38.484848484848484, - "url": "https://www.rightmove.co.uk/properties/162474158", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22029/162474158/22029_HPL100104_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.564023", - "last_seen": "2025-06-01T22:05:58.263727", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21, - 51.5 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2448.0, - "url": "https://www.rightmove.co.uk/properties/162474215", - "info": { - "identifier": 162474215, - "sqm_ocr": null, - "price": 2448.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162474215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Finlay Brewer", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74431/162474215/74431_33911567_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.066624", - "last_seen": "2025-06-01T22:05:48.729074", - "price": 2448 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.231682, - 51.49937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.1, - "qmprice": 39.62, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162474242", - "info": { - "identifier": 162474242, - "sqm_ocr": 63.1, - "price": 2500.0, - "price_per_sqm": 39.61965134706814, - "url": "https://www.rightmove.co.uk/properties/162474242", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43754/162474242/43754_P301340_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.510704", - "last_seen": "2025-06-01T22:05:59.678134", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13305, - 51.46315 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162474266", - "info": { - "identifier": 162474266, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162474266", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84830/162474266/84830_33911572_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.369752", - "last_seen": "2025-06-01T22:05:57.949780", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195719, - 51.49525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162474296", - "info": { - "identifier": 162474296, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162474296", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/155k/154961/162474296/154961_33911575_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.060799", - "last_seen": "2025-06-01T22:05:38.255802", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.132868, - 51.57053 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162474563", - "info": { - "identifier": 162474563, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162474563", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Balgores", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95722/162474563/95722_RML250028_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.324243", - "last_seen": "2025-06-01T22:05:50.922664", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.25503, - 51.54136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 141.8, - "qmprice": 24.33, - "rooms": 4, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162474602", - "info": { - "identifier": 162474602, - "sqm_ocr": 141.8, - "price": 3450.0, - "price_per_sqm": 24.330042313117065, - "url": "https://www.rightmove.co.uk/properties/162474602", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176726/162474602/176726_STP250599_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.059173", - "last_seen": "2025-06-01T22:05:50.766982", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300555, - 51.61175 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 31.69, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162474638", - "info": { - "identifier": 162474638, - "sqm_ocr": 71.0, - "price": 2250.0, - "price_per_sqm": 31.690140845070424, - "url": "https://www.rightmove.co.uk/properties/162474638", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242966/162474638/242966_P141802_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.664860", - "last_seen": "2025-06-01T22:05:39.735507", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24732, - 51.59581 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162474851", - "info": { - "identifier": 162474851, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162474851", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "SAB - Saint Andrews Bureau Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105104/162474851/105104_103035002059_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.924124", - "last_seen": "2025-06-01T22:06:14.863276", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1355, - 51.49596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162474920", - "info": { - "identifier": 162474920, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162474920", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Lords Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249026/162474920/249026_3BEDFLAT_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.975752", - "last_seen": "2025-06-01T22:05:45.399862", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04865, - 51.65952 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2525.0, - "url": "https://www.rightmove.co.uk/properties/162475022", - "info": { - "identifier": 162475022, - "sqm_ocr": null, - "price": 2525.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162475022", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214793/162475022/214793_P66743_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.359453", - "last_seen": "2025-06-01T22:06:08.957840", - "price": 2525.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01476, - 51.51507 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162475172", - "info": { - "identifier": 162475172, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162475172", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Oliver Burn", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66898/162475172/66898_10001362_OBRN_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.023730", - "last_seen": "2025-06-01T22:05:59.553146", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100136, - 51.463203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162475460", - "info": { - "identifier": 162475460, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162475460", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Waterfronts", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48795/162475460/48795_29104014_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.788669", - "last_seen": "2025-06-01T22:06:04.033916", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.115899, - 51.576393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162475727", - "info": { - "identifier": 162475727, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162475727", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89474/162475727/89474_000615215_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.101851", - "last_seen": "2025-06-01T22:05:38.319324", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.10881, - 51.52236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.3, - "qmprice": 34.87, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162475778", - "info": { - "identifier": 162475778, - "sqm_ocr": 80.3, - "price": 2800.0, - "price_per_sqm": 34.86924034869241, - "url": "https://www.rightmove.co.uk/properties/162475778", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52713/162475778/52713_33911670_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.446209", - "last_seen": "2025-06-01T22:06:04.717747", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.358022, - 51.456703 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162475931", - "info": { - "identifier": 162475931, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162475931", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/162475931/32793_22017_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.523716", - "last_seen": "2025-06-01T22:05:42.223095", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19634, - 51.55568 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.39, - "qmprice": 34.06, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162476102", - "info": { - "identifier": 162476102, - "sqm_ocr": 73.39, - "price": 2500.0, - "price_per_sqm": 34.06458645592043, - "url": "https://www.rightmove.co.uk/properties/162476102", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/162476102/44537_TOL251546_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.949828", - "last_seen": "2025-06-01T22:06:06.738785", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101441, - 51.50052 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.4, - "qmprice": 42.42, - "rooms": 3, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162476120", - "info": { - "identifier": 162476120, - "sqm_ocr": 89.4, - "price": 3792.0, - "price_per_sqm": 42.41610738255033, - "url": "https://www.rightmove.co.uk/properties/162476120", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Bentley & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/205k/204560/162476120/204560_81_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.537429", - "last_seen": "2025-06-01T22:05:42.236853", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138383, - 51.537155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162476210", - "info": { - "identifier": 162476210, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162476210", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Lawrence Rand", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46205/162476210/46205_97964d86-b8a7-45a3-8def-833e71c2e1bd_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.448586", - "last_seen": "2025-06-01T22:05:51.104204", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.401554, - 51.562416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.5, - "qmprice": 24.59, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162476363", - "info": { - "identifier": 162476363, - "sqm_ocr": 91.5, - "price": 2250.0, - "price_per_sqm": 24.59016393442623, - "url": "https://www.rightmove.co.uk/properties/162476363", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Cockburn Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/125k/124243/162476363/124243_L105001_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.404805", - "last_seen": "2025-06-01T22:06:00.416958", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.037277, - 51.42904 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.0, - "qmprice": 40.0, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162476627", - "info": { - "identifier": 162476627, - "sqm_ocr": 85.0, - "price": 3400.0, - "price_per_sqm": 40.0, - "url": "https://www.rightmove.co.uk/properties/162476627", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/201k/200876/162476627/200876_NCW180169_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.437908", - "last_seen": "2025-06-01T22:06:12.539746", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148216, - 51.478947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/162476957", - "info": { - "identifier": 162476957, - "sqm_ocr": null, - "price": 3402.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162476957", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/162476957/29861_33911755_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.260385", - "last_seen": "2025-06-01T22:05:47.644006", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089783, - 51.52794 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.8, - "qmprice": 44.25, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162477314", - "info": { - "identifier": 162477314, - "sqm_ocr": 67.8, - "price": 3000.0, - "price_per_sqm": 44.24778761061947, - "url": "https://www.rightmove.co.uk/properties/162477314", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "PG Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107294/162477314/107294_772_PGES_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.704116", - "last_seen": "2025-06-01T22:06:08.304207", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070463, - 51.523987 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 41.08, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162477467", - "info": { - "identifier": 162477467, - "sqm_ocr": 73.0, - "price": 2999.0, - "price_per_sqm": 41.082191780821915, - "url": "https://www.rightmove.co.uk/properties/162477467", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ashley Milton", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5651/162477467/5651_12680935_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.162598", - "last_seen": "2025-06-01T22:06:15.107697", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185614, - 51.5305 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162477611", - "info": { - "identifier": 162477611, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162477611", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57910/162477611/57910_KCP240193_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.369824", - "last_seen": "2025-06-01T22:05:41.660447", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024322, - 51.412663 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162478019", - "info": { - "identifier": 162478019, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162478019", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Barringtons Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96175/162478019/96175_lake_IMG_10_0000_max_656x437.png", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.833945", - "last_seen": "2025-06-01T22:06:03.675525", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.11827, - 51.61427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.8, - "qmprice": 33.42, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162478178", - "info": { - "identifier": 162478178, - "sqm_ocr": 77.8, - "price": 2600.0, - "price_per_sqm": 33.419023136246786, - "url": "https://www.rightmove.co.uk/properties/162478178", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cedar Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79883/162478178/79883_1270_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.403447", - "last_seen": "2025-06-01T22:05:43.154477", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19278, - 51.55086 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.2, - "qmprice": 28.25, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162478214", - "info": { - "identifier": 162478214, - "sqm_ocr": 83.2, - "price": 2350.0, - "price_per_sqm": 28.245192307692307, - "url": "https://www.rightmove.co.uk/properties/162478214", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78317/162478214/78317_KDS240103_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.752232", - "last_seen": "2025-06-01T22:05:58.933249", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.298759, - 51.413494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 141.9, - "qmprice": 20.79, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162478238", - "info": { - "identifier": 162478238, - "sqm_ocr": 141.9, - "price": 2950.0, - "price_per_sqm": 20.789288231148696, - "url": "https://www.rightmove.co.uk/properties/162478238", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Charles Henry Peppiatt Ltd", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78489/162478238/78489_16999_AGRN_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.742227", - "last_seen": "2025-06-01T22:05:39.858374", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144942, - 51.614536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.4, - "qmprice": 35.51, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162478289", - "info": { - "identifier": 162478289, - "sqm_ocr": 70.4, - "price": 2500.0, - "price_per_sqm": 35.51136363636363, - "url": "https://www.rightmove.co.uk/properties/162478289", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41337/162478289/41337_06745167_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.980392", - "last_seen": "2025-06-01T22:06:15.377336", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173, - 51.526 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162478301", - "info": { - "identifier": 162478301, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162478301", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Bryants Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21740/162478301/21740_3476_BRYT_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.869533", - "last_seen": "2025-06-01T22:06:03.058701", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.069592, - 51.500286 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.2, - "qmprice": 35.9, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/162478379", - "info": { - "identifier": 162478379, - "sqm_ocr": 61.2, - "price": 2197.0, - "price_per_sqm": 35.89869281045751, - "url": "https://www.rightmove.co.uk/properties/162478379", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50343/162478379/50343_33911844_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.455969", - "last_seen": "2025-06-01T22:05:41.120160", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247104, - 51.539917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.12, - "qmprice": 40.55, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162478481", - "info": { - "identifier": 162478481, - "sqm_ocr": 64.12, - "price": 2600.0, - "price_per_sqm": 40.54897067997504, - "url": "https://www.rightmove.co.uk/properties/162478481", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117766/162478481/117766_BBL250047_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.368570", - "last_seen": "2025-06-01T22:06:12.307242", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149815, - 51.476906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162478508", - "info": { - "identifier": 162478508, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162478508", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Live London Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141884/162478508/141884_Long_Acre_2bed_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.955278", - "last_seen": "2025-06-01T22:05:44.436032", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32379, - 51.52214 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 128.5, - "qmprice": 31.13, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162478547", - "info": { - "identifier": 162478547, - "sqm_ocr": 128.5, - "price": 4000.0, - "price_per_sqm": 31.1284046692607, - "url": "https://www.rightmove.co.uk/properties/162478547", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84818/162478547/84818_33911862_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.452289", - "last_seen": "2025-06-01T22:06:04.468702", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.363472, - 51.448494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162478622", - "info": { - "identifier": 162478622, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162478622", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29165/162478622/29165_BRN250195_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.193009", - "last_seen": "2025-06-01T22:05:39.636148", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177378, - 51.650433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.6, - "qmprice": 33.05, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162478649", - "info": { - "identifier": 162478649, - "sqm_ocr": 69.6, - "price": 2300.0, - "price_per_sqm": 33.04597701149426, - "url": "https://www.rightmove.co.uk/properties/162478649", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162478649/55101_1327819_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.802049", - "last_seen": "2025-06-01T22:06:06.831842", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05277, - 51.49037 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162478676", - "info": { - "identifier": 162478676, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162478676", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fraser & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20990/162478676/20990_PAL250021_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.927653", - "last_seen": "2025-06-01T22:05:49.376229", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23605, - 51.52859 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.3, - "qmprice": 33.53, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162478700", - "info": { - "identifier": 162478700, - "sqm_ocr": 116.3, - "price": 3900.0, - "price_per_sqm": 33.53396388650043, - "url": "https://www.rightmove.co.uk/properties/162478700", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84869/162478700/84869_33911874_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.092552", - "last_seen": "2025-06-01T22:05:48.797168", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181864, - 51.476604 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162478709", - "info": { - "identifier": 162478709, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162478709", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162478709/191744_RL4950_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.996469", - "last_seen": "2025-06-01T22:05:40.818915", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.253476, - 51.583103 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/162478835", - "info": { - "identifier": 162478835, - "sqm_ocr": null, - "price": 2708.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162478835", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162478835/237116_1758_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.968158", - "last_seen": "2025-06-01T22:05:57.673531", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17922, - 51.49319 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.7, - "qmprice": 37.68, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162478877", - "info": { - "identifier": 162478877, - "sqm_ocr": 63.7, - "price": 2400.0, - "price_per_sqm": 37.67660910518053, - "url": "https://www.rightmove.co.uk/properties/162478877", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/162478877/100423_1327839_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.906227", - "last_seen": "2025-06-01T22:05:51.936708", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.334325, - 51.47458 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.34, - "qmprice": 34.82, - "rooms": 2, - "total_price": 2449.0, - "url": "https://www.rightmove.co.uk/properties/162479024", - "info": { - "identifier": 162479024, - "sqm_ocr": 70.34, - "price": 2449.0, - "price_per_sqm": 34.816605061131646, - "url": "https://www.rightmove.co.uk/properties/162479024", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162479024/48101_1327834_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.943281", - "last_seen": "2025-06-01T22:06:09.180097", - "price": 2449.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027209, - 51.50224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 36.84, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162479030", - "info": { - "identifier": 162479030, - "sqm_ocr": 76.0, - "price": 2800.0, - "price_per_sqm": 36.8421052631579, - "url": "https://www.rightmove.co.uk/properties/162479030", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246848/162479030/246848_BEL200209_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.916546", - "last_seen": "2025-06-01T22:06:05.435085", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066356, - 51.49706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162479093", - "info": { - "identifier": 162479093, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162479093", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212408/162479093/212408_P161142_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.264858", - "last_seen": "2025-06-01T22:06:07.322202", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01349, - 51.53106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162479258", - "info": { - "identifier": 162479258, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162479258", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/162479258/12070_29104261_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.086219", - "last_seen": "2025-06-01T22:05:38.583032", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252162, - 51.595757 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 32.47, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162479495", - "info": { - "identifier": 162479495, - "sqm_ocr": 77.0, - "price": 2500.0, - "price_per_sqm": 32.467532467532465, - "url": "https://www.rightmove.co.uk/properties/162479495", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "James Anderson", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85685/162479495/85685_33911929_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.207680", - "last_seen": "2025-06-01T22:06:04.659225", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.257071, - 51.468372 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.56, - "qmprice": 23.45, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162479678", - "info": { - "identifier": 162479678, - "sqm_ocr": 89.56, - "price": 2100.0, - "price_per_sqm": 23.44796784278696, - "url": "https://www.rightmove.co.uk/properties/162479678", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Central Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6323/162479678/6323_WAL230032_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.802059", - "last_seen": "2025-06-01T22:06:11.792366", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013538, - 51.58696 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162479966", - "info": { - "identifier": 162479966, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162479966", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Rentals And Sales", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50366/162479966/50366_RWI-94025908_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.243424", - "last_seen": "2025-06-01T22:06:01.678088", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186184, - 51.420177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162480035", - "info": { - "identifier": 162480035, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162480035", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Iconia London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64538/162480035/64538_1balmes_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.029683", - "last_seen": "2025-06-01T22:05:47.606350", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08586, - 51.53802 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2480.0, - "url": "https://www.rightmove.co.uk/properties/162480098", - "info": { - "identifier": 162480098, - "sqm_ocr": null, - "price": 2480.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162480098", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/218k/217697/162480098/217697_a1G4J0000025xPaUAI_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.150064", - "last_seen": "2025-06-01T22:06:02.631327", - "price": 2480.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03293, - 51.50185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.6, - "qmprice": 27.17, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162480389", - "info": { - "identifier": 162480389, - "sqm_ocr": 73.6, - "price": 2000.0, - "price_per_sqm": 27.17391304347826, - "url": "https://www.rightmove.co.uk/properties/162480389", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Cockburn Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/125k/124243/162480389/124243_L109936_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.217617", - "last_seen": "2025-06-01T22:05:46.825339", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.076537, - 51.438446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.2, - "qmprice": 39.15, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162480416", - "info": { - "identifier": 162480416, - "sqm_ocr": 56.2, - "price": 2200.0, - "price_per_sqm": 39.145907473309606, - "url": "https://www.rightmove.co.uk/properties/162480416", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Whitman & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67487/162480416/67487_33911851_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.121769", - "last_seen": "2025-06-01T22:05:51.816949", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.269744, - 51.491356 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 130.8, - "qmprice": 25.99, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162480566", - "info": { - "identifier": 162480566, - "sqm_ocr": 130.8, - "price": 3400.0, - "price_per_sqm": 25.993883792048926, - "url": "https://www.rightmove.co.uk/properties/162480566", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/122k/121789/162480566/121789_KCS240033_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.023549", - "last_seen": "2025-06-01T22:06:00.618742", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020961, - 51.46115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/162480659", - "info": { - "identifier": 162480659, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162480659", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Circa London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77406/162480659/77406_2623304_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.983130", - "last_seen": "2025-06-01T17:39:04.496608", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07529, - 51.52193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.7, - "qmprice": 28.5, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162480725", - "info": { - "identifier": 162480725, - "sqm_ocr": 80.7, - "price": 2300.0, - "price_per_sqm": 28.500619578686493, - "url": "https://www.rightmove.co.uk/properties/162480725", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Petty Son & Prestwich Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70202/162480725/70202_33912018_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.978946", - "last_seen": "2025-06-01T22:06:03.991115", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.018729, - 51.573032 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 30.0, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162480839", - "info": { - "identifier": 162480839, - "sqm_ocr": 75.0, - "price": 2250.0, - "price_per_sqm": 30.0, - "url": "https://www.rightmove.co.uk/properties/162480839", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162480839/191744_RL4906_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.403639", - "last_seen": "2025-06-01T22:05:40.423491", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.282538, - 51.53975 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/162480872", - "info": { - "identifier": 162480872, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162480872", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50343/162480872/50343_33912030_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.373215", - "last_seen": "2025-06-01T22:05:40.384610", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218514, - 51.531734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.2, - "qmprice": 25.58, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162480995", - "info": { - "identifier": 162480995, - "sqm_ocr": 78.2, - "price": 2000.0, - "price_per_sqm": 25.57544757033248, - "url": "https://www.rightmove.co.uk/properties/162480995", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91847/162480995/91847_WGN250039_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.619765", - "last_seen": "2025-06-01T22:05:40.754367", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229049, - 51.544865 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162481154", - "info": { - "identifier": 162481154, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162481154", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50680/162481154/50680_P277089_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.928001", - "last_seen": "2025-06-01T22:06:00.308162", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03248, - 51.42499 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162481244", - "info": { - "identifier": 162481244, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162481244", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Lettings of London Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98582/162481244/98582_rookerys21H_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.168244", - "last_seen": "2025-06-01T22:05:50.361567", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30201, - 51.58855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 32.0, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162481253", - "info": { - "identifier": 162481253, - "sqm_ocr": 75.0, - "price": 2400.0, - "price_per_sqm": 32.0, - "url": "https://www.rightmove.co.uk/properties/162481253", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162481253/191744_RL4907_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.130863", - "last_seen": "2025-06-01T22:05:40.326386", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.280856, - 51.540203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162481301", - "info": { - "identifier": 162481301, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162481301", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50680/162481301/50680_P277090_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.003647", - "last_seen": "2025-06-01T22:06:00.952120", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03248, - 51.42499 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162481325", - "info": { - "identifier": 162481325, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162481325", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Lettings of London Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98582/162481325/98582_rookerys21C_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.075141", - "last_seen": "2025-06-01T22:05:50.814548", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30201, - 51.58855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162481373", - "info": { - "identifier": 162481373, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162481373", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Lettings of London Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98582/162481373/98582_rookerys20B_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.090110", - "last_seen": "2025-06-01T22:05:50.827612", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30201, - 51.58855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.0, - "qmprice": 36.67, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162481388", - "info": { - "identifier": 162481388, - "sqm_ocr": 75.0, - "price": 2750.0, - "price_per_sqm": 36.666666666666664, - "url": "https://www.rightmove.co.uk/properties/162481388", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons in Association with Allan Fuller", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51325/162481388/51325_PUL240128_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.703325", - "last_seen": "2025-06-01T22:06:14.179583", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22906, - 51.44857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162481391", - "info": { - "identifier": 162481391, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162481391", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162481391/43310_CWL230276_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.557845", - "last_seen": "2025-06-01T22:05:47.073686", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.067293, - 51.49441 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 25.32, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162481430", - "info": { - "identifier": 162481430, - "sqm_ocr": 79.0, - "price": 2000.0, - "price_per_sqm": 25.31645569620253, - "url": "https://www.rightmove.co.uk/properties/162481430", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "James Anderson", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85685/162481430/85685_33362782_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.232740", - "last_seen": "2025-06-01T22:06:04.640293", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252893, - 51.46648 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162481574", - "info": { - "identifier": 162481574, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162481574", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48618/162481574/48618_KNI170092_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.216611", - "last_seen": "2025-06-01T22:05:57.518563", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171273, - 51.491882 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.65, - "qmprice": 34.5, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162481739", - "info": { - "identifier": 162481739, - "sqm_ocr": 95.65, - "price": 3300.0, - "price_per_sqm": 34.50078410872974, - "url": "https://www.rightmove.co.uk/properties/162481739", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/221k/220400/162481739/220400_WAL220161_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.627464", - "last_seen": "2025-06-01T22:06:01.483861", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185661, - 51.43161 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162481769", - "info": { - "identifier": 162481769, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162481769", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162481769/270461_JAX221164_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.360323", - "last_seen": "2025-06-01T22:05:52.413818", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.292096, - 51.488617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162481829", - "info": { - "identifier": 162481829, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162481829", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/162481829/17888_33041_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.977037", - "last_seen": "2025-06-01T22:06:15.375373", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16981, - 51.52308 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.6, - "qmprice": 39.26, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162481838", - "info": { - "identifier": 162481838, - "sqm_ocr": 72.6, - "price": 2850.0, - "price_per_sqm": 39.25619834710744, - "url": "https://www.rightmove.co.uk/properties/162481838", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247487/162481838/247487_P470576_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.175080", - "last_seen": "2025-06-01T22:05:42.588470", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13309, - 51.53608 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162481847", - "info": { - "identifier": 162481847, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162481847", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "EO ESTATE AGENTS", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245249/162481847/245249_RPT210307_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.507313", - "last_seen": "2025-06-01T22:05:59.676720", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110894, - 51.487617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.96, - "qmprice": 33.07, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162481850", - "info": { - "identifier": 162481850, - "sqm_ocr": 120.96, - "price": 4000.0, - "price_per_sqm": 33.06878306878307, - "url": "https://www.rightmove.co.uk/properties/162481850", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "W J Meade", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38087/162481850/38087_33912107_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.504841", - "last_seen": "2025-06-01T22:06:10.210208", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029119, - 51.521347 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162481946", - "info": { - "identifier": 162481946, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162481946", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Alex Crown Lettings & Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102122/162481946/102122_6796_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.524025", - "last_seen": "2025-06-01T22:05:54.014884", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12065, - 51.55117 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162481982", - "info": { - "identifier": 162481982, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162481982", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Peter Michael Estates & Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25176/162481982/25176_1363_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.203076", - "last_seen": "2025-06-01T22:05:39.613554", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18638, - 51.6067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.7, - "qmprice": 38.99, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162482204", - "info": { - "identifier": 162482204, - "sqm_ocr": 57.7, - "price": 2250.0, - "price_per_sqm": 38.9948006932409, - "url": "https://www.rightmove.co.uk/properties/162482204", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253856/162482204/253856_1327240_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.692747", - "last_seen": "2025-06-01T22:05:43.346156", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123385, - 51.407307 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/162482276", - "info": { - "identifier": 162482276, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162482276", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84836/162482276/84836_33912142_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.314828", - "last_seen": "2025-06-01T22:06:04.263489", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.363413, - 51.42635 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.9, - "qmprice": 39.41, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162482306", - "info": { - "identifier": 162482306, - "sqm_ocr": 60.9, - "price": 2400.0, - "price_per_sqm": 39.40886699507389, - "url": "https://www.rightmove.co.uk/properties/162482306", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/162482306/71419_1327551_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.731706", - "last_seen": "2025-06-01T22:06:13.040493", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141477, - 51.41994 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 42.21, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162482354", - "info": { - "identifier": 162482354, - "sqm_ocr": 69.3, - "price": 2925.0, - "price_per_sqm": 42.20779220779221, - "url": "https://www.rightmove.co.uk/properties/162482354", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/162482354/15960_1327857_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.143199", - "last_seen": "2025-06-01T22:06:15.120822", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170454, - 51.525063 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.2, - "qmprice": 52.49, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162482372", - "info": { - "identifier": 162482372, - "sqm_ocr": 76.2, - "price": 4000.0, - "price_per_sqm": 52.493438320209975, - "url": "https://www.rightmove.co.uk/properties/162482372", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/190k/189686/162482372/189686_CSZ240111_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.719103", - "last_seen": "2025-06-01T22:05:44.315482", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.273139, - 51.497417 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2325.0, - "url": "https://www.rightmove.co.uk/properties/162482417", - "info": { - "identifier": 162482417, - "sqm_ocr": null, - "price": 2325.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162482417", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "RE/MAX Property Hub", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258956/162482417/258956_33849115_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.192116", - "last_seen": "2025-06-01T22:06:03.296595", - "price": 2325.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.021649, - 51.515858 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.8, - "qmprice": 40.49, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162482420", - "info": { - "identifier": 162482420, - "sqm_ocr": 56.8, - "price": 2300.0, - "price_per_sqm": 40.49295774647887, - "url": "https://www.rightmove.co.uk/properties/162482420", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14614/162482420/14614_BLA250386_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.991178", - "last_seen": "2025-06-01T22:06:00.905344", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.001967, - 51.46551 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162482495", - "info": { - "identifier": 162482495, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162482495", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Phillip Shaw", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267362/162482495/267362_f0b96926-7e61-4195-b31e-b865fde0b833_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.887174", - "last_seen": "2025-06-01T22:05:41.343054", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300491, - 51.57285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.15, - "qmprice": 43.25, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162482591", - "info": { - "identifier": 162482591, - "sqm_ocr": 85.15, - "price": 3683.0, - "price_per_sqm": 43.25308279506753, - "url": "https://www.rightmove.co.uk/properties/162482591", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53654/162482591/53654_33897020_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.200461", - "last_seen": "2025-06-01T22:06:13.682997", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179848, - 51.466682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.7, - "qmprice": 43.37, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162482657", - "info": { - "identifier": 162482657, - "sqm_ocr": 80.7, - "price": 3500.0, - "price_per_sqm": 43.37050805452292, - "url": "https://www.rightmove.co.uk/properties/162482657", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/162482657/54730_WLL230218_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.464567", - "last_seen": "2025-06-01T22:05:42.130810", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192374, - 51.547024 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162482738", - "info": { - "identifier": 162482738, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162482738", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Millennium Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61036/162482738/61036_MHBR25_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.744148", - "last_seen": "2025-06-01T22:05:42.557220", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18147, - 51.54143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.8, - "qmprice": 27.03, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162482876", - "info": { - "identifier": 162482876, - "sqm_ocr": 88.8, - "price": 2400.0, - "price_per_sqm": 27.027027027027028, - "url": "https://www.rightmove.co.uk/properties/162482876", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/162482876/57272_1327850_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.830217", - "last_seen": "2025-06-01T22:05:58.915589", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29237, - 51.3777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 38.0, - "qmprice": 85.53, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162483209", - "info": { - "identifier": 162483209, - "sqm_ocr": 38.0, - "price": 3250.0, - "price_per_sqm": 85.52631578947368, - "url": "https://www.rightmove.co.uk/properties/162483209", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Landstones", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221669/162483209/221669_RL0804F_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.047086", - "last_seen": "2025-06-01T22:05:58.126329", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179139, - 51.486023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162483224", - "info": { - "identifier": 162483224, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162483224", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Keys Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "16/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.290741", - "last_seen": "2025-06-01T22:06:01.620046", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215322, - 51.39461 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 140.4, - "qmprice": 21.37, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162483236", - "info": { - "identifier": 162483236, - "sqm_ocr": 140.4, - "price": 3000.0, - "price_per_sqm": 21.367521367521366, - "url": "https://www.rightmove.co.uk/properties/162483236", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85763/162483236/85763_UXL250988_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.390642", - "last_seen": "2025-06-01T22:05:51.507003", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.449809, - 51.520622 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/162483269", - "info": { - "identifier": 162483269, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162483269", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "SW Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60378/162483269/60378_2703_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.022266", - "last_seen": "2025-06-01T22:05:58.197533", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175, - 51.48323 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.3, - "qmprice": 33.13, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162483275", - "info": { - "identifier": 162483275, - "sqm_ocr": 75.3, - "price": 2495.0, - "price_per_sqm": 33.13413014608234, - "url": "https://www.rightmove.co.uk/properties/162483275", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Parry & Drewett", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78770/162483275/78770_1175170_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.265309", - "last_seen": "2025-06-01T22:06:01.651477", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.243392, - 51.39696 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/162483377", - "info": { - "identifier": 162483377, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162483377", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162483377/191744_RL2325_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.716239", - "last_seen": "2025-06-01T22:06:08.330686", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017233, - 51.50096 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162483653", - "info": { - "identifier": 162483653, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162483653", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kalmars Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89983/162483653/89983_8391LH_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.254746", - "last_seen": "2025-06-01T22:06:06.222440", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052869, - 51.49948 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162483821", - "info": { - "identifier": 162483821, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162483821", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Settio Property Experience Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267794/162483821/267794_18343_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.610823", - "last_seen": "2025-06-01T22:06:08.079655", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02268, - 51.50095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162483872", - "info": { - "identifier": 162483872, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162483872", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Stonebridge Estates", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214412/162483872/214412_3342_STOB_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.982381", - "last_seen": "2025-06-01T22:05:55.255807", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097422, - 51.612087 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.6, - "qmprice": 31.02, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162483923", - "info": { - "identifier": 162483923, - "sqm_ocr": 80.6, - "price": 2500.0, - "price_per_sqm": 31.01736972704715, - "url": "https://www.rightmove.co.uk/properties/162483923", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Wildheart Residential Management Limited", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77603/162483923/77603_1259_WILD_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.808471", - "last_seen": "2025-06-01T22:05:49.740950", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112852, - 51.587246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162483974", - "info": { - "identifier": 162483974, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162483974", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Cranbrook Lettings & Sales", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/237k/236963/162483974/236963_cranbrook_1637791018_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.017149", - "last_seen": "2025-06-01T22:06:03.701799", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06491, - 51.58266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 54.17, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162484118", - "info": { - "identifier": 162484118, - "sqm_ocr": 70.0, - "price": 3792.0, - "price_per_sqm": 54.17142857142857, - "url": "https://www.rightmove.co.uk/properties/162484118", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Tavistock Bow", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/111k/110768/162484118/110768_101184000781_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.167361", - "last_seen": "2025-06-01T22:06:15.101054", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127057, - 51.510567 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.8, - "qmprice": 30.86, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162484139", - "info": { - "identifier": 162484139, - "sqm_ocr": 64.8, - "price": 2000.0, - "price_per_sqm": 30.8641975308642, - "url": "https://www.rightmove.co.uk/properties/162484139", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "James Alexander", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287633/162484139/287633_33876585_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.828628", - "last_seen": "2025-06-01T22:05:43.414339", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.086879, - 51.408882 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162484304", - "info": { - "identifier": 162484304, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162484304", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14614/162484304/14614_GRE150368_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.892358", - "last_seen": "2025-06-01T22:06:00.769879", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.013712, - 51.454052 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162484319", - "info": { - "identifier": 162484319, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162484319", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hortons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/233k/232505/162484319/232505_18764377-7f13-431b-aa67-5d86169e5a78_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.889178", - "last_seen": "2025-06-01T22:06:00.773724", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01345, - 51.45809 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162484337", - "info": { - "identifier": 162484337, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162484337", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "The Online Letting Agents Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82831/162484337/82831_9419_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.344786", - "last_seen": "2025-06-01T22:05:39.395340", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238436, - 51.5958 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162484430", - "info": { - "identifier": 162484430, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162484430", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Major Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245513/162484430/245513_10191551_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.869763", - "last_seen": "2025-06-01T22:05:50.298882", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32024, - 51.6159 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.39, - "qmprice": 37.08, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162484604", - "info": { - "identifier": 162484604, - "sqm_ocr": 94.39, - "price": 3500.0, - "price_per_sqm": 37.080199173641276, - "url": "https://www.rightmove.co.uk/properties/162484604", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/162484604/51465_682735a6e8965_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.609536", - "last_seen": "2025-06-01T22:06:01.718510", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192411, - 51.42007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162484616", - "info": { - "identifier": 162484616, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162484616", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/162484616/176261_102708000224_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.130968", - "last_seen": "2025-06-01T22:05:54.318890", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13063, - 51.56446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 127.7, - "qmprice": 19.58, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162484739", - "info": { - "identifier": 162484739, - "sqm_ocr": 127.7, - "price": 2500.0, - "price_per_sqm": 19.57713390759593, - "url": "https://www.rightmove.co.uk/properties/162484739", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Folklands", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/162k/161975/162484739/161975_11978454_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.777290", - "last_seen": "2025-06-01T22:05:43.548594", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089885, - 51.36031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162484823", - "info": { - "identifier": 162484823, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162484823", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/162484823/176261_102708017008_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.536963", - "last_seen": "2025-06-01T22:05:53.965048", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13063, - 51.56446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.9, - "qmprice": 36.23, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162485012", - "info": { - "identifier": 162485012, - "sqm_ocr": 75.9, - "price": 2750.0, - "price_per_sqm": 36.23188405797101, - "url": "https://www.rightmove.co.uk/properties/162485012", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Daniel Cobb", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58945/162485012/58945_0ded9996-7dcb-4ee0-a4bf-7c7753aceafa_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.029846", - "last_seen": "2025-06-01T22:06:06.566422", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084125, - 51.49909 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.94, - "qmprice": 39.85, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/162485153", - "info": { - "identifier": 162485153, - "sqm_ocr": 58.94, - "price": 2349.0, - "price_per_sqm": 39.854088903970144, - "url": "https://www.rightmove.co.uk/properties/162485153", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/162485153/198539_33912341_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.653970", - "last_seen": "2025-06-01T22:06:08.165294", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029536, - 51.512802 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.5, - "qmprice": 42.72, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162485174", - "info": { - "identifier": 162485174, - "sqm_ocr": 51.5, - "price": 2200.0, - "price_per_sqm": 42.71844660194175, - "url": "https://www.rightmove.co.uk/properties/162485174", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12814/162485174/12814_EAM250438_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.243697", - "last_seen": "2025-06-01T22:05:56.684236", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.271036, - 51.51303 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162485222", - "info": { - "identifier": 162485222, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162485222", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/162485222/176261_102708021005_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.024701", - "last_seen": "2025-06-01T22:05:53.368164", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13063, - 51.56446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162485612", - "info": { - "identifier": 162485612, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162485612", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Lawson Rutter", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44370/162485612/44370_LRL100165E_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.037440", - "last_seen": "2025-06-01T22:05:55.227312", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2556, - 51.494465 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162485792", - "info": { - "identifier": 162485792, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162485792", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162485792/237116_2607_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.145190", - "last_seen": "2025-06-01T22:05:53.718291", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13063, - 51.56446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162485831", - "info": { - "identifier": 162485831, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162485831", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Alex Crown Lettings & Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102122/162485831/102122_8348_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.095467", - "last_seen": "2025-06-01T22:05:50.847116", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29264, - 51.6073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.2, - "qmprice": 62.32, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162485996", - "info": { - "identifier": 162485996, - "sqm_ocr": 45.2, - "price": 2817.0, - "price_per_sqm": 62.32300884955752, - "url": "https://www.rightmove.co.uk/properties/162485996", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Farrar & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128314/162485996/128314_23408_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.003277", - "last_seen": "2025-06-01T22:05:58.222725", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17509, - 51.48458 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 48.57, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162486026", - "info": { - "identifier": 162486026, - "sqm_ocr": 72.0, - "price": 3497.0, - "price_per_sqm": 48.56944444444444, - "url": "https://www.rightmove.co.uk/properties/162486026", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51301/162486026/51301_HEA183972_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.314243", - "last_seen": "2025-06-01T22:05:58.445548", - "price": 3497.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199783, - 51.49841 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162486149", - "info": { - "identifier": 162486149, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162486149", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/162486149/176261_102708017543_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.553603", - "last_seen": "2025-06-01T22:05:53.918331", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13063, - 51.56446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.1, - "qmprice": 33.53, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162486179", - "info": { - "identifier": 162486179, - "sqm_ocr": 67.1, - "price": 2250.0, - "price_per_sqm": 33.53204172876304, - "url": "https://www.rightmove.co.uk/properties/162486179", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162486179/191744_RL4981_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.831034", - "last_seen": "2025-06-01T22:06:03.149523", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.038925, - 51.5324 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162486287", - "info": { - "identifier": 162486287, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162486287", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55147/162486287/55147_STR250286_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.101748", - "last_seen": "2025-06-01T22:06:02.180737", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.029945, - 51.51181 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162486482", - "info": { - "identifier": 162486482, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162486482", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/162486482/176261_102708026997_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.625104", - "last_seen": "2025-06-01T22:05:50.123185", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10942, - 51.58894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 54.35, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162486488", - "info": { - "identifier": 162486488, - "sqm_ocr": 69.0, - "price": 3750.0, - "price_per_sqm": 54.34782608695652, - "url": "https://www.rightmove.co.uk/properties/162486488", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hemmingfords", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201083/162486488/201083_32210563_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.837624", - "last_seen": "2025-06-01T22:06:15.919648", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12732, - 51.4922 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162486506", - "info": { - "identifier": 162486506, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162486506", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "STONEBANKS UK LTD", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272417/162486506/272417_33736112_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.612199", - "last_seen": "2025-06-01T22:05:51.378343", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.398773, - 51.57833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162486515", - "info": { - "identifier": 162486515, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162486515", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84848/162486515/84848_33911431_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.230486", - "last_seen": "2025-06-01T22:05:52.224041", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.348343, - 51.462463 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162486548", - "info": { - "identifier": 162486548, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162486548", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/162486548/17418_100415008850_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.666437", - "last_seen": "2025-06-01T22:05:51.390722", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.41173, - 51.56734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162486587", - "info": { - "identifier": 162486587, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162486587", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Concept Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82211/162486587/82211_1410_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.578316", - "last_seen": "2025-06-01T22:05:59.772598", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.124821, - 51.4708 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 153.0, - "qmprice": 22.88, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162486860", - "info": { - "identifier": 162486860, - "sqm_ocr": 153.0, - "price": 3500.0, - "price_per_sqm": 22.875816993464053, - "url": "https://www.rightmove.co.uk/properties/162486860", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Robsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50427/162486860/50427_203942_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.781327", - "last_seen": "2025-06-01T22:05:51.158601", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.4086, - 51.60749 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162486965", - "info": { - "identifier": 162486965, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162486965", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Concept Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82211/162486965/82211_1412_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.481928", - "last_seen": "2025-06-01T22:06:01.774497", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188616, - 51.4241 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162487415", - "info": { - "identifier": 162487415, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162487415", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "City Relay", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209042/162487415/209042_ITPW_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.085338", - "last_seen": "2025-06-01T22:05:44.503886", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26161, - 51.522266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.8, - "qmprice": 35.16, - "rooms": 4, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/162487586", - "info": { - "identifier": 162487586, - "sqm_ocr": 103.8, - "price": 3650.0, - "price_per_sqm": 35.163776493256265, - "url": "https://www.rightmove.co.uk/properties/162487586", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64127/162487586/64127_1327883_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.463110", - "last_seen": "2025-06-01T22:05:42.979328", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151492, - 51.55121 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.0, - "qmprice": 29.82, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162487589", - "info": { - "identifier": 162487589, - "sqm_ocr": 109.0, - "price": 3250.0, - "price_per_sqm": 29.81651376146789, - "url": "https://www.rightmove.co.uk/properties/162487589", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Prime Land Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39507/162487589/39507_557124_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/08/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.056833, - 51.529 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.6, - "qmprice": 44.57, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162487628", - "info": { - "identifier": 162487628, - "sqm_ocr": 51.6, - "price": 2300.0, - "price_per_sqm": 44.57364341085271, - "url": "https://www.rightmove.co.uk/properties/162487628", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Network Agencies", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53310/162487628/53310_broadwayparade242_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.705519", - "last_seen": "2025-06-01T22:05:49.866121", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12262, - 51.58034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.4, - "qmprice": 29.88, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162487700", - "info": { - "identifier": 162487700, - "sqm_ocr": 100.4, - "price": 3000.0, - "price_per_sqm": 29.8804780876494, - "url": "https://www.rightmove.co.uk/properties/162487700", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84800/162487700/84800_33889984_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.629877", - "last_seen": "2025-06-01T22:05:58.804793", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29381, - 51.41257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.6, - "qmprice": 39.24, - "rooms": 3, - "total_price": 3359.0, - "url": "https://www.rightmove.co.uk/properties/162487706", - "info": { - "identifier": 162487706, - "sqm_ocr": 85.6, - "price": 3359.0, - "price_per_sqm": 39.24065420560748, - "url": "https://www.rightmove.co.uk/properties/162487706", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/162487706/15960_1327881_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.392343", - "last_seen": "2025-06-01T22:06:15.745797", - "price": 3359.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166991, - 51.524414 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.37, - "qmprice": 28.33, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162487709", - "info": { - "identifier": 162487709, - "sqm_ocr": 72.37, - "price": 2050.0, - "price_per_sqm": 28.326654691170372, - "url": "https://www.rightmove.co.uk/properties/162487709", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/162487709/250739_1326907_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.930212", - "last_seen": "2025-06-01T22:05:50.683557", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.320484, - 51.615692 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 136.0, - "qmprice": 27.57, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162487898", - "info": { - "identifier": 162487898, - "sqm_ocr": 136.0, - "price": 3750.0, - "price_per_sqm": 27.573529411764707, - "url": "https://www.rightmove.co.uk/properties/162487898", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66768/162487898/66768_1327887_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.933187", - "last_seen": "2025-06-01T22:06:00.339662", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.040667, - 51.46156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 34.87, - "qmprice": 96.33, - "rooms": 2, - "total_price": 3359.0, - "url": "https://www.rightmove.co.uk/properties/162488036", - "info": { - "identifier": 162488036, - "sqm_ocr": 34.87, - "price": 3359.0, - "price_per_sqm": 96.32922282764555, - "url": "https://www.rightmove.co.uk/properties/162488036", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/162488036/15942_1327869_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.180626", - "last_seen": "2025-06-01T22:05:57.459427", - "price": 3359.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176779, - 51.49338 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.1, - "qmprice": 53.14, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162488075", - "info": { - "identifier": 162488075, - "sqm_ocr": 62.1, - "price": 3300.0, - "price_per_sqm": 53.14009661835749, - "url": "https://www.rightmove.co.uk/properties/162488075", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6073/162488075/6073_33912530_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.498574", - "last_seen": "2025-06-01T22:05:56.692810", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10161, - 51.51353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3045.0, - "url": "https://www.rightmove.co.uk/properties/162488798", - "info": { - "identifier": 162488798, - "sqm_ocr": null, - "price": 3045.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162488798", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Way of Life", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288146/162488798/288146_EVER-2881462y10H2vP5RrjshlTvbnF4YKQIef1BxPKiHsaeS62XNNHf8Ir0jDvtdpC6_IMG_28_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.905103", - "last_seen": "2025-06-01T22:05:39.080153", - "price": 3045.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.239917, - 51.595554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.97, - "qmprice": 50.65, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162488837", - "info": { - "identifier": 162488837, - "sqm_ocr": 78.97, - "price": 4000.0, - "price_per_sqm": 50.65214638470305, - "url": "https://www.rightmove.co.uk/properties/162488837", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Property Guru", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97850/162488837/97850_RX348991_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "23/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.151411", - "last_seen": "2025-06-01T22:06:13.769449", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146078, - 51.478203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162488852", - "info": { - "identifier": 162488852, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162488852", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Maple Estate & Letting Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69002/162488852/69002_1560_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.932430", - "last_seen": "2025-06-01T22:05:50.679407", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33053, - 51.58618 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.4, - "qmprice": 38.23, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162488873", - "info": { - "identifier": 162488873, - "sqm_ocr": 65.4, - "price": 2500.0, - "price_per_sqm": 38.2262996941896, - "url": "https://www.rightmove.co.uk/properties/162488873", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Net Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43665/162488873/43665_101793000290_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.128490", - "last_seen": "2025-06-01T22:06:11.540769", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06306, - 51.51462 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.0, - "qmprice": 26.55, - "rooms": 3, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/162488897", - "info": { - "identifier": 162488897, - "sqm_ocr": 102.0, - "price": 2708.0, - "price_per_sqm": 26.54901960784314, - "url": "https://www.rightmove.co.uk/properties/162488897", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/162488897/97423_CEI241880_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.250027", - "last_seen": "2025-06-01T22:05:39.544247", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242575, - 51.592793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162489071", - "info": { - "identifier": 162489071, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162489071", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "The Agency Group", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79431/162489071/79431_RX582517_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.656002", - "last_seen": "2025-06-01T22:05:49.206324", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191811, - 51.483624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162489242", - "info": { - "identifier": 162489242, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162489242", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Romans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156068/162489242/156068_HIV250463_IMG_11_0001_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.833172", - "last_seen": "2025-06-01T22:05:51.281789", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.482458, - 51.521137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 47.95, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162489434", - "info": { - "identifier": 162489434, - "sqm_ocr": 73.0, - "price": 3500.0, - "price_per_sqm": 47.945205479452056, - "url": "https://www.rightmove.co.uk/properties/162489434", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51322/162489434/51322_HEA237715_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.047104", - "last_seen": "2025-06-01T22:06:15.459693", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130374, - 51.497242 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3915.0, - "url": "https://www.rightmove.co.uk/properties/162489452", - "info": { - "identifier": 162489452, - "sqm_ocr": null, - "price": 3915.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162489452", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Way of Life", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288146/162489452/288146_EVER-2881462y106h86xQ8B63BcVbtbcaIhuOGIVW9FnD2P9Yrg7sCV2UwBGwH9n6u_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.972083", - "last_seen": "2025-06-01T22:05:39.162089", - "price": 3915.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.239917, - 51.595554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162489539", - "info": { - "identifier": 162489539, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162489539", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162489539/156986_CDB20005_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.407934", - "last_seen": "2025-06-01T22:05:40.427742", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28318, - 51.55863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.2, - "qmprice": 52.25, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162489548", - "info": { - "identifier": 162489548, - "sqm_ocr": 62.2, - "price": 3250.0, - "price_per_sqm": 52.2508038585209, - "url": "https://www.rightmove.co.uk/properties/162489548", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77514/162489548/77514_SXX140428_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.521076", - "last_seen": "2025-06-01T22:05:42.215727", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117276, - 51.5193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.6, - "qmprice": 47.39, - "rooms": 4, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/162489659", - "info": { - "identifier": 162489659, - "sqm_ocr": 69.6, - "price": 3298.0, - "price_per_sqm": 47.385057471264375, - "url": "https://www.rightmove.co.uk/properties/162489659", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84794/162489659/84794_33912638_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.782103", - "last_seen": "2025-06-01T22:05:55.672131", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201718, - 51.484566 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 40.62, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162489674", - "info": { - "identifier": 162489674, - "sqm_ocr": 64.0, - "price": 2600.0, - "price_per_sqm": 40.625, - "url": "https://www.rightmove.co.uk/properties/162489674", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "W PROPERTY CONSULTANTS", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256523/162489674/256523_L-CommoHse_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.983232", - "last_seen": "2025-06-01T22:06:01.913447", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02925, - 51.49993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162489698", - "info": { - "identifier": 162489698, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162489698", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Smart Move 09", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270935/162489698/270935_RL0301_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.251601", - "last_seen": "2025-06-01T22:05:50.985494", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.21922, - 51.525944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162489701", - "info": { - "identifier": 162489701, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162489701", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Property Company", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76256/162489701/76256_LET160088_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.048535", - "last_seen": "2025-06-01T22:05:53.332778", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10072, - 51.562122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 45.31, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162489722", - "info": { - "identifier": 162489722, - "sqm_ocr": 64.0, - "price": 2900.0, - "price_per_sqm": 45.3125, - "url": "https://www.rightmove.co.uk/properties/162489722", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/162489722/77511_SDL180221_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.369497", - "last_seen": "2025-06-01T22:05:47.420220", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.081611, - 51.528336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162489839", - "info": { - "identifier": 162489839, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162489839", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Pomp Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117175/162489839/117175_33912648_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.287730", - "last_seen": "2025-06-01T22:05:58.416924", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194326, - 51.49446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162489848", - "info": { - "identifier": 162489848, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162489848", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130954/162489848/130954_HUBCT27050_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.697858", - "last_seen": "2025-06-01T22:05:39.802162", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22083, - 51.57143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162490022", - "info": { - "identifier": 162490022, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162490022", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19059/162490022/19059_b258e3eb-c595-46e4-996e-461d3ab52ad3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.709602", - "last_seen": "2025-06-01T22:05:40.180457", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.298534, - 51.550278 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162490112", - "info": { - "identifier": 162490112, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162490112", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/162490112/228512_33912666_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.887478", - "last_seen": "2025-06-01T22:05:38.876013", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21455, - 51.61186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162490118", - "info": { - "identifier": 162490118, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162490118", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Eden Harper", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67498/162490118/67498_33912667_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.762944", - "last_seen": "2025-06-01T22:06:13.034202", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149172, - 51.476463 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.4, - "qmprice": 51.08, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162490199", - "info": { - "identifier": 162490199, - "sqm_ocr": 74.4, - "price": 3800.0, - "price_per_sqm": 51.0752688172043, - "url": "https://www.rightmove.co.uk/properties/162490199", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146498/162490199/146498_33912671_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.955298", - "last_seen": "2025-06-01T22:06:12.831954", - "price": 3800 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138025, - 51.482094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162490340", - "info": { - "identifier": 162490340, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162490340", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "William H. Brown Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151466/162490340/151466_P2276K2711_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.313316", - "last_seen": "2025-06-01T22:05:51.001932", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.19416, - 51.57349 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.71, - "qmprice": 36.79, - "rooms": 3, - "total_price": 2675.0, - "url": "https://www.rightmove.co.uk/properties/162490487", - "info": { - "identifier": 162490487, - "sqm_ocr": 72.71, - "price": 2675.0, - "price_per_sqm": 36.789987622060245, - "url": "https://www.rightmove.co.uk/properties/162490487", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/126k/125836/162490487/125836_ELL190007_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.909327", - "last_seen": "2025-06-01T22:05:44.172508", - "price": 2675.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302397, - 51.52119 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162490652", - "info": { - "identifier": 162490652, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162490652", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247481/162490652/247481_P459125_IMG_00_0000_max_656x437.png", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.022580", - "last_seen": "2025-06-01T22:06:12.253437", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15653, - 51.445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.6, - "qmprice": 34.26, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162490661", - "info": { - "identifier": 162490661, - "sqm_ocr": 68.6, - "price": 2350.0, - "price_per_sqm": 34.25655976676385, - "url": "https://www.rightmove.co.uk/properties/162490661", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162490661/43310_MRL180043_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:11.088096", - "last_seen": "2025-06-01T22:06:11.088096", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006432, - 51.487267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.2, - "qmprice": 47.25, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162490667", - "info": { - "identifier": 162490667, - "sqm_ocr": 58.2, - "price": 2750.0, - "price_per_sqm": 47.250859106529205, - "url": "https://www.rightmove.co.uk/properties/162490667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51322/162490667/51322_WEL130042_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.252223", - "last_seen": "2025-06-01T22:06:15.826984", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139852, - 51.490902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.9, - "qmprice": 29.5, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162490736", - "info": { - "identifier": 162490736, - "sqm_ocr": 94.9, - "price": 2800.0, - "price_per_sqm": 29.504741833508955, - "url": "https://www.rightmove.co.uk/properties/162490736", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/162490736/48994_CNL250139_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.327448", - "last_seen": "2025-06-01T20:19:58.861934", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004379, - 51.50629 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.0, - "qmprice": 38.89, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162490742", - "info": { - "identifier": 162490742, - "sqm_ocr": 90.0, - "price": 3500.0, - "price_per_sqm": 38.888888888888886, - "url": "https://www.rightmove.co.uk/properties/162490742", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Paramount", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62636/162490742/62636_PAR190225_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.934864", - "last_seen": "2025-06-01T22:05:41.423455", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200675, - 51.54367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162491003", - "info": { - "identifier": 162491003, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162491003", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "gLocalAgents.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176603/162491003/176603_14988_EAF_183701_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.343083", - "last_seen": "2025-06-01T22:06:07.842261", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20029, - 51.36025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162491129", - "info": { - "identifier": 162491129, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162491129", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Faith and Co Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279896/162491129/279896_Lansbury_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.478542", - "last_seen": "2025-06-01T22:05:51.156648", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.41683, - 51.52856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162491354", - "info": { - "identifier": 162491354, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162491354", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Lloyds Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15950/162491354/15950_LLY_BTH_LFSYCL_415_569202361_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.125582", - "last_seen": "2025-06-01T22:05:47.864128", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.048158, - 51.551464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162491384", - "info": { - "identifier": 162491384, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162491384", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191426/162491384/191426_2608374_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.644739", - "last_seen": "2025-06-01T22:05:39.700621", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20415, - 51.59555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/162491468", - "info": { - "identifier": 162491468, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162491468", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50719/162491468/50719_33912739_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.122725", - "last_seen": "2025-06-01T22:05:48.929731", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.234799, - 51.50813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.6, - "qmprice": 34.79, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162491498", - "info": { - "identifier": 162491498, - "sqm_ocr": 100.6, - "price": 3500.0, - "price_per_sqm": 34.791252485089466, - "url": "https://www.rightmove.co.uk/properties/162491498", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66768/162491498/66768_1326801_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.300537", - "last_seen": "2025-06-01T22:06:06.274097", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071084, - 51.46493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162491516", - "info": { - "identifier": 162491516, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162491516", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Statons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30912/162491516/30912_LET250074_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.930959", - "last_seen": "2025-06-01T22:05:45.865501", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134929, - 51.658714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.71, - "qmprice": 42.43, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162491672", - "info": { - "identifier": 162491672, - "sqm_ocr": 70.71, - "price": 3000.0, - "price_per_sqm": 42.42681374628766, - "url": "https://www.rightmove.co.uk/properties/162491672", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162491672/16050_1327908_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.549359", - "last_seen": "2025-06-01T22:06:07.966780", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066971, - 51.514885 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162491678", - "info": { - "identifier": 162491678, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162491678", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Parris Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10240/162491678/10240_33912760_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.236293", - "last_seen": "2025-06-01T22:05:39.886755", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.120144, - 51.467216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 45.73, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162491729", - "info": { - "identifier": 162491729, - "sqm_ocr": 82.0, - "price": 3750.0, - "price_per_sqm": 45.73170731707317, - "url": "https://www.rightmove.co.uk/properties/162491729", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/162491729/15954_1327293_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.059271", - "last_seen": "2025-06-01T22:05:53.318385", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115824, - 51.557503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162491738", - "info": { - "identifier": 162491738, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162491738", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210101/162491738/210101_P301398_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.066537", - "last_seen": "2025-06-01T22:05:53.304308", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12011, - 51.5678 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162491780", - "info": { - "identifier": 162491780, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162491780", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/162491780/54730_WLL210170_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.780079", - "last_seen": "2025-06-01T22:05:55.666671", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29571, - 51.531292 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162491828", - "info": { - "identifier": 162491828, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162491828", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stones Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91151/162491828/91151_LHI090059_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.552986", - "last_seen": "2025-06-01T22:05:51.637028", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.410176, - 51.5152 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.0, - "qmprice": 40.3, - "rooms": 2, - "total_price": 2015.0, - "url": "https://www.rightmove.co.uk/properties/162491837", - "info": { - "identifier": 162491837, - "sqm_ocr": 50.0, - "price": 2015.0, - "price_per_sqm": 40.3, - "url": "https://www.rightmove.co.uk/properties/162491837", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Visum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35298/162491837/35298_40342_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.399947", - "last_seen": "2025-06-01T22:06:00.165637", - "price": 2015.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116765, - 51.45479 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162491870", - "info": { - "identifier": 162491870, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162491870", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "PropertyLoop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222287/162491870/222287_Rxq9lQPN_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.299817", - "last_seen": "2025-06-01T22:05:58.431788", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19369, - 51.50969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162491918", - "info": { - "identifier": 162491918, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162491918", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12814/162491918/12814_EAM240054_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.141994", - "last_seen": "2025-06-01T22:05:44.805971", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.309, - 51.5283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.7, - "qmprice": 38.15, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162491942", - "info": { - "identifier": 162491942, - "sqm_ocr": 74.7, - "price": 2850.0, - "price_per_sqm": 38.15261044176707, - "url": "https://www.rightmove.co.uk/properties/162491942", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Tate Partnership", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55372/162491942/55372_101593001719_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.984549", - "last_seen": "2025-06-01T22:05:52.287573", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254187, - 51.4896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162491948", - "info": { - "identifier": 162491948, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162491948", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Kings Group", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6484/162491948/6484_28136892_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.961042", - "last_seen": "2025-06-01T22:05:45.830964", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079973, - 51.622852 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2461.0, - "url": "https://www.rightmove.co.uk/properties/162492086", - "info": { - "identifier": 162492086, - "sqm_ocr": null, - "price": 2461.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162492086", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Clay Life", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277505/162492086/277505_27mont_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.918814", - "last_seen": "2025-06-01T22:05:41.395947", - "price": 2461.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28319, - 51.55914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162492161", - "info": { - "identifier": 162492161, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162492161", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CHAMPS PROPERTY", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287132/162492161/287132_champs_1355234737_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.699350", - "last_seen": "2025-06-01T22:05:49.124229", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18681, - 51.47432 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 51.38, - "rooms": 2, - "total_price": 2980.0, - "url": "https://www.rightmove.co.uk/properties/162492209", - "info": { - "identifier": 162492209, - "sqm_ocr": 58.0, - "price": 2980.0, - "price_per_sqm": 51.37931034482759, - "url": "https://www.rightmove.co.uk/properties/162492209", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3723/162492209/3723_PHL230103_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.462665", - "last_seen": "2025-06-01T22:05:42.115819", - "price": 2980.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130051, - 51.54392 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.7, - "qmprice": 31.21, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162492251", - "info": { - "identifier": 162492251, - "sqm_ocr": 73.7, - "price": 2300.0, - "price_per_sqm": 31.207598371777475, - "url": "https://www.rightmove.co.uk/properties/162492251", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Monteo London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272198/162492251/272198_QW2502_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.274792", - "last_seen": "2025-06-01T22:06:02.311667", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03877, - 51.53241 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.7, - "qmprice": 58.35, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162492305", - "info": { - "identifier": 162492305, - "sqm_ocr": 55.7, - "price": 3250.0, - "price_per_sqm": 58.348294434470375, - "url": "https://www.rightmove.co.uk/properties/162492305", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94643/162492305/94643_33912817_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.086816", - "last_seen": "2025-06-01T22:05:57.868865", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17118, - 51.491943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 36.5, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162492368", - "info": { - "identifier": 162492368, - "sqm_ocr": 82.2, - "price": 3000.0, - "price_per_sqm": 36.496350364963504, - "url": "https://www.rightmove.co.uk/properties/162492368", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Kubie Gold Associates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82958/162492368/82958_29106510_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.626152", - "last_seen": "2025-06-01T22:06:15.267537", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175674, - 51.536602 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.8, - "qmprice": 31.07, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162492371", - "info": { - "identifier": 162492371, - "sqm_ocr": 70.8, - "price": 2200.0, - "price_per_sqm": 31.073446327683616, - "url": "https://www.rightmove.co.uk/properties/162492371", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66897/162492371/66897_33912826_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.908047", - "last_seen": "2025-06-01T22:06:00.646454", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022027, - 51.453266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.66, - "qmprice": 27.37, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162492692", - "info": { - "identifier": 162492692, - "sqm_ocr": 98.66, - "price": 2700.0, - "price_per_sqm": 27.366713967159946, - "url": "https://www.rightmove.co.uk/properties/162492692", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/162492692/135416_JBA160038_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.048595", - "last_seen": "2025-06-01T22:06:12.764409", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179579, - 51.46818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162492707", - "info": { - "identifier": 162492707, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162492707", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162492707/96668_246577728042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.113190", - "last_seen": "2025-06-01T22:06:02.209802", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03937, - 51.524883 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162492713", - "info": { - "identifier": 162492713, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162492713", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162492713/96668_246724729042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.730950", - "last_seen": "2025-06-01T17:39:04.300162", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017195, - 51.519234 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/162492734", - "info": { - "identifier": 162492734, - "sqm_ocr": null, - "price": 2349.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162492734", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Liv International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54583/162492734/54583_LIVH_018643_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.863533", - "last_seen": "2025-06-01T22:05:41.976108", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187488, - 51.5372 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162492740", - "info": { - "identifier": 162492740, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162492740", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162492740/96668_247131903052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.236495", - "last_seen": "2025-06-01T22:05:59.086883", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132306, - 51.464523 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.5, - "qmprice": 55.12, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162492818", - "info": { - "identifier": 162492818, - "sqm_ocr": 63.5, - "price": 3500.0, - "price_per_sqm": 55.118110236220474, - "url": "https://www.rightmove.co.uk/properties/162492818", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47640/162492818/47640_33912837_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.466119", - "last_seen": "2025-06-01T22:06:09.503554", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073339, - 51.517536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162492851", - "info": { - "identifier": 162492851, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162492851", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "VervLife", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287288/162492851/287288_CHO3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.818256", - "last_seen": "2025-06-01T22:05:43.436276", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11178, - 51.37846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162492857", - "info": { - "identifier": 162492857, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162492857", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162492857/96668_248406614052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.030141", - "last_seen": "2025-06-01T22:05:38.829681", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186708, - 51.6114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162492878", - "info": { - "identifier": 162492878, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162492878", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162492878/96668_248652616052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.714382", - "last_seen": "2025-06-01T22:05:44.322162", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26161, - 51.522266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162492935", - "info": { - "identifier": 162492935, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162492935", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162492935/96668_247042902052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.200594", - "last_seen": "2025-06-01T22:06:07.687840", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.008515, - 51.54277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162493034", - "info": { - "identifier": 162493034, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162493034", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162493034/96668_249534325052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.899937", - "last_seen": "2025-06-01T22:06:13.005432", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147553, - 51.44393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162493064", - "info": { - "identifier": 162493064, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162493064", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162493064/96668_249598326052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.538051", - "last_seen": "2025-06-01T17:39:02.956423", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.008515, - 51.54277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.0, - "qmprice": 30.56, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162493067", - "info": { - "identifier": 162493067, - "sqm_ocr": 90.0, - "price": 2750.0, - "price_per_sqm": 30.555555555555557, - "url": "https://www.rightmove.co.uk/properties/162493067", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162493067/96668_249531125052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.617721", - "last_seen": "2025-06-01T22:05:59.415937", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12621, - 51.42821 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.5, - "qmprice": 30.39, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162493094", - "info": { - "identifier": 162493094, - "sqm_ocr": 90.5, - "price": 2750.0, - "price_per_sqm": 30.386740331491712, - "url": "https://www.rightmove.co.uk/properties/162493094", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Anthony Pepe Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130528/162493094/130528_HAR170244_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.809551", - "last_seen": "2025-06-01T22:05:49.738846", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108546, - 51.57801 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.1, - "qmprice": 42.23, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162493319", - "info": { - "identifier": 162493319, - "sqm_ocr": 52.1, - "price": 2200.0, - "price_per_sqm": 42.22648752399232, - "url": "https://www.rightmove.co.uk/properties/162493319", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/190k/189686/162493319/189686_CSZ221099_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.912065", - "last_seen": "2025-06-01T22:05:51.939987", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247334, - 51.494545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162493325", - "info": { - "identifier": 162493325, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162493325", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Alex Crown Lettings & Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102122/162493325/102122_6446_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.559305", - "last_seen": "2025-06-01T22:06:14.964747", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19566, - 51.52924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 49.77, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162493340", - "info": { - "identifier": 162493340, - "sqm_ocr": 74.0, - "price": 3683.0, - "price_per_sqm": 49.770270270270274, - "url": "https://www.rightmove.co.uk/properties/162493340", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chase Apartments", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34047/162493340/34047_33912859_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.292808", - "last_seen": "2025-06-01T22:06:05.341457", - "price": 3683.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100652, - 51.506695 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162493349", - "info": { - "identifier": 162493349, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162493349", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89228/162493349/89228_WCL190079_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.353592", - "last_seen": "2025-06-01T22:05:40.348973", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302097, - 51.550934 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.1, - "qmprice": 34.31, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162493379", - "info": { - "identifier": 162493379, - "sqm_ocr": 99.1, - "price": 3400.0, - "price_per_sqm": 34.3087790110999, - "url": "https://www.rightmove.co.uk/properties/162493379", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/162493379/56751_1327920_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.803943", - "last_seen": "2025-06-01T22:05:59.260773", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119007, - 51.45092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2427.0, - "url": "https://www.rightmove.co.uk/properties/162493412", - "info": { - "identifier": 162493412, - "sqm_ocr": null, - "price": 2427.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162493412", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/162493412/29861_33912867_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.547735", - "last_seen": "2025-06-01T22:06:07.961632", - "price": 2426 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039943, - 51.517975 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.8, - "qmprice": 54.55, - "rooms": 2, - "total_price": 3971.0, - "url": "https://www.rightmove.co.uk/properties/162493424", - "info": { - "identifier": 162493424, - "sqm_ocr": 72.8, - "price": 3971.0, - "price_per_sqm": 54.5467032967033, - "url": "https://www.rightmove.co.uk/properties/162493424", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82086/162493424/82086_1327925_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.519380", - "last_seen": "2025-06-01T22:06:07.933085", - "price": 3971.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069842, - 51.515533 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162493457", - "info": { - "identifier": 162493457, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162493457", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "S Stone Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286994/162493457/286994_ssml_218842150_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.668689", - "last_seen": "2025-06-01T22:05:58.690998", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279848, - 51.40921 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162493559", - "info": { - "identifier": 162493559, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162493559", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/162493559/87812_1327932_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.129072", - "last_seen": "2025-06-01T22:05:38.961689", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247532, - 51.595955 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162493562", - "info": { - "identifier": 162493562, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162493562", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/162493562/87812_1327930_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.133442", - "last_seen": "2025-06-01T22:05:39.381221", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247232, - 51.595875 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.38, - "qmprice": 47.06, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162493589", - "info": { - "identifier": 162493589, - "sqm_ocr": 74.38, - "price": 3500.0, - "price_per_sqm": 47.055660123689165, - "url": "https://www.rightmove.co.uk/properties/162493589", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/162493589/66771_1327838_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.741560", - "last_seen": "2025-06-01T22:06:00.208940", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121239, - 51.48382 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.72, - "qmprice": 36.38, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162493607", - "info": { - "identifier": 162493607, - "sqm_ocr": 57.72, - "price": 2100.0, - "price_per_sqm": 36.38253638253639, - "url": "https://www.rightmove.co.uk/properties/162493607", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/162493607/111050_1327933_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.670626", - "last_seen": "2025-06-01T22:06:14.156526", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170147, - 51.42764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162493790", - "info": { - "identifier": 162493790, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162493790", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Russell Collins", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62074/162493790/62074_102926003158_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.025960", - "last_seen": "2025-06-01T22:05:44.936610", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31402, - 51.49808 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.47, - "qmprice": 39.41, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162493853", - "info": { - "identifier": 162493853, - "sqm_ocr": 82.47, - "price": 3250.0, - "price_per_sqm": 39.40826967382078, - "url": "https://www.rightmove.co.uk/properties/162493853", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84794/162493853/84794_33912886_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.880256", - "last_seen": "2025-06-01T22:05:48.263184", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214763, - 51.473736 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162493862", - "info": { - "identifier": 162493862, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162493862", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hawk & Eagle Property Consultants", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/255k/254153/162493862/254153_PRA10647_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.755566", - "last_seen": "2025-06-01T22:06:08.395729", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021903, - 51.531174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.9, - "qmprice": 30.47, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162493952", - "info": { - "identifier": 162493952, - "sqm_ocr": 91.9, - "price": 2800.0, - "price_per_sqm": 30.46789989118607, - "url": "https://www.rightmove.co.uk/properties/162493952", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84839/162493952/84839_33912890_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.135868", - "last_seen": "2025-06-01T22:05:52.098969", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.366718, - 51.46635 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162494153", - "info": { - "identifier": 162494153, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494153", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494153/96668_248677117052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.939285", - "last_seen": "2025-06-01T22:06:09.581115", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014773, - 51.52338 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162494168", - "info": { - "identifier": 162494168, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494168", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494168/96668_185808908102023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.691416", - "last_seen": "2025-06-01T22:05:38.881986", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.237876, - 51.59394 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/162494219", - "info": { - "identifier": 162494219, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494219", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494219/96668_249666526052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.104909", - "last_seen": "2025-06-01T22:06:13.925150", - "price": 2795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158834, - 51.440964 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162494228", - "info": { - "identifier": 162494228, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494228", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494228/96668_201366908032024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.095251", - "last_seen": "2025-06-01T22:05:45.873885", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132352, - 51.64355 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162494243", - "info": { - "identifier": 162494243, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494243", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494243/96668_249498524052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.604620", - "last_seen": "2025-06-01T22:05:39.646845", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184676, - 51.65341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.32, - "qmprice": 33.7, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162494321", - "info": { - "identifier": 162494321, - "sqm_ocr": 62.32, - "price": 2100.0, - "price_per_sqm": 33.69704749679076, - "url": "https://www.rightmove.co.uk/properties/162494321", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494321/96668_249570125052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.397848", - "last_seen": "2025-06-01T22:06:07.515460", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.001895, - 51.54451 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162494327", - "info": { - "identifier": 162494327, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494327", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494327/96668_231887108122024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.972316", - "last_seen": "2025-06-01T22:05:53.729888", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108903, - 51.551258 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/162494393", - "info": { - "identifier": 162494393, - "sqm_ocr": null, - "price": 3550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494393", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494393/96668_225379909102024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.752315", - "last_seen": "2025-06-01T22:06:10.674841", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022652, - 51.500954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162494396", - "info": { - "identifier": 162494396, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494396", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494396/96668_249702427052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.140075", - "last_seen": "2025-06-01T22:05:48.985910", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185012, - 51.47588 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2499.0, - "url": "https://www.rightmove.co.uk/properties/162494408", - "info": { - "identifier": 162494408, - "sqm_ocr": null, - "price": 2499.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494408", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494408/96668_249697027052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.203934", - "last_seen": "2025-06-01T22:05:46.876358", - "price": 2499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.071428, - 51.49154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162494498", - "info": { - "identifier": 162494498, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494498", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494498/96668_249726927052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.425032", - "last_seen": "2025-06-01T22:06:02.393045", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.04282, - 51.52518 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162494519", - "info": { - "identifier": 162494519, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494519", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494519/96668_249733327052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.059026", - "last_seen": "2025-06-01T22:06:02.100599", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.072068, - 51.5073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162494552", - "info": { - "identifier": 162494552, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494552", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494552/96668_249736827052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.292909", - "last_seen": "2025-06-01T22:06:12.137937", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163559, - 51.45536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162494564", - "info": { - "identifier": 162494564, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494564", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494564/96668_249733627052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.454883", - "last_seen": "2025-06-01T22:05:55.597786", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221631, - 51.590137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162494693", - "info": { - "identifier": 162494693, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494693", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494693/96668_245905022042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.254512", - "last_seen": "2025-06-01T22:05:48.645295", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187268, - 51.470562 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162494780", - "info": { - "identifier": 162494780, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494780", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494780/96668_249423123052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.271010", - "last_seen": "2025-06-01T22:06:07.721373", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005308, - 51.5307 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162494801", - "info": { - "identifier": 162494801, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162494801", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162494801/96668_237318902022025_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.009603", - "last_seen": "2025-06-01T22:05:38.282918", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.143125, - 51.547466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162495053", - "info": { - "identifier": 162495053, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162495053", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51411/162495053/51411_5204_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.062412", - "last_seen": "2025-06-01T22:05:58.070292", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179076, - 51.486008 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162495143", - "info": { - "identifier": 162495143, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162495143", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130954/162495143/130954_CWRAR2B2705_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.102566", - "last_seen": "2025-06-01T22:05:46.177191", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07061, - 51.49311 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.4, - "qmprice": 41.39, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162495227", - "info": { - "identifier": 162495227, - "sqm_ocr": 60.4, - "price": 2500.0, - "price_per_sqm": 41.390728476821195, - "url": "https://www.rightmove.co.uk/properties/162495227", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162495227/48101_1327848_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.161048", - "last_seen": "2025-06-01T22:06:09.846735", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.000689, - 51.50895 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 47.1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162495239", - "info": { - "identifier": 162495239, - "sqm_ocr": 69.0, - "price": 3250.0, - "price_per_sqm": 47.10144927536232, - "url": "https://www.rightmove.co.uk/properties/162495239", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/162495239/253853_1327928_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.913337", - "last_seen": "2025-06-01T22:06:05.928378", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099489, - 51.492916 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 57.97, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162495245", - "info": { - "identifier": 162495245, - "sqm_ocr": 69.0, - "price": 4000.0, - "price_per_sqm": 57.971014492753625, - "url": "https://www.rightmove.co.uk/properties/162495245", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/162495245/253853_1327929_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.838739", - "last_seen": "2025-06-01T22:06:05.860212", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099489, - 51.492916 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.5, - "qmprice": 33.83, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162495275", - "info": { - "identifier": 162495275, - "sqm_ocr": 66.5, - "price": 2250.0, - "price_per_sqm": 33.83458646616541, - "url": "https://www.rightmove.co.uk/properties/162495275", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/162495275/227810_1327603_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.311930", - "last_seen": "2025-06-01T22:05:46.467519", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.075776, - 51.494965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.8, - "qmprice": 40.22, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162495281", - "info": { - "identifier": 162495281, - "sqm_ocr": 80.8, - "price": 3250.0, - "price_per_sqm": 40.222772277227726, - "url": "https://www.rightmove.co.uk/properties/162495281", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162495281/16050_1326988_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.287291", - "last_seen": "2025-06-01T22:05:47.533123", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084209, - 51.53132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.8, - "qmprice": 36.77, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/162495302", - "info": { - "identifier": 162495302, - "sqm_ocr": 64.8, - "price": 2383.0, - "price_per_sqm": 36.77469135802469, - "url": "https://www.rightmove.co.uk/properties/162495302", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/29k/28238/162495302/28238_CEI241308_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.011824, - 51.52438 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162495800", - "info": { - "identifier": 162495800, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162495800", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Streets Ahead", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257180/162495800/257180_THO250141_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.342388", - "last_seen": "2025-06-01T22:06:00.082050", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10241, - 51.46599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162496106", - "info": { - "identifier": 162496106, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162496106", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "The London Broker", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174521/162496106/174521_GBR250001_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.560440", - "last_seen": "2025-06-01T22:05:59.743374", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127903, - 51.450363 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162496643", - "info": { - "identifier": 162496643, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162496643", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Streets Ahead", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257180/162496643/257180_THO250142_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.054629", - "last_seen": "2025-06-01T22:05:59.896258", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102326, - 51.46603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.06, - "qmprice": 45.92, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162497123", - "info": { - "identifier": 162497123, - "sqm_ocr": 62.06, - "price": 2850.0, - "price_per_sqm": 45.92330003222688, - "url": "https://www.rightmove.co.uk/properties/162497123", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107902/162497123/107902_SBA190024_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.779531", - "last_seen": "2025-06-01T22:06:00.039840", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116713, - 51.502556 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3679.0, - "url": "https://www.rightmove.co.uk/properties/162497189", - "info": { - "identifier": 162497189, - "sqm_ocr": null, - "price": 3679.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162497189", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162497189/96668_242969925032025_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.830153", - "last_seen": "2025-06-01T22:06:15.902156", - "price": 3679 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18944, - 51.528446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162497252", - "info": { - "identifier": 162497252, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162497252", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162497252/96668_249650926052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.659259", - "last_seen": "2025-06-01T22:05:46.584917", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019371, - 51.481026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162497489", - "info": { - "identifier": 162497489, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162497489", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162497489/96668_246644829042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.047885", - "last_seen": "2025-06-01T22:05:55.044762", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099624, - 51.56472 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162497513", - "info": { - "identifier": 162497513, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162497513", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162497513/96668_247588207052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.937385", - "last_seen": "2025-06-01T22:06:12.905731", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219365, - 51.443264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162497516", - "info": { - "identifier": 162497516, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162497516", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162497516/96668_249764927052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.800809", - "last_seen": "2025-06-01T22:05:49.744662", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110926, - 51.594986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162497972", - "info": { - "identifier": 162497972, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162497972", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Armford Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283439/162497972/283439_14502_000067_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.764789", - "last_seen": "2025-06-01T22:05:48.589177", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221467, - 51.503326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162498062", - "info": { - "identifier": 162498062, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162498062", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Century 21 Goodmayes", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279887/162498062/279887_R209816_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.148675", - "last_seen": "2025-06-01T22:06:02.293135", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.045417, - 51.503784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162498143", - "info": { - "identifier": 162498143, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162498143", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Jubilee International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266501/162498143/266501_RL0128_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.038757", - "last_seen": "2025-06-01T22:05:57.825777", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178468, - 51.480618 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162498206", - "info": { - "identifier": 162498206, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162498206", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Century 21 Goodmayes", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279887/162498206/279887_R209608_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.098259", - "last_seen": "2025-06-01T22:05:38.313615", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.141111, - 51.559464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162498647", - "info": { - "identifier": 162498647, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162498647", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Abc Gone", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285629/162498647/285629_RL0318_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:38.761098", - "last_seen": "2025-06-01T22:06:09.377764", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005453, - 51.513817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/162498686", - "info": { - "identifier": 162498686, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162498686", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49012/162498686/49012_CLI211610_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.055477", - "last_seen": "2025-06-01T22:05:53.322443", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122587, - 51.556515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.0, - "qmprice": 25.23, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162498767", - "info": { - "identifier": 162498767, - "sqm_ocr": 109.0, - "price": 2750.0, - "price_per_sqm": 25.229357798165136, - "url": "https://www.rightmove.co.uk/properties/162498767", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Allen Goldstein", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/113k/112351/162498767/112351_RL1902_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.852790", - "last_seen": "2025-06-01T22:05:41.303746", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284529, - 51.5413 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 34.3, - "qmprice": 86.01, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162498806", - "info": { - "identifier": 162498806, - "sqm_ocr": 34.3, - "price": 2950.0, - "price_per_sqm": 86.0058309037901, - "url": "https://www.rightmove.co.uk/properties/162498806", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Armford Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283439/162498806/283439_14501_000042_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.613198", - "last_seen": "2025-06-01T22:05:44.704979", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.335405, - 51.5247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162500219", - "info": { - "identifier": 162500219, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162500219", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "LYH Property Consultants Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235565/162500219/235565_33913604_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.148799", - "last_seen": "2025-06-01T22:06:00.909382", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035119, - 51.44522 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.75, - "qmprice": 44.57, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162500594", - "info": { - "identifier": 162500594, - "sqm_ocr": 89.75, - "price": 4000.0, - "price_per_sqm": 44.56824512534819, - "url": "https://www.rightmove.co.uk/properties/162500594", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/162500594/272819_33913607_IMG_00_0000_max_656x437.png", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.315950", - "last_seen": "2025-06-01T22:05:46.477639", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.072391, - 51.49189 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162501842", - "info": { - "identifier": 162501842, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162501842", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "City and Town Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80802/162501842/80802_2-Bed-SE16_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.912845", - "last_seen": "2025-06-01T22:06:07.030136", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0334, - 51.49731 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.4, - "qmprice": 47.39, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162501944", - "info": { - "identifier": 162501944, - "sqm_ocr": 84.4, - "price": 4000.0, - "price_per_sqm": 47.393364928909946, - "url": "https://www.rightmove.co.uk/properties/162501944", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/162501944/60927_000015172c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.742446", - "last_seen": "2025-06-01T22:05:49.115803", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22554, - 51.48725 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162501965", - "info": { - "identifier": 162501965, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162501965", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162501965/249341_AVB20011_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.362464", - "last_seen": "2025-06-01T22:05:39.442665", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17892, - 51.61187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.8, - "qmprice": 39.58, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162502055", - "info": { - "identifier": 162502055, - "sqm_ocr": 75.8, - "price": 3000.0, - "price_per_sqm": 39.5778364116095, - "url": "https://www.rightmove.co.uk/properties/162502055", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/162502055/15981_1324464_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.387415", - "last_seen": "2025-06-01T22:06:00.194689", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142818, - 51.452133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3796.0, - "url": "https://www.rightmove.co.uk/properties/162502133", - "info": { - "identifier": 162502133, - "sqm_ocr": null, - "price": 3796.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162502133", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162502133/181787_181787_582_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.150352", - "last_seen": "2025-06-01T22:05:49.098763", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22258, - 51.51157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.0, - "qmprice": 52.38, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162502139", - "info": { - "identifier": 162502139, - "sqm_ocr": 42.0, - "price": 2200.0, - "price_per_sqm": 52.38095238095238, - "url": "https://www.rightmove.co.uk/properties/162502139", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162502139/249341_GHB5_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.941747", - "last_seen": "2025-06-01T22:06:07.596113", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00409, - 51.54769 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/162502184", - "info": { - "identifier": 162502184, - "sqm_ocr": null, - "price": 2375.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162502184", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162502184/249341_AMC2_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.904350", - "last_seen": "2025-06-01T22:06:03.096996", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03383, - 51.50217 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162502502", - "info": { - "identifier": 162502502, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162502502", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162502502/96668_246957701052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.290557", - "last_seen": "2025-06-01T22:06:10.081755", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006246, - 51.487537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162502517", - "info": { - "identifier": 162502517, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162502517", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Joseph Scott", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17295/162502517/17295_12652942_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.733117", - "last_seen": "2025-06-01T22:05:39.073427", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178738, - 51.598736 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.8, - "qmprice": 44.5, - "rooms": 2, - "total_price": 3640.0, - "url": "https://www.rightmove.co.uk/properties/162502778", - "info": { - "identifier": 162502778, - "sqm_ocr": 81.8, - "price": 3640.0, - "price_per_sqm": 44.49877750611247, - "url": "https://www.rightmove.co.uk/properties/162502778", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/162502778/212327_P160187_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.699504", - "last_seen": "2025-06-01T22:06:08.072842", - "price": 3640 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02553, - 51.50266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162502943", - "info": { - "identifier": 162502943, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162502943", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/162502943/272819_33913655_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.228871", - "last_seen": "2025-06-01T22:05:58.390985", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171195, - 51.49199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162503075", - "info": { - "identifier": 162503075, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162503075", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162503075/238265_L109992_IMG_00_0000_max_656x437.png", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.371704", - "last_seen": "2025-06-01T22:05:41.595148", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02296, - 51.32522 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3444.0, - "url": "https://www.rightmove.co.uk/properties/162503564", - "info": { - "identifier": 162503564, - "sqm_ocr": null, - "price": 3444.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162503564", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162503564/253604_341X2805_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.614657", - "last_seen": "2025-06-01T22:06:07.702025", - "price": 3444.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162503576", - "info": { - "identifier": 162503576, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162503576", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72234/162503576/72234_RWL180071_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.631202", - "last_seen": "2025-06-01T22:06:03.591100", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.016524, - 51.508583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3921.0, - "url": "https://www.rightmove.co.uk/properties/162503603", - "info": { - "identifier": 162503603, - "sqm_ocr": null, - "price": 3921.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162503603", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162503603/156986_LBJ7_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.862257", - "last_seen": "2025-06-01T22:05:41.390521", - "price": 3921.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2812, - 51.56006 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3417.0, - "url": "https://www.rightmove.co.uk/properties/162503660", - "info": { - "identifier": 162503660, - "sqm_ocr": null, - "price": 3417.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162503660", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162503660/253604_343X2805_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.269413", - "last_seen": "2025-06-01T22:06:07.733056", - "price": 3417.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00607, - 51.54176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.81, - "qmprice": 34.35, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162503711", - "info": { - "identifier": 162503711, - "sqm_ocr": 104.81, - "price": 3600.0, - "price_per_sqm": 34.34786756988837, - "url": "https://www.rightmove.co.uk/properties/162503711", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44655/162503711/44655_0478_HRT062400610_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.317409", - "last_seen": "2025-06-01T22:06:01.618172", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177063, - 51.422867 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.9, - "qmprice": 57.61, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162503714", - "info": { - "identifier": 162503714, - "sqm_ocr": 48.9, - "price": 2817.0, - "price_per_sqm": 57.607361963190186, - "url": "https://www.rightmove.co.uk/properties/162503714", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22011/162503714/22011_KNS150168_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.072542", - "last_seen": "2025-06-01T22:05:58.140695", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194865, - 51.507755 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3395.0, - "url": "https://www.rightmove.co.uk/properties/162503726", - "info": { - "identifier": 162503726, - "sqm_ocr": null, - "price": 3395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162503726", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Urban Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41919/162503726/41919_33913713_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.196196", - "last_seen": "2025-06-01T22:06:13.771450", - "price": 3395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181568, - 51.46557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3417.0, - "url": "https://www.rightmove.co.uk/properties/162503747", - "info": { - "identifier": 162503747, - "sqm_ocr": null, - "price": 3417.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162503747", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162503747/253604_291X2805_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.889910", - "last_seen": "2025-06-01T22:06:07.632242", - "price": 3417.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162503912", - "info": { - "identifier": 162503912, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162503912", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CROWN LUXURY HOMES LIMITED", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267257/162503912/267257_33913723_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.051011", - "last_seen": "2025-06-01T22:06:09.657758", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066904, - 51.50822 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.7, - "qmprice": 40.39, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162504368", - "info": { - "identifier": 162504368, - "sqm_ocr": 81.7, - "price": 3300.0, - "price_per_sqm": 40.391676866585065, - "url": "https://www.rightmove.co.uk/properties/162504368", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118693/162504368/118693_32938055_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.969095", - "last_seen": "2025-06-01T22:05:53.781318", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106904, - 51.553364 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 34.81, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162504479", - "info": { - "identifier": 162504479, - "sqm_ocr": 79.0, - "price": 2750.0, - "price_per_sqm": 34.81012658227848, - "url": "https://www.rightmove.co.uk/properties/162504479", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56523/162504479/56523_NFL240030_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.201842", - "last_seen": "2025-06-01T22:05:38.702971", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177637, - 51.654488 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 40.62, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162504584", - "info": { - "identifier": 162504584, - "sqm_ocr": 80.0, - "price": 3250.0, - "price_per_sqm": 40.625, - "url": "https://www.rightmove.co.uk/properties/162504584", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Propertymade Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280319/162504584/280319_PRM250228_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.062931", - "last_seen": "2025-06-01T22:05:52.188519", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254729, - 51.486958 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162504623", - "info": { - "identifier": 162504623, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162504623", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47640/162504623/47640_33913770_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.329047", - "last_seen": "2025-06-01T22:05:47.413862", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077123, - 51.53677 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 36.99, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162504791", - "info": { - "identifier": 162504791, - "sqm_ocr": 82.0, - "price": 3033.0, - "price_per_sqm": 36.98780487804878, - "url": "https://www.rightmove.co.uk/properties/162504791", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Garrett Whitelock", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105305/162504791/105305_101341001693_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.030318", - "last_seen": "2025-06-01T22:06:07.135629", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07302, - 51.50067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162504983", - "info": { - "identifier": 162504983, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162504983", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/162504983/146147_PR201632_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.493312", - "last_seen": "2025-06-01T22:05:48.270990", - "price": 3800 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222451, - 51.51155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.0, - "qmprice": 31.75, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162505412", - "info": { - "identifier": 162505412, - "sqm_ocr": 63.0, - "price": 2000.0, - "price_per_sqm": 31.746031746031747, - "url": "https://www.rightmove.co.uk/properties/162505412", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "W J Meade", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38087/162505412/38087_33913802_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.318293", - "last_seen": "2025-06-01T22:06:10.118708", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018342, - 51.528164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162505460", - "info": { - "identifier": 162505460, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162505460", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Excel Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99425/162505460/99425_102708012688_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.156688", - "last_seen": "2025-06-01T22:05:42.626506", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18832, - 51.53614 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.2, - "qmprice": 29.76, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162506147", - "info": { - "identifier": 162506147, - "sqm_ocr": 67.2, - "price": 2000.0, - "price_per_sqm": 29.76190476190476, - "url": "https://www.rightmove.co.uk/properties/162506147", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Turners", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16319/162506147/16319_33887700_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.512263", - "last_seen": "2025-06-01T22:06:01.547451", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191782, - 51.39807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162506522", - "info": { - "identifier": 162506522, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162506522", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "The Online Letting Agents Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82831/162506522/82831_4988_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.529643", - "last_seen": "2025-06-01T22:05:47.075705", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01767, - 51.4825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162506834", - "info": { - "identifier": 162506834, - "sqm_ocr": null, - "price": 3792.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162506834", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108373/162506834/108373_33913883_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.480955", - "last_seen": "2025-06-01T22:06:13.075150", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13617, - 51.482227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162506900", - "info": { - "identifier": 162506900, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162506900", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65794/162506900/65794_33913888_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.052910", - "last_seen": "2025-06-01T22:06:13.929525", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175695, - 51.43588 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.34, - "qmprice": 44.39, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162507347", - "info": { - "identifier": 162507347, - "sqm_ocr": 74.34, - "price": 3300.0, - "price_per_sqm": 44.39063761097659, - "url": "https://www.rightmove.co.uk/properties/162507347", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274244/162507347/274244_ISL240415_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.908107", - "last_seen": "2025-06-01T22:05:47.380252", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087082, - 51.555576 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.8, - "qmprice": 46.98, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162507710", - "info": { - "identifier": 162507710, - "sqm_ocr": 73.8, - "price": 3467.0, - "price_per_sqm": 46.97831978319783, - "url": "https://www.rightmove.co.uk/properties/162507710", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57275/162507710/57275_1327128_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.689738", - "last_seen": "2025-06-01T22:05:51.476346", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.418765, - 51.558342 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.5, - "qmprice": 31.13, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162507719", - "info": { - "identifier": 162507719, - "sqm_ocr": 75.5, - "price": 2350.0, - "price_per_sqm": 31.125827814569536, - "url": "https://www.rightmove.co.uk/properties/162507719", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162507719/15963_1327847_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.873633", - "last_seen": "2025-06-01T22:06:13.680224", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.241347, - 51.46019 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.5, - "qmprice": 37.96, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162507746", - "info": { - "identifier": 162507746, - "sqm_ocr": 68.5, - "price": 2600.0, - "price_per_sqm": 37.956204379562045, - "url": "https://www.rightmove.co.uk/properties/162507746", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113191/162507746/113191_33913921_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.007062", - "last_seen": "2025-06-01T22:05:47.760911", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043998, - 51.556545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162507824", - "info": { - "identifier": 162507824, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162507824", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "HYBR", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269531/162507824/269531_4d5059e2-514d-498e-bc03-21649bb68490_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.347797", - "last_seen": "2025-06-01T22:06:08.784652", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06269, - 51.507584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.11, - "qmprice": 39.14, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162508034", - "info": { - "identifier": 162508034, - "sqm_ocr": 94.11, - "price": 3683.0, - "price_per_sqm": 39.13505472319626, - "url": "https://www.rightmove.co.uk/properties/162508034", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57124/162508034/57124_P211539_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.199464", - "last_seen": "2025-06-01T22:06:08.754305", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06345, - 51.50537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162508427", - "info": { - "identifier": 162508427, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162508427", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Rentd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230333/162508427/230333_Northumberland_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.458286", - "last_seen": "2025-06-01T22:05:50.063583", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05875, - 51.60573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.61, - "qmprice": 28.7, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162508754", - "info": { - "identifier": 162508754, - "sqm_ocr": 83.61, - "price": 2400.0, - "price_per_sqm": 28.70470039468963, - "url": "https://www.rightmove.co.uk/properties/162508754", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194036/162508754/194036_LPU220113_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.540331", - "last_seen": "2025-06-01T22:06:14.074910", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.248869, - 51.46378 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.28, - "qmprice": 55.54, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162509000", - "info": { - "identifier": 162509000, - "sqm_ocr": 68.28, - "price": 3792.0, - "price_per_sqm": 55.53602811950791, - "url": "https://www.rightmove.co.uk/properties/162509000", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191579/162509000/191579_HBL230003_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.204999", - "last_seen": "2025-06-01T22:05:53.779262", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125613, - 51.54206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 39.86, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162509102", - "info": { - "identifier": 162509102, - "sqm_ocr": 74.0, - "price": 2950.0, - "price_per_sqm": 39.86486486486486, - "url": "https://www.rightmove.co.uk/properties/162509102", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77496/162509102/77496_CSC201760_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.502032", - "last_seen": "2025-06-01T22:05:53.226199", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109551, - 51.550945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.9, - "qmprice": 40.33, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/162509483", - "info": { - "identifier": 162509483, - "sqm_ocr": 56.9, - "price": 2295.0, - "price_per_sqm": 40.333919156414765, - "url": "https://www.rightmove.co.uk/properties/162509483", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66539/162509483/66539_33914005_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.218792", - "last_seen": "2025-06-01T22:05:47.627462", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069667, - 51.56356 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.36, - "qmprice": 37.83, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162509495", - "info": { - "identifier": 162509495, - "sqm_ocr": 97.36, - "price": 3683.0, - "price_per_sqm": 37.828677074774035, - "url": "https://www.rightmove.co.uk/properties/162509495", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/162509495/44537_TOL240767_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.120027", - "last_seen": "2025-06-01T22:06:06.099796", - "price": 3683.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095912, - 51.50805 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.43, - "qmprice": 44.05, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162509507", - "info": { - "identifier": 162509507, - "sqm_ocr": 62.43, - "price": 2750.0, - "price_per_sqm": 44.04933525548614, - "url": "https://www.rightmove.co.uk/properties/162509507", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162509507/26207_IUL220397_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.617622", - "last_seen": "2025-06-01T22:05:53.889529", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096114, - 51.540123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2453.0, - "url": "https://www.rightmove.co.uk/properties/162509546", - "info": { - "identifier": 162509546, - "sqm_ocr": null, - "price": 2453.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162509546", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/162509546/146147_PR171464_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.291835", - "last_seen": "2025-06-01T22:06:11.498354", - "price": 2452 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.000196, - 51.513405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162509582", - "info": { - "identifier": 162509582, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162509582", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Andrew Pearce", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17418/162509582/17418_100415010775_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.946066", - "last_seen": "2025-06-01T22:05:50.693205", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37227, - 51.58955 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.91, - "qmprice": 22.6, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162509618", - "info": { - "identifier": 162509618, - "sqm_ocr": 92.91, - "price": 2100.0, - "price_per_sqm": 22.602518566354536, - "url": "https://www.rightmove.co.uk/properties/162509618", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Daniels", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13501/162509618/13501_33914014_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.326324", - "last_seen": "2025-06-01T22:05:40.235706", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27165, - 51.569706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/162509639", - "info": { - "identifier": 162509639, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162509639", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Farrar & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128314/162509639/128314_25865_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.306710", - "last_seen": "2025-06-01T22:05:57.490054", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17969, - 51.48502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.2, - "qmprice": 51.72, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162509924", - "info": { - "identifier": 162509924, - "sqm_ocr": 52.2, - "price": 2700.0, - "price_per_sqm": 51.72413793103448, - "url": "https://www.rightmove.co.uk/properties/162509924", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96151/162509924/96151_BIS250075_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.074302", - "last_seen": "2025-06-01T22:05:48.877192", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210426, - 51.47657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.12, - "qmprice": 34.16, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162510191", - "info": { - "identifier": 162510191, - "sqm_ocr": 76.12, - "price": 2600.0, - "price_per_sqm": 34.156594850236466, - "url": "https://www.rightmove.co.uk/properties/162510191", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Brendons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41288/162510191/41288_2672709_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.945537", - "last_seen": "2025-06-01T22:05:44.395663", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31516, - 51.52553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162510548", - "info": { - "identifier": 162510548, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162510548", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Patrick Henry", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106402/162510548/106402_6089440_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.426338", - "last_seen": "2025-06-01T22:06:12.269895", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145614, - 51.45157 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.9, - "qmprice": 26.91, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162510599", - "info": { - "identifier": 162510599, - "sqm_ocr": 92.9, - "price": 2500.0, - "price_per_sqm": 26.910656620021527, - "url": "https://www.rightmove.co.uk/properties/162510599", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30602/162510599/30602_06780454_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.699805", - "last_seen": "2025-06-01T22:05:56.079881", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.278, - 51.592 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162510641", - "info": { - "identifier": 162510641, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162510641", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/162510641/96542_ROCH_000038_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.466401", - "last_seen": "2025-06-01T22:05:42.308219", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128349, - 51.54834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.5, - "qmprice": 31.61, - "rooms": 4, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162510731", - "info": { - "identifier": 162510731, - "sqm_ocr": 77.5, - "price": 2450.0, - "price_per_sqm": 31.612903225806452, - "url": "https://www.rightmove.co.uk/properties/162510731", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Gibson Lane", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22316/162510731/22316_33914089_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.495323", - "last_seen": "2025-06-01T22:06:14.043622", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25229, - 51.45373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162510815", - "info": { - "identifier": 162510815, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162510815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stones Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106225/162510815/106225_BEP250088_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.998103", - "last_seen": "2025-06-01T22:05:40.944880", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218428, - 51.556473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162510893", - "info": { - "identifier": 162510893, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162510893", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30467/162510893/30467_000911215_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.057129", - "last_seen": "2025-06-01T22:05:45.825990", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04486, - 51.65654 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.2, - "qmprice": 30.24, - "rooms": 4, - "total_price": 2425.0, - "url": "https://www.rightmove.co.uk/properties/162510926", - "info": { - "identifier": 162510926, - "sqm_ocr": 80.2, - "price": 2425.0, - "price_per_sqm": 30.236907730673316, - "url": "https://www.rightmove.co.uk/properties/162510926", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Gibson Lane", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22316/162510926/22316_33847013_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.047257", - "last_seen": "2025-06-01T22:06:12.633555", - "price": 2425.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240722, - 51.44815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162510983", - "info": { - "identifier": 162510983, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162510983", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/162510983/194222_HRP250352_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.464876", - "last_seen": "2025-06-01T22:06:01.159184", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.230779, - 51.409466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.2, - "qmprice": 30.3, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162511010", - "info": { - "identifier": 162511010, - "sqm_ocr": 79.2, - "price": 2400.0, - "price_per_sqm": 30.3030303030303, - "url": "https://www.rightmove.co.uk/properties/162511010", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Gibson Lane", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22316/162511010/22316_33914107_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.809014", - "last_seen": "2025-06-01T22:06:13.498504", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.250729, - 51.45344 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162511292", - "info": { - "identifier": 162511292, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162511292", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69292/162511292/69292_P214603_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.653571", - "last_seen": "2025-06-01T22:05:53.510467", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10248, - 51.53721 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162511454", - "info": { - "identifier": 162511454, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162511454", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stones Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106225/162511454/106225_BEP250040_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.710113", - "last_seen": "2025-06-01T22:05:39.871345", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232483, - 51.58163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3466.0, - "url": "https://www.rightmove.co.uk/properties/162511574", - "info": { - "identifier": 162511574, - "sqm_ocr": null, - "price": 3466.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162511574", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77514/162511574/77514_WES180086_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.658862", - "last_seen": "2025-06-01T22:05:42.894087", - "price": 3466.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115659, - 51.52215 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.2, - "qmprice": 41.76, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162511589", - "info": { - "identifier": 162511589, - "sqm_ocr": 86.2, - "price": 3600.0, - "price_per_sqm": 41.76334106728538, - "url": "https://www.rightmove.co.uk/properties/162511589", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46013/162511589/46013_KGL250057_L_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.575930", - "last_seen": "2025-06-01T22:05:53.991089", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13686, - 51.56081 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162511649", - "info": { - "identifier": 162511649, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162511649", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Your Move", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/32k/31368/162511649/31368_BEX240011_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.199167", - "last_seen": "2025-06-01T22:05:39.903272", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.1259, - 51.462364 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162511859", - "info": { - "identifier": 162511859, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162511859", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Lifestyle Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81013/162511859/81013_6854_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.040207, - 51.53166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 42.21, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162512033", - "info": { - "identifier": 162512033, - "sqm_ocr": 69.3, - "price": 2925.0, - "price_per_sqm": 42.20779220779221, - "url": "https://www.rightmove.co.uk/properties/162512033", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Liv International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54583/162512033/54583_LIVH_011397_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.278378", - "last_seen": "2025-06-01T22:06:15.860621", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169922, - 51.525475 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 39.16, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162512156", - "info": { - "identifier": 162512156, - "sqm_ocr": 83.0, - "price": 3250.0, - "price_per_sqm": 39.1566265060241, - "url": "https://www.rightmove.co.uk/properties/162512156", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/162512156/212327_P161156_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.510671", - "last_seen": "2025-06-01T22:06:10.552266", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01354, - 51.50003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.1, - "qmprice": 23.66, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162512261", - "info": { - "identifier": 162512261, - "sqm_ocr": 95.1, - "price": 2250.0, - "price_per_sqm": 23.659305993690854, - "url": "https://www.rightmove.co.uk/properties/162512261", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50181/162512261/50181_33380692_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.373166", - "last_seen": "2025-06-01T22:05:51.230159", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.436561, - 51.566216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162512267", - "info": { - "identifier": 162512267, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162512267", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58000/162512267/58000_KEO240060_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.246284", - "last_seen": "2025-06-01T22:06:01.200946", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206481, - 51.41318 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162512291", - "info": { - "identifier": 162512291, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162512291", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Anthony Martin Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96280/162512291/96280_LET250041_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.215912", - "last_seen": "2025-06-01T22:05:39.919302", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.131064, - 51.45583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.54, - "qmprice": 49.04, - "rooms": 2, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/162512300", - "info": { - "identifier": 162512300, - "sqm_ocr": 80.54, - "price": 3950.0, - "price_per_sqm": 49.04395331512292, - "url": "https://www.rightmove.co.uk/properties/162512300", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Nova Haus London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240566/162512300/240566_NOV250076_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.746540", - "last_seen": "2025-06-01T22:05:56.775688", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096858, - 51.529858 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162512552", - "info": { - "identifier": 162512552, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162512552", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Oaktree West London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237683/162512552/237683_OWL250014_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.417677", - "last_seen": "2025-06-01T22:05:45.264596", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31312, - 51.509464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162512585", - "info": { - "identifier": 162512585, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162512585", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162512585/213815_597999_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.187196", - "last_seen": "2025-06-01T20:19:58.688650", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021811, - 51.540764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.36, - "qmprice": 61.11, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162512654", - "info": { - "identifier": 162512654, - "sqm_ocr": 61.36, - "price": 3750.0, - "price_per_sqm": 61.11473272490222, - "url": "https://www.rightmove.co.uk/properties/162512654", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/162512654/63031_LRL220397_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.715875", - "last_seen": "2025-06-01T22:05:42.822134", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136849, - 51.541306 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162512765", - "info": { - "identifier": 162512765, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162512765", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162512765/213815_669565_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.843036", - "last_seen": "2025-06-01T22:06:08.685341", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013455, - 51.497677 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 32.88, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162512819", - "info": { - "identifier": 162512819, - "sqm_ocr": 73.0, - "price": 2400.0, - "price_per_sqm": 32.87671232876713, - "url": "https://www.rightmove.co.uk/properties/162512819", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162512819/221711_3513_EAF_183730_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.324916", - "last_seen": "2025-06-01T22:05:46.483445", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.003817, - 51.48981 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162512822", - "info": { - "identifier": 162512822, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162512822", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Citiland Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282164/162512822/282164_FA79RSE2_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.498904", - "last_seen": "2025-06-01T22:06:09.802291", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07446, - 51.52452 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162512828", - "info": { - "identifier": 162512828, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162512828", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Andrews Letting and Management", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34358/162512828/34358_STR190098_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.156764", - "last_seen": "2025-06-01T22:05:59.543257", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133768, - 51.42604 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.7, - "qmprice": 40.03, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162512945", - "info": { - "identifier": 162512945, - "sqm_ocr": 68.7, - "price": 2750.0, - "price_per_sqm": 40.02911208151383, - "url": "https://www.rightmove.co.uk/properties/162512945", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Henry Wiltshire", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256607/162512945/256607_9313_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.017338", - "last_seen": "2025-06-01T22:06:13.757288", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194947, - 51.459118 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 35.94, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162512984", - "info": { - "identifier": 162512984, - "sqm_ocr": 64.0, - "price": 2300.0, - "price_per_sqm": 35.9375, - "url": "https://www.rightmove.co.uk/properties/162512984", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/162512984/107533_1326666_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.119755", - "last_seen": "2025-06-01T22:06:00.874462", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02055, - 51.4717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 147.9, - "qmprice": 23.33, - "rooms": 3, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162513020", - "info": { - "identifier": 162513020, - "sqm_ocr": 147.9, - "price": 3450.0, - "price_per_sqm": 23.32657200811359, - "url": "https://www.rightmove.co.uk/properties/162513020", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43002/162513020/43002_OXL230168_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.673225", - "last_seen": "2025-06-01T22:05:58.665848", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293778, - 51.40107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.54, - "qmprice": 29.61, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162513074", - "info": { - "identifier": 162513074, - "sqm_ocr": 67.54, - "price": 2000.0, - "price_per_sqm": 29.61208172934557, - "url": "https://www.rightmove.co.uk/properties/162513074", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Oaks Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235208/162513074/235208_CRO250956_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.609302", - "last_seen": "2025-06-01T22:05:43.479662", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129111, - 51.38759 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.8, - "qmprice": 20.68, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162513098", - "info": { - "identifier": 162513098, - "sqm_ocr": 108.8, - "price": 2250.0, - "price_per_sqm": 20.68014705882353, - "url": "https://www.rightmove.co.uk/properties/162513098", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85766/162513098/85766_HRX250102_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.887266", - "last_seen": "2025-06-01T22:05:50.458779", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3345, - 51.579 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.8, - "qmprice": 21.27, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162513158", - "info": { - "identifier": 162513158, - "sqm_ocr": 105.8, - "price": 2250.0, - "price_per_sqm": 21.266540642722116, - "url": "https://www.rightmove.co.uk/properties/162513158", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brinkleys Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42912/162513158/42912_PUT220037_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.037790", - "last_seen": "2025-06-01T22:06:13.890455", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228572, - 51.44741 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.92, - "qmprice": 27.95, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162513323", - "info": { - "identifier": 162513323, - "sqm_ocr": 110.92, - "price": 3100.0, - "price_per_sqm": 27.948070681572304, - "url": "https://www.rightmove.co.uk/properties/162513323", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43002/162513323/43002_OXL230164_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.642270", - "last_seen": "2025-06-01T22:05:58.815458", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293778, - 51.40107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.3, - "qmprice": 31.21, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162513434", - "info": { - "identifier": 162513434, - "sqm_ocr": 83.3, - "price": 2600.0, - "price_per_sqm": 31.2124849939976, - "url": "https://www.rightmove.co.uk/properties/162513434", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227810/162513434/227810_1327978_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.409270", - "last_seen": "2025-06-01T22:05:46.109385", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.074076, - 51.494987 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.54, - "qmprice": 49.62, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162513443", - "info": { - "identifier": 162513443, - "sqm_ocr": 70.54, - "price": 3500.0, - "price_per_sqm": 49.617238446271614, - "url": "https://www.rightmove.co.uk/properties/162513443", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162513443/16050_1327911_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.780672", - "last_seen": "2025-06-01T22:06:08.177325", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056453, - 51.51218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.54, - "qmprice": 36.86, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162513449", - "info": { - "identifier": 162513449, - "sqm_ocr": 70.54, - "price": 2600.0, - "price_per_sqm": 36.85851998865891, - "url": "https://www.rightmove.co.uk/properties/162513449", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162513449/16050_1327985_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.775442", - "last_seen": "2025-06-01T22:06:08.169187", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056453, - 51.51218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.5, - "qmprice": 19.91, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162513515", - "info": { - "identifier": 162513515, - "sqm_ocr": 105.5, - "price": 2100.0, - "price_per_sqm": 19.90521327014218, - "url": "https://www.rightmove.co.uk/properties/162513515", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206645/162513515/206645_32037243_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.213544", - "last_seen": "2025-06-01T22:05:50.430387", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.361806, - 51.5731 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162513518", - "info": { - "identifier": 162513518, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162513518", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108343/162513518/108343_CSZ221659_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.399679", - "last_seen": "2025-06-01T22:05:44.372024", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.251111, - 51.507347 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162513560", - "info": { - "identifier": 162513560, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162513560", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/162513560/17888_37536_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.133810", - "last_seen": "2025-06-01T22:05:42.287350", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14647, - 51.54403 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.1, - "qmprice": 38.46, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162513584", - "info": { - "identifier": 162513584, - "sqm_ocr": 74.1, - "price": 2850.0, - "price_per_sqm": 38.46153846153847, - "url": "https://www.rightmove.co.uk/properties/162513584", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58003/162513584/58003_KBA220028_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.895022", - "last_seen": "2025-06-01T22:06:12.848858", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183411, - 51.438225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162513593", - "info": { - "identifier": 162513593, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162513593", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Pinnacle Housing Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212189/162513593/212189_3198_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.703732", - "last_seen": "2025-06-01T22:05:46.277634", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.11971, - 51.49203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.41, - "qmprice": 51.91, - "rooms": 2, - "total_price": 2980.0, - "url": "https://www.rightmove.co.uk/properties/162513698", - "info": { - "identifier": 162513698, - "sqm_ocr": 57.41, - "price": 2980.0, - "price_per_sqm": 51.90733321720955, - "url": "https://www.rightmove.co.uk/properties/162513698", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/162513698/63031_CAL110037_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.020341", - "last_seen": "2025-06-01T22:05:43.134292", - "price": 2980.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130062, - 51.543907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 40.39, - "rooms": 4, - "total_price": 3393.0, - "url": "https://www.rightmove.co.uk/properties/162513779", - "info": { - "identifier": 162513779, - "sqm_ocr": 84.0, - "price": 3393.0, - "price_per_sqm": 40.392857142857146, - "url": "https://www.rightmove.co.uk/properties/162513779", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "AMBER & CO (MGMT)", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282725/162513779/282725_7012_AMBE_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.626766", - "last_seen": "2025-06-01T22:05:44.812103", - "price": 3393 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.256932, - 51.5159 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/162513782", - "info": { - "identifier": 162513782, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162513782", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JBrown", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239306/162513782/239306_6731_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.098738", - "last_seen": "2025-06-01T22:06:15.593660", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149565, - 51.487 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162513833", - "info": { - "identifier": 162513833, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162513833", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162513833/270461_JAX220389_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.772060", - "last_seen": "2025-06-01T22:06:02.386002", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.009385, - 51.52074 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162513851", - "info": { - "identifier": 162513851, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162513851", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/162513851/252785_33914304_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.953904", - "last_seen": "2025-06-01T22:05:59.278879", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100781, - 51.46557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 34.38, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162513992", - "info": { - "identifier": 162513992, - "sqm_ocr": 80.0, - "price": 2750.0, - "price_per_sqm": 34.375, - "url": "https://www.rightmove.co.uk/properties/162513992", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Portland Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139901/162513992/139901_33524960_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.423563", - "last_seen": "2025-06-01T22:05:38.989543", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220081, - 51.566788 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162514130", - "info": { - "identifier": 162514130, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162514130", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/162514130/252785_33914327_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.212207", - "last_seen": "2025-06-01T22:05:59.628360", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100781, - 51.46557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162514136", - "info": { - "identifier": 162514136, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162514136", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50064/162514136/50064_P276088_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.207400", - "last_seen": "2025-06-01T22:05:59.622679", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11392, - 51.47669 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.4, - "qmprice": 40.97, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162514148", - "info": { - "identifier": 162514148, - "sqm_ocr": 71.4, - "price": 2925.0, - "price_per_sqm": 40.96638655462185, - "url": "https://www.rightmove.co.uk/properties/162514148", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36789/162514148/36789_CAL210117_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.333227", - "last_seen": "2025-06-01T22:05:46.503463", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.006292, - 51.50252 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 58.33, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162514214", - "info": { - "identifier": 162514214, - "sqm_ocr": 60.0, - "price": 3500.0, - "price_per_sqm": 58.333333333333336, - "url": "https://www.rightmove.co.uk/properties/162514214", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162514214/96668_189549413112023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.165799", - "last_seen": "2025-06-01T22:06:14.306956", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141546, - 51.52257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162514226", - "info": { - "identifier": 162514226, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162514226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162514226/96668_240384402032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.058066", - "last_seen": "2025-06-01T22:05:38.958967", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176314, - 51.646336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162514241", - "info": { - "identifier": 162514241, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162514241", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Settio Property Experience Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267794/162514241/267794_30895_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.586579", - "last_seen": "2025-06-01T22:06:02.251450", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02884, - 51.51019 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162514253", - "info": { - "identifier": 162514253, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162514253", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162514253/96668_242300019032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.173771", - "last_seen": "2025-06-01T22:05:50.649168", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.332558, - 51.580982 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162514286", - "info": { - "identifier": 162514286, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162514286", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162514286/191744_RL2639_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.109747", - "last_seen": "2025-06-01T22:05:39.095166", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238262, - 51.5957 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.4, - "qmprice": 39.63, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162514367", - "info": { - "identifier": 162514367, - "sqm_ocr": 69.4, - "price": 2750.0, - "price_per_sqm": 39.62536023054755, - "url": "https://www.rightmove.co.uk/properties/162514367", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57934/162514367/57934_KDN250163_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.010402", - "last_seen": "2025-06-01T22:05:49.535012", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.243976, - 51.517426 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162514394", - "info": { - "identifier": 162514394, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162514394", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162514394/96668_246421027042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.489230", - "last_seen": "2025-06-01T22:06:01.407623", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.234884, - 51.409523 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.3, - "qmprice": 33.76, - "rooms": 2, - "total_price": 2880.0, - "url": "https://www.rightmove.co.uk/properties/162514400", - "info": { - "identifier": 162514400, - "sqm_ocr": 85.3, - "price": 2880.0, - "price_per_sqm": 33.763188745603756, - "url": "https://www.rightmove.co.uk/properties/162514400", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Austin Homes London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105559/162514400/105559_3d7666f8-6a5f-434f-b1b1-b67475494d6f_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.927659", - "last_seen": "2025-06-01T22:06:03.064989", - "price": 2880.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.036803, - 51.501026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162514406", - "info": { - "identifier": 162514406, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162514406", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167687/162514406/167687_2698269_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.576615", - "last_seen": "2025-06-01T22:05:41.067431", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28423, - 51.540962 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162514457", - "info": { - "identifier": 162514457, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162514457", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162514457/96668_247449506052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.053018", - "last_seen": "2025-06-01T22:05:58.185741", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199027, - 51.49245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162514547", - "info": { - "identifier": 162514547, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162514547", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162514547/96668_248380114052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.843426", - "last_seen": "2025-06-01T22:05:47.227468", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.083068, - 51.557823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162514583", - "info": { - "identifier": 162514583, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162514583", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162514583/96668_248700717052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.706566", - "last_seen": "2025-06-01T22:05:43.342080", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095578, - 51.38937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 145.3, - "qmprice": 18.24, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162514619", - "info": { - "identifier": 162514619, - "sqm_ocr": 145.3, - "price": 2650.0, - "price_per_sqm": 18.2381280110117, - "url": "https://www.rightmove.co.uk/properties/162514619", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frost Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73898/162514619/73898_11174239_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.598819", - "last_seen": "2025-06-01T22:05:43.475099", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121709, - 51.337044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162514643", - "info": { - "identifier": 162514643, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162514643", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162514643/96668_249105521052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.246100", - "last_seen": "2025-06-01T22:05:39.942030", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.140232, - 51.456593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.32, - "qmprice": 26.81, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162514658", - "info": { - "identifier": 162514658, - "sqm_ocr": 78.32, - "price": 2100.0, - "price_per_sqm": 26.813074565883557, - "url": "https://www.rightmove.co.uk/properties/162514658", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Your London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89638/162514658/89638_DT11-t-443_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.349701", - "last_seen": "2025-06-01T22:05:46.420452", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014856, - 51.47352 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162514661", - "info": { - "identifier": 162514661, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162514661", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Balgores", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10596/162514661/10596_DGL240014_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.013581", - "last_seen": "2025-06-01T22:05:38.230852", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.14397, - 51.55713 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.5, - "qmprice": 44.09, - "rooms": 2, - "total_price": 3285.0, - "url": "https://www.rightmove.co.uk/properties/162514670", - "info": { - "identifier": 162514670, - "sqm_ocr": 74.5, - "price": 3285.0, - "price_per_sqm": 44.09395973154363, - "url": "https://www.rightmove.co.uk/properties/162514670", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Living by Lendlease", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277814/162514670/277814_277814_p0195669_A-0703_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.419634", - "last_seen": "2025-06-01T22:06:05.654529", - "price": 3285.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096254, - 51.49232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.5, - "qmprice": 47.52, - "rooms": 2, - "total_price": 3540.0, - "url": "https://www.rightmove.co.uk/properties/162514679", - "info": { - "identifier": 162514679, - "sqm_ocr": 74.5, - "price": 3540.0, - "price_per_sqm": 47.51677852348993, - "url": "https://www.rightmove.co.uk/properties/162514679", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Living by Lendlease", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277814/162514679/277814_277814_p0195669_A-0505_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.492815", - "last_seen": "2025-06-01T22:06:05.623583", - "price": 3540.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096254, - 51.49232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.0, - "qmprice": 37.45, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162514745", - "info": { - "identifier": 162514745, - "sqm_ocr": 56.0, - "price": 2097.0, - "price_per_sqm": 37.44642857142857, - "url": "https://www.rightmove.co.uk/properties/162514745", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146498/162514745/146498_33779042_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.616243", - "last_seen": "2025-06-01T22:06:06.829975", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098487, - 51.480286 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162514778", - "info": { - "identifier": 162514778, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162514778", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30584/162514778/30584_05350211_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.852408", - "last_seen": "2025-06-01T22:05:58.886848", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.287, - 51.382 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162514784", - "info": { - "identifier": 162514784, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162514784", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162514784/191744_RL4964_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.735400", - "last_seen": "2025-06-01T22:06:03.310715", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.004036, - 51.52726 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162515096", - "info": { - "identifier": 162515096, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162515096", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/162515096/17888_33620_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.048680", - "last_seen": "2025-06-01T22:06:15.531995", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17399, - 51.52665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.9, - "qmprice": 39.78, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162515165", - "info": { - "identifier": 162515165, - "sqm_ocr": 87.9, - "price": 3497.0, - "price_per_sqm": 39.78384527872582, - "url": "https://www.rightmove.co.uk/properties/162515165", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77695/162515165/77695_33914402_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.349847", - "last_seen": "2025-06-01T22:06:15.000083", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140879, - 51.48844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.88, - "qmprice": 37.17, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162515303", - "info": { - "identifier": 162515303, - "sqm_ocr": 61.88, - "price": 2300.0, - "price_per_sqm": 37.16871363930187, - "url": "https://www.rightmove.co.uk/properties/162515303", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "LDB", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88034/162515303/88034_33914414_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.055129", - "last_seen": "2025-06-01T22:05:48.469726", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210164, - 51.469685 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162515348", - "info": { - "identifier": 162515348, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162515348", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162515348/257522_0023-grace-RUwfzt_IMG_00_0000_max_656x437.png", - "let_date_available": "04/12/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.081157", - "last_seen": "2025-06-01T22:05:40.365220", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28391, - 51.55943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 146.5, - "qmprice": 23.89, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162515795", - "info": { - "identifier": 162515795, - "sqm_ocr": 146.5, - "price": 3500.0, - "price_per_sqm": 23.890784982935152, - "url": "https://www.rightmove.co.uk/properties/162515795", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Pickwick Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266915/162515795/266915_4566_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.366558", - "last_seen": "2025-06-01T22:06:05.741941", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07387, - 51.44969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162515813", - "info": { - "identifier": 162515813, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162515813", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247487/162515813/247487_P464475_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.349192", - "last_seen": "2025-06-01T22:05:43.168781", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17105, - 51.54612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.96, - "qmprice": 37.9, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162515975", - "info": { - "identifier": 162515975, - "sqm_ocr": 65.96, - "price": 2500.0, - "price_per_sqm": 37.90175864160097, - "url": "https://www.rightmove.co.uk/properties/162515975", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162515975/43310_HEA203211_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.426581", - "last_seen": "2025-06-01T22:06:10.326748", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.000403, - 51.509846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.35, - "qmprice": 39.0, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162515981", - "info": { - "identifier": 162515981, - "sqm_ocr": 74.35, - "price": 2900.0, - "price_per_sqm": 39.004707464694015, - "url": "https://www.rightmove.co.uk/properties/162515981", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/162515981/135416_BPL250087_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.751933", - "last_seen": "2025-06-01T22:06:13.396814", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177626, - 51.465767 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162516266", - "info": { - "identifier": 162516266, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162516266", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Touchstone Corporate PSL", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162401/162516266/162401_17137_IMG_00_0000_max_656x437.png", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.661615", - "last_seen": "2025-06-01T22:05:49.302973", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20972, - 51.4942 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 131.2, - "qmprice": 30.49, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162516317", - "info": { - "identifier": 162516317, - "sqm_ocr": 131.2, - "price": 4000.0, - "price_per_sqm": 30.487804878048784, - "url": "https://www.rightmove.co.uk/properties/162516317", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78410/162516317/78410_33914470_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.460768", - "last_seen": "2025-06-01T22:06:12.335765", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168073, - 51.47389 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.1, - "qmprice": 35.57, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162516326", - "info": { - "identifier": 162516326, - "sqm_ocr": 73.1, - "price": 2600.0, - "price_per_sqm": 35.56771545827634, - "url": "https://www.rightmove.co.uk/properties/162516326", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286493/162516326/286493_33914471_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.684460", - "last_seen": "2025-06-01T22:06:05.049189", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04938, - 51.49866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162516332", - "info": { - "identifier": 162516332, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162516332", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286493/162516332/286493_33860737_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.965963", - "last_seen": "2025-06-01T22:06:00.379056", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039253, - 51.492622 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/162516335", - "info": { - "identifier": 162516335, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162516335", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286493/162516335/286493_33914473_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.675799", - "last_seen": "2025-06-01T22:06:05.038208", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0382, - 51.493404 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162516341", - "info": { - "identifier": 162516341, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162516341", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/162516341/84791_33914474_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.306342", - "last_seen": "2025-06-01T22:05:57.261191", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.306007, - 51.51323 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 38.71, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162516371", - "info": { - "identifier": 162516371, - "sqm_ocr": 62.0, - "price": 2400.0, - "price_per_sqm": 38.70967741935484, - "url": "https://www.rightmove.co.uk/properties/162516371", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Let UK Home", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272819/162516371/272819_33914476_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.547691", - "last_seen": "2025-06-01T22:05:56.628624", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240203, - 51.59488 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162516440", - "info": { - "identifier": 162516440, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162516440", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162516440/181787_181787_1069_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.339310", - "last_seen": "2025-06-01T22:05:48.488039", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22289, - 51.51113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 120.03, - "qmprice": 20.0, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162516572", - "info": { - "identifier": 162516572, - "sqm_ocr": 120.03, - "price": 2400.0, - "price_per_sqm": 19.99500124968758, - "url": "https://www.rightmove.co.uk/properties/162516572", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/162516572/77192_LANCY_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.640764", - "last_seen": "2025-06-01T22:05:39.775101", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1698, - 51.64538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162516644", - "info": { - "identifier": 162516644, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162516644", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "We Can Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/217k/216545/162516644/216545_59fb06ff-a40e-4903-b674-0e5ead3c3a63_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.538785", - "last_seen": "2025-06-01T22:05:59.793976", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109049, - 51.45836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 39.93, - "rooms": 2, - "total_price": 2675.0, - "url": "https://www.rightmove.co.uk/properties/162516842", - "info": { - "identifier": 162516842, - "sqm_ocr": 67.0, - "price": 2675.0, - "price_per_sqm": 39.92537313432836, - "url": "https://www.rightmove.co.uk/properties/162516842", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77493/162516842/77493_WES150231_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.685534", - "last_seen": "2025-06-01T22:05:53.605468", - "price": 2675.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115084, - 51.530506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162516854", - "info": { - "identifier": 162516854, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162516854", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212321/162516854/212321_P161157_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.279541", - "last_seen": "2025-06-01T22:06:13.242651", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13818, - 51.48203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.0, - "qmprice": 21.84, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162516923", - "info": { - "identifier": 162516923, - "sqm_ocr": 103.0, - "price": 2250.0, - "price_per_sqm": 21.844660194174757, - "url": "https://www.rightmove.co.uk/properties/162516923", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Abode", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77447/162516923/77447_61858135-e838-45cb-b664-c375c8f07238_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.006081", - "last_seen": "2025-06-01T22:06:03.914109", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.020788, - 51.621334 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.47, - "qmprice": 32.57, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162516968", - "info": { - "identifier": 162516968, - "sqm_ocr": 64.47, - "price": 2100.0, - "price_per_sqm": 32.57328990228013, - "url": "https://www.rightmove.co.uk/properties/162516968", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Woodhouse Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77192/162516968/77192_BRANCY_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.089789", - "last_seen": "2025-06-01T22:05:39.729882", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23927, - 51.60579 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.4, - "qmprice": 37.47, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162516971", - "info": { - "identifier": 162516971, - "sqm_ocr": 73.4, - "price": 2750.0, - "price_per_sqm": 37.46594005449591, - "url": "https://www.rightmove.co.uk/properties/162516971", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/162516971/54730_WLL150138_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.776975", - "last_seen": "2025-06-01T22:05:45.248588", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.287209, - 51.509872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 35.8, - "qmprice": 84.72, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162517022", - "info": { - "identifier": 162517022, - "sqm_ocr": 35.8, - "price": 3033.0, - "price_per_sqm": 84.72067039106146, - "url": "https://www.rightmove.co.uk/properties/162517022", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Bentley & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/205k/204560/162517022/204560_1024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.801949", - "last_seen": "2025-06-01T22:05:54.729559", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119245, - 51.5272 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162517025", - "info": { - "identifier": 162517025, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162517025", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/162517025/264878_CAN250609_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.807493", - "last_seen": "2025-06-01T22:05:54.704082", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225137, - 51.51088 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.2, - "qmprice": 30.59, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162517028", - "info": { - "identifier": 162517028, - "sqm_ocr": 75.2, - "price": 2300.0, - "price_per_sqm": 30.585106382978722, - "url": "https://www.rightmove.co.uk/properties/162517028", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30575/162517028/30575_05311521_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.307765", - "last_seen": "2025-06-01T22:06:04.184497", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.282936, - 51.46463 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/162517067", - "info": { - "identifier": 162517067, - "sqm_ocr": null, - "price": 3012.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162517067", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Garrett Whitelock", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105305/162517067/105305_101341001996_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.477937", - "last_seen": "2025-06-01T22:06:05.976796", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06852, - 51.48773 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162517100", - "info": { - "identifier": 162517100, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162517100", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Homesite", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32184/162517100/32184_BYR110237_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.189846, - 51.517223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162517106", - "info": { - "identifier": 162517106, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162517106", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hills Estate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/153k/152342/162517106/152342_1600_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.550427", - "last_seen": "2025-06-01T22:06:02.146565", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.057378, - 51.5334 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162517175", - "info": { - "identifier": 162517175, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162517175", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12687/162517175/12687_ELR050066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.991828", - "last_seen": "2025-06-01T22:06:14.153049", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187013, - 51.451344 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162517247", - "info": { - "identifier": 162517247, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162517247", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Carringtons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/2k/1541/162517247/1541_CAR210279_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.744439", - "last_seen": "2025-06-01T22:05:58.945583", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.290357, - 51.418015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.9, - "qmprice": 52.97, - "rooms": 2, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/162517259", - "info": { - "identifier": 162517259, - "sqm_ocr": 58.9, - "price": 3120.0, - "price_per_sqm": 52.97113752122241, - "url": "https://www.rightmove.co.uk/properties/162517259", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Bentley & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/205k/204560/162517259/204560_1025_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "10/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.117156", - "last_seen": "2025-06-01T22:05:43.210007", - "price": 3120 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131075, - 51.5292 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.3, - "qmprice": 34.18, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162517331", - "info": { - "identifier": 162517331, - "sqm_ocr": 86.3, - "price": 2950.0, - "price_per_sqm": 34.183082271147164, - "url": "https://www.rightmove.co.uk/properties/162517331", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Andrew Nunn & Associates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87794/162517331/87794_33914540_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.985844", - "last_seen": "2025-06-01T22:05:52.328343", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.256622, - 51.491875 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.3, - "qmprice": 30.65, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162517511", - "info": { - "identifier": 162517511, - "sqm_ocr": 78.3, - "price": 2400.0, - "price_per_sqm": 30.651340996168585, - "url": "https://www.rightmove.co.uk/properties/162517511", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57985/162517511/57985_KCW160050_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.087205", - "last_seen": "2025-06-01T22:06:05.790815", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043288, - 51.505974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2795.0, - "url": "https://www.rightmove.co.uk/properties/162517748", - "info": { - "identifier": 162517748, - "sqm_ocr": null, - "price": 2795.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162517748", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/162517748/212327_P161164_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.493633", - "last_seen": "2025-06-01T22:06:10.514983", - "price": 2795 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00699, - 51.50496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162517850", - "info": { - "identifier": 162517850, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162517850", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Quest Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35843/162517850/35843_Em2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.036713", - "last_seen": "2025-06-01T22:06:09.066187", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06493, - 51.53165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162517961", - "info": { - "identifier": 162517961, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162517961", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/162517961/96392_SVL230688_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.671427", - "last_seen": "2025-06-01T22:06:14.333620", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172611, - 51.53381 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/162517991", - "info": { - "identifier": 162517991, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162517991", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/162517991/17888_38204_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.692431", - "last_seen": "2025-06-01T22:05:53.618037", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12634, - 51.54964 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.1, - "qmprice": 35.29, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162518027", - "info": { - "identifier": 162518027, - "sqm_ocr": 92.1, - "price": 3250.0, - "price_per_sqm": 35.28773072747014, - "url": "https://www.rightmove.co.uk/properties/162518027", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30575/162518027/30575_05311510_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.177218", - "last_seen": "2025-06-01T22:06:04.409256", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.326, - 51.446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162518090", - "info": { - "identifier": 162518090, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162518090", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Adam Kennedy", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280523/162518090/280523_29105595_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.929783", - "last_seen": "2025-06-01T22:05:45.507579", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.083786, - 51.665253 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.34, - "qmprice": 39.96, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162518138", - "info": { - "identifier": 162518138, - "sqm_ocr": 81.34, - "price": 3250.0, - "price_per_sqm": 39.95574133267765, - "url": "https://www.rightmove.co.uk/properties/162518138", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50637/162518138/50637_HPQ012505308_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.699368", - "last_seen": "2025-06-01T22:06:14.372660", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1873, - 51.51445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.1, - "qmprice": 33.94, - "rooms": 3, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/162518147", - "info": { - "identifier": 162518147, - "sqm_ocr": 100.1, - "price": 3397.0, - "price_per_sqm": 33.93606393606394, - "url": "https://www.rightmove.co.uk/properties/162518147", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "ADN Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283532/162518147/283532_33914604_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.526654", - "last_seen": "2025-06-01T22:05:55.787035", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195969, - 51.580265 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162518192", - "info": { - "identifier": 162518192, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162518192", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/162518192/264878_CAN250629_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.020912", - "last_seen": "2025-06-01T22:06:07.457114", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012207, - 51.545177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.88, - "qmprice": 33.15, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162518243", - "info": { - "identifier": 162518243, - "sqm_ocr": 70.88, - "price": 2350.0, - "price_per_sqm": 33.15462753950339, - "url": "https://www.rightmove.co.uk/properties/162518243", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162518243/87187_48431_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.993755", - "last_seen": "2025-06-01T22:06:09.041686", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009879, - 51.521156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.7, - "qmprice": 45.44, - "rooms": 2, - "total_price": 3440.0, - "url": "https://www.rightmove.co.uk/properties/162518270", - "info": { - "identifier": 162518270, - "sqm_ocr": 75.7, - "price": 3440.0, - "price_per_sqm": 45.442536327608984, - "url": "https://www.rightmove.co.uk/properties/162518270", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Living by Lendlease", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277814/162518270/277814_277814_p0195669_E-0803_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.412244", - "last_seen": "2025-06-01T22:06:04.933095", - "price": 3440.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096254, - 51.49232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3171.0, - "url": "https://www.rightmove.co.uk/properties/162518318", - "info": { - "identifier": 162518318, - "sqm_ocr": null, - "price": 3171.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162518318", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Living by Lendlease", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278564/162518318/278564_278564_p0193212_E-0303_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.835242", - "last_seen": "2025-06-01T22:06:06.981338", - "price": 3171.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09549, - 51.4941 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 41.8, - "rooms": 2, - "total_price": 3093.0, - "url": "https://www.rightmove.co.uk/properties/162518333", - "info": { - "identifier": 162518333, - "sqm_ocr": 74.0, - "price": 3093.0, - "price_per_sqm": 41.7972972972973, - "url": "https://www.rightmove.co.uk/properties/162518333", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Living by Lendlease", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278564/162518333/278564_278564_p0194411_C-0905_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.879571", - "last_seen": "2025-06-01T22:06:07.005044", - "price": 3093.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088007, - 51.494278 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 31.08, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162518570", - "info": { - "identifier": 162518570, - "sqm_ocr": 74.0, - "price": 2300.0, - "price_per_sqm": 31.08108108108108, - "url": "https://www.rightmove.co.uk/properties/162518570", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Estates East", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94276/162518570/94276_33914641_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.736890", - "last_seen": "2025-06-01T22:06:11.599811", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016968, - 51.592735 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162518585", - "info": { - "identifier": 162518585, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162518585", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Ian Gibbs", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143588/162518585/143588_2446_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.906110", - "last_seen": "2025-06-01T22:05:45.471677", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08219, - 51.63561 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.06, - "qmprice": 39.13, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162518708", - "info": { - "identifier": 162518708, - "sqm_ocr": 83.06, - "price": 3250.0, - "price_per_sqm": 39.128340958343365, - "url": "https://www.rightmove.co.uk/properties/162518708", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50637/162518708/50637_HPQ012571173_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.220699", - "last_seen": "2025-06-01T22:06:15.985081", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1873, - 51.51445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/162518822", - "info": { - "identifier": 162518822, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162518822", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162518822/191744_RL3854_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.031020", - "last_seen": "2025-06-01T22:05:48.752212", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184806, - 51.476597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.9, - "qmprice": 33.61, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162518885", - "info": { - "identifier": 162518885, - "sqm_ocr": 72.9, - "price": 2450.0, - "price_per_sqm": 33.6076817558299, - "url": "https://www.rightmove.co.uk/properties/162518885", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72234/162518885/72234_RWL210039_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.332401", - "last_seen": "2025-06-01T22:06:02.770738", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.021575, - 51.50823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162518930", - "info": { - "identifier": 162518930, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162518930", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/162518930/222842_TCH220085_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.641065", - "last_seen": "2025-06-01T22:05:42.911755", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139177, - 51.541435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162518963", - "info": { - "identifier": 162518963, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162518963", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/201k/200876/162518963/200876_NBC161051_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.124619", - "last_seen": "2025-06-01T22:06:13.897252", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139076, - 51.481316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2895.0, - "url": "https://www.rightmove.co.uk/properties/162518984", - "info": { - "identifier": 162518984, - "sqm_ocr": null, - "price": 2895.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162518984", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Stow Brothers", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/115k/114391/162518984/114391_33914678_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.643859", - "last_seen": "2025-06-01T22:06:11.686607", - "price": 2895.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016022, - 51.591526 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162518993", - "info": { - "identifier": 162518993, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162518993", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25214/162518993/25214_33914680_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.014123", - "last_seen": "2025-06-01T22:06:05.441569", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.048937, - 51.490208 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162519101", - "info": { - "identifier": 162519101, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519101", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Concept Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82211/162519101/82211_1074_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.173535", - "last_seen": "2025-06-01T22:06:13.809777", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16512, - 51.43123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162519149", - "info": { - "identifier": 162519149, - "sqm_ocr": null, - "price": 2925.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519149", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57973/162519149/57973_KEG240140_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.407209", - "last_seen": "2025-06-01T22:06:15.790428", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168665, - 51.524765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/162519152", - "info": { - "identifier": 162519152, - "sqm_ocr": null, - "price": 2295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519152", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "The Stow Brothers", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/115k/114391/162519152/114391_33914693_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.655249", - "last_seen": "2025-06-01T22:06:11.926033", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034466, - 51.586433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162519185", - "info": { - "identifier": 162519185, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519185", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Bentley & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/205k/204560/162519185/204560_1026_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.603002", - "last_seen": "2025-06-01T22:05:42.238707", - "price": 2275 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128503, - 51.5484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162519284", - "info": { - "identifier": 162519284, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519284", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3305/162519284/3305_000910956_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.684259", - "last_seen": "2025-06-01T22:05:43.324385", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04731, - 51.38397 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3449.0, - "url": "https://www.rightmove.co.uk/properties/162519368", - "info": { - "identifier": 162519368, - "sqm_ocr": null, - "price": 3449.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519368", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40512/162519368/40512_33914710_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.123025", - "last_seen": "2025-06-01T22:06:05.518569", - "price": 3449 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098051, - 51.492596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162519434", - "info": { - "identifier": 162519434, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519434", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52713/162519434/52713_33914715_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.692132", - "last_seen": "2025-06-01T22:06:04.746865", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.327398, - 51.427376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162519449", - "info": { - "identifier": 162519449, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519449", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chissick Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/224k/223832/162519449/223832_50710_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.881024", - "last_seen": "2025-06-01T22:06:04.097891", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.14173, - 51.60953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162519455", - "info": { - "identifier": 162519455, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519455", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162519455/191744_RL2355_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.456374", - "last_seen": "2025-06-01T22:05:47.023325", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00282, - 51.489796 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162519554", - "info": { - "identifier": 162519554, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519554", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "SW16", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76165/162519554/76165_wddn_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.799174", - "last_seen": "2025-06-01T22:05:43.597989", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10886, - 51.37266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.3, - "qmprice": 37.59, - "rooms": 2, - "total_price": 3470.0, - "url": "https://www.rightmove.co.uk/properties/162519617", - "info": { - "identifier": 162519617, - "sqm_ocr": 92.3, - "price": 3470.0, - "price_per_sqm": 37.594799566630556, - "url": "https://www.rightmove.co.uk/properties/162519617", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Propertymade Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280319/162519617/280319_PRM250209_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.607172", - "last_seen": "2025-06-01T22:05:48.402890", - "price": 3470.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228623, - 51.49432 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162519689", - "info": { - "identifier": 162519689, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519689", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/162519689/80105_8437_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.467760", - "last_seen": "2025-06-01T22:06:11.633200", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.016907, - 51.553604 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162519692", - "info": { - "identifier": 162519692, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519692", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/162519692/264404_RX586089_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.358247", - "last_seen": "2025-06-01T22:06:05.232666", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065179, - 51.48506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162519707", - "info": { - "identifier": 162519707, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519707", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162519707/181787_181787_915_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.554418", - "last_seen": "2025-06-01T22:06:04.879686", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0978, - 51.4972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3393.0, - "url": "https://www.rightmove.co.uk/properties/162519845", - "info": { - "identifier": 162519845, - "sqm_ocr": null, - "price": 3393.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519845", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/162519845/51286_CLL250065_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.749889", - "last_seen": "2025-06-01T22:05:43.985232", - "price": 3393.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.256932, - 51.5159 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162519878", - "info": { - "identifier": 162519878, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519878", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44645/162519878/44645_FUL230169_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.245773", - "last_seen": "2025-06-01T22:05:49.481092", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206373, - 51.491425 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162519881", - "info": { - "identifier": 162519881, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162519881", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162519881/43310_CWL250224_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.764341", - "last_seen": "2025-06-01T22:05:46.514920", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.065415, - 51.487247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.55, - "qmprice": 47.31, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162519887", - "info": { - "identifier": 162519887, - "sqm_ocr": 84.55, - "price": 4000.0, - "price_per_sqm": 47.30928444707274, - "url": "https://www.rightmove.co.uk/properties/162519887", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43428/162519887/43428_FCL230453_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.523426", - "last_seen": "2025-06-01T22:05:57.922586", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194048, - 51.493717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162520106", - "info": { - "identifier": 162520106, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162520106", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162520106/181787_181787_1090_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.651464", - "last_seen": "2025-06-01T22:06:04.992122", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0978, - 51.4972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162520163", - "info": { - "identifier": 162520163, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162520163", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Simple Life London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233087/162520163/233087_S1314-0606_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.025414", - "last_seen": "2025-06-01T22:05:38.185251", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.074198, - 51.531616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.1, - "qmprice": 43.79, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162520232", - "info": { - "identifier": 162520232, - "sqm_ocr": 84.1, - "price": 3683.0, - "price_per_sqm": 43.793103448275865, - "url": "https://www.rightmove.co.uk/properties/162520232", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/162520232/212327_P161167_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.624358", - "last_seen": "2025-06-01T22:06:09.252491", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02553, - 51.50266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/162520244", - "info": { - "identifier": 162520244, - "sqm_ocr": null, - "price": 3120.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162520244", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/162520244/115768_7854theexts_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "06/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.218303", - "last_seen": "2025-06-01T22:06:09.175470", - "price": 3120 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01854, - 51.49076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162520307", - "info": { - "identifier": 162520307, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162520307", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Property Shop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167138/162520307/167138_TPR1001_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.054979", - "last_seen": "2025-06-01T22:05:50.804748", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.38031, - 51.57869 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.68, - "qmprice": 29.18, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162520529", - "info": { - "identifier": 162520529, - "sqm_ocr": 109.68, - "price": 3200.0, - "price_per_sqm": 29.175784099197664, - "url": "https://www.rightmove.co.uk/properties/162520529", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84875/162520529/84875_33914769_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.507463", - "last_seen": "2025-06-01T22:05:59.245484", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128972, - 51.45506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162520808", - "info": { - "identifier": 162520808, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162520808", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/162520808/222842_TCT250320_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.121938", - "last_seen": "2025-06-01T22:05:43.221819", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140281, - 51.54378 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.04, - "qmprice": 33.32, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162520922", - "info": { - "identifier": 162520922, - "sqm_ocr": 78.04, - "price": 2600.0, - "price_per_sqm": 33.31624807790876, - "url": "https://www.rightmove.co.uk/properties/162520922", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Parkheath", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72719/162520922/72719_33914786_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.655860", - "last_seen": "2025-06-01T22:05:42.904866", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173838, - 51.54765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.82, - "qmprice": 48.37, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162520961", - "info": { - "identifier": 162520961, - "sqm_ocr": 55.82, - "price": 2700.0, - "price_per_sqm": 48.36975994267288, - "url": "https://www.rightmove.co.uk/properties/162520961", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/139k/138797/162520961/138797_BPQ012529914_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.624033", - "last_seen": "2025-06-01T22:05:42.937321", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.160736, - 51.55159 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2557.0, - "url": "https://www.rightmove.co.uk/properties/162520982", - "info": { - "identifier": 162520982, - "sqm_ocr": null, - "price": 2557.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162520982", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212384/162520982/212384_P161168_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.114290", - "last_seen": "2025-06-01T20:19:57.119260", - "price": 2556 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05893, - 51.52031 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162521075", - "info": { - "identifier": 162521075, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162521075", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Castle Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245579/162521075/245579_2210_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.521036", - "last_seen": "2025-06-01T22:05:44.606846", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32934, - 51.50046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.4, - "qmprice": 33.91, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162521168", - "info": { - "identifier": 162521168, - "sqm_ocr": 63.4, - "price": 2150.0, - "price_per_sqm": 33.911671924290225, - "url": "https://www.rightmove.co.uk/properties/162521168", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/119k/118042/162521168/118042_33914798_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.233058", - "last_seen": "2025-06-01T22:05:46.878328", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.025434, - 51.475662 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162521174", - "info": { - "identifier": 162521174, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162521174", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "SW16", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76165/162521174/76165_prl_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.594357", - "last_seen": "2025-06-01T22:05:43.687084", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1208, - 51.33373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 32.72, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162521177", - "info": { - "identifier": 162521177, - "sqm_ocr": 81.0, - "price": 2650.0, - "price_per_sqm": 32.71604938271605, - "url": "https://www.rightmove.co.uk/properties/162521177", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/162521177/15981_1327406_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.029671", - "last_seen": "2025-06-01T22:05:59.995772", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13043, - 51.453476 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.3, - "qmprice": 32.69, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162521264", - "info": { - "identifier": 162521264, - "sqm_ocr": 67.3, - "price": 2200.0, - "price_per_sqm": 32.68945022288262, - "url": "https://www.rightmove.co.uk/properties/162521264", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/162521264/149153_1328001_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.705988", - "last_seen": "2025-06-01T22:05:58.514388", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.252377, - 51.393726 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162521369", - "info": { - "identifier": 162521369, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162521369", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162521369/96668_245905322042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.419369", - "last_seen": "2025-06-01T22:05:59.409565", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112366, - 51.489014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.9, - "qmprice": 37.37, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162521450", - "info": { - "identifier": 162521450, - "sqm_ocr": 66.9, - "price": 2500.0, - "price_per_sqm": 37.369207772795214, - "url": "https://www.rightmove.co.uk/properties/162521450", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/162521450/100423_1328049_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.412023", - "last_seen": "2025-06-01T22:06:04.766231", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324309, - 51.45479 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.26, - "qmprice": 36.74, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162521591", - "info": { - "identifier": 162521591, - "sqm_ocr": 95.26, - "price": 3500.0, - "price_per_sqm": 36.74154944362796, - "url": "https://www.rightmove.co.uk/properties/162521591", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162521591/96668_246441427042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.424771", - "last_seen": "2025-06-01T22:05:58.054903", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175997, - 51.48763 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.58, - "qmprice": 35.07, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162521615", - "info": { - "identifier": 162521615, - "sqm_ocr": 65.58, - "price": 2300.0, - "price_per_sqm": 35.07166819152181, - "url": "https://www.rightmove.co.uk/properties/162521615", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/162521615/80340_a1G4J0000025ytSUAQ_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.961091", - "last_seen": "2025-06-01T22:06:05.384318", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06884, - 51.45986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/162521630", - "info": { - "identifier": 162521630, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162521630", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162521630/96668_246655129042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.169977", - "last_seen": "2025-06-01T22:05:46.231843", - "price": 2166 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.082009, - 51.495743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.3, - "qmprice": 46.35, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162521702", - "info": { - "identifier": 162521702, - "sqm_ocr": 86.3, - "price": 4000.0, - "price_per_sqm": 46.349942062572424, - "url": "https://www.rightmove.co.uk/properties/162521702", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162521702/98531_1327183_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.833967", - "last_seen": "2025-06-01T22:05:55.424249", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.245372, - 51.504616 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.27, - "qmprice": 49.68, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162521894", - "info": { - "identifier": 162521894, - "sqm_ocr": 42.27, - "price": 2100.0, - "price_per_sqm": 49.68062455642299, - "url": "https://www.rightmove.co.uk/properties/162521894", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/162521894/80281_1328038_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.238253", - "last_seen": "2025-06-01T22:06:11.855130", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.000655, - 51.552578 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.1, - "qmprice": 31.46, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162521906", - "info": { - "identifier": 162521906, - "sqm_ocr": 73.1, - "price": 2300.0, - "price_per_sqm": 31.463748290013683, - "url": "https://www.rightmove.co.uk/properties/162521906", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/162521906/80281_1328048_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.224278", - "last_seen": "2025-06-01T22:06:03.484663", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.018515, - 51.531807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.0, - "qmprice": 41.6, - "rooms": 2, - "total_price": 2080.0, - "url": "https://www.rightmove.co.uk/properties/162521948", - "info": { - "identifier": 162521948, - "sqm_ocr": 50.0, - "price": 2080.0, - "price_per_sqm": 41.6, - "url": "https://www.rightmove.co.uk/properties/162521948", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/162521948/80796_184_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.414416", - "last_seen": "2025-06-01T22:06:00.242776", - "price": 2080 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11312, - 51.47515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162522083", - "info": { - "identifier": 162522083, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162522083", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162522083/96668_249829328052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.783690", - "last_seen": "2025-06-01T22:05:45.325680", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.379232, - 51.55218 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162522134", - "info": { - "identifier": 162522134, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162522134", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162522134/96668_248517415052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.738131", - "last_seen": "2025-06-01T22:06:12.049139", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010865, - 51.618145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.6, - "qmprice": 34.3, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162522140", - "info": { - "identifier": 162522140, - "sqm_ocr": 65.6, - "price": 2250.0, - "price_per_sqm": 34.29878048780488, - "url": "https://www.rightmove.co.uk/properties/162522140", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "John Payne", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149843/162522140/149843_P277104_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.530811", - "last_seen": "2025-06-01T22:05:47.089089", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005, - 51.48587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.4, - "qmprice": 31.8, - "rooms": 2, - "total_price": 2175.0, - "url": "https://www.rightmove.co.uk/properties/162522260", - "info": { - "identifier": 162522260, - "sqm_ocr": 68.4, - "price": 2175.0, - "price_per_sqm": 31.798245614035086, - "url": "https://www.rightmove.co.uk/properties/162522260", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162522260/96668_246746730042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.281469", - "last_seen": "2025-06-01T22:06:11.524769", - "price": 2175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.030052, - 51.52996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162522275", - "info": { - "identifier": 162522275, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162522275", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162522275/96668_249807527052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.239874", - "last_seen": "2025-06-01T22:05:51.029005", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.197237, - 51.517715 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162522296", - "info": { - "identifier": 162522296, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162522296", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162522296/96668_249848228052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.244439", - "last_seen": "2025-06-01T22:05:46.834522", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.029091, - 51.45736 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162522332", - "info": { - "identifier": 162522332, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162522332", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162522332/96668_249805927052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.512397", - "last_seen": "2025-06-01T22:06:12.442365", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175237, - 51.4237 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162522443", - "info": { - "identifier": 162522443, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162522443", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162522443/96668_249770327052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.558381", - "last_seen": "2025-06-01T22:05:43.452909", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112793, - 51.37112 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.46, - "qmprice": 46.64, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/162522695", - "info": { - "identifier": 162522695, - "sqm_ocr": 46.46, - "price": 2167.0, - "price_per_sqm": 46.642272922944464, - "url": "https://www.rightmove.co.uk/properties/162522695", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Champions", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45441/162522695/45441_6728_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.102697", - "last_seen": "2025-06-01T22:05:49.006598", - "price": 2166 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21596, - 51.50032 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.2, - "qmprice": 23.03, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162522746", - "info": { - "identifier": 162522746, - "sqm_ocr": 91.2, - "price": 2100.0, - "price_per_sqm": 23.026315789473685, - "url": "https://www.rightmove.co.uk/properties/162522746", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250739/162522746/250739_1328040_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.922640", - "last_seen": "2025-06-01T22:05:50.344821", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.316579, - 51.620544 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.1, - "qmprice": 36.29, - "rooms": 3, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/162522830", - "info": { - "identifier": 162522830, - "sqm_ocr": 110.1, - "price": 3995.0, - "price_per_sqm": 36.28519527702089, - "url": "https://www.rightmove.co.uk/properties/162522830", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Capital Heights Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55386/162522830/55386_12681832_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.694173", - "last_seen": "2025-06-01T22:06:08.043770", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055103, - 51.52054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162522845", - "info": { - "identifier": 162522845, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162522845", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "gLocalAgents.co.uk", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176603/162522845/176603_12772_EAF_135712_IMG_00_0000_max_656x437.png", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.355985", - "last_seen": "2025-06-01T22:06:12.143942", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175682, - 51.46253 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.6, - "qmprice": 42.39, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162522965", - "info": { - "identifier": 162522965, - "sqm_ocr": 69.6, - "price": 2950.0, - "price_per_sqm": 42.38505747126437, - "url": "https://www.rightmove.co.uk/properties/162522965", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Goldman Greg Housing Management", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/226k/225413/162522965/225413_33914839_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.045901", - "last_seen": "2025-06-01T22:05:53.009520", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109821, - 51.55109 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.0, - "qmprice": 32.63, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162522983", - "info": { - "identifier": 162522983, - "sqm_ocr": 95.0, - "price": 3100.0, - "price_per_sqm": 32.63157894736842, - "url": "https://www.rightmove.co.uk/properties/162522983", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64571/162522983/64571_33914831_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.305643", - "last_seen": "2025-06-01T22:05:42.527563", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209879, - 51.554592 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.0, - "qmprice": 38.1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162523109", - "info": { - "identifier": 162523109, - "sqm_ocr": 105.0, - "price": 4000.0, - "price_per_sqm": 38.095238095238095, - "url": "https://www.rightmove.co.uk/properties/162523109", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Abatoria", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33248/162523109/33248_3211_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.273128", - "last_seen": "2025-06-01T22:06:09.308748", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056173, - 51.504 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.92, - "qmprice": 28.56, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/162523343", - "info": { - "identifier": 162523343, - "sqm_ocr": 76.92, - "price": 2197.0, - "price_per_sqm": 28.56214248569943, - "url": "https://www.rightmove.co.uk/properties/162523343", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202016/162523343/202016_33903436_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.642208", - "last_seen": "2025-06-01T22:05:44.832620", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32329, - 51.50737 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162523382", - "info": { - "identifier": 162523382, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162523382", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "EC Residential LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244844/162523382/244844_2260_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.494437", - "last_seen": "2025-06-01T22:06:15.685474", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19668, - 51.51783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.1, - "qmprice": 34.01, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162523388", - "info": { - "identifier": 162523388, - "sqm_ocr": 94.1, - "price": 3200.0, - "price_per_sqm": 34.00637619553667, - "url": "https://www.rightmove.co.uk/properties/162523388", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "London Homes Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162716/162523388/162716_3460_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.136405", - "last_seen": "2025-06-01T22:05:44.857547", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.294569, - 51.532772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162523544", - "info": { - "identifier": 162523544, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162523544", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Brian Cox & Company", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156206/162523544/156206_9345417_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.987074", - "last_seen": "2025-06-01T22:05:50.488287", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.364462, - 51.578712 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 142.0, - "qmprice": 22.89, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162523553", - "info": { - "identifier": 162523553, - "sqm_ocr": 142.0, - "price": 3250.0, - "price_per_sqm": 22.887323943661972, - "url": "https://www.rightmove.co.uk/properties/162523553", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Squires Estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12569/162523553/12569_33914866_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.409753", - "last_seen": "2025-06-01T22:05:38.969789", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214779, - 51.607708 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162523568", - "info": { - "identifier": 162523568, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162523568", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Moore & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/104k/103366/162523568/103366_MOORE_003179_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.333753", - "last_seen": "2025-06-01T22:06:01.323959", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.167223, - 51.410847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162523667", - "info": { - "identifier": 162523667, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162523667", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/162523667/49784_33752_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.043583", - "last_seen": "2025-06-01T22:06:13.922780", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13693, - 51.47391 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 32.2, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/162523775", - "info": { - "identifier": 162523775, - "sqm_ocr": 74.0, - "price": 2383.0, - "price_per_sqm": 32.2027027027027, - "url": "https://www.rightmove.co.uk/properties/162523775", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "CHAMPS PROPERTY", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287132/162523775/287132_champs_1224683726_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.519870", - "last_seen": "2025-06-01T22:05:44.602461", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26161, - 51.522266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 54.39, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162524123", - "info": { - "identifier": 162524123, - "sqm_ocr": 57.0, - "price": 3100.0, - "price_per_sqm": 54.3859649122807, - "url": "https://www.rightmove.co.uk/properties/162524123", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "BPS London", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95999/162524123/95999_7787577_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.916753", - "last_seen": "2025-06-01T22:05:41.984202", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125581, - 51.527325 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.45, - "qmprice": 36.52, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162524405", - "info": { - "identifier": 162524405, - "sqm_ocr": 68.45, - "price": 2500.0, - "price_per_sqm": 36.523009495982464, - "url": "https://www.rightmove.co.uk/properties/162524405", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/162524405/48994_CNL250112_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.514814", - "last_seen": "2025-06-01T22:06:10.585084", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00092, - 51.50917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162524450", - "info": { - "identifier": 162524450, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162524450", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Simple Life London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/235k/234917/162524450/234917_S1720-1227_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.062197", - "last_seen": "2025-06-01T22:05:38.280770", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.160711, - 51.525337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.1, - "qmprice": 30.26, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162524618", - "info": { - "identifier": 162524618, - "sqm_ocr": 66.1, - "price": 2000.0, - "price_per_sqm": 30.257186081694407, - "url": "https://www.rightmove.co.uk/properties/162524618", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84800/162524618/84800_33894797_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.692356", - "last_seen": "2025-06-01T22:05:58.495129", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.254346, - 51.398224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2905.0, - "url": "https://www.rightmove.co.uk/properties/162524741", - "info": { - "identifier": 162524741, - "sqm_ocr": null, - "price": 2905.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162524741", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162524741/156986_LMN17_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.115091", - "last_seen": "2025-06-01T22:05:40.468325", - "price": 2905.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27676, - 51.5577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2571.0, - "url": "https://www.rightmove.co.uk/properties/162524927", - "info": { - "identifier": 162524927, - "sqm_ocr": null, - "price": 2571.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162524927", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162524927/156986_CGZ30007_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.570486", - "last_seen": "2025-06-01T22:05:41.084702", - "price": 2571.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27641, - 51.55856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2665.0, - "url": "https://www.rightmove.co.uk/properties/162525263", - "info": { - "identifier": 162525263, - "sqm_ocr": null, - "price": 2665.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162525263", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162525263/213815_705751_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.909786", - "last_seen": "2025-06-01T22:06:08.382649", - "price": 2665 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018095, - 51.498302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162525275", - "info": { - "identifier": 162525275, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162525275", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162525275/181787_181787_1091_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.701274", - "last_seen": "2025-06-01T22:06:05.079426", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05704, - 51.48673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162525383", - "info": { - "identifier": 162525383, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162525383", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Real Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36827/162525383/36827_33914951_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.115065", - "last_seen": "2025-06-01T22:05:38.858895", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223803, - 51.61865 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162525578", - "info": { - "identifier": 162525578, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162525578", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Balgores", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95722/162525578/95722_UPL220038_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.307564", - "last_seen": "2025-06-01T22:05:50.997257", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.270852, - 51.54624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162525635", - "info": { - "identifier": 162525635, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162525635", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Property Company", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76256/162525635/76256_LET140076_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.437596", - "last_seen": "2025-06-01T22:05:49.717021", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101656, - 51.583992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.29, - "qmprice": 42.05, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162525887", - "info": { - "identifier": 162525887, - "sqm_ocr": 77.29, - "price": 3250.0, - "price_per_sqm": 42.049424246344934, - "url": "https://www.rightmove.co.uk/properties/162525887", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JBrown", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239306/162525887/239306_6733_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.967079", - "last_seen": "2025-06-01T22:06:09.957459", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071577, - 51.5107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162525896", - "info": { - "identifier": 162525896, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162525896", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Simple Life London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/235k/234917/162525896/234917_S1414-1275_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.080192", - "last_seen": "2025-06-01T22:05:38.235234", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.16075, - 51.52549 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.8, - "qmprice": 55.76, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162526199", - "info": { - "identifier": 162526199, - "sqm_ocr": 53.8, - "price": 3000.0, - "price_per_sqm": 55.76208178438662, - "url": "https://www.rightmove.co.uk/properties/162526199", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128530/162526199/128530_KDV240073_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.894777", - "last_seen": "2025-06-01T22:06:16.090112", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14989, - 51.513855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.3, - "qmprice": 44.4, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162526208", - "info": { - "identifier": 162526208, - "sqm_ocr": 56.3, - "price": 2500.0, - "price_per_sqm": 44.40497335701599, - "url": "https://www.rightmove.co.uk/properties/162526208", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58003/162526208/58003_KBA230020_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.852890", - "last_seen": "2025-06-01T22:06:13.628753", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187163, - 51.445953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.11, - "qmprice": 33.27, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162526604", - "info": { - "identifier": 162526604, - "sqm_ocr": 60.11, - "price": 2000.0, - "price_per_sqm": 33.2723340542339, - "url": "https://www.rightmove.co.uk/properties/162526604", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Presidential Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80874/162526604/80874_RX563410_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.926404", - "last_seen": "2025-06-01T22:06:04.181117", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.020473, - 51.576538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162526679", - "info": { - "identifier": 162526679, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162526679", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Andrew", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80996/162526679/80996_01716195-18a5-4bd0-9e4b-a20f8aba4c3e_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.239118", - "last_seen": "2025-06-01T22:05:47.650039", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087089, - 51.555573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.5, - "qmprice": 40.65, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162526688", - "info": { - "identifier": 162526688, - "sqm_ocr": 61.5, - "price": 2500.0, - "price_per_sqm": 40.65040650406504, - "url": "https://www.rightmove.co.uk/properties/162526688", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162526688/26207_CHL160059_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.945958", - "last_seen": "2025-06-01T22:05:53.739492", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108438, - 51.552128 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/162526736", - "info": { - "identifier": 162526736, - "sqm_ocr": null, - "price": 2535.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162526736", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162526736/213815_705753_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.235232", - "last_seen": "2025-06-01T20:19:57.373849", - "price": 2535 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013419, - 51.49796 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162526763", - "info": { - "identifier": 162526763, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162526763", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Glentree Estates Ltd", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/191k/190037/162526763/190037_33915001_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.293107", - "last_seen": "2025-06-01T22:05:39.589168", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195035, - 51.56977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/162526772", - "info": { - "identifier": 162526772, - "sqm_ocr": null, - "price": 2747.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162526772", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/162526772/146147_PR171037_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.020930", - "last_seen": "2025-06-01T22:05:58.277279", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199638, - 51.49046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 29.27, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162526784", - "info": { - "identifier": 162526784, - "sqm_ocr": 82.0, - "price": 2400.0, - "price_per_sqm": 29.26829268292683, - "url": "https://www.rightmove.co.uk/properties/162526784", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78410/162526784/78410_33837650_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.107292", - "last_seen": "2025-06-01T22:06:13.912079", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171722, - 51.46687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162526907", - "info": { - "identifier": 162526907, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162526907", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Andrew", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80996/162526907/80996_dfd9ba27-5953-4f8f-952a-cb69dbb41de3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.061687", - "last_seen": "2025-06-01T22:05:47.488666", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098382, - 51.566353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162527054", - "info": { - "identifier": 162527054, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162527054", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Pedder", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82748/162527054/82748_33915013_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.261189", - "last_seen": "2025-06-01T22:05:59.076045", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107156, - 51.457397 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.9, - "qmprice": 36.27, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162527081", - "info": { - "identifier": 162527081, - "sqm_ocr": 57.9, - "price": 2100.0, - "price_per_sqm": 36.26943005181347, - "url": "https://www.rightmove.co.uk/properties/162527081", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Parkgate", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16775/162527081/16775_2376707_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.390665", - "last_seen": "2025-06-01T22:06:12.216188", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2249, - 51.4706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.01, - "qmprice": 42.04, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162527090", - "info": { - "identifier": 162527090, - "sqm_ocr": 67.01, - "price": 2817.0, - "price_per_sqm": 42.03850171616176, - "url": "https://www.rightmove.co.uk/properties/162527090", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/162527090/136139_2307590_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.697595", - "last_seen": "2025-06-01T22:06:08.047492", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006313, - 51.506935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162527174", - "info": { - "identifier": 162527174, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162527174", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/162527174/264404_RX585889_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.917789", - "last_seen": "2025-06-01T22:05:53.324308", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095886, - 51.529114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.2, - "qmprice": 24.94, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162527246", - "info": { - "identifier": 162527246, - "sqm_ocr": 80.2, - "price": 2000.0, - "price_per_sqm": 24.937655860349125, - "url": "https://www.rightmove.co.uk/properties/162527246", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubitt & West Residential Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85054/162527246/85054_P81175_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.717031", - "last_seen": "2025-06-01T22:05:43.728801", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02475, - 51.35391 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/162527327", - "info": { - "identifier": 162527327, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162527327", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JS Estate Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264161/162527327/264161_705756_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.999497", - "last_seen": "2025-06-01T22:05:40.956133", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283566, - 51.540955 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 27.85, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162527417", - "info": { - "identifier": 162527417, - "sqm_ocr": 79.0, - "price": 2200.0, - "price_per_sqm": 27.848101265822784, - "url": "https://www.rightmove.co.uk/properties/162527417", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51420/162527417/51420_FIL210004_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.212221", - "last_seen": "2025-06-01T22:05:38.713841", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.233972, - 51.608387 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/162527510", - "info": { - "identifier": 162527510, - "sqm_ocr": null, - "price": 3120.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162527510", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/162527510/49784_34836_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.544914", - "last_seen": "2025-06-01T22:06:04.873461", - "price": 3120 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07503, - 51.5007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162527639", - "info": { - "identifier": 162527639, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162527639", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48330/162527639/48330_HEA220122_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.645631", - "last_seen": "2025-06-01T22:05:59.477878", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118821, - 51.460968 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162527666", - "info": { - "identifier": 162527666, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162527666", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191426/162527666/191426_2655442_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.084715", - "last_seen": "2025-06-01T22:05:39.651068", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181208, - 51.62347 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.7, - "qmprice": 30.91, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162527684", - "info": { - "identifier": 162527684, - "sqm_ocr": 64.7, - "price": 2000.0, - "price_per_sqm": 30.911901081916536, - "url": "https://www.rightmove.co.uk/properties/162527684", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/162527684/149153_1325852_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.467553", - "last_seen": "2025-06-01T22:06:07.895652", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142143, - 51.369095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162527687", - "info": { - "identifier": 162527687, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162527687", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Henleys Estates Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69391/162527687/69391_henleys_790127127_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.318063", - "last_seen": "2025-06-01T22:05:52.690618", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37777, - 51.49316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162527750", - "info": { - "identifier": 162527750, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162527750", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "We Can Properties", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/217k/216545/162527750/216545_fe7c4990-f377-4d7c-b169-aa1a52907bfe_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.748483", - "last_seen": "2025-06-01T22:05:43.793823", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092422, - 51.40106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3857.0, - "url": "https://www.rightmove.co.uk/properties/162527981", - "info": { - "identifier": 162527981, - "sqm_ocr": null, - "price": 3857.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162527981", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162527981/238265_L110031_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.856750", - "last_seen": "2025-06-01T22:06:08.255948", - "price": 3856 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.50723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 135.7, - "qmprice": 27.63, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162528029", - "info": { - "identifier": 162528029, - "sqm_ocr": 135.7, - "price": 3750.0, - "price_per_sqm": 27.63448784082535, - "url": "https://www.rightmove.co.uk/properties/162528029", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194222/162528029/194222_HRP230229_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.318632", - "last_seen": "2025-06-01T22:06:01.623942", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.245534, - 51.413715 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.2, - "qmprice": 22.38, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162528131", - "info": { - "identifier": 162528131, - "sqm_ocr": 116.2, - "price": 2600.0, - "price_per_sqm": 22.37521514629948, - "url": "https://www.rightmove.co.uk/properties/162528131", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Christopher Edwards", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55185/162528131/55185_29052680_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.873941", - "last_seen": "2025-06-01T22:05:50.278382", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.364428, - 51.579838 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.7, - "qmprice": 34.15, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162528263", - "info": { - "identifier": 162528263, - "sqm_ocr": 93.7, - "price": 3200.0, - "price_per_sqm": 34.15154749199573, - "url": "https://www.rightmove.co.uk/properties/162528263", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Aston Square", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274703/162528263/274703_35Asmuns_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.491579", - "last_seen": "2025-06-01T22:05:38.879876", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19854, - 51.58404 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2525.0, - "url": "https://www.rightmove.co.uk/properties/162528383", - "info": { - "identifier": 162528383, - "sqm_ocr": null, - "price": 2525.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162528383", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Simple Life London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265673/162528383/265673_S1618-0072_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.888192", - "last_seen": "2025-06-01T22:05:45.128447", - "price": 2525.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27592, - 51.50724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162528611", - "info": { - "identifier": 162528611, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162528611", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108373/162528611/108373_33915127_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.399583", - "last_seen": "2025-06-01T22:06:12.225253", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138039, - 51.482098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3075.0, - "url": "https://www.rightmove.co.uk/properties/162528698", - "info": { - "identifier": 162528698, - "sqm_ocr": null, - "price": 3075.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162528698", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Get Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57558/162528698/57558_57558_p0193153_INSI030B_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.024521", - "last_seen": "2025-06-01T22:06:07.460907", - "price": 3075.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008765, - 51.54761 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3943.0, - "url": "https://www.rightmove.co.uk/properties/162528782", - "info": { - "identifier": 162528782, - "sqm_ocr": null, - "price": 3943.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162528782", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162528782/238265_L110036_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.806726", - "last_seen": "2025-06-01T22:06:10.016473", - "price": 3943 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.50723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.8, - "qmprice": 39.23, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162528785", - "info": { - "identifier": 162528785, - "sqm_ocr": 54.8, - "price": 2150.0, - "price_per_sqm": 39.23357664233577, - "url": "https://www.rightmove.co.uk/properties/162528785", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13099/162528785/13099_CRE210148_L_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.802838", - "last_seen": "2025-06-01T22:05:49.848057", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107024, - 51.58793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.11, - "qmprice": 35.56, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162528866", - "info": { - "identifier": 162528866, - "sqm_ocr": 73.11, - "price": 2600.0, - "price_per_sqm": 35.56285049924771, - "url": "https://www.rightmove.co.uk/properties/162528866", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Langford Chase", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16019/162528866/16019_LANG_000970_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.646414", - "last_seen": "2025-06-01T22:05:50.162832", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151129, - 51.579407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162528902", - "info": { - "identifier": 162528902, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162528902", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Simple Life London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/266k/265673/162528902/265673_S1618-0039_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.611364", - "last_seen": "2025-06-01T22:05:44.795754", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.275324, - 51.50823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162528962", - "info": { - "identifier": 162528962, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162528962", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47640/162528962/47640_33908742_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.391304", - "last_seen": "2025-06-01T22:06:11.223113", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067732, - 51.51599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2825.0, - "url": "https://www.rightmove.co.uk/properties/162529016", - "info": { - "identifier": 162529016, - "sqm_ocr": null, - "price": 2825.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162529016", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "SAB - Saint Andrews Bureau Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105104/162529016/105104_103035004265_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.920906", - "last_seen": "2025-06-01T22:05:49.419495", - "price": 2825.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21821, - 51.49811 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.75, - "qmprice": 35.52, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162529058", - "info": { - "identifier": 162529058, - "sqm_ocr": 64.75, - "price": 2300.0, - "price_per_sqm": 35.52123552123552, - "url": "https://www.rightmove.co.uk/properties/162529058", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58897/162529058/58897_TOO250320_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.608364", - "last_seen": "2025-06-01T22:06:14.141756", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169625, - 51.42503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3501.0, - "url": "https://www.rightmove.co.uk/properties/162529094", - "info": { - "identifier": 162529094, - "sqm_ocr": null, - "price": 3501.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162529094", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "CHAMPS PROPERTY", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287132/162529094/287132_champs_108080444_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.864210", - "last_seen": "2025-06-01T22:05:54.383310", - "price": 3501 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09479, - 51.528706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 36.12, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/162529349", - "info": { - "identifier": 162529349, - "sqm_ocr": 69.0, - "price": 2492.0, - "price_per_sqm": 36.11594202898551, - "url": "https://www.rightmove.co.uk/properties/162529349", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "CHAMPS PROPERTY", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287132/162529349/287132_champs_971946002_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.479824", - "last_seen": "2025-06-01T22:06:09.781371", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005867, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.9, - "qmprice": 37.37, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162529427", - "info": { - "identifier": 162529427, - "sqm_ocr": 66.9, - "price": 2500.0, - "price_per_sqm": 37.369207772795214, - "url": "https://www.rightmove.co.uk/properties/162529427", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148955/162529427/148955_RIL250083_L_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.637102", - "last_seen": "2025-06-01T22:06:04.845479", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324124, - 51.455 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162529445", - "info": { - "identifier": 162529445, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162529445", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "London Homemoves", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170204/162529445/170204_10Meyrickroad_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.161382", - "last_seen": "2025-06-01T22:05:41.026598", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240862, - 51.5489 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.3, - "qmprice": 37.04, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162529538", - "info": { - "identifier": 162529538, - "sqm_ocr": 78.3, - "price": 2900.0, - "price_per_sqm": 37.03703703703704, - "url": "https://www.rightmove.co.uk/properties/162529538", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Japan Letting Agency", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258848/162529538/258848_31918550_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.482893", - "last_seen": "2025-06-01T22:05:44.563578", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.281667, - 51.51444 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162529562", - "info": { - "identifier": 162529562, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162529562", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "CityWharf Property Investment Consultancy", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206597/162529562/206597_RL1684X7_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.307846", - "last_seen": "2025-06-01T22:06:02.749776", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005738, - 51.5129 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162529769", - "info": { - "identifier": 162529769, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162529769", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "CityWharf Property Investment Consultancy", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206597/162529769/206597_RL1711X6_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.408616", - "last_seen": "2025-06-01T22:06:12.255884", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163201, - 51.4654 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.9, - "qmprice": 50.8, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162529829", - "info": { - "identifier": 162529829, - "sqm_ocr": 68.9, - "price": 3500.0, - "price_per_sqm": 50.79825834542815, - "url": "https://www.rightmove.co.uk/properties/162529829", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71785/162529829/71785_33915213_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.432717", - "last_seen": "2025-06-01T22:05:59.449298", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139833, - 51.449684 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.36, - "qmprice": 26.03, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162529835", - "info": { - "identifier": 162529835, - "sqm_ocr": 88.36, - "price": 2300.0, - "price_per_sqm": 26.02987777274785, - "url": "https://www.rightmove.co.uk/properties/162529835", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162529835/87187_50925_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.564551", - "last_seen": "2025-06-01T22:06:02.503083", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.073639, - 51.506977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162529838", - "info": { - "identifier": 162529838, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162529838", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157817/162529838/157817_2705912_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.460979", - "last_seen": "2025-06-01T22:06:09.394256", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013382, - 51.50007 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2198.0, - "url": "https://www.rightmove.co.uk/properties/162529850", - "info": { - "identifier": 162529850, - "sqm_ocr": null, - "price": 2198.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162529850", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Sincere lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96983/162529850/96983_33915214_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.464476", - "last_seen": "2025-06-01T22:05:42.304005", - "price": 2198.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139215, - 51.556118 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162529856", - "info": { - "identifier": 162529856, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162529856", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "CityWharf Property Investment Consultancy", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206597/162529856/206597_RL1724W_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.225162", - "last_seen": "2025-06-01T22:05:57.722765", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17933, - 51.4805 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162529859", - "info": { - "identifier": 162529859, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162529859", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Davies & Davies", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22559/162529859/22559_33913949_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.802772", - "last_seen": "2025-06-01T22:05:53.345053", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115344, - 51.57105 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.45, - "qmprice": 40.21, - "rooms": 4, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/162529988", - "info": { - "identifier": 162529988, - "sqm_ocr": 89.45, - "price": 3597.0, - "price_per_sqm": 40.21240916713248, - "url": "https://www.rightmove.co.uk/properties/162529988", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Absolute Living", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91853/162529988/91853_33915219_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.564764", - "last_seen": "2025-06-01T22:06:14.102512", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179348, - 51.452187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162530051", - "info": { - "identifier": 162530051, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162530051", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162530051/191744_RL0766_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.315758", - "last_seen": "2025-06-01T22:06:11.481108", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070208, - 51.513706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162530087", - "info": { - "identifier": 162530087, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162530087", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Parkfields Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90161/162530087/90161_33915240_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.972300", - "last_seen": "2025-06-01T22:05:52.357718", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.381029, - 51.490925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162530183", - "info": { - "identifier": 162530183, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162530183", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Woodland", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21761/162530183/21761_2765_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.868618", - "last_seen": "2025-06-01T22:06:03.722694", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.068749, - 51.564323 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162530243", - "info": { - "identifier": 162530243, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162530243", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Route Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281087/162530243/281087_14591_008456_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.875764", - "last_seen": "2025-06-01T22:05:47.511672", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.045793, - 51.549145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3965.0, - "url": "https://www.rightmove.co.uk/properties/162530345", - "info": { - "identifier": 162530345, - "sqm_ocr": null, - "price": 3965.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162530345", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162530345/238265_L110046_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.50723 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162530381", - "info": { - "identifier": 162530381, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162530381", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Simple Life London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283691/162530381/283691_S2028-0103_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.775188", - "last_seen": "2025-06-01T22:06:00.092272", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13344, - 51.45344 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162530417", - "info": { - "identifier": 162530417, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162530417", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/155k/154961/162530417/154961_33915250_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.940789", - "last_seen": "2025-06-01T22:06:03.986950", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.127727, - 51.57231 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162530462", - "info": { - "identifier": 162530462, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162530462", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81158/162530462/81158_33915252_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.985998", - "last_seen": "2025-06-01T22:05:40.911769", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.315252, - 51.555737 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.5, - "qmprice": 51.55, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162530492", - "info": { - "identifier": 162530492, - "sqm_ocr": 48.5, - "price": 2500.0, - "price_per_sqm": 51.54639175257732, - "url": "https://www.rightmove.co.uk/properties/162530492", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78410/162530492/78410_33915256_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.814297", - "last_seen": "2025-06-01T22:06:13.537208", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177691, - 51.461884 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162530894", - "info": { - "identifier": 162530894, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162530894", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Atlantic Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/135k/134441/162530894/134441_DARTFORD2025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.019113", - "last_seen": "2025-06-01T22:05:45.934313", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043503, - 51.637905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162530999", - "info": { - "identifier": 162530999, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162530999", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Lords Associates of London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29226/162530999/29226_12681954_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.407964", - "last_seen": "2025-06-01T22:05:51.501069", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.439044, - 51.542606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3140.0, - "url": "https://www.rightmove.co.uk/properties/162531113", - "info": { - "identifier": 162531113, - "sqm_ocr": null, - "price": 3140.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162531113", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/162531113/78429_LON-553_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.080555", - "last_seen": "2025-06-01T22:06:15.568266", - "price": 3140.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15998, - 51.52023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162531197", - "info": { - "identifier": 162531197, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162531197", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Excel Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99425/162531197/99425_102708042426_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.492747", - "last_seen": "2025-06-01T22:06:15.696098", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18959, - 51.52581 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162531227", - "info": { - "identifier": 162531227, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162531227", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "SW16", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76165/162531227/76165_btts_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.657502", - "last_seen": "2025-06-01T22:06:12.554281", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15265, - 51.46625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162531272", - "info": { - "identifier": 162531272, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162531272", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ashton Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/2k/1457/162531272/1457_AEA250241_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.760976", - "last_seen": "2025-06-01T22:06:03.780792", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.126182, - 51.575756 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2780.0, - "url": "https://www.rightmove.co.uk/properties/162531413", - "info": { - "identifier": 162531413, - "sqm_ocr": null, - "price": 2780.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162531413", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Simple Life London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283691/162531413/283691_S2028-0202_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.688706", - "last_seen": "2025-06-01T22:06:00.117567", - "price": 2780.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13344, - 51.45344 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.5, - "qmprice": 26.49, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162531431", - "info": { - "identifier": 162531431, - "sqm_ocr": 75.5, - "price": 2000.0, - "price_per_sqm": 26.490066225165563, - "url": "https://www.rightmove.co.uk/properties/162531431", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85127/162531431/85127_TOL250204_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.831595", - "last_seen": "2025-06-01T22:05:49.881897", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057264, - 51.588657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.84, - "qmprice": 42.98, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162531623", - "info": { - "identifier": 162531623, - "sqm_ocr": 55.84, - "price": 2400.0, - "price_per_sqm": 42.97994269340974, - "url": "https://www.rightmove.co.uk/properties/162531623", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Charles Henry Peppiatt Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78489/162531623/78489_13944_AGRN_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.660191", - "last_seen": "2025-06-01T22:05:42.898438", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129718, - 51.548084 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.21, - "qmprice": 36.06, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/162531659", - "info": { - "identifier": 162531659, - "sqm_ocr": 69.21, - "price": 2496.0, - "price_per_sqm": 36.064152579107066, - "url": "https://www.rightmove.co.uk/properties/162531659", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/162531659/136139_2714072_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.203277", - "last_seen": "2025-06-01T20:19:57.290334", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005894, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162531878", - "info": { - "identifier": 162531878, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162531878", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Japan Services Rent", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94576/162531878/94576_RL0175_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.463746", - "last_seen": "2025-06-01T22:05:44.320051", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.282978, - 51.52098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 42.75, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162531959", - "info": { - "identifier": 162531959, - "sqm_ocr": 69.0, - "price": 2950.0, - "price_per_sqm": 42.7536231884058, - "url": "https://www.rightmove.co.uk/properties/162531959", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43766/162531959/43766_P301448_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.907116", - "last_seen": "2025-06-01T22:05:49.395246", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18441, - 51.47133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.8, - "qmprice": 23.81, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162531962", - "info": { - "identifier": 162531962, - "sqm_ocr": 100.8, - "price": 2400.0, - "price_per_sqm": 23.80952380952381, - "url": "https://www.rightmove.co.uk/properties/162531962", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "The Address", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80743/162531962/80743_34253e45-b7be-4e2c-979d-026478d673b3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.314736", - "last_seen": "2025-06-01T22:05:41.741637", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034999, - 51.412483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 45.24, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162532004", - "info": { - "identifier": 162532004, - "sqm_ocr": 84.0, - "price": 3800.0, - "price_per_sqm": 45.23809523809524, - "url": "https://www.rightmove.co.uk/properties/162532004", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162532004/87187_39065_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.856919", - "last_seen": "2025-06-01T22:05:48.528115", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220301, - 51.511276 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162532157", - "info": { - "identifier": 162532157, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162532157", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Sincere lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96983/162532157/96983_33915357_IMG_02_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.879325", - "last_seen": "2025-06-01T22:06:04.099781", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.08906, - 51.56192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.7, - "qmprice": 23.23, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162532184", - "info": { - "identifier": 162532184, - "sqm_ocr": 94.7, - "price": 2200.0, - "price_per_sqm": 23.231256599788807, - "url": "https://www.rightmove.co.uk/properties/162532184", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85763/162532184/85763_UXL250307_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.538492", - "last_seen": "2025-06-01T22:05:51.634691", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.486071, - 51.5404 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.43, - "qmprice": 49.64, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162532499", - "info": { - "identifier": 162532499, - "sqm_ocr": 59.43, - "price": 2950.0, - "price_per_sqm": 49.63822985024399, - "url": "https://www.rightmove.co.uk/properties/162532499", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52785/162532499/52785_ISL240326_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.039698", - "last_seen": "2025-06-01T22:05:47.569712", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09762, - 51.56649 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.1, - "qmprice": 39.11, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162532745", - "info": { - "identifier": 162532745, - "sqm_ocr": 83.1, - "price": 3250.0, - "price_per_sqm": 39.10950661853189, - "url": "https://www.rightmove.co.uk/properties/162532745", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/162532745/96542_ROCH_002391_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.481488", - "last_seen": "2025-06-01T22:06:15.717208", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169998, - 51.53309 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162532823", - "info": { - "identifier": 162532823, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162532823", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Sincere lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96983/162532823/96983_33915388_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.763813", - "last_seen": "2025-06-01T22:06:03.771904", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01967, - 51.57696 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3857.0, - "url": "https://www.rightmove.co.uk/properties/162532883", - "info": { - "identifier": 162532883, - "sqm_ocr": null, - "price": 3857.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162532883", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Wapping", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32766/162532883/32766_000014911b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.874718", - "last_seen": "2025-06-01T22:06:08.310844", - "price": 3857.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0672, - 51.50875 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162532949", - "info": { - "identifier": 162532949, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162532949", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64571/162532949/64571_33915396_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.369263", - "last_seen": "2025-06-01T22:05:40.601882", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.237118, - 51.56699 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162533039", - "info": { - "identifier": 162533039, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162533039", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62634/162533039/62634_33915401_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.581352", - "last_seen": "2025-06-01T22:06:01.122384", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169053, - 51.420155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 31.0, - "qmprice": 67.74, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162533408", - "info": { - "identifier": 162533408, - "sqm_ocr": 31.0, - "price": 2100.0, - "price_per_sqm": 67.74193548387096, - "url": "https://www.rightmove.co.uk/properties/162533408", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Lomond Investment Management", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/212k/211535/162533408/211535_4911_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.389132", - "last_seen": "2025-06-01T22:05:51.552689", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.470665, - 51.543636 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162533468", - "info": { - "identifier": 162533468, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162533468", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterfronts", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48795/162533468/48795_29110006_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.209536", - "last_seen": "2025-06-01T22:05:46.243280", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017991, - 51.493057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162533543", - "info": { - "identifier": 162533543, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162533543", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45525/162533543/45525_100726004404_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.853706", - "last_seen": "2025-06-01T22:06:03.684376", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.08354, - 51.58468 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162533552", - "info": { - "identifier": 162533552, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162533552", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Howard Young Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/25k/24644/162533552/24644_BS4_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.367463", - "last_seen": "2025-06-01T22:05:55.817358", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07234, - 51.43353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162533714", - "info": { - "identifier": 162533714, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162533714", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "London Move", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261842/162533714/261842_1628_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.136553", - "last_seen": "2025-06-01T22:05:47.929329", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07658, - 51.5563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162533729", - "info": { - "identifier": 162533729, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162533729", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "London Move", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261842/162533729/261842_1702_IMG_00_0000_max_656x437.png", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.727108", - "last_seen": "2025-06-01T22:05:43.751842", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11048, - 51.41351 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.0, - "qmprice": 25.25, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162533780", - "info": { - "identifier": 162533780, - "sqm_ocr": 99.0, - "price": 2500.0, - "price_per_sqm": 25.252525252525253, - "url": "https://www.rightmove.co.uk/properties/162533780", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubitt & West Residential Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85054/162533780/85054_P81183_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.739066", - "last_seen": "2025-06-01T22:05:43.779416", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06305, - 51.35158 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3540.0, - "url": "https://www.rightmove.co.uk/properties/162533885", - "info": { - "identifier": 162533885, - "sqm_ocr": null, - "price": 3540.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162533885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/162533885/78429_LON-639_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.504458", - "last_seen": "2025-06-01T22:06:15.681070", - "price": 3540.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19301, - 51.52695 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2720.0, - "url": "https://www.rightmove.co.uk/properties/162534212", - "info": { - "identifier": 162534212, - "sqm_ocr": null, - "price": 2720.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162534212", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/162534212/78429_LON-96_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.600174", - "last_seen": "2025-06-01T22:06:15.320070", - "price": 2720.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14319, - 51.49002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.5, - "qmprice": 21.18, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162534386", - "info": { - "identifier": 162534386, - "sqm_ocr": 101.5, - "price": 2150.0, - "price_per_sqm": 21.182266009852217, - "url": "https://www.rightmove.co.uk/properties/162534386", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33947/162534386/33947_05041351_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.337992", - "last_seen": "2025-06-01T22:05:52.425905", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.422, - 51.432 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 35.16, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162534533", - "info": { - "identifier": 162534533, - "sqm_ocr": 64.0, - "price": 2250.0, - "price_per_sqm": 35.15625, - "url": "https://www.rightmove.co.uk/properties/162534533", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13093/162534533/13093_FIL250081_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.314070", - "last_seen": "2025-06-01T22:05:39.540845", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197257, - 51.604202 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.8, - "qmprice": 35.79, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162534599", - "info": { - "identifier": 162534599, - "sqm_ocr": 97.8, - "price": 3500.0, - "price_per_sqm": 35.787321063394685, - "url": "https://www.rightmove.co.uk/properties/162534599", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Easthaus", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67707/162534599/67707_BET250132_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.825888", - "last_seen": "2025-06-01T22:06:07.349990", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.007492, - 51.54093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.5, - "qmprice": 51.82, - "rooms": 2, - "total_price": 3705.0, - "url": "https://www.rightmove.co.uk/properties/162534653", - "info": { - "identifier": 162534653, - "sqm_ocr": 71.5, - "price": 3705.0, - "price_per_sqm": 51.81818181818182, - "url": "https://www.rightmove.co.uk/properties/162534653", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212384/162534653/212384_P161024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.793020", - "last_seen": "2025-06-01T22:06:08.182005", - "price": 3705 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07377, - 51.52379 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162534794", - "info": { - "identifier": 162534794, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162534794", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Vonder", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283949/162534794/283949_48525_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.135033", - "last_seen": "2025-06-01T22:05:50.378404", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34084, - 51.58066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 38.66, - "rooms": 2, - "total_price": 2915.0, - "url": "https://www.rightmove.co.uk/properties/162534851", - "info": { - "identifier": 162534851, - "sqm_ocr": 75.4, - "price": 2915.0, - "price_per_sqm": 38.660477453580896, - "url": "https://www.rightmove.co.uk/properties/162534851", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214295/162534851/214295_LCS250103_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.613826", - "last_seen": "2025-06-01T22:05:39.741146", - "price": 2915.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222233, - 51.570724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2280.0, - "url": "https://www.rightmove.co.uk/properties/162534854", - "info": { - "identifier": 162534854, - "sqm_ocr": null, - "price": 2280.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162534854", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Vonder", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283949/162534854/283949_562561_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.044684", - "last_seen": "2025-06-01T22:05:50.793639", - "price": 2280.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34084, - 51.58066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.15, - "qmprice": 34.55, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162534920", - "info": { - "identifier": 162534920, - "sqm_ocr": 78.15, - "price": 2700.0, - "price_per_sqm": 34.548944337811896, - "url": "https://www.rightmove.co.uk/properties/162534920", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Wild & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/128k/127876/162534920/127876_33915508_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.271582", - "last_seen": "2025-06-01T22:05:47.698899", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080805, - 51.525745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162534983", - "info": { - "identifier": 162534983, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162534983", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162534983/191744_RL3077_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.007384", - "last_seen": "2025-06-01T22:05:53.840367", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096233, - 51.529076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162535079", - "info": { - "identifier": 162535079, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162535079", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Marc and Partners", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201956/162535079/201956_MAY210288_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.348742", - "last_seen": "2025-06-01T22:06:00.150285", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122207, - 51.490612 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 39.72, - "rooms": 2, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162535091", - "info": { - "identifier": 162535091, - "sqm_ocr": 75.4, - "price": 2995.0, - "price_per_sqm": 39.72148541114058, - "url": "https://www.rightmove.co.uk/properties/162535091", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214295/162535091/214295_LCS250104_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.646141", - "last_seen": "2025-06-01T22:05:39.790349", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221439, - 51.571205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162535340", - "info": { - "identifier": 162535340, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162535340", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66176/162535340/66176_P3301F5709_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.478685", - "last_seen": "2025-06-01T22:05:39.050178", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19805, - 51.59645 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.3, - "qmprice": 30.3, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162535421", - "info": { - "identifier": 162535421, - "sqm_ocr": 69.3, - "price": 2100.0, - "price_per_sqm": 30.303030303030305, - "url": "https://www.rightmove.co.uk/properties/162535421", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "John Payne", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48285/162535421/48285_P277110_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.728008", - "last_seen": "2025-06-01T22:05:55.274632", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02145, - 51.4838 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.9, - "qmprice": 32.09, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162535658", - "info": { - "identifier": 162535658, - "sqm_ocr": 77.9, - "price": 2500.0, - "price_per_sqm": 32.09242618741977, - "url": "https://www.rightmove.co.uk/properties/162535658", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35969/162535658/35969_06910824_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.337759", - "last_seen": "2025-06-01T22:05:39.493580", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197, - 51.595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 141.6, - "qmprice": 28.25, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162535664", - "info": { - "identifier": 162535664, - "sqm_ocr": 141.6, - "price": 4000.0, - "price_per_sqm": 28.24858757062147, - "url": "https://www.rightmove.co.uk/properties/162535664", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35969/162535664/35969_06910299_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.331884", - "last_seen": "2025-06-01T22:05:39.502581", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171, - 51.615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.13, - "qmprice": 32.37, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162535772", - "info": { - "identifier": 162535772, - "sqm_ocr": 91.13, - "price": 2950.0, - "price_per_sqm": 32.37133764951169, - "url": "https://www.rightmove.co.uk/properties/162535772", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Whitman & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67487/162535772/67487_33915559_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.132577", - "last_seen": "2025-06-01T22:05:51.779722", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25647, - 51.491997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162535811", - "info": { - "identifier": 162535811, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162535811", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Wild & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/128k/127876/162535811/127876_32886192_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.011332", - "last_seen": "2025-06-01T22:05:47.542360", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.050595, - 51.56538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162535940", - "info": { - "identifier": 162535940, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162535940", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Forest Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15011/162535940/15011_Fel000A88_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.348789", - "last_seen": "2025-06-01T22:05:52.441234", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.40557, - 51.458874 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.71, - "qmprice": 30.39, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162536372", - "info": { - "identifier": 162536372, - "sqm_ocr": 98.71, - "price": 3000.0, - "price_per_sqm": 30.392057542295614, - "url": "https://www.rightmove.co.uk/properties/162536372", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62634/162536372/62634_33865444_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.255132", - "last_seen": "2025-06-01T22:06:01.202963", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186207, - 51.420357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162536432", - "info": { - "identifier": 162536432, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162536432", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Cerca Trova Property Consultants", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290243/162536432/290243_CWP-22074311_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.378444", - "last_seen": "2025-06-01T22:06:12.194852", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210141, - 51.44385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2199.0, - "url": "https://www.rightmove.co.uk/properties/162536468", - "info": { - "identifier": 162536468, - "sqm_ocr": null, - "price": 2199.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162536468", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "The Online Letting Agents Ltd", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82831/162536468/82831_2695_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.577028", - "last_seen": "2025-06-01T22:06:04.901975", - "price": 2199.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05094, - 51.49814 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.22, - "qmprice": 36.37, - "rooms": 2, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/162536477", - "info": { - "identifier": 162536477, - "sqm_ocr": 82.22, - "price": 2990.0, - "price_per_sqm": 36.36584772561421, - "url": "https://www.rightmove.co.uk/properties/162536477", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Draker Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51411/162536477/51411_5205_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.160042", - "last_seen": "2025-06-01T22:05:57.402885", - "price": 2990 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179324, - 51.481144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162536600", - "info": { - "identifier": 162536600, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162536600", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57961/162536600/57961_KDX252054_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.612386", - "last_seen": "2025-06-01T22:05:50.134002", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142545, - 51.59695 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2253.0, - "url": "https://www.rightmove.co.uk/properties/162536606", - "info": { - "identifier": 162536606, - "sqm_ocr": null, - "price": 2253.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162536606", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162536606/213815_705776_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.163867", - "last_seen": "2025-06-01T22:06:03.357710", - "price": 2253 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.071829, - 51.506523 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.6, - "qmprice": 30.49, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162536702", - "info": { - "identifier": 162536702, - "sqm_ocr": 65.6, - "price": 2000.0, - "price_per_sqm": 30.487804878048784, - "url": "https://www.rightmove.co.uk/properties/162536702", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85127/162536702/85127_TOL250205_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.763348", - "last_seen": "2025-06-01T22:05:49.981300", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057294, - 51.588573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162536714", - "info": { - "identifier": 162536714, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162536714", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/162536714/67576_RL0721_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.001439", - "last_seen": "2025-06-01T22:05:53.833492", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137207, - 51.567844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.2, - "qmprice": 29.09, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162536771", - "info": { - "identifier": 162536771, - "sqm_ocr": 72.2, - "price": 2100.0, - "price_per_sqm": 29.085872576177284, - "url": "https://www.rightmove.co.uk/properties/162536771", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "John Payne", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48285/162536771/48285_P277111_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.301694", - "last_seen": "2025-06-01T22:05:46.742370", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01948, - 51.48278 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.92, - "qmprice": 38.4, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162536918", - "info": { - "identifier": 162536918, - "sqm_ocr": 72.92, - "price": 2800.0, - "price_per_sqm": 38.39824465167307, - "url": "https://www.rightmove.co.uk/properties/162536918", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72234/162536918/72234_RWL250860_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.998717", - "last_seen": "2025-06-01T22:06:02.651321", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0245, - 51.49982 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162537047", - "info": { - "identifier": 162537047, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162537047", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3305/162537047/3305_000827207_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.562222", - "last_seen": "2025-06-01T22:05:43.365104", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09636, - 51.36211 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.2, - "qmprice": 44.3, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162537113", - "info": { - "identifier": 162537113, - "sqm_ocr": 63.2, - "price": 2800.0, - "price_per_sqm": 44.303797468354425, - "url": "https://www.rightmove.co.uk/properties/162537113", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Andrew Nunn & Associates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87794/162537113/87794_33915636_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.047087", - "last_seen": "2025-06-01T22:05:52.160012", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.262603, - 51.493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.52, - "qmprice": 37.56, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162537122", - "info": { - "identifier": 162537122, - "sqm_ocr": 86.52, - "price": 3250.0, - "price_per_sqm": 37.56356911696718, - "url": "https://www.rightmove.co.uk/properties/162537122", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162537122/26207_HEA734196_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.665427", - "last_seen": "2025-06-01T22:05:53.539193", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120319, - 51.531864 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162537167", - "info": { - "identifier": 162537167, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162537167", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hub Of Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281309/162537167/281309_28387_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.237727", - "last_seen": "2025-06-01T22:06:13.153123", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17372, - 51.46913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.79, - "qmprice": 46.09, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162537206", - "info": { - "identifier": 162537206, - "sqm_ocr": 86.79, - "price": 4000.0, - "price_per_sqm": 46.08825901601567, - "url": "https://www.rightmove.co.uk/properties/162537206", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "SJW property management limited", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/233k/232853/162537206/232853_c2ccdd9f-b50e-42f0-a4eb-631f1273bafc_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.065804, - 51.50779 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162537248", - "info": { - "identifier": 162537248, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162537248", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48330/162537248/48330_BRI230052_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.713081", - "last_seen": "2025-06-01T22:05:59.789028", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108871, - 51.4638 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.8, - "qmprice": 27.65, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162537530", - "info": { - "identifier": 162537530, - "sqm_ocr": 86.8, - "price": 2400.0, - "price_per_sqm": 27.649769585253456, - "url": "https://www.rightmove.co.uk/properties/162537530", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hausman & Holmes", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166823/162537530/166823_1392_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.572461", - "last_seen": "2025-06-01T22:05:38.464554", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21029, - 51.57082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162537800", - "info": { - "identifier": 162537800, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162537800", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "UKmate", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263912/162537800/263912_ukmate_agent_1748443910_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.984092", - "last_seen": "2025-06-01T22:05:40.914681", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.282619, - 51.540318 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162537953", - "info": { - "identifier": 162537953, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162537953", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12692/162537953/12692_GER249062_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.027946", - "last_seen": "2025-06-01T22:06:12.591031", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240486, - 51.44773 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162537956", - "info": { - "identifier": 162537956, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162537956", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22011/162537956/22011_KNL120201_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.969235", - "last_seen": "2025-06-01T22:05:57.617298", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20285, - 51.49389 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162538007", - "info": { - "identifier": 162538007, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162538007", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Property Broker", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/62k/61607/162538007/61607_6630789f-d301-44cf-b3b5-7407c70bec69_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.500682", - "last_seen": "2025-06-01T22:06:10.562373", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004043, - 51.51622 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2253.0, - "url": "https://www.rightmove.co.uk/properties/162538085", - "info": { - "identifier": 162538085, - "sqm_ocr": null, - "price": 2253.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162538085", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162538085/213815_705779_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.443249", - "last_seen": "2025-06-01T22:06:02.963862", - "price": 2253 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.073768, - 51.506897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/162538148", - "info": { - "identifier": 162538148, - "sqm_ocr": null, - "price": 2167.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162538148", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/162538148/17888_33258_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.328137", - "last_seen": "2025-06-01T22:06:14.914134", - "price": 2166 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18792, - 51.53172 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 33.33, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162538211", - "info": { - "identifier": 162538211, - "sqm_ocr": 60.0, - "price": 2000.0, - "price_per_sqm": 33.333333333333336, - "url": "https://www.rightmove.co.uk/properties/162538211", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Purplebricks", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/125k/124111/162538211/124111_1904416-2_IMG_00_0001_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.334121", - "last_seen": "2025-06-01T22:06:04.194357", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.249813, - 51.468628 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162538214", - "info": { - "identifier": 162538214, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162538214", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162538214/238265_L110073_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.564424", - "last_seen": "2025-06-01T22:06:04.888861", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105118, - 51.50305 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162538226", - "info": { - "identifier": 162538226, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162538226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Greenstone Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88567/162538226/88567_33911397_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.812125", - "last_seen": "2025-06-01T22:05:55.018702", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19671, - 51.554478 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162538361", - "info": { - "identifier": 162538361, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162538361", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117907/162538361/117907_33915735_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.777483", - "last_seen": "2025-06-01T22:05:51.385149", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.458979, - 51.4974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.06, - "qmprice": 34.64, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162538412", - "info": { - "identifier": 162538412, - "sqm_ocr": 75.06, - "price": 2600.0, - "price_per_sqm": 34.63895550226486, - "url": "https://www.rightmove.co.uk/properties/162538412", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148955/162538412/148955_RIC180132_L_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.464616", - "last_seen": "2025-06-01T22:06:04.797316", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29988, - 51.45579 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162538427", - "info": { - "identifier": 162538427, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162538427", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Apple Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151424/162538427/151424_APV1000754_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - 0.19052, - 51.58201 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.7, - "qmprice": 30.7, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162538625", - "info": { - "identifier": 162538625, - "sqm_ocr": 84.7, - "price": 2600.0, - "price_per_sqm": 30.696576151121604, - "url": "https://www.rightmove.co.uk/properties/162538625", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/249k/248528/162538625/248528_33915761_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.874220", - "last_seen": "2025-06-01T22:05:51.812408", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.310143, - 51.488876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162538826", - "info": { - "identifier": 162538826, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162538826", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Parkfields Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90161/162538826/90161_33915774_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.830206", - "last_seen": "2025-06-01T22:05:45.032653", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.370496, - 51.515133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/162538880", - "info": { - "identifier": 162538880, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162538880", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22011/162538880/22011_KNL250033_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.569834", - "last_seen": "2025-06-01T22:05:58.369714", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194577, - 51.50779 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.6, - "qmprice": 24.28, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162538889", - "info": { - "identifier": 162538889, - "sqm_ocr": 90.6, - "price": 2200.0, - "price_per_sqm": 24.282560706401767, - "url": "https://www.rightmove.co.uk/properties/162538889", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Petty Son & Prestwich Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70202/162538889/70202_33915776_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.875574", - "last_seen": "2025-06-01T22:06:11.963358", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012249, - 51.55432 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162538982", - "info": { - "identifier": 162538982, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162538982", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162538982/213815_662497_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.384755", - "last_seen": "2025-06-01T22:06:02.859575", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.075994, - 51.505367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.13, - "qmprice": 31.28, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162539234", - "info": { - "identifier": 162539234, - "sqm_ocr": 67.13, - "price": 2100.0, - "price_per_sqm": 31.282586027111577, - "url": "https://www.rightmove.co.uk/properties/162539234", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64571/162539234/64571_33915789_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.605468", - "last_seen": "2025-06-01T22:05:42.234900", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193662, - 51.539375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162539282", - "info": { - "identifier": 162539282, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162539282", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/162539282/222842_TCH231724_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.967912", - "last_seen": "2025-06-01T22:06:05.382059", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03541, - 51.50375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162539339", - "info": { - "identifier": 162539339, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162539339", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Daniel Cobb", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58939/162539339/58939_66b6b5b1-bdee-4e67-b39e-fb98c89c6ec4_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.248391", - "last_seen": "2025-06-01T22:05:59.045984", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109685, - 51.48513 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.3, - "qmprice": 36.4, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162539357", - "info": { - "identifier": 162539357, - "sqm_ocr": 67.3, - "price": 2450.0, - "price_per_sqm": 36.40416047548291, - "url": "https://www.rightmove.co.uk/properties/162539357", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25055/162539357/25055_BOW150942_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.671112", - "last_seen": "2025-06-01T22:06:08.015354", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.041062, - 51.52813 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162539618", - "info": { - "identifier": 162539618, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162539618", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Inner City Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/104k/103850/162539618/103850_rjsamakalsaddsa_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.780342", - "last_seen": "2025-06-01T22:06:10.928859", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02839, - 51.52996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162539690", - "info": { - "identifier": 162539690, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162539690", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Inner City Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/104k/103850/162539690/103850_dlilwad_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.354139", - "last_seen": "2025-06-01T22:06:11.361930", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00984, - 51.50564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.2, - "qmprice": 37.97, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162539729", - "info": { - "identifier": 162539729, - "sqm_ocr": 63.2, - "price": 2400.0, - "price_per_sqm": 37.974683544303794, - "url": "https://www.rightmove.co.uk/properties/162539729", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Settle", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244682/162539729/244682_33915821_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.162463", - "last_seen": "2025-06-01T22:05:38.628037", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220043, - 51.589336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.6, - "qmprice": 27.43, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162539756", - "info": { - "identifier": 162539756, - "sqm_ocr": 96.6, - "price": 2650.0, - "price_per_sqm": 27.43271221532091, - "url": "https://www.rightmove.co.uk/properties/162539756", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68804/162539756/68804_P301039_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.254776", - "last_seen": "2025-06-01T22:06:05.215042", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08956, - 51.4531 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162539813", - "info": { - "identifier": 162539813, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162539813", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Inner City Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/104k/103850/162539813/103850_nelalaa_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.557686", - "last_seen": "2025-06-01T22:06:09.907422", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01394, - 51.52387 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162539819", - "info": { - "identifier": 162539819, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162539819", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162539819/191744_RL5010_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.675845", - "last_seen": "2025-06-01T22:05:53.548568", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103793, - 51.52216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162539849", - "info": { - "identifier": 162539849, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162539849", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Simple Life London", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270209/162539849/270209_S1821-0002_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.970246", - "last_seen": "2025-06-01T22:06:02.622493", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.074145, - 51.508347 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/162539882", - "info": { - "identifier": 162539882, - "sqm_ocr": null, - "price": 2695.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162539882", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Simple Life London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270209/162539882/270209_S1822-0019_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.924675", - "last_seen": "2025-06-01T22:06:02.599506", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03589, - 51.50341 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162539888", - "info": { - "identifier": 162539888, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162539888", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5847/162539888/5847_P466808_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.271267", - "last_seen": "2025-06-01T22:05:43.477375", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05267, - 51.39314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162539897", - "info": { - "identifier": 162539897, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162539897", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Equity London LTD", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76748/162539897/76748_2281_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.234574", - "last_seen": "2025-06-01T22:05:46.450904", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07951, - 51.45407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162539900", - "info": { - "identifier": 162539900, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162539900", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Inner City Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/104k/103850/162539900/103850_ssjsksls_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:11.270262", - "last_seen": "2025-06-01T22:06:11.270262", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02553, - 51.52587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162539996", - "info": { - "identifier": 162539996, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162539996", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Quest London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/274k/273062/162539996/273062_mitcham_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.664376", - "last_seen": "2025-06-01T22:06:03.201948", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.05061, - 51.52636 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162540014", - "info": { - "identifier": 162540014, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162540014", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Inner City Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/104k/103850/162540014/103850_wjalamakala_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.725838", - "last_seen": "2025-06-01T22:05:49.960080", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05744, - 51.58575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/162540023", - "info": { - "identifier": 162540023, - "sqm_ocr": null, - "price": 2695.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162540023", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Simple Life London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270209/162540023/270209_S1822-0011_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.382397", - "last_seen": "2025-06-01T22:06:02.856338", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07255, - 51.50808 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.86, - "qmprice": 32.11, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162540128", - "info": { - "identifier": 162540128, - "sqm_ocr": 77.86, - "price": 2500.0, - "price_per_sqm": 32.108913434369384, - "url": "https://www.rightmove.co.uk/properties/162540128", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Castles Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257138/162540128/257138_2665406_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.634956", - "last_seen": "2025-06-01T22:06:11.666525", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04687, - 51.563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2340.0, - "url": "https://www.rightmove.co.uk/properties/162540137", - "info": { - "identifier": 162540137, - "sqm_ocr": null, - "price": 2340.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162540137", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162540137/213815_631689_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.787575", - "last_seen": "2025-06-01T22:06:02.397459", - "price": 2340 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07661, - 51.5054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162540305", - "info": { - "identifier": 162540305, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162540305", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Simple Life London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270209/162540305/270209_S1824-0005_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.525594", - "last_seen": "2025-06-01T22:06:02.335568", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0721, - 51.5069 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.9, - "qmprice": 27.61, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162540413", - "info": { - "identifier": 162540413, - "sqm_ocr": 115.9, - "price": 3200.0, - "price_per_sqm": 27.610008628127694, - "url": "https://www.rightmove.co.uk/properties/162540413", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/162540413/65785_33915861_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.621484", - "last_seen": "2025-06-01T22:06:14.158642", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148006, - 51.43887 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162540419", - "info": { - "identifier": 162540419, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162540419", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Simple Life London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270209/162540419/270209_S1824-0003_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.222062", - "last_seen": "2025-06-01T22:06:03.487424", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0721, - 51.5069 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162540473", - "info": { - "identifier": 162540473, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162540473", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98852/162540473/98852_KEL240130_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.062153", - "last_seen": "2025-06-01T22:05:43.215360", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191782, - 51.53882 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162540626", - "info": { - "identifier": 162540626, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162540626", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "LONDON & COUNTRY", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284030/162540626/284030_lac_1405986666_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.844348", - "last_seen": "2025-06-01T22:06:05.188803", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05952, - 51.48858 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/162540935", - "info": { - "identifier": 162540935, - "sqm_ocr": null, - "price": 2395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162540935", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162540935/96668_235926721012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.16032, - 51.41107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162541310", - "info": { - "identifier": 162541310, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162541310", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162541310/257522_0024-grace-RUwfzt_IMG_00_0000_max_656x437.png", - "let_date_available": "04/12/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.740660", - "last_seen": "2025-06-01T22:05:40.134626", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28289, - 51.5595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/162541544", - "info": { - "identifier": 162541544, - "sqm_ocr": null, - "price": 3550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162541544", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "relocate-me.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33012/162541544/33012_58796_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.820486", - "last_seen": "2025-06-01T22:05:54.269344", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096858, - 51.529858 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.4, - "qmprice": 51.75, - "rooms": 2, - "total_price": 2401.0, - "url": "https://www.rightmove.co.uk/properties/162541586", - "info": { - "identifier": 162541586, - "sqm_ocr": 46.4, - "price": 2401.0, - "price_per_sqm": 51.74568965517241, - "url": "https://www.rightmove.co.uk/properties/162541586", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chard", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141944/162541586/141944_33915918_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.966999", - "last_seen": "2025-06-01T22:05:49.489726", - "price": 2400 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207898, - 51.474865 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3948.0, - "url": "https://www.rightmove.co.uk/properties/162541613", - "info": { - "identifier": 162541613, - "sqm_ocr": null, - "price": 3948.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162541613", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JS Estate Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264161/162541613/264161_705784_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.763406", - "last_seen": "2025-06-01T22:06:10.890862", - "price": 3947 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017265, - 51.501263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162541667", - "info": { - "identifier": 162541667, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162541667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162541667/96668_248972920052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.944283", - "last_seen": "2025-06-01T22:06:11.161825", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.043129, - 51.511932 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2385.0, - "url": "https://www.rightmove.co.uk/properties/162541709", - "info": { - "identifier": 162541709, - "sqm_ocr": null, - "price": 2385.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162541709", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162541709/96668_249148321052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.455761", - "last_seen": "2025-06-01T22:05:53.149039", - "price": 2385.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104045, - 51.564293 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162541745", - "info": { - "identifier": 162541745, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162541745", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162541745/96668_248678217052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.950398", - "last_seen": "2025-06-01T22:05:44.140998", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.313895, - 51.49765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.6, - "qmprice": 41.55, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162541757", - "info": { - "identifier": 162541757, - "sqm_ocr": 74.6, - "price": 3100.0, - "price_per_sqm": 41.55495978552279, - "url": "https://www.rightmove.co.uk/properties/162541757", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Davies & Davies", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22559/162541757/22559_33914469_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.424537", - "last_seen": "2025-06-01T22:05:53.122618", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110857, - 51.56535 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162541898", - "info": { - "identifier": 162541898, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162541898", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162541898/96668_249711327052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.224748", - "last_seen": "2025-06-01T22:05:46.456016", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.076291, - 51.438164 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162541907", - "info": { - "identifier": 162541907, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162541907", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162541907/96668_248766518052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.666498", - "last_seen": "2025-06-01T22:05:59.736463", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.110454, - 51.472816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2895.0, - "url": "https://www.rightmove.co.uk/properties/162541931", - "info": { - "identifier": 162541931, - "sqm_ocr": null, - "price": 2895.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162541931", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Peter Michael Estates & Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25176/162541931/25176_467_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.077722", - "last_seen": "2025-06-01T22:05:45.943449", - "price": 2895.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13246, - 51.62204 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162541949", - "info": { - "identifier": 162541949, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162541949", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162541949/96668_245312815042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.256418", - "last_seen": "2025-06-01T22:05:48.947068", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204213, - 51.486 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162542009", - "info": { - "identifier": 162542009, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162542009", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Alternative Property Services", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9186/162542009/9186_33915931_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.254778", - "last_seen": "2025-06-01T22:05:50.980667", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.236597, - 51.59712 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2490.0, - "url": "https://www.rightmove.co.uk/properties/162542078", - "info": { - "identifier": 162542078, - "sqm_ocr": null, - "price": 2490.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162542078", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162542078/96668_249780327052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.905592", - "last_seen": "2025-06-01T22:06:00.648547", - "price": 2490.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03054, - 51.472816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162542099", - "info": { - "identifier": 162542099, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162542099", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162542099/96668_249149021052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.661328", - "last_seen": "2025-06-01T22:05:42.415234", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12483, - 51.525944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162542141", - "info": { - "identifier": 162542141, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162542141", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162542141/96668_249833928052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.466082", - "last_seen": "2025-06-01T22:06:10.466082", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073645, - 51.524834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162542237", - "info": { - "identifier": 162542237, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162542237", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162542237/96668_249890128052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.308795", - "last_seen": "2025-06-01T22:05:57.911952", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215087, - 51.51918 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.7, - "qmprice": 30.46, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162542255", - "info": { - "identifier": 162542255, - "sqm_ocr": 106.7, - "price": 3250.0, - "price_per_sqm": 30.459231490159326, - "url": "https://www.rightmove.co.uk/properties/162542255", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162542255/96668_249368923052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.445978", - "last_seen": "2025-06-01T22:05:59.674713", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123746, - 51.43221 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 34.25, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162542276", - "info": { - "identifier": 162542276, - "sqm_ocr": 73.0, - "price": 2500.0, - "price_per_sqm": 34.24657534246575, - "url": "https://www.rightmove.co.uk/properties/162542276", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162542276/96668_249842828052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.761726", - "last_seen": "2025-06-01T22:05:58.711158", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.281934, - 51.406208 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3588.0, - "url": "https://www.rightmove.co.uk/properties/162542288", - "info": { - "identifier": 162542288, - "sqm_ocr": null, - "price": 3588.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162542288", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162542288/96668_249860428052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.151189", - "last_seen": "2025-06-01T22:05:42.636713", - "price": 3588 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140215, - 51.52709 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.4, - "qmprice": 49.72, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162542312", - "info": { - "identifier": 162542312, - "sqm_ocr": 70.4, - "price": 3500.0, - "price_per_sqm": 49.715909090909086, - "url": "https://www.rightmove.co.uk/properties/162542312", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162542312/96668_249856328052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.600824", - "last_seen": "2025-06-01T22:05:53.951083", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108128, - 51.56554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162542369", - "info": { - "identifier": 162542369, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162542369", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162542369/96668_190649723112023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.676329", - "last_seen": "2025-06-01T22:05:49.288954", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183603, - 51.473278 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 136.47, - "qmprice": 29.27, - "rooms": 3, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/162542417", - "info": { - "identifier": 162542417, - "sqm_ocr": 136.47, - "price": 3995.0, - "price_per_sqm": 29.273833076866712, - "url": "https://www.rightmove.co.uk/properties/162542417", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162542417/96668_249872928052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.486757", - "last_seen": "2025-06-01T22:06:12.356299", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166594, - 51.43632 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162542423", - "info": { - "identifier": 162542423, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162542423", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162542423/96668_249794327052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.580814", - "last_seen": "2025-06-01T22:05:49.609840", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142988, - 51.5757 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162542450", - "info": { - "identifier": 162542450, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162542450", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162542450/96668_249874228052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.756856", - "last_seen": "2025-06-01T22:05:57.338083", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205802, - 51.54595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162542483", - "info": { - "identifier": 162542483, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162542483", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162542483/96668_249879128052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.749775", - "last_seen": "2025-06-01T22:05:56.681760", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100531, - 51.56048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.0, - "qmprice": 24.53, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162542582", - "info": { - "identifier": 162542582, - "sqm_ocr": 106.0, - "price": 2600.0, - "price_per_sqm": 24.528301886792452, - "url": "https://www.rightmove.co.uk/properties/162542582", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Squires Estates", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46983/162542582/46983_33915954_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.717666", - "last_seen": "2025-06-01T22:05:38.812996", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211574, - 51.598637 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/162542624", - "info": { - "identifier": 162542624, - "sqm_ocr": null, - "price": 2395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162542624", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162542624/96668_249886328052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.477195", - "last_seen": "2025-06-01T22:06:07.865745", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197106, - 51.35521 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162542696", - "info": { - "identifier": 162542696, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162542696", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/256k/255365/162542696/255365_2Bed_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.057709", - "last_seen": "2025-06-01T22:05:50.812646", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3364, - 51.57969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.6, - "qmprice": 40.32, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162542750", - "info": { - "identifier": 162542750, - "sqm_ocr": 80.6, - "price": 3250.0, - "price_per_sqm": 40.322580645161295, - "url": "https://www.rightmove.co.uk/properties/162542750", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/162542750/15966_1328096_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.820185", - "last_seen": "2025-06-01T22:06:13.578044", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163344, - 51.459194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.1, - "qmprice": 56.5, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162542777", - "info": { - "identifier": 162542777, - "sqm_ocr": 53.1, - "price": 3000.0, - "price_per_sqm": 56.497175141242934, - "url": "https://www.rightmove.co.uk/properties/162542777", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/162542777/56751_1327971_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.550563", - "last_seen": "2025-06-01T22:05:59.806918", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113886, - 51.46098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.8, - "qmprice": 32.52, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162542885", - "info": { - "identifier": 162542885, - "sqm_ocr": 73.8, - "price": 2400.0, - "price_per_sqm": 32.520325203252035, - "url": "https://www.rightmove.co.uk/properties/162542885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/162542885/107533_1328075_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.784642", - "last_seen": "2025-06-01T22:06:00.458587", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022969, - 51.47411 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162542909", - "info": { - "identifier": 162542909, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162542909", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/162542909/253853_1328103_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.581082", - "last_seen": "2025-06-01T22:06:04.910352", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10254, - 51.4927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.7, - "qmprice": 30.79, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162542915", - "info": { - "identifier": 162542915, - "sqm_ocr": 74.7, - "price": 2300.0, - "price_per_sqm": 30.78982597054886, - "url": "https://www.rightmove.co.uk/properties/162542915", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/162542915/253853_1327172_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.574710", - "last_seen": "2025-06-01T22:06:04.893777", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10168, - 51.48283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.8, - "qmprice": 43.86, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162542942", - "info": { - "identifier": 162542942, - "sqm_ocr": 79.8, - "price": 3500.0, - "price_per_sqm": 43.85964912280702, - "url": "https://www.rightmove.co.uk/properties/162542942", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/162542942/253853_1328042_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.535647", - "last_seen": "2025-06-01T22:06:06.048322", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.097674, - 51.4918 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.1, - "qmprice": 26.32, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162542954", - "info": { - "identifier": 162542954, - "sqm_ocr": 112.1, - "price": 2950.0, - "price_per_sqm": 26.315789473684212, - "url": "https://www.rightmove.co.uk/properties/162542954", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/162542954/149153_1328101_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.360122", - "last_seen": "2025-06-01T22:06:01.384571", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.234403, - 51.398052 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.9, - "qmprice": 39.01, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162543026", - "info": { - "identifier": 162543026, - "sqm_ocr": 76.9, - "price": 3000.0, - "price_per_sqm": 39.01170351105331, - "url": "https://www.rightmove.co.uk/properties/162543026", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/162543026/84889_1328029_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.351259", - "last_seen": "2025-06-01T22:06:14.976115", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13749, - 51.492855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.9, - "qmprice": 43.12, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162543041", - "info": { - "identifier": 162543041, - "sqm_ocr": 79.9, - "price": 3445.0, - "price_per_sqm": 43.11639549436796, - "url": "https://www.rightmove.co.uk/properties/162543041", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/162543041/84889_1327094_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.338237", - "last_seen": "2025-06-01T22:06:14.927067", - "price": 3445.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133698, - 51.494358 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.3, - "qmprice": 36.7, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162543110", - "info": { - "identifier": 162543110, - "sqm_ocr": 76.3, - "price": 2800.0, - "price_per_sqm": 36.69724770642202, - "url": "https://www.rightmove.co.uk/properties/162543110", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162543110/15963_1327949_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.342716", - "last_seen": "2025-06-01T22:06:12.113062", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240465, - 51.44832 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 49.15, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162543185", - "info": { - "identifier": 162543185, - "sqm_ocr": 59.0, - "price": 2900.0, - "price_per_sqm": 49.152542372881356, - "url": "https://www.rightmove.co.uk/properties/162543185", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/162543185/15945_1328113_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.129479", - "last_seen": "2025-06-01T22:05:57.854810", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.193182, - 51.50437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162543263", - "info": { - "identifier": 162543263, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162543263", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/162543263/247697_102708042704_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.074375", - "last_seen": "2025-06-01T22:05:54.098005", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13063, - 51.56446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.7, - "qmprice": 51.17, - "rooms": 2, - "total_price": 3311.0, - "url": "https://www.rightmove.co.uk/properties/162543311", - "info": { - "identifier": 162543311, - "sqm_ocr": 64.7, - "price": 3311.0, - "price_per_sqm": 51.174652241112824, - "url": "https://www.rightmove.co.uk/properties/162543311", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162543311/48101_1324135_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.217828", - "last_seen": "2025-06-01T22:06:03.482098", - "price": 3311.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.031833, - 51.511658 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.9, - "qmprice": 51.31, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162543314", - "info": { - "identifier": 162543314, - "sqm_ocr": 54.9, - "price": 2817.0, - "price_per_sqm": 51.31147540983606, - "url": "https://www.rightmove.co.uk/properties/162543314", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15960/162543314/15960_1328102_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.867863", - "last_seen": "2025-06-01T22:06:16.062370", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175914, - 51.528374 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/162543317", - "info": { - "identifier": 162543317, - "sqm_ocr": null, - "price": 2375.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162543317", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237557/162543317/237557_P66787_IMG_19_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.380774", - "last_seen": "2025-06-01T22:06:07.887944", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18892, - 51.36037 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.8, - "qmprice": 44.3, - "rooms": 3, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/162543326", - "info": { - "identifier": 162543326, - "sqm_ocr": 76.8, - "price": 3402.0, - "price_per_sqm": 44.296875, - "url": "https://www.rightmove.co.uk/properties/162543326", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Bentley & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/205k/204560/162543326/204560_523_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.042125", - "last_seen": "2025-06-01T22:05:43.166388", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131221, - 51.534496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 44.42, - "rooms": 2, - "total_price": 3554.0, - "url": "https://www.rightmove.co.uk/properties/162543359", - "info": { - "identifier": 162543359, - "sqm_ocr": 80.0, - "price": 3554.0, - "price_per_sqm": 44.425, - "url": "https://www.rightmove.co.uk/properties/162543359", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162543359/48101_1328056_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.234138", - "last_seen": "2025-06-01T20:19:58.785252", - "price": 3554.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02497, - 51.501724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.7, - "qmprice": 31.82, - "rooms": 2, - "total_price": 2059.0, - "url": "https://www.rightmove.co.uk/properties/162543386", - "info": { - "identifier": 162543386, - "sqm_ocr": 64.7, - "price": 2059.0, - "price_per_sqm": 31.823802163833076, - "url": "https://www.rightmove.co.uk/properties/162543386", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162543386/48101_1324134_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.256245", - "last_seen": "2025-06-01T22:06:03.643365", - "price": 2059.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.031833, - 51.511658 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162543434", - "info": { - "identifier": 162543434, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162543434", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89474/162543434/89474_000378144_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.007166", - "last_seen": "2025-06-01T22:05:38.296818", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.119, - 51.52775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162543476", - "info": { - "identifier": 162543476, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162543476", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105152/162543476/105152_0628_HRT062800783_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.958496", - "last_seen": "2025-06-01T22:05:45.851139", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142286, - 51.648613 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162543491", - "info": { - "identifier": 162543491, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162543491", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/162543491/247697_102708042705_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.588342", - "last_seen": "2025-06-01T22:05:53.954977", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13063, - 51.56446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 113.9, - "qmprice": 28.97, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162543536", - "info": { - "identifier": 162543536, - "sqm_ocr": 113.9, - "price": 3300.0, - "price_per_sqm": 28.97278314310799, - "url": "https://www.rightmove.co.uk/properties/162543536", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/162543536/55101_1327975_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.717878", - "last_seen": "2025-06-01T22:06:05.176503", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073912, - 51.497932 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162543566", - "info": { - "identifier": 162543566, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162543566", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/162543566/247697_102708031216_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.384520", - "last_seen": "2025-06-01T22:05:52.994854", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13063, - 51.56446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2882.0, - "url": "https://www.rightmove.co.uk/properties/162543644", - "info": { - "identifier": 162543644, - "sqm_ocr": null, - "price": 2882.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162543644", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162543644/213815_705789_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.058637", - "last_seen": "2025-06-01T22:06:09.631580", - "price": 2881 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052539, - 51.511013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.3, - "qmprice": 36.96, - "rooms": 2, - "total_price": 2709.0, - "url": "https://www.rightmove.co.uk/properties/162543650", - "info": { - "identifier": 162543650, - "sqm_ocr": 73.3, - "price": 2709.0, - "price_per_sqm": 36.957708049113236, - "url": "https://www.rightmove.co.uk/properties/162543650", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/162543650/15957_1328086_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.163712", - "last_seen": "2025-06-01T22:05:38.904315", - "price": 2709.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19964, - 51.56327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 39.06, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162543662", - "info": { - "identifier": 162543662, - "sqm_ocr": 64.0, - "price": 2500.0, - "price_per_sqm": 39.0625, - "url": "https://www.rightmove.co.uk/properties/162543662", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/162543662/71401_1328100_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.290440", - "last_seen": "2025-06-01T22:05:40.580767", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232413, - 51.542366 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.1, - "qmprice": 35.24, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162543665", - "info": { - "identifier": 162543665, - "sqm_ocr": 68.1, - "price": 2400.0, - "price_per_sqm": 35.24229074889868, - "url": "https://www.rightmove.co.uk/properties/162543665", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/162543665/71401_1327455_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.775599", - "last_seen": "2025-06-01T22:05:40.578773", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221529, - 51.554142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 117.1, - "qmprice": 33.3, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162543677", - "info": { - "identifier": 162543677, - "sqm_ocr": 117.1, - "price": 3900.0, - "price_per_sqm": 33.304867634500425, - "url": "https://www.rightmove.co.uk/properties/162543677", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/162543677/71401_1327452_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.694623", - "last_seen": "2025-06-01T22:05:40.568446", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221529, - 51.554142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162543704", - "info": { - "identifier": 162543704, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162543704", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "UNCLE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147557/162543704/147557_RST254499_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.171162", - "last_seen": "2025-06-01T22:05:41.123765", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29286, - 51.554035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162543716", - "info": { - "identifier": 162543716, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162543716", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/162543716/247697_102708031215_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.119122", - "last_seen": "2025-06-01T22:05:54.100293", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13063, - 51.56446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/162543764", - "info": { - "identifier": 162543764, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162543764", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22281/162543764/22281_BSL120102_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.080671", - "last_seen": "2025-06-01T22:06:13.985639", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17014, - 51.47092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.8, - "qmprice": 37.62, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162543815", - "info": { - "identifier": 162543815, - "sqm_ocr": 63.8, - "price": 2400.0, - "price_per_sqm": 37.61755485893417, - "url": "https://www.rightmove.co.uk/properties/162543815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166331/162543815/166331_1327344_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.942166", - "last_seen": "2025-06-01T22:05:40.814752", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.296079, - 51.552345 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.8, - "qmprice": 48.63, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162543827", - "info": { - "identifier": 162543827, - "sqm_ocr": 65.8, - "price": 3200.0, - "price_per_sqm": 48.632218844984806, - "url": "https://www.rightmove.co.uk/properties/162543827", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/162543827/66771_1328104_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.469383", - "last_seen": "2025-06-01T22:05:59.701697", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114443, - 51.49496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162543992", - "info": { - "identifier": 162543992, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162543992", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107018/162543992/107018_NWL240122_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.371417", - "last_seen": "2025-06-01T22:05:51.228554", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.417, - 51.6161 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162544106", - "info": { - "identifier": 162544106, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162544106", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "The Stow Brothers", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267587/162544106/267587_33916045_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.947418", - "last_seen": "2025-06-01T22:05:47.822601", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069585, - 51.54719 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.38, - "qmprice": 66.5, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162544112", - "info": { - "identifier": 162544112, - "sqm_ocr": 55.38, - "price": 3683.0, - "price_per_sqm": 66.50415312387143, - "url": "https://www.rightmove.co.uk/properties/162544112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Loporto Browne Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260705/162544112/260705_L110084_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.626668", - "last_seen": "2025-06-01T22:05:42.939653", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132912, - 51.52149 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162544145", - "info": { - "identifier": 162544145, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162544145", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Ak247 Homes Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261134/162544145/261134_10Pullman_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.452894", - "last_seen": "2025-06-01T22:05:40.429596", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28288, - 51.56373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/162544778", - "info": { - "identifier": 162544778, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162544778", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/162544778/191255_33916069_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.426528", - "last_seen": "2025-06-01T22:06:09.727165", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053927, - 51.509155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3296.0, - "url": "https://www.rightmove.co.uk/properties/162544781", - "info": { - "identifier": 162544781, - "sqm_ocr": null, - "price": 3296.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162544781", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162544781/156986_MQC20007_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.597556", - "last_seen": "2025-06-01T22:05:40.623380", - "price": 3296.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27963, - 51.56131 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.9, - "qmprice": 41.19, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162544913", - "info": { - "identifier": 162544913, - "sqm_ocr": 78.9, - "price": 3250.0, - "price_per_sqm": 41.191381495564, - "url": "https://www.rightmove.co.uk/properties/162544913", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chase Apartments", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34047/162544913/34047_33916075_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.264401", - "last_seen": "2025-06-01T20:19:58.869955", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020069, - 51.499588 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162544988", - "info": { - "identifier": 162544988, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162544988", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57940/162544988/57940_KCQ240179_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.150018", - "last_seen": "2025-06-01T22:05:42.634470", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162783, - 51.548763 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162545093", - "info": { - "identifier": 162545093, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162545093", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/169k/168185/162545093/168185_GER253224_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.859239", - "last_seen": "2025-06-01T22:05:43.693827", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106522, - 51.38937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.0, - "qmprice": 52.78, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162545120", - "info": { - "identifier": 162545120, - "sqm_ocr": 54.0, - "price": 2850.0, - "price_per_sqm": 52.77777777777778, - "url": "https://www.rightmove.co.uk/properties/162545120", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57940/162545120/57940_KCQ240114_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.123030", - "last_seen": "2025-06-01T22:05:43.226018", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166895, - 51.540123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.12, - "qmprice": 42.08, - "rooms": 2, - "total_price": 2951.0, - "url": "https://www.rightmove.co.uk/properties/162545213", - "info": { - "identifier": 162545213, - "sqm_ocr": 70.12, - "price": 2951.0, - "price_per_sqm": 42.08499714774672, - "url": "https://www.rightmove.co.uk/properties/162545213", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53654/162545213/53654_33916100_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.701579", - "last_seen": "2025-06-01T22:05:49.200391", - "price": 2951 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184309, - 51.471306 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162545288", - "info": { - "identifier": 162545288, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162545288", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/162545288/176261_102708030770_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.450946", - "last_seen": "2025-06-01T22:05:50.082963", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11364, - 51.58118 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162545477", - "info": { - "identifier": 162545477, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162545477", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162545477/96668_249809727052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.844657", - "last_seen": "2025-06-01T22:05:40.477349", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.241895, - 51.53465 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162545516", - "info": { - "identifier": 162545516, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162545516", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162545516/96668_249896728052025_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.702838", - "last_seen": "2025-06-01T22:06:07.676400", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009308, - 51.532707 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.9, - "qmprice": 25.03, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162545567", - "info": { - "identifier": 162545567, - "sqm_ocr": 95.9, - "price": 2400.0, - "price_per_sqm": 25.026068821689258, - "url": "https://www.rightmove.co.uk/properties/162545567", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162545567/96668_249891428052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.977121", - "last_seen": "2025-06-01T22:06:00.922395", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.010302, - 51.45659 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.1, - "qmprice": 33.84, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162545687", - "info": { - "identifier": 162545687, - "sqm_ocr": 59.1, - "price": 2000.0, - "price_per_sqm": 33.840947546531304, - "url": "https://www.rightmove.co.uk/properties/162545687", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "S J Smith Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72819/162545687/72819_103010008145_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.250358", - "last_seen": "2025-06-01T22:05:52.269592", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.43224, - 51.44937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.1, - "qmprice": 31.11, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162545753", - "info": { - "identifier": 162545753, - "sqm_ocr": 69.1, - "price": 2150.0, - "price_per_sqm": 31.114327062228657, - "url": "https://www.rightmove.co.uk/properties/162545753", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "RCAM", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218888/162545753/218888_2bed2805_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.361870", - "last_seen": "2025-06-01T22:05:51.219884", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42116, - 51.50335 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 119.1, - "qmprice": 28.55, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162545759", - "info": { - "identifier": 162545759, - "sqm_ocr": 119.1, - "price": 3400.0, - "price_per_sqm": 28.547439126784216, - "url": "https://www.rightmove.co.uk/properties/162545759", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50698/162545759/50698_P277117_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.922625", - "last_seen": "2025-06-01T22:06:05.327730", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07044, - 51.45602 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162545924", - "info": { - "identifier": 162545924, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162545924", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Legacy Property Consultants Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/139k/138659/162545924/138659_103650003438_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.150880", - "last_seen": "2025-06-01T22:06:14.392330", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16263, - 51.52594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/162545999", - "info": { - "identifier": 162545999, - "sqm_ocr": null, - "price": 3550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162545999", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dolphin Square", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58030/162545999/58030_HOW107_V4_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.223779", - "last_seen": "2025-06-01T22:06:16.129780", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13687, - 51.48605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/162546062", - "info": { - "identifier": 162546062, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162546062", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "LDG", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50021/162546062/50021_LDG250074_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.782639", - "last_seen": "2025-06-01T22:05:42.525434", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133686, - 51.53549 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.2, - "qmprice": 29.79, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162546068", - "info": { - "identifier": 162546068, - "sqm_ocr": 77.2, - "price": 2300.0, - "price_per_sqm": 29.792746113989637, - "url": "https://www.rightmove.co.uk/properties/162546068", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Gibson Lane", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22316/162546068/22316_33497741_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.683383", - "last_seen": "2025-06-01T22:05:58.689351", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293646, - 51.402573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 38.71, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162546143", - "info": { - "identifier": 162546143, - "sqm_ocr": 62.0, - "price": 2400.0, - "price_per_sqm": 38.70967741935484, - "url": "https://www.rightmove.co.uk/properties/162546143", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "SAB - Saint Andrews Bureau Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105104/162546143/105104_103035004902_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.048361", - "last_seen": "2025-06-01T22:05:38.906970", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24041, - 51.59493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3796.0, - "url": "https://www.rightmove.co.uk/properties/162546470", - "info": { - "identifier": 162546470, - "sqm_ocr": null, - "price": 3796.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162546470", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JS Estate Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264161/162546470/264161_705792_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.380817", - "last_seen": "2025-06-01T22:05:52.981682", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095103, - 51.528904 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162546623", - "info": { - "identifier": 162546623, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162546623", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/162546623/80105_9186_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.724916", - "last_seen": "2025-06-01T22:06:00.036922", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092538, - 51.433857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 44.7, - "qmprice": 49.22, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162546707", - "info": { - "identifier": 162546707, - "sqm_ocr": 44.7, - "price": 2200.0, - "price_per_sqm": 49.21700223713646, - "url": "https://www.rightmove.co.uk/properties/162546707", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Citiland Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282164/162546707/282164_F201LSHE1_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "05/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.370218", - "last_seen": "2025-06-01T22:06:10.258237", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04018, - 51.51721 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.21, - "qmprice": 33.22, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162546815", - "info": { - "identifier": 162546815, - "sqm_ocr": 60.21, - "price": 2000.0, - "price_per_sqm": 33.21707357581797, - "url": "https://www.rightmove.co.uk/properties/162546815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25055/162546815/25055_BOW210282_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.172485", - "last_seen": "2025-06-01T20:19:57.201202", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028006, - 51.537094 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.9, - "qmprice": 27.81, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162546872", - "info": { - "identifier": 162546872, - "sqm_ocr": 80.9, - "price": 2250.0, - "price_per_sqm": 27.812113720642767, - "url": "https://www.rightmove.co.uk/properties/162546872", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280928/162546872/280928_KYC250196_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.429930", - "last_seen": "2025-06-01T22:05:40.392601", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29287, - 51.554028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162547070", - "info": { - "identifier": 162547070, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162547070", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "URBAN BASE PROPERTIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287006/162547070/287006_20ALTONHOUSEE33BB_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.041841", - "last_seen": "2025-06-01T22:06:09.043710", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01358, - 51.52899 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162547199", - "info": { - "identifier": 162547199, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162547199", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/15k/14614/162547199/14614_BLA210775_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.351161", - "last_seen": "2025-06-01T22:05:54.890438", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.033698, - 51.471745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.7, - "qmprice": 30.62, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162547244", - "info": { - "identifier": 162547244, - "sqm_ocr": 94.7, - "price": 2900.0, - "price_per_sqm": 30.62302006335797, - "url": "https://www.rightmove.co.uk/properties/162547244", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Pedder", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21476/162547244/21476_33916200_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.311119", - "last_seen": "2025-06-01T22:06:05.487392", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088967, - 51.43713 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.1, - "qmprice": 33.91, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162547250", - "info": { - "identifier": 162547250, - "sqm_ocr": 81.1, - "price": 2750.0, - "price_per_sqm": 33.90875462392109, - "url": "https://www.rightmove.co.uk/properties/162547250", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Austin Homes London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105559/162547250/105559_04ee3ca1-2161-4182-b5d6-4be9dffe84fc_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:56.580327", - "last_seen": "2025-06-01T22:06:09.209027", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070581, - 51.52399 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162547340", - "info": { - "identifier": 162547340, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162547340", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Robert Cooper & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15002/162547340/15002_RUI190048_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.541739", - "last_seen": "2025-06-01T22:05:51.641998", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.40974, - 51.5728 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 133.9, - "qmprice": 26.89, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162547370", - "info": { - "identifier": 162547370, - "sqm_ocr": 133.9, - "price": 3600.0, - "price_per_sqm": 26.8857356235997, - "url": "https://www.rightmove.co.uk/properties/162547370", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105656/162547370/105656_KCZ250713_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.946186", - "last_seen": "2025-06-01T22:05:49.470207", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.243548, - 51.489197 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.3, - "qmprice": 28.64, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162547478", - "info": { - "identifier": 162547478, - "sqm_ocr": 80.3, - "price": 2300.0, - "price_per_sqm": 28.642590286425904, - "url": "https://www.rightmove.co.uk/properties/162547478", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Tennison Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76430/162547478/76430_704635_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.217974", - "last_seen": "2025-06-01T22:06:13.746930", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186888, - 51.435528 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 44.91, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162547553", - "info": { - "identifier": 162547553, - "sqm_ocr": 82.0, - "price": 3683.0, - "price_per_sqm": 44.91463414634146, - "url": "https://www.rightmove.co.uk/properties/162547553", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84794/162547553/84794_32277162_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.541000", - "last_seen": "2025-06-01T22:05:48.340155", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202152, - 51.48552 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162547583", - "info": { - "identifier": 162547583, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162547583", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Robinson Jackson", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271901/162547583/271901_PLL250130_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.205692", - "last_seen": "2025-06-01T22:05:39.909035", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.121688, - 51.467026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.7, - "qmprice": 43.15, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162547712", - "info": { - "identifier": 162547712, - "sqm_ocr": 92.7, - "price": 4000.0, - "price_per_sqm": 43.14994606256742, - "url": "https://www.rightmove.co.uk/properties/162547712", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/162547712/15969_1328139_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.755127", - "last_seen": "2025-06-01T22:05:45.058862", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.307316, - 51.513363 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.2, - "qmprice": 28.36, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162547748", - "info": { - "identifier": 162547748, - "sqm_ocr": 95.2, - "price": 2700.0, - "price_per_sqm": 28.361344537815125, - "url": "https://www.rightmove.co.uk/properties/162547748", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75148/162547748/75148_1321786_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.765566", - "last_seen": "2025-06-01T22:05:46.597724", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.027209, - 51.46115 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.2, - "qmprice": 56.5, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/162547787", - "info": { - "identifier": 162547787, - "sqm_ocr": 65.2, - "price": 3684.0, - "price_per_sqm": 56.50306748466257, - "url": "https://www.rightmove.co.uk/properties/162547787", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/162547787/253853_1328119_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.551928", - "last_seen": "2025-06-01T22:06:06.767124", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09619, - 51.49181 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162547811", - "info": { - "identifier": 162547811, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162547811", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39872/162547811/39872_100783005236_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.292402", - "last_seen": "2025-06-01T22:05:58.484607", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18087, - 51.48054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162547850", - "info": { - "identifier": 162547850, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162547850", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64951/162547850/64951_P277116_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.261802", - "last_seen": "2025-06-01T22:05:39.965536", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.15101, - 51.46044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162547892", - "info": { - "identifier": 162547892, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162547892", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Lords Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249026/162547892/249026_lena_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.764565", - "last_seen": "2025-06-01T22:06:11.853265", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00751, - 51.60847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162548036", - "info": { - "identifier": 162548036, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162548036", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Citiland Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282164/162548036/282164_502NCRRE1_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.288895", - "last_seen": "2025-06-01T22:06:10.120764", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05679, - 51.51917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.3, - "qmprice": 34.87, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162548060", - "info": { - "identifier": 162548060, - "sqm_ocr": 80.3, - "price": 2800.0, - "price_per_sqm": 34.86924034869241, - "url": "https://www.rightmove.co.uk/properties/162548060", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162548060/48101_1323512_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.287298", - "last_seen": "2025-06-01T22:06:02.737429", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.078102, - 51.507664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 131.08, - "qmprice": 30.52, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162548087", - "info": { - "identifier": 162548087, - "sqm_ocr": 131.08, - "price": 4000.0, - "price_per_sqm": 30.515715593530665, - "url": "https://www.rightmove.co.uk/properties/162548087", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Urban Spaces", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230633/162548087/230633_PB10874_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.402174", - "last_seen": "2025-06-01T22:06:10.317583", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01563, - 51.51797 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 52.63, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162548108", - "info": { - "identifier": 162548108, - "sqm_ocr": 76.0, - "price": 4000.0, - "price_per_sqm": 52.63157894736842, - "url": "https://www.rightmove.co.uk/properties/162548108", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/162548108/15948_1328126_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.706782", - "last_seen": "2025-06-01T22:05:49.182060", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.226476, - 51.48626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162548129", - "info": { - "identifier": 162548129, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162548129", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19059/162548129/19059_9ce3cda1-25aa-4647-9c10-e431d554d097_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.959965", - "last_seen": "2025-06-01T22:05:50.689622", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.378122, - 51.573456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.9, - "qmprice": 69.94, - "rooms": 4, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162548165", - "info": { - "identifier": 162548165, - "sqm_ocr": 47.9, - "price": 3350.0, - "price_per_sqm": 69.93736951983298, - "url": "https://www.rightmove.co.uk/properties/162548165", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166334/162548165/166334_1328129_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.455522", - "last_seen": "2025-06-01T22:05:50.074808", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074947, - 51.58989 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 158.2, - "qmprice": 17.7, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162548183", - "info": { - "identifier": 162548183, - "sqm_ocr": 158.2, - "price": 2800.0, - "price_per_sqm": 17.69911504424779, - "url": "https://www.rightmove.co.uk/properties/162548183", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166334/162548183/166334_1328137_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.452299", - "last_seen": "2025-06-01T22:05:50.081286", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094354, - 51.60801 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/162548186", - "info": { - "identifier": 162548186, - "sqm_ocr": null, - "price": 2899.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162548186", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72541/162548186/72541_33916276_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.472029", - "last_seen": "2025-06-01T22:05:41.184175", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215071, - 51.554703 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162548204", - "info": { - "identifier": 162548204, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162548204", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Birchills", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115933/162548204/115933_28f9aa97-abb2-43df-9865-ee3056f70a4f_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.309572", - "last_seen": "2025-06-01T22:06:11.582056", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008662, - 51.633198 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.37, - "qmprice": 45.79, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162548285", - "info": { - "identifier": 162548285, - "sqm_ocr": 76.37, - "price": 3497.0, - "price_per_sqm": 45.79023176640042, - "url": "https://www.rightmove.co.uk/properties/162548285", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OIG Real Estate Limited", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285305/162548285/285305_OIL210426_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.748358", - "last_seen": "2025-06-01T22:06:08.111378", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073513, - 51.517654 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.83, - "qmprice": 39.05, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162548366", - "info": { - "identifier": 162548366, - "sqm_ocr": 76.83, - "price": 3000.0, - "price_per_sqm": 39.04724716907458, - "url": "https://www.rightmove.co.uk/properties/162548366", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44645/162548366/44645_FWL250118_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.327074", - "last_seen": "2025-06-01T22:05:48.478720", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203398, - 51.484695 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/162548408", - "info": { - "identifier": 162548408, - "sqm_ocr": null, - "price": 2383.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162548408", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162548408/237116_389_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.847362", - "last_seen": "2025-06-01T22:05:50.113195", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09927, - 51.58994 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162548417", - "info": { - "identifier": 162548417, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162548417", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Ernest Brooks International", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264878/162548417/264878_CAN250638_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.064673, - 51.5083 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.77, - "qmprice": 34.57, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162548567", - "info": { - "identifier": 162548567, - "sqm_ocr": 86.77, - "price": 3000.0, - "price_per_sqm": 34.57416157658177, - "url": "https://www.rightmove.co.uk/properties/162548567", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Peach Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74746/162548567/74746_33914548_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.961198", - "last_seen": "2025-06-01T22:05:39.341200", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169839, - 51.593483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/162548573", - "info": { - "identifier": 162548573, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162548573", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Clay Life", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277505/162548573/277505_newap_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.026409", - "last_seen": "2025-06-01T22:05:41.007424", - "price": 2492.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28319, - 51.55914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/162548588", - "info": { - "identifier": 162548588, - "sqm_ocr": null, - "price": 3402.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162548588", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "parkinsonfarr", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29643/162548588/29643_805_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.040024", - "last_seen": "2025-06-01T22:05:41.018784", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23298, - 51.54815 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 35.57, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/162548621", - "info": { - "identifier": 162548621, - "sqm_ocr": 67.0, - "price": 2383.0, - "price_per_sqm": 35.56716417910448, - "url": "https://www.rightmove.co.uk/properties/162548621", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Wedgewood Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102385/162548621/102385_2708184_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.988590", - "last_seen": "2025-06-01T22:05:57.639809", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2079, - 51.49642 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.19, - "qmprice": 42.79, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/162548648", - "info": { - "identifier": 162548648, - "sqm_ocr": 64.19, - "price": 2747.0, - "price_per_sqm": 42.794827854806044, - "url": "https://www.rightmove.co.uk/properties/162548648", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71134/162548648/71134_33916311_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.486060", - "last_seen": "2025-06-01T22:05:53.203214", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095589, - 51.52143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162548651", - "info": { - "identifier": 162548651, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162548651", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71134/162548651/71134_33916312_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.484452", - "last_seen": "2025-06-01T22:05:43.245451", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090847, - 51.519527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.8, - "qmprice": 39.97, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162548696", - "info": { - "identifier": 162548696, - "sqm_ocr": 68.8, - "price": 2750.0, - "price_per_sqm": 39.97093023255814, - "url": "https://www.rightmove.co.uk/properties/162548696", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43754/162548696/43754_P301493_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.678922", - "last_seen": "2025-06-01T22:05:59.249210", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14162, - 51.46472 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/162548948", - "info": { - "identifier": 162548948, - "sqm_ocr": null, - "price": 2899.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162548948", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162548948/181787_181787_1005_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.985636", - "last_seen": "2025-06-01T22:06:07.120557", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06852, - 51.48773 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162549068", - "info": { - "identifier": 162549068, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549068", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Houst", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170132/162549068/170132_11937_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.851043", - "last_seen": "2025-06-01T22:06:11.955684", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00848, - 51.5664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162549194", - "info": { - "identifier": 162549194, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549194", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "S Stone Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286994/162549194/286994_ssml_1424368546_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.334869", - "last_seen": "2025-06-01T22:05:43.540862", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053094, - 51.394238 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/162549197", - "info": { - "identifier": 162549197, - "sqm_ocr": null, - "price": 2648.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549197", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/162549197/191255_33916337_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.283350", - "last_seen": "2025-06-01T22:06:10.112133", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055148, - 51.506477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162549212", - "info": { - "identifier": 162549212, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549212", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Freder", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269027/162549212/269027_RL0485_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.937120", - "last_seen": "2025-06-01T22:06:03.039602", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005603, - 51.5121 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162549218", - "info": { - "identifier": 162549218, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549218", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Freder", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269027/162549218/269027_RL0486_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.934811", - "last_seen": "2025-06-01T22:06:07.603211", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.007577, - 51.534027 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162549221", - "info": { - "identifier": 162549221, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549221", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Freder", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269027/162549221/269027_RL0487_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.930684", - "last_seen": "2025-06-01T22:06:07.607667", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008413, - 51.5372 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.0, - "qmprice": 20.61, - "rooms": 4, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162549224", - "info": { - "identifier": 162549224, - "sqm_ocr": 114.0, - "price": 2350.0, - "price_per_sqm": 20.614035087719298, - "url": "https://www.rightmove.co.uk/properties/162549224", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JBrown", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239306/162549224/239306_6735_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.627072", - "last_seen": "2025-06-01T22:05:43.637087", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068159, - 51.39542 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162549260", - "info": { - "identifier": 162549260, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549260", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Houst", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170132/162549260/170132_1244_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/10/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.608249", - "last_seen": "2025-06-01T22:05:53.931130", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102321, - 51.558968 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.25, - "qmprice": 57.69, - "rooms": 2, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/162549263", - "info": { - "identifier": 162549263, - "sqm_ocr": 50.25, - "price": 2899.0, - "price_per_sqm": 57.691542288557216, - "url": "https://www.rightmove.co.uk/properties/162549263", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156875/162549263/156875_33916338_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.686499", - "last_seen": "2025-06-01T22:05:42.863680", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133676, - 51.51912 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.3, - "qmprice": 33.73, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162549320", - "info": { - "identifier": 162549320, - "sqm_ocr": 59.3, - "price": 2000.0, - "price_per_sqm": 33.72681281618887, - "url": "https://www.rightmove.co.uk/properties/162549320", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58003/162549320/58003_KBA252935_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.916980", - "last_seen": "2025-06-01T22:06:12.506303", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177512, - 51.43494 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162549386", - "info": { - "identifier": 162549386, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549386", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Fortess Homes", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271826/162549386/271826_RL1552_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.218911", - "last_seen": "2025-06-01T22:05:57.478213", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171255, - 51.492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162549410", - "info": { - "identifier": 162549410, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549410", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Gateway Capital Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266672/162549410/266672_33916347_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.609214", - "last_seen": "2025-06-01T22:05:40.643621", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.274632, - 51.55955 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.58, - "qmprice": 44.17, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162549416", - "info": { - "identifier": 162549416, - "sqm_ocr": 73.58, - "price": 3250.0, - "price_per_sqm": 44.169611307420496, - "url": "https://www.rightmove.co.uk/properties/162549416", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162549416/43310_CWL250223_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.424692", - "last_seen": "2025-06-01T22:06:09.724812", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02124, - 51.521873 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162549434", - "info": { - "identifier": 162549434, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549434", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Houst", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170132/162549434/170132_12521_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.193734", - "last_seen": "2025-06-01T22:06:05.776786", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074063, - 51.4922 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162549437", - "info": { - "identifier": 162549437, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549437", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75148/162549437/75148_1327825_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.865434", - "last_seen": "2025-06-01T22:06:00.634799", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.012718, - 51.470642 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.8, - "qmprice": 52.91, - "rooms": 2, - "total_price": 3852.0, - "url": "https://www.rightmove.co.uk/properties/162549518", - "info": { - "identifier": 162549518, - "sqm_ocr": 72.8, - "price": 3852.0, - "price_per_sqm": 52.91208791208791, - "url": "https://www.rightmove.co.uk/properties/162549518", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162549518/16050_1328149_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.071204, - 51.515106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162549542", - "info": { - "identifier": 162549542, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549542", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Houst", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170132/162549542/170132_8434_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/10/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.431497", - "last_seen": "2025-06-01T22:05:47.854397", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04276, - 51.54774 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/162549674", - "info": { - "identifier": 162549674, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549674", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RentLondonFlat.com", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146147/162549674/146147_PR252934_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.499010", - "last_seen": "2025-06-01T22:06:10.570647", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.005616, - 51.492657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162549767", - "info": { - "identifier": 162549767, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549767", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162549767/96668_249917328052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.001373", - "last_seen": "2025-06-01T22:06:05.417444", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077483, - 51.48002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162549773", - "info": { - "identifier": 162549773, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549773", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162549773/96668_249916228052025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.517513", - "last_seen": "2025-06-01T22:05:53.233028", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098857, - 51.52799 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162549779", - "info": { - "identifier": 162549779, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162549779", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162549779/96668_249919328052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.991346", - "last_seen": "2025-06-01T22:06:05.400706", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065427, - 51.48502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.0, - "qmprice": 38.04, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162549959", - "info": { - "identifier": 162549959, - "sqm_ocr": 92.0, - "price": 3500.0, - "price_per_sqm": 38.04347826086956, - "url": "https://www.rightmove.co.uk/properties/162549959", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57940/162549959/57940_KCQ240154_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.262962", - "last_seen": "2025-06-01T22:05:42.229331", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171546, - 51.552174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/162550094", - "info": { - "identifier": 162550094, - "sqm_ocr": null, - "price": 3198.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162550094", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22353/162550094/22353_NHL250107_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.962877", - "last_seen": "2025-06-01T22:06:15.450202", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189836, - 51.517223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162550097", - "info": { - "identifier": 162550097, - "sqm_ocr": null, - "price": 3445.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162550097", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22353/162550097/22353_NHL250110_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.337645", - "last_seen": "2025-06-01T22:05:57.959919", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20408, - 51.514206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/162550199", - "info": { - "identifier": 162550199, - "sqm_ocr": null, - "price": 2383.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162550199", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162550199/213815_207059_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.136795", - "last_seen": "2025-06-01T20:19:57.150017", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027146, - 51.499302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 158.5, - "qmprice": 17.35, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162550223", - "info": { - "identifier": 162550223, - "sqm_ocr": 158.5, - "price": 2750.0, - "price_per_sqm": 17.350157728706623, - "url": "https://www.rightmove.co.uk/properties/162550223", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239978/162550223/239978_KDE251541_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.973939", - "last_seen": "2025-06-01T22:06:00.418888", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05907, - 51.4303 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.8, - "qmprice": 36.51, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162550277", - "info": { - "identifier": 162550277, - "sqm_ocr": 80.8, - "price": 2950.0, - "price_per_sqm": 36.50990099009901, - "url": "https://www.rightmove.co.uk/properties/162550277", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57287/162550277/57287_1328060_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.668018", - "last_seen": "2025-06-01T22:06:05.003513", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066667, - 51.447506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 55.92, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162550298", - "info": { - "identifier": 162550298, - "sqm_ocr": 62.0, - "price": 3467.0, - "price_per_sqm": 55.91935483870968, - "url": "https://www.rightmove.co.uk/properties/162550298", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/162550298/111050_1328162_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.385651", - "last_seen": "2025-06-01T22:06:01.086620", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19017, - 51.42836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 35.48, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162550301", - "info": { - "identifier": 162550301, - "sqm_ocr": 62.0, - "price": 2200.0, - "price_per_sqm": 35.483870967741936, - "url": "https://www.rightmove.co.uk/properties/162550301", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/162550301/111050_1328163_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.913152", - "last_seen": "2025-06-01T22:06:01.287469", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19017, - 51.42836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162550325", - "info": { - "identifier": 162550325, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162550325", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Knight Frank Lettings (ILM)", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137825/162550325/137825_BIQ012587352_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.527829", - "last_seen": "2025-06-01T22:06:05.660687", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093598, - 51.499672 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.4, - "qmprice": 43.48, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162550334", - "info": { - "identifier": 162550334, - "sqm_ocr": 64.4, - "price": 2800.0, - "price_per_sqm": 43.47826086956521, - "url": "https://www.rightmove.co.uk/properties/162550334", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/162550334/15945_1328159_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.085225", - "last_seen": "2025-06-01T22:05:57.742220", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207995, - 51.496258 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.6, - "qmprice": 39.62, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162550340", - "info": { - "identifier": 162550340, - "sqm_ocr": 75.6, - "price": 2995.0, - "price_per_sqm": 39.61640211640212, - "url": "https://www.rightmove.co.uk/properties/162550340", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/162550340/15969_1328157_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.715901", - "last_seen": "2025-06-01T22:05:44.366142", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.286811, - 51.504932 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.5, - "qmprice": 58.64, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/162550358", - "info": { - "identifier": 162550358, - "sqm_ocr": 42.5, - "price": 2492.0, - "price_per_sqm": 58.63529411764706, - "url": "https://www.rightmove.co.uk/properties/162550358", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/162550358/16023_1328155_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.497528", - "last_seen": "2025-06-01T22:05:57.731634", - "price": 2492.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169241, - 51.48521 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162550610", - "info": { - "identifier": 162550610, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162550610", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162550610/96668_232401013122024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.081230", - "last_seen": "2025-06-01T22:06:12.688479", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170144, - 51.468407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162550631", - "info": { - "identifier": 162550631, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162550631", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162550631/96668_93232320102020_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.247859", - "last_seen": "2025-06-01T22:06:01.191784", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.232802, - 51.4095 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162550652", - "info": { - "identifier": 162550652, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162550652", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162550652/96668_242689922032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.940948", - "last_seen": "2025-06-01T22:06:05.337597", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070584, - 51.488937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162550661", - "info": { - "identifier": 162550661, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162550661", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162550661/96668_174253221062023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.773205", - "last_seen": "2025-06-01T22:06:02.373267", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012467, - 51.51182 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.34, - "qmprice": 49.63, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162550676", - "info": { - "identifier": 162550676, - "sqm_ocr": 45.34, - "price": 2250.0, - "price_per_sqm": 49.62505513895015, - "url": "https://www.rightmove.co.uk/properties/162550676", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162550676/96668_98029915122020_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.305351", - "last_seen": "2025-06-01T22:06:14.855033", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164721, - 51.51336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.7, - "qmprice": 44.31, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162550862", - "info": { - "identifier": 162550862, - "sqm_ocr": 67.7, - "price": 3000.0, - "price_per_sqm": 44.31314623338257, - "url": "https://www.rightmove.co.uk/properties/162550862", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Trispens", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287870/162550862/287870_33916579_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.505042", - "last_seen": "2025-06-01T22:05:57.428471", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198514, - 51.509663 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162550865", - "info": { - "identifier": 162550865, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162550865", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "SW16", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76165/162550865/76165_KLJNDFKLSDFJALK_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.568737", - "last_seen": "2025-06-01T22:06:01.380973", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19836, - 51.41362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.52, - "qmprice": 32.55, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162550937", - "info": { - "identifier": 162550937, - "sqm_ocr": 107.52, - "price": 3500.0, - "price_per_sqm": 32.552083333333336, - "url": "https://www.rightmove.co.uk/properties/162550937", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Empire Chase Estate Agent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128062/162550937/128062_8NELW_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.066460", - "last_seen": "2025-06-01T22:05:50.836229", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35101, - 51.56689 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162551390", - "info": { - "identifier": 162551390, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162551390", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162551390/96668_69729407012020_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.895093", - "last_seen": "2025-06-01T22:06:08.328345", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.003524, - 51.489605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162551399", - "info": { - "identifier": 162551399, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162551399", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162551399/96668_249568125052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.878186", - "last_seen": "2025-06-01T22:06:08.290210", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065216, - 51.52131 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162551432", - "info": { - "identifier": 162551432, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162551432", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162551432/96668_249905028052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.936098", - "last_seen": "2025-06-01T22:06:07.412658", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009201, - 51.53397 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162551918", - "info": { - "identifier": 162551918, - "sqm_ocr": null, - "price": 3445.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162551918", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Homesite", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32184/162551918/32184_BYR250022_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.20408, - 51.514206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162551987", - "info": { - "identifier": 162551987, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162551987", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "JBrown", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/240k/239306/162551987/239306_6736_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.536015", - "last_seen": "2025-06-01T22:06:02.148741", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.031812, - 51.5001 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.2, - "qmprice": 30.47, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162552032", - "info": { - "identifier": 162552032, - "sqm_ocr": 72.2, - "price": 2200.0, - "price_per_sqm": 30.47091412742382, - "url": "https://www.rightmove.co.uk/properties/162552032", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107905/162552032/107905_GWL240036_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.384075", - "last_seen": "2025-06-01T22:05:56.566924", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018254, - 51.481018 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.1, - "qmprice": 22.59, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162552152", - "info": { - "identifier": 162552152, - "sqm_ocr": 115.1, - "price": 2600.0, - "price_per_sqm": 22.589052997393573, - "url": "https://www.rightmove.co.uk/properties/162552152", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/162552152/15969_1328170_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.653511", - "last_seen": "2025-06-01T22:05:44.276334", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26594, - 51.5211 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2325.0, - "url": "https://www.rightmove.co.uk/properties/162552164", - "info": { - "identifier": 162552164, - "sqm_ocr": null, - "price": 2325.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162552164", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Folio London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97670/162552164/97670_HEO240095_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.709750", - "last_seen": "2025-06-01T22:05:46.236534", - "price": 2325.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.028149, - 51.462288 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162552176", - "info": { - "identifier": 162552176, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162552176", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Andre Joseph Estates Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74973/162552176/74973_552798_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.610863", - "last_seen": "2025-06-01T22:05:59.201978", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134882, - 51.45553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162552389", - "info": { - "identifier": 162552389, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162552389", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Rentr", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260789/162552389/260789_294a7db5-8956-437f-b72c-0ba80bed5f5b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.389565", - "last_seen": "2025-06-01T22:06:11.288888", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011984, - 51.51196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162552476", - "info": { - "identifier": 162552476, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162552476", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162552476/96668_249852428052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.155573", - "last_seen": "2025-06-01T22:06:05.204564", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079358, - 51.472103 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162552482", - "info": { - "identifier": 162552482, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162552482", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162552482/96668_249655126052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.018926", - "last_seen": "2025-06-01T22:06:05.199537", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10444, - 51.499405 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162552485", - "info": { - "identifier": 162552485, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162552485", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162552485/96668_249912028052025_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.251057", - "last_seen": "2025-06-01T22:05:41.517024", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.015477, - 51.423992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/162552710", - "info": { - "identifier": 162552710, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162552710", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "HC-GB", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238694/162552710/238694_new2bedmaudmay_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.242071", - "last_seen": "2025-06-01T22:06:03.602145", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01209, - 51.51707 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162552839", - "info": { - "identifier": 162552839, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162552839", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162552839/96668_242021116032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.398273", - "last_seen": "2025-06-01T22:05:51.522323", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.426452, - 51.504017 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162553190", - "info": { - "identifier": 162553190, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162553190", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Selmans Lettings Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47609/162553190/47609_RL0068_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.550421", - "last_seen": "2025-06-01T22:05:56.621287", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16395, - 51.587994 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 40.79, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162553562", - "info": { - "identifier": 162553562, - "sqm_ocr": 76.0, - "price": 3100.0, - "price_per_sqm": 40.78947368421053, - "url": "https://www.rightmove.co.uk/properties/162553562", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162553562/96668_244004103042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.032833", - "last_seen": "2025-06-01T22:06:12.589008", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164817, - 51.43034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 44.5, - "qmprice": 58.43, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162555119", - "info": { - "identifier": 162555119, - "sqm_ocr": 44.5, - "price": 2600.0, - "price_per_sqm": 58.42696629213483, - "url": "https://www.rightmove.co.uk/properties/162555119", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162555119/96668_248115312052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.790821", - "last_seen": "2025-06-01T22:06:06.942100", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099138, - 51.49534 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 129.2, - "qmprice": 18.58, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162555251", - "info": { - "identifier": 162555251, - "sqm_ocr": 129.2, - "price": 2400.0, - "price_per_sqm": 18.575851393188856, - "url": "https://www.rightmove.co.uk/properties/162555251", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Newbrix", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274292/162555251/274292_33916630_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.565966", - "last_seen": "2025-06-01T22:06:04.644300", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.322752, - 51.46039 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162555464", - "info": { - "identifier": 162555464, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162555464", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162555464/249341_AHA5_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.558360", - "last_seen": "2025-06-01T22:06:15.272631", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170014, - 51.533566 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.8, - "qmprice": 42.98, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162556619", - "info": { - "identifier": 162556619, - "sqm_ocr": 69.8, - "price": 3000.0, - "price_per_sqm": 42.97994269340975, - "url": "https://www.rightmove.co.uk/properties/162556619", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Imperial Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85765/162556619/85765_000010633_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.176182", - "last_seen": "2025-06-01T22:05:48.286625", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18247, - 51.47301 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.0, - "qmprice": 32.55, - "rooms": 3, - "total_price": 3125.0, - "url": "https://www.rightmove.co.uk/properties/162556682", - "info": { - "identifier": 162556682, - "sqm_ocr": 96.0, - "price": 3125.0, - "price_per_sqm": 32.552083333333336, - "url": "https://www.rightmove.co.uk/properties/162556682", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162556682/249341_AME2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.593352", - "last_seen": "2025-06-01T22:06:03.300949", - "price": 3125.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.033907, - 51.502174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.7, - "qmprice": 42.37, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162556697", - "info": { - "identifier": 162556697, - "sqm_ocr": 76.7, - "price": 3250.0, - "price_per_sqm": 42.3728813559322, - "url": "https://www.rightmove.co.uk/properties/162556697", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/162556697/100423_1324633_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.629003", - "last_seen": "2025-06-01T22:06:04.799448", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27919, - 51.479736 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.18, - "qmprice": 44.9, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162556775", - "info": { - "identifier": 162556775, - "sqm_ocr": 80.18, - "price": 3600.0, - "price_per_sqm": 44.898977301072584, - "url": "https://www.rightmove.co.uk/properties/162556775", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/162556775/15954_1324550_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.876495", - "last_seen": "2025-06-01T22:05:54.437481", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109655, - 51.532352 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2670.0, - "url": "https://www.rightmove.co.uk/properties/162556811", - "info": { - "identifier": 162556811, - "sqm_ocr": null, - "price": 2670.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162556811", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162556811/249341_NJC10_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.943357", - "last_seen": "2025-06-01T22:06:03.033303", - "price": 2670.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01006, - 51.51318 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2555.0, - "url": "https://www.rightmove.co.uk/properties/162556874", - "info": { - "identifier": 162556874, - "sqm_ocr": null, - "price": 2555.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162556874", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162556874/249341_NJB25_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.899452", - "last_seen": "2025-06-01T22:06:03.127672", - "price": 2555.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01006, - 51.51318 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.6, - "qmprice": 34.56, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162556961", - "info": { - "identifier": 162556961, - "sqm_ocr": 92.6, - "price": 3200.0, - "price_per_sqm": 34.55723542116631, - "url": "https://www.rightmove.co.uk/properties/162556961", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162556961/249341_SPA5_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.434989", - "last_seen": "2025-06-01T22:05:59.159204", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102932, - 51.477455 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162557009", - "info": { - "identifier": 162557009, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162557009", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162557009/249341_WIB10003_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.774879", - "last_seen": "2025-06-01T22:05:50.004438", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06348, - 51.58881 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3315.0, - "url": "https://www.rightmove.co.uk/properties/162557048", - "info": { - "identifier": 162557048, - "sqm_ocr": null, - "price": 3315.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162557048", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hanland Capital", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282767/162557048/282767_167Willowbrook_IMG_22_0000_max_656x437.jpeg", - "let_date_available": "29/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.987515", - "last_seen": "2025-06-01T22:05:47.774356", - "price": 3315.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09407, - 51.56926 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 44.74, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162557078", - "info": { - "identifier": 162557078, - "sqm_ocr": 76.0, - "price": 3400.0, - "price_per_sqm": 44.73684210526316, - "url": "https://www.rightmove.co.uk/properties/162557078", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162557078/48101_1324400_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.307536", - "last_seen": "2025-06-01T22:06:11.508562", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02517, - 51.50359 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 33.78, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162557090", - "info": { - "identifier": 162557090, - "sqm_ocr": 74.0, - "price": 2500.0, - "price_per_sqm": 33.78378378378378, - "url": "https://www.rightmove.co.uk/properties/162557090", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51295/162557090/51295_HAL240019_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.515069", - "last_seen": "2025-06-01T22:05:41.116616", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.236293, - 51.5506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.23, - "qmprice": 42.57, - "rooms": 2, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/162557111", - "info": { - "identifier": 162557111, - "sqm_ocr": 70.23, - "price": 2990.0, - "price_per_sqm": 42.574398405239926, - "url": "https://www.rightmove.co.uk/properties/162557111", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Utile Dulci", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136451/162557111/136451_AQUA14_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.172339", - "last_seen": "2025-06-01T17:38:54.928414", - "price": 2990 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09557, - 51.5299 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 55.12, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/162557117", - "info": { - "identifier": 162557117, - "sqm_ocr": 57.0, - "price": 3142.0, - "price_per_sqm": 55.12280701754386, - "url": "https://www.rightmove.co.uk/properties/162557117", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Sandfords", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151142/162557117/151142_RPL220062_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.129578", - "last_seen": "2025-06-01T22:06:14.706043", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1618, - 51.52515 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162557357", - "info": { - "identifier": 162557357, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162557357", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162557357/96668_249880328052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.743128", - "last_seen": "2025-06-01T22:06:00.064134", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104664, - 51.433216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.5, - "qmprice": 56.57, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162557720", - "info": { - "identifier": 162557720, - "sqm_ocr": 49.5, - "price": 2800.0, - "price_per_sqm": 56.56565656565657, - "url": "https://www.rightmove.co.uk/properties/162557720", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/162557720/54730_WLL200058_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.267593", - "last_seen": "2025-06-01T22:05:57.711400", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194033, - 51.51012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162557879", - "info": { - "identifier": 162557879, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162557879", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "James Alexander", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287633/162557879/287633_33876584_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.734151", - "last_seen": "2025-06-01T22:05:43.767016", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116145, - 51.403378 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.2, - "qmprice": 35.04, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162557909", - "info": { - "identifier": 162557909, - "sqm_ocr": 74.2, - "price": 2600.0, - "price_per_sqm": 35.04043126684636, - "url": "https://www.rightmove.co.uk/properties/162557909", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72234/162557909/72234_RWL220060_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.418234", - "last_seen": "2025-06-01T22:06:02.916916", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026257, - 51.500313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.0, - "qmprice": 22.33, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162558020", - "info": { - "identifier": 162558020, - "sqm_ocr": 103.0, - "price": 2300.0, - "price_per_sqm": 22.33009708737864, - "url": "https://www.rightmove.co.uk/properties/162558020", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Langford Russell", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50755/162558020/50755_P276940_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.316204", - "last_seen": "2025-06-01T22:05:41.746577", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02009, - 51.39712 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 47.37, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162558158", - "info": { - "identifier": 162558158, - "sqm_ocr": 57.0, - "price": 2700.0, - "price_per_sqm": 47.36842105263158, - "url": "https://www.rightmove.co.uk/properties/162558158", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148955/162558158/148955_RIL250084_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.567562", - "last_seen": "2025-06-01T22:06:04.646255", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295218, - 51.46092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3240.0, - "url": "https://www.rightmove.co.uk/properties/162558269", - "info": { - "identifier": 162558269, - "sqm_ocr": null, - "price": 3240.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162558269", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162558269/253604_107H2905_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.307390", - "last_seen": "2025-06-01T22:06:07.291181", - "price": 3240.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00607, - 51.54176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162558377", - "info": { - "identifier": 162558377, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162558377", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "AIROPERATE LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275732/162558377/275732_2BR-MidLet-Chepstow-Road-XV_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.546658", - "last_seen": "2025-06-01T22:06:15.269321", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19582, - 51.51773 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3436.0, - "url": "https://www.rightmove.co.uk/properties/162558485", - "info": { - "identifier": 162558485, - "sqm_ocr": null, - "price": 3436.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162558485", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162558485/156986_MQZ8_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.180825", - "last_seen": "2025-06-01T22:05:41.193569", - "price": 3436.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27963, - 51.56131 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 26.52, - "rooms": 3, - "total_price": 2175.0, - "url": "https://www.rightmove.co.uk/properties/162558533", - "info": { - "identifier": 162558533, - "sqm_ocr": 82.0, - "price": 2175.0, - "price_per_sqm": 26.524390243902438, - "url": "https://www.rightmove.co.uk/properties/162558533", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51851/162558533/51851_PIO230121_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.565116", - "last_seen": "2025-06-01T22:05:51.362681", - "price": 2175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.4063, - 51.5917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.7, - "qmprice": 34.5, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162558599", - "info": { - "identifier": 162558599, - "sqm_ocr": 79.7, - "price": 2750.0, - "price_per_sqm": 34.50439146800502, - "url": "https://www.rightmove.co.uk/properties/162558599", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/162558599/238841_P301475_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.866514", - "last_seen": "2025-06-01T22:05:39.121008", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22083, - 51.57143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3240.0, - "url": "https://www.rightmove.co.uk/properties/162558878", - "info": { - "identifier": 162558878, - "sqm_ocr": null, - "price": 3240.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162558878", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162558878/253604_143X2905_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.727917", - "last_seen": "2025-06-01T22:06:07.358253", - "price": 3240.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00607, - 51.54176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162558995", - "info": { - "identifier": 162558995, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162558995", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162558995/96668_245181414042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.349818", - "last_seen": "2025-06-01T22:06:00.158294", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119207, - 51.4683 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162559079", - "info": { - "identifier": 162559079, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162559079", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162559079/96668_248971020052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.236467", - "last_seen": "2025-06-01T22:05:40.486449", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225974, - 51.55132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/162559301", - "info": { - "identifier": 162559301, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162559301", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50343/162559301/50343_33916762_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.445786", - "last_seen": "2025-06-01T22:05:40.412084", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.239722, - 51.53349 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.27, - "qmprice": 27.33, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162559727", - "info": { - "identifier": 162559727, - "sqm_ocr": 104.27, - "price": 2850.0, - "price_per_sqm": 27.33288577730891, - "url": "https://www.rightmove.co.uk/properties/162559727", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Keller Williams Oxygen", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/244k/243590/162559727/243590_RX586021_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.002120", - "last_seen": "2025-06-01T22:05:52.309499", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.370967, - 51.464527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.8, - "qmprice": 52.77, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162559937", - "info": { - "identifier": 162559937, - "sqm_ocr": 75.8, - "price": 4000.0, - "price_per_sqm": 52.770448548812666, - "url": "https://www.rightmove.co.uk/properties/162559937", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84869/162559937/84869_33916814_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.743683", - "last_seen": "2025-06-01T22:05:48.573543", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225515, - 51.48765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.0, - "qmprice": 38.27, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162560000", - "info": { - "identifier": 162560000, - "sqm_ocr": 98.0, - "price": 3750.0, - "price_per_sqm": 38.265306122448976, - "url": "https://www.rightmove.co.uk/properties/162560000", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Visum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35298/162560000/35298_49113_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.672570", - "last_seen": "2025-06-01T22:06:06.913365", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064335, - 51.476414 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.8, - "qmprice": 52.77, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162560018", - "info": { - "identifier": 162560018, - "sqm_ocr": 75.8, - "price": 4000.0, - "price_per_sqm": 52.770448548812666, - "url": "https://www.rightmove.co.uk/properties/162560018", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93044/162560018/93044_33916816_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.905467", - "last_seen": "2025-06-01T22:05:49.402885", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225515, - 51.48765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.0, - "qmprice": 41.19, - "rooms": 2, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/162560123", - "info": { - "identifier": 162560123, - "sqm_ocr": 97.0, - "price": 3995.0, - "price_per_sqm": 41.18556701030928, - "url": "https://www.rightmove.co.uk/properties/162560123", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58704/162560123/58704_ALE180071_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.761565", - "last_seen": "2025-06-01T22:06:10.898385", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068802, - 51.514584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162560153", - "info": { - "identifier": 162560153, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162560153", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "James Alexander", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287633/162560153/287633_33807308_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.806745", - "last_seen": "2025-06-01T22:05:43.609222", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12721, - 51.41243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.86, - "qmprice": 37.22, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162560312", - "info": { - "identifier": 162560312, - "sqm_ocr": 69.86, - "price": 2600.0, - "price_per_sqm": 37.21729172630976, - "url": "https://www.rightmove.co.uk/properties/162560312", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57118/162560312/57118_P214663_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.517992", - "last_seen": "2025-06-01T22:06:06.015705", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07372, - 51.50104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162560636", - "info": { - "identifier": 162560636, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162560636", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52415/162560636/52415_33916856_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.613642", - "last_seen": "2025-06-01T22:05:43.656778", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.111032, - 51.413162 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162560651", - "info": { - "identifier": 162560651, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162560651", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "L&Q", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102784/162560651/102784_12678481_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.855928", - "last_seen": "2025-06-01T22:06:00.830774", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020774, - 51.47712 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 124.86, - "qmprice": 28.03, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162560693", - "info": { - "identifier": 162560693, - "sqm_ocr": 124.86, - "price": 3500.0, - "price_per_sqm": 28.031395162582093, - "url": "https://www.rightmove.co.uk/properties/162560693", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Loney Miller Limited", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/188k/187115/162560693/187115_33916859_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.269253", - "last_seen": "2025-06-01T22:06:01.683607", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198401, - 51.437706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 50.0, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162561131", - "info": { - "identifier": 162561131, - "sqm_ocr": 70.0, - "price": 3500.0, - "price_per_sqm": 50.0, - "url": "https://www.rightmove.co.uk/properties/162561131", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/162561131/77197_VCT_VCT_LFSYCL_465_633147781_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.071764, - 51.517498 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.9, - "qmprice": 29.6, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162561344", - "info": { - "identifier": 162561344, - "sqm_ocr": 92.9, - "price": 2750.0, - "price_per_sqm": 29.60172228202368, - "url": "https://www.rightmove.co.uk/properties/162561344", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Helliwell & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/244k/243986/162561344/243986_33916894_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.987487", - "last_seen": "2025-06-01T22:05:44.217201", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.271429, - 51.497105 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.6, - "qmprice": 42.43, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162561569", - "info": { - "identifier": 162561569, - "sqm_ocr": 76.6, - "price": 3250.0, - "price_per_sqm": 42.42819843342037, - "url": "https://www.rightmove.co.uk/properties/162561569", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Rampton Baseley", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89369/162561569/89369_BAL250115_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.957438", - "last_seen": "2025-06-01T22:06:12.744748", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162986, - 51.45731 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.1, - "qmprice": 36.83, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162561716", - "info": { - "identifier": 162561716, - "sqm_ocr": 80.1, - "price": 2950.0, - "price_per_sqm": 36.82896379525593, - "url": "https://www.rightmove.co.uk/properties/162561716", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212408/162561716/212408_P147614_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.481695", - "last_seen": "2025-06-01T22:06:07.601073", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00763, - 51.52988 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162561752", - "info": { - "identifier": 162561752, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162561752", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Settio Property Experience Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267794/162561752/267794_23050_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.352123", - "last_seen": "2025-06-01T22:06:11.419959", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00335, - 51.51569 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162561755", - "info": { - "identifier": 162561755, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162561755", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Alliance London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77148/162561755/77148_2002140_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.246042", - "last_seen": "2025-06-01T22:05:51.021360", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.185367, - 51.5764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162561833", - "info": { - "identifier": 162561833, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162561833", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/162561833/252785_33916925_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.956490", - "last_seen": "2025-06-01T22:06:14.660555", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17613, - 51.530205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.2, - "qmprice": 32.05, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162561836", - "info": { - "identifier": 162561836, - "sqm_ocr": 70.2, - "price": 2250.0, - "price_per_sqm": 32.05128205128205, - "url": "https://www.rightmove.co.uk/properties/162561836", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130309/162561836/130309_1328176_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.560829", - "last_seen": "2025-06-01T22:05:43.356293", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095568, - 51.389584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.2, - "qmprice": 49.24, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162561938", - "info": { - "identifier": 162561938, - "sqm_ocr": 46.2, - "price": 2275.0, - "price_per_sqm": 49.24242424242424, - "url": "https://www.rightmove.co.uk/properties/162561938", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/162561938/15957_1327045_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.725740", - "last_seen": "2025-06-01T22:05:42.429273", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180379, - 51.550877 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.1, - "qmprice": 24.32, - "rooms": 2, - "total_price": 2167.0, - "url": "https://www.rightmove.co.uk/properties/162562076", - "info": { - "identifier": 162562076, - "sqm_ocr": 89.1, - "price": 2167.0, - "price_per_sqm": 24.32098765432099, - "url": "https://www.rightmove.co.uk/properties/162562076", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162562076/48101_1327828_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.374803", - "last_seen": "2025-06-01T22:06:08.406591", - "price": 2167.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.002259, - 51.50809 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.4, - "qmprice": 51.72, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162562166", - "info": { - "identifier": 162562166, - "sqm_ocr": 46.4, - "price": 2400.0, - "price_per_sqm": 51.724137931034484, - "url": "https://www.rightmove.co.uk/properties/162562166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3719/162562166/3719_PGL230087_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.580960", - "last_seen": "2025-06-01T22:05:48.567683", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208453, - 51.477196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 49.32, - "rooms": 3, - "total_price": 3995.0, - "url": "https://www.rightmove.co.uk/properties/162562247", - "info": { - "identifier": 162562247, - "sqm_ocr": 81.0, - "price": 3995.0, - "price_per_sqm": 49.32098765432099, - "url": "https://www.rightmove.co.uk/properties/162562247", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/162562247/249692_RL4651_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.390172", - "last_seen": "2025-06-01T22:05:42.991604", - "price": 3995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14059, - 51.527714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.3, - "qmprice": 31.14, - "rooms": 2, - "total_price": 3684.0, - "url": "https://www.rightmove.co.uk/properties/162562301", - "info": { - "identifier": 162562301, - "sqm_ocr": 118.3, - "price": 3684.0, - "price_per_sqm": 31.141166525781912, - "url": "https://www.rightmove.co.uk/properties/162562301", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/162562301/15954_1327959_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.216618", - "last_seen": "2025-06-01T22:05:47.630851", - "price": 3684.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096467, - 51.532265 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 44.7, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162562337", - "info": { - "identifier": 162562337, - "sqm_ocr": 66.0, - "price": 2950.0, - "price_per_sqm": 44.696969696969695, - "url": "https://www.rightmove.co.uk/properties/162562337", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/162562337/77197_VCT_VCT_LFSYCL_465_633214693_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.922073", - "last_seen": "2025-06-01T22:05:53.716336", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109818, - 51.55109 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2625.0, - "url": "https://www.rightmove.co.uk/properties/162562385", - "info": { - "identifier": 162562385, - "sqm_ocr": null, - "price": 2625.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162562385", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260939/162562385/260939_DAN240641_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.770719", - "last_seen": "2025-06-01T22:06:13.468181", - "price": 2625.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155058, - 51.43392 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162562421", - "info": { - "identifier": 162562421, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162562421", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22268/162562421/22268_HAC140748_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.943020", - "last_seen": "2025-06-01T22:05:47.828434", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04211, - 51.54378 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.1, - "qmprice": 39.99, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162562871", - "info": { - "identifier": 162562871, - "sqm_ocr": 92.1, - "price": 3683.0, - "price_per_sqm": 39.989142236699244, - "url": "https://www.rightmove.co.uk/properties/162562871", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22011/162562871/22011_KNL080289_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.442906", - "last_seen": "2025-06-01T22:05:58.074208", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19316, - 51.5002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3095.0, - "url": "https://www.rightmove.co.uk/properties/162562946", - "info": { - "identifier": 162562946, - "sqm_ocr": null, - "price": 3095.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162562946", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237452/162562946/237452_4t_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.612364", - "last_seen": "2025-06-01T22:05:58.549667", - "price": 3095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30351, - 51.40846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162562997", - "info": { - "identifier": 162562997, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162562997", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/162562997/51286_CLL160128_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.919400", - "last_seen": "2025-06-01T22:05:44.087494", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.264034, - 51.502113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.7, - "qmprice": 41.73, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162563171", - "info": { - "identifier": 162563171, - "sqm_ocr": 64.7, - "price": 2700.0, - "price_per_sqm": 41.73106646058732, - "url": "https://www.rightmove.co.uk/properties/162563171", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39741/162563171/39741_33917002_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.291484", - "last_seen": "2025-06-01T22:06:14.716005", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192539, - 51.527145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162563177", - "info": { - "identifier": 162563177, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162563177", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25485/162563177/25485_33917004_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.487514", - "last_seen": "2025-06-01T22:05:42.051204", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188034, - 51.549152 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162563291", - "info": { - "identifier": 162563291, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162563291", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/162563291/80105_9126_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.016470", - "last_seen": "2025-06-01T22:05:52.122589", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.391562, - 51.429447 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162563306", - "info": { - "identifier": 162563306, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162563306", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Douglas Pryce", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/228k/227717/162563306/227717_33917015_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.398265", - "last_seen": "2025-06-01T22:05:41.532741", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.09697, - 51.369972 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.83, - "qmprice": 33.4, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162563384", - "info": { - "identifier": 162563384, - "sqm_ocr": 89.83, - "price": 3000.0, - "price_per_sqm": 33.39641545140822, - "url": "https://www.rightmove.co.uk/properties/162563384", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Realm Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75509/162563384/75509_REAL_001988_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.020901", - "last_seen": "2025-06-01T22:06:13.914037", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184211, - 51.462605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.1, - "qmprice": 30.08, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162563438", - "info": { - "identifier": 162563438, - "sqm_ocr": 83.1, - "price": 2500.0, - "price_per_sqm": 30.084235860409148, - "url": "https://www.rightmove.co.uk/properties/162563438", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Camerons Stiff & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34175/162563438/34175_33917032_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.908670", - "last_seen": "2025-06-01T22:05:40.760232", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222507, - 51.548954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.5, - "qmprice": 25.23, - "rooms": 4, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/162563462", - "info": { - "identifier": 162563462, - "sqm_ocr": 118.5, - "price": 2990.0, - "price_per_sqm": 25.23206751054852, - "url": "https://www.rightmove.co.uk/properties/162563462", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Habitat", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96380/162563462/96380_RL6263_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.736314", - "last_seen": "2025-06-01T22:05:39.093242", - "price": 2990 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.270872, - 51.6051 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.92, - "qmprice": 49.33, - "rooms": 2, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/162563513", - "info": { - "identifier": 162563513, - "sqm_ocr": 72.92, - "price": 3597.0, - "price_per_sqm": 49.32803071859572, - "url": "https://www.rightmove.co.uk/properties/162563513", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Prime London", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/110k/109135/162563513/109135_33916743_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.096277", - "last_seen": "2025-06-01T22:05:59.908099", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119956, - 51.493946 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162563543", - "info": { - "identifier": 162563543, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162563543", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Concept Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82211/162563543/82211_1417_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.300832", - "last_seen": "2025-06-01T22:06:01.662257", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154448, - 51.4194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162563579", - "info": { - "identifier": 162563579, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162563579", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162563579/96668_247963511052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.064111", - "last_seen": "2025-06-01T22:06:06.673978", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105959, - 51.48499 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/162563597", - "info": { - "identifier": 162563597, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162563597", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "LDG", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50021/162563597/50021_LDG250075_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.622617", - "last_seen": "2025-06-01T22:05:42.943908", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13375, - 51.53546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.2, - "qmprice": 46.5, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162563621", - "info": { - "identifier": 162563621, - "sqm_ocr": 79.2, - "price": 3683.0, - "price_per_sqm": 46.50252525252525, - "url": "https://www.rightmove.co.uk/properties/162563621", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/143k/142382/162563621/142382_ALQ012545595_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.253702", - "last_seen": "2025-06-01T22:06:08.379110", - "price": 3683.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069092, - 51.513847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162563738", - "info": { - "identifier": 162563738, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162563738", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99758/162563738/99758_2712932_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.199195", - "last_seen": "2025-06-01T22:05:44.376247", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31312, - 51.509464 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162563954", - "info": { - "identifier": 162563954, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162563954", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Interlet Sales and Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76342/162563954/76342_ISL112045_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.376342", - "last_seen": "2025-06-01T22:05:58.008973", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171155, - 51.491913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 33.8, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162564068", - "info": { - "identifier": 162564068, - "sqm_ocr": 71.0, - "price": 2400.0, - "price_per_sqm": 33.80281690140845, - "url": "https://www.rightmove.co.uk/properties/162564068", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/162564068/264404_RX586411_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "11/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.739100", - "last_seen": "2025-06-01T22:06:07.693518", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0131, - 51.5304 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.54, - "qmprice": 36.56, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162564083", - "info": { - "identifier": 162564083, - "sqm_ocr": 61.54, - "price": 2250.0, - "price_per_sqm": 36.56158596035099, - "url": "https://www.rightmove.co.uk/properties/162564083", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26204/162564083/26204_33917080_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.427307", - "last_seen": "2025-06-01T22:06:01.747593", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187462, - 51.422863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 38.0, - "qmprice": 94.08, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162564125", - "info": { - "identifier": 162564125, - "sqm_ocr": 38.0, - "price": 3575.0, - "price_per_sqm": 94.07894736842105, - "url": "https://www.rightmove.co.uk/properties/162564125", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Landstones", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221669/162564125/221669_RL1930R_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.359767", - "last_seen": "2025-06-01T22:05:57.991243", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179139, - 51.486023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.1, - "qmprice": 33.91, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162564209", - "info": { - "identifier": 162564209, - "sqm_ocr": 81.1, - "price": 2750.0, - "price_per_sqm": 33.90875462392109, - "url": "https://www.rightmove.co.uk/properties/162564209", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Truepenny's", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49874/162564209/49874_5170_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.016588", - "last_seen": "2025-06-01T22:06:05.420903", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065868, - 51.4436 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162564290", - "info": { - "identifier": 162564290, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162564290", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45525/162564290/45525_100726004449_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.879485", - "last_seen": "2025-06-01T22:06:03.806497", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02161, - 51.57803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162564332", - "info": { - "identifier": 162564332, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162564332", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Tatlers", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/156k/155624/162564332/155624_MUH250208_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.550828", - "last_seen": "2025-06-01T22:05:55.199943", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142545, - 51.59695 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162564344", - "info": { - "identifier": 162564344, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162564344", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136139/162564344/136139_2330725_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.640617", - "last_seen": "2025-06-01T22:06:07.924251", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00561, - 51.50682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162564467", - "info": { - "identifier": 162564467, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162564467", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194036/162564467/194036_LPU210231_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.956307", - "last_seen": "2025-06-01T22:06:12.788626", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2292, - 51.46296 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.6, - "qmprice": 58.78, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162564599", - "info": { - "identifier": 162564599, - "sqm_ocr": 51.6, - "price": 3033.0, - "price_per_sqm": 58.77906976744186, - "url": "https://www.rightmove.co.uk/properties/162564599", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32391/162564599/32391_33917120_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.118881", - "last_seen": "2025-06-01T22:05:42.562866", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122227, - 51.520638 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.8, - "qmprice": 37.28, - "rooms": 3, - "total_price": 3795.0, - "url": "https://www.rightmove.co.uk/properties/162564704", - "info": { - "identifier": 162564704, - "sqm_ocr": 101.8, - "price": 3795.0, - "price_per_sqm": 37.278978388998034, - "url": "https://www.rightmove.co.uk/properties/162564704", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/162564704/238841_P301476_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.139315", - "last_seen": "2025-06-01T22:05:38.591668", - "price": 3795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22083, - 51.57143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.66, - "qmprice": 42.04, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162564908", - "info": { - "identifier": 162564908, - "sqm_ocr": 60.66, - "price": 2550.0, - "price_per_sqm": 42.03758654797231, - "url": "https://www.rightmove.co.uk/properties/162564908", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162564908/96668_249608026052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.236987", - "last_seen": "2025-06-01T22:06:15.642468", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183482, - 51.53776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 38.98, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162564950", - "info": { - "identifier": 162564950, - "sqm_ocr": 64.0, - "price": 2495.0, - "price_per_sqm": 38.984375, - "url": "https://www.rightmove.co.uk/properties/162564950", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162564950/96668_244494608042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.199221", - "last_seen": "2025-06-01T22:05:50.728383", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302108, - 51.60083 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162564986", - "info": { - "identifier": 162564986, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162564986", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Godfrey And Barr", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56618/162564986/56618_4178_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.162608", - "last_seen": "2025-06-01T22:05:39.686055", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.188658, - 51.584934 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162565352", - "info": { - "identifier": 162565352, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162565352", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "View Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43275/162565352/43275_4170115_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.023020", - "last_seen": "2025-06-01T22:06:05.447331", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075368, - 51.498665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.9, - "qmprice": 30.48, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162565460", - "info": { - "identifier": 162565460, - "sqm_ocr": 68.9, - "price": 2100.0, - "price_per_sqm": 30.478955007256893, - "url": "https://www.rightmove.co.uk/properties/162565460", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Apo", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/232k/231224/162565460/231224_BB2704_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.098408", - "last_seen": "2025-06-01T22:06:02.046365", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07909, - 51.5276 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.46, - "qmprice": 35.93, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162565613", - "info": { - "identifier": 162565613, - "sqm_ocr": 90.46, - "price": 3250.0, - "price_per_sqm": 35.92748175989388, - "url": "https://www.rightmove.co.uk/properties/162565613", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157817/162565613/157817_2669544_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.937605", - "last_seen": "2025-06-01T17:39:04.454553", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018168, - 51.50129 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162565631", - "info": { - "identifier": 162565631, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162565631", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/162565631/78429_LON-193_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.132565", - "last_seen": "2025-06-01T22:05:47.931199", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07952, - 51.52775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162565727", - "info": { - "identifier": 162565727, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162565727", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Roundtree Real Estate", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46965/162565727/46965_22830_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.069668", - "last_seen": "2025-06-01T22:06:15.557469", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13184, - 51.49506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162565973", - "info": { - "identifier": 162565973, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162565973", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Birchills", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115933/162565973/115933_548c80ca-fa91-4843-ba6c-8d23093e3f39_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.250439", - "last_seen": "2025-06-01T22:05:50.957459", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.202732, - 51.596783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 29.83, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162566003", - "info": { - "identifier": 162566003, - "sqm_ocr": 77.0, - "price": 2297.0, - "price_per_sqm": 29.83116883116883, - "url": "https://www.rightmove.co.uk/properties/162566003", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/162566003/80796_213_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.977808", - "last_seen": "2025-06-01T22:05:59.288522", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11788, - 51.47145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.5, - "qmprice": 39.82, - "rooms": 2, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/162566087", - "info": { - "identifier": 162566087, - "sqm_ocr": 66.5, - "price": 2648.0, - "price_per_sqm": 39.81954887218045, - "url": "https://www.rightmove.co.uk/properties/162566087", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151658/162566087/151658_1328205_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.113928", - "last_seen": "2025-06-01T22:06:14.685850", - "price": 2648.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192582, - 51.523888 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.5, - "qmprice": 52.14, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162566090", - "info": { - "identifier": 162566090, - "sqm_ocr": 66.5, - "price": 3467.0, - "price_per_sqm": 52.13533834586466, - "url": "https://www.rightmove.co.uk/properties/162566090", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151658/162566090/151658_1328204_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.000372", - "last_seen": "2025-06-01T22:06:14.683533", - "price": 3467.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192582, - 51.523888 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.5, - "qmprice": 29.68, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162566204", - "info": { - "identifier": 162566204, - "sqm_ocr": 77.5, - "price": 2300.0, - "price_per_sqm": 29.677419354838708, - "url": "https://www.rightmove.co.uk/properties/162566204", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/162566204/108947_1328181_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.163356", - "last_seen": "2025-06-01T22:05:50.367090", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.349834, - 51.564632 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3596.0, - "url": "https://www.rightmove.co.uk/properties/162566216", - "info": { - "identifier": 162566216, - "sqm_ocr": null, - "price": 3596.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162566216", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/162566216/222842_TCH231871_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.072019", - "last_seen": "2025-06-01T22:05:54.462519", - "price": 3596.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.118894, - 51.538887 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162566225", - "info": { - "identifier": 162566225, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162566225", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278060/162566225/278060_KBS250292_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.081799", - "last_seen": "2025-06-01T22:05:39.679071", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.257369, - 51.592575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 38.79, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162566312", - "info": { - "identifier": 162566312, - "sqm_ocr": 58.0, - "price": 2250.0, - "price_per_sqm": 38.793103448275865, - "url": "https://www.rightmove.co.uk/properties/162566312", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/162566312/111050_1326480_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.658449", - "last_seen": "2025-06-01T22:06:14.239155", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16283, - 51.434 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.7, - "qmprice": 52.96, - "rooms": 2, - "total_price": 2579.0, - "url": "https://www.rightmove.co.uk/properties/162566327", - "info": { - "identifier": 162566327, - "sqm_ocr": 48.7, - "price": 2579.0, - "price_per_sqm": 52.95687885010267, - "url": "https://www.rightmove.co.uk/properties/162566327", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/162566327/84889_1327111_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.908324", - "last_seen": "2025-06-01T22:06:16.131591", - "price": 2579.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143311, - 51.48997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.34, - "qmprice": 45.91, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162566420", - "info": { - "identifier": 162566420, - "sqm_ocr": 65.34, - "price": 3000.0, - "price_per_sqm": 45.913682277318635, - "url": "https://www.rightmove.co.uk/properties/162566420", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/162566420/108515_1327029_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.061239", - "last_seen": "2025-06-01T22:05:58.195604", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199125, - 51.491417 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162566549", - "info": { - "identifier": 162566549, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162566549", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/162566549/107533_1321559_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.972097", - "last_seen": "2025-06-01T22:06:00.409807", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037873, - 51.475994 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 134.4, - "qmprice": 27.9, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162566621", - "info": { - "identifier": 162566621, - "sqm_ocr": 134.4, - "price": 3750.0, - "price_per_sqm": 27.90178571428571, - "url": "https://www.rightmove.co.uk/properties/162566621", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Tatlers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/156k/155624/162566621/155624_MUH150324_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.570494", - "last_seen": "2025-06-01T22:05:49.778856", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14068, - 51.5886 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 38.66, - "rooms": 2, - "total_price": 2915.0, - "url": "https://www.rightmove.co.uk/properties/162566717", - "info": { - "identifier": 162566717, - "sqm_ocr": 75.4, - "price": 2915.0, - "price_per_sqm": 38.660477453580896, - "url": "https://www.rightmove.co.uk/properties/162566717", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214295/162566717/214295_LCS250113_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.155210", - "last_seen": "2025-06-01T22:05:39.677281", - "price": 2915.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222233, - 51.570724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 43.06, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162566750", - "info": { - "identifier": 162566750, - "sqm_ocr": 72.0, - "price": 3100.0, - "price_per_sqm": 43.05555555555556, - "url": "https://www.rightmove.co.uk/properties/162566750", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50683/162566750/50683_P277120_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.653920", - "last_seen": "2025-06-01T22:06:06.894037", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08311, - 51.49364 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.3, - "qmprice": 23.66, - "rooms": 3, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/162566810", - "info": { - "identifier": 162566810, - "sqm_ocr": 99.3, - "price": 2349.0, - "price_per_sqm": 23.65558912386707, - "url": "https://www.rightmove.co.uk/properties/162566810", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162566810/96668_249945028052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.594247", - "last_seen": "2025-06-01T22:05:51.396073", - "price": 2349.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.409692, - 51.59334 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.7, - "qmprice": 46.22, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162566831", - "info": { - "identifier": 162566831, - "sqm_ocr": 49.7, - "price": 2297.0, - "price_per_sqm": 46.21730382293762, - "url": "https://www.rightmove.co.uk/properties/162566831", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/162566831/15957_1327459_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.193883", - "last_seen": "2025-06-01T22:05:42.685356", - "price": 2297.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170364, - 51.54923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162566972", - "info": { - "identifier": 162566972, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162566972", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Victorstone Property Consultants", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77197/162566972/77197_VCT_VCT_LFSYCL_465_633194376_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.463742", - "last_seen": "2025-06-01T22:05:53.164762", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094147, - 51.528557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162567002", - "info": { - "identifier": 162567002, - "sqm_ocr": null, - "price": 3350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162567002", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162567002/87187_72177_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.247379", - "last_seen": "2025-06-01T22:05:47.668134", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088313, - 51.57247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 39.72, - "rooms": 2, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162567017", - "info": { - "identifier": 162567017, - "sqm_ocr": 75.4, - "price": 2995.0, - "price_per_sqm": 39.72148541114058, - "url": "https://www.rightmove.co.uk/properties/162567017", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214295/162567017/214295_LCS250114_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.911452", - "last_seen": "2025-06-01T22:05:39.169764", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221439, - 51.571205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162567032", - "info": { - "identifier": 162567032, - "sqm_ocr": null, - "price": 3450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162567032", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162567032/191744_RL4992_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.210620", - "last_seen": "2025-06-01T22:06:06.254549", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095813, - 51.492767 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162567125", - "info": { - "identifier": 162567125, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162567125", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237557/162567125/237557_P64224_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.326110", - "last_seen": "2025-06-01T22:06:07.762060", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18892, - 51.36037 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 42.33, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162567158", - "info": { - "identifier": 162567158, - "sqm_ocr": 87.0, - "price": 3683.0, - "price_per_sqm": 42.333333333333336, - "url": "https://www.rightmove.co.uk/properties/162567158", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Prime London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/269k/268739/162567158/268739_33917277_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.605188", - "last_seen": "2025-06-01T22:05:48.387398", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222369, - 51.5116 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162567314", - "info": { - "identifier": 162567314, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162567314", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CITY REALTOR LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/179k/178868/162567314/178868_33917252_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.728544", - "last_seen": "2025-06-01T22:06:08.822750", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064388, - 51.513004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162567347", - "info": { - "identifier": 162567347, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162567347", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84800/162567347/84800_33917287_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.808205", - "last_seen": "2025-06-01T22:05:58.671528", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.256787, - 51.404472 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162567476", - "info": { - "identifier": 162567476, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162567476", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Docklands Prestige Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101404/162567476/101404_705820_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.289707", - "last_seen": "2025-06-01T22:05:51.064871", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.216667, - 51.54776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.15, - "qmprice": 43.25, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162567497", - "info": { - "identifier": 162567497, - "sqm_ocr": 85.15, - "price": 3683.0, - "price_per_sqm": 43.25308279506753, - "url": "https://www.rightmove.co.uk/properties/162567497", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84869/162567497/84869_33917296_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.669380", - "last_seen": "2025-06-01T22:06:14.275922", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179848, - 51.466682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.5, - "qmprice": 46.1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162567503", - "info": { - "identifier": 162567503, - "sqm_ocr": 70.5, - "price": 3250.0, - "price_per_sqm": 46.09929078014184, - "url": "https://www.rightmove.co.uk/properties/162567503", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84869/162567503/84869_33917298_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.878441", - "last_seen": "2025-06-01T22:06:13.703363", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179848, - 51.466682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.07, - "qmprice": 61.47, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162567551", - "info": { - "identifier": 162567551, - "sqm_ocr": 65.07, - "price": 4000.0, - "price_per_sqm": 61.47226064238513, - "url": "https://www.rightmove.co.uk/properties/162567551", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279224/162567551/279224_JCC250031_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.114603", - "last_seen": "2025-06-01T22:05:59.885653", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134124, - 51.461586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162567887", - "info": { - "identifier": 162567887, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162567887", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.439018", - "last_seen": "2025-06-01T22:05:43.044224", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18173, - 51.54989 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.0, - "qmprice": 38.73, - "rooms": 2, - "total_price": 3796.0, - "url": "https://www.rightmove.co.uk/properties/162568490", - "info": { - "identifier": 162568490, - "sqm_ocr": 98.0, - "price": 3796.0, - "price_per_sqm": 38.734693877551024, - "url": "https://www.rightmove.co.uk/properties/162568490", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93044/162568490/93044_33917333_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.181678", - "last_seen": "2025-06-01T22:05:57.022676", - "price": 3796 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.228402, - 51.488407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162568673", - "info": { - "identifier": 162568673, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162568673", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Docklands Prestige Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101404/162568673/101404_705736_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.005076", - "last_seen": "2025-06-01T22:05:39.417937", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.244611, - 51.58203 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162568739", - "info": { - "identifier": 162568739, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162568739", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162568739/191744_RL3775_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.613430", - "last_seen": "2025-06-01T22:05:58.554008", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303367, - 51.408398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.3, - "qmprice": 27.45, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162568808", - "info": { - "identifier": 162568808, - "sqm_ocr": 109.3, - "price": 3000.0, - "price_per_sqm": 27.44739249771272, - "url": "https://www.rightmove.co.uk/properties/162568808", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "James Alexander", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287633/162568808/287633_33917350_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.658600", - "last_seen": "2025-06-01T22:05:43.523963", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.111032, - 51.413162 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162568970", - "info": { - "identifier": 162568970, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162568970", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Parkfields Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90161/162568970/90161_33917357_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.801656", - "last_seen": "2025-06-01T22:05:44.893537", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.386861, - 51.50932 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162568976", - "info": { - "identifier": 162568976, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162568976", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Freder", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269027/162568976/269027_RL0480_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.263870", - "last_seen": "2025-06-01T22:05:49.195628", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.237739, - 51.508816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162569000", - "info": { - "identifier": 162569000, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162569000", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162569000/156986_NOZ4_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.215488", - "last_seen": "2025-06-01T22:05:59.600519", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1025, - 51.46418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.09, - "qmprice": 39.14, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162569096", - "info": { - "identifier": 162569096, - "sqm_ocr": 74.09, - "price": 2900.0, - "price_per_sqm": 39.141584559319746, - "url": "https://www.rightmove.co.uk/properties/162569096", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/162569096/208253_BSL250357_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.407636", - "last_seen": "2025-06-01T22:05:38.934937", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24784, - 51.595272 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2429.0, - "url": "https://www.rightmove.co.uk/properties/162569225", - "info": { - "identifier": 162569225, - "sqm_ocr": null, - "price": 2429.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162569225", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162569225/156986_MQF20047_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.894617", - "last_seen": "2025-06-01T22:05:41.454371", - "price": 2429.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277941, - 51.557484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3161.0, - "url": "https://www.rightmove.co.uk/properties/162569297", - "info": { - "identifier": 162569297, - "sqm_ocr": null, - "price": 3161.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162569297", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162569297/156986_CGD30008_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.943872", - "last_seen": "2025-06-01T22:05:40.822419", - "price": 3161.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27641, - 51.55856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162569480", - "info": { - "identifier": 162569480, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162569480", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162569480/191744_RL3738_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.304839", - "last_seen": "2025-06-01T22:05:43.923859", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.387088, - 51.506695 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.3, - "qmprice": 36.9, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162569570", - "info": { - "identifier": 162569570, - "sqm_ocr": 81.3, - "price": 3000.0, - "price_per_sqm": 36.90036900369004, - "url": "https://www.rightmove.co.uk/properties/162569570", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/162569570/174452_2623_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.779261", - "last_seen": "2025-06-01T22:05:46.322430", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00713, - 51.50166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/162569615", - "info": { - "identifier": 162569615, - "sqm_ocr": null, - "price": 3142.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162569615", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11351/162569615/11351_29113015_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.011661, - 51.524284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.2, - "qmprice": 39.99, - "rooms": 2, - "total_price": 3207.0, - "url": "https://www.rightmove.co.uk/properties/162569678", - "info": { - "identifier": 162569678, - "sqm_ocr": 80.2, - "price": 3207.0, - "price_per_sqm": 39.98753117206982, - "url": "https://www.rightmove.co.uk/properties/162569678", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/162569678/212327_P159250_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.934898", - "last_seen": "2025-06-01T17:39:04.450616", - "price": 3206 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01354, - 51.50003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162569711", - "info": { - "identifier": 162569711, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162569711", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Simple Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238226/162569711/238226_5823_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.592524", - "last_seen": "2025-06-01T22:05:51.392824", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.439314, - 51.535206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162569792", - "info": { - "identifier": 162569792, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162569792", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Docklands Prestige Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101404/162569792/101404_705828_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.608482", - "last_seen": "2025-06-01T22:05:44.803354", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27226, - 51.50125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162569804", - "info": { - "identifier": 162569804, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162569804", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Maalems", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42021/162569804/42021_28147882_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.096986", - "last_seen": "2025-06-01T22:06:12.735587", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189109, - 51.446556 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 28.09, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162569867", - "info": { - "identifier": 162569867, - "sqm_ocr": 89.0, - "price": 2500.0, - "price_per_sqm": 28.089887640449437, - "url": "https://www.rightmove.co.uk/properties/162569867", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hanley Estates Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72329/162569867/72329_2758_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.491936", - "last_seen": "2025-06-01T22:05:53.176138", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12663, - 51.56709 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162570107", - "info": { - "identifier": 162570107, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162570107", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Stones Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91151/162570107/91151_HIL250008_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.570674", - "last_seen": "2025-06-01T22:05:51.373750", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.394113, - 51.518764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162570125", - "info": { - "identifier": 162570125, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162570125", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105656/162570125/105656_KCZ251108_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.209072", - "last_seen": "2025-06-01T22:05:52.211418", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27844, - 51.487312 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162570140", - "info": { - "identifier": 162570140, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162570140", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/162570140/17888_27009_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.924325", - "last_seen": "2025-06-01T22:05:53.720247", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11953, - 51.55043 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 35.71, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162570197", - "info": { - "identifier": 162570197, - "sqm_ocr": 77.0, - "price": 2750.0, - "price_per_sqm": 35.714285714285715, - "url": "https://www.rightmove.co.uk/properties/162570197", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82720/162570197/82720_KDU240101_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.205489", - "last_seen": "2025-06-01T22:06:06.248746", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090056, - 51.500416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.4, - "qmprice": 42.78, - "rooms": 3, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/162570524", - "info": { - "identifier": 162570524, - "sqm_ocr": 79.4, - "price": 3397.0, - "price_per_sqm": 42.78337531486146, - "url": "https://www.rightmove.co.uk/properties/162570524", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/162570524/84866_33917494_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.138503", - "last_seen": "2025-06-01T22:05:52.576554", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.253386, - 51.490067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.1, - "qmprice": 31.13, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162570527", - "info": { - "identifier": 162570527, - "sqm_ocr": 77.1, - "price": 2400.0, - "price_per_sqm": 31.128404669260703, - "url": "https://www.rightmove.co.uk/properties/162570527", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/162570527/65785_33917495_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.330713", - "last_seen": "2025-06-01T22:06:00.142736", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139381, - 51.443512 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.7, - "qmprice": 27.84, - "rooms": 2, - "total_price": 2525.0, - "url": "https://www.rightmove.co.uk/properties/162570533", - "info": { - "identifier": 162570533, - "sqm_ocr": 90.7, - "price": 2525.0, - "price_per_sqm": 27.839029768467473, - "url": "https://www.rightmove.co.uk/properties/162570533", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "RCAM", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218888/162570533/218888_3bed3005_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.501678", - "last_seen": "2025-06-01T22:05:51.632303", - "price": 2525.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42116, - 51.50335 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.68, - "qmprice": 45.72, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162570677", - "info": { - "identifier": 162570677, - "sqm_ocr": 54.68, - "price": 2500.0, - "price_per_sqm": 45.7205559619605, - "url": "https://www.rightmove.co.uk/properties/162570677", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/162570677/96392_LTA230150_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.104425", - "last_seen": "2025-06-01T22:06:15.632633", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174878, - 51.527954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.58, - "qmprice": 26.43, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162570734", - "info": { - "identifier": 162570734, - "sqm_ocr": 94.58, - "price": 2500.0, - "price_per_sqm": 26.432649608796787, - "url": "https://www.rightmove.co.uk/properties/162570734", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Oaks Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235208/162570734/235208_CRO250912_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.571189", - "last_seen": "2025-06-01T22:05:43.373248", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072637, - 51.40523 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.7, - "qmprice": 36.46, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162570824", - "info": { - "identifier": 162570824, - "sqm_ocr": 109.7, - "price": 4000.0, - "price_per_sqm": 36.46308113035551, - "url": "https://www.rightmove.co.uk/properties/162570824", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/162570824/101522_1328237_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.066447", - "last_seen": "2025-06-01T22:05:47.592203", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04426, - 51.556896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.2, - "qmprice": 28.37, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162570893", - "info": { - "identifier": 162570893, - "sqm_ocr": 80.2, - "price": 2275.0, - "price_per_sqm": 28.366583541147133, - "url": "https://www.rightmove.co.uk/properties/162570893", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/162570893/15957_1328240_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.732321", - "last_seen": "2025-06-01T22:05:42.446430", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204795, - 51.550194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162570962", - "info": { - "identifier": 162570962, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162570962", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Node Living", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283232/162570962/283232_RST254509_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.701878", - "last_seen": "2025-06-01T22:05:59.783594", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103868, - 51.45941 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162571088", - "info": { - "identifier": 162571088, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162571088", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/162571088/78429_LON-392_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.148640", - "last_seen": "2025-06-01T22:05:59.528062", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12521, - 51.48569 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.5, - "qmprice": 37.57, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162571337", - "info": { - "identifier": 162571337, - "sqm_ocr": 86.5, - "price": 3250.0, - "price_per_sqm": 37.57225433526011, - "url": "https://www.rightmove.co.uk/properties/162571337", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156782/162571337/156782_KAE240212_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.184385", - "last_seen": "2025-06-01T22:06:13.816717", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172655, - 51.47012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.1, - "qmprice": 62.8, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162571385", - "info": { - "identifier": 162571385, - "sqm_ocr": 62.1, - "price": 3900.0, - "price_per_sqm": 62.80193236714976, - "url": "https://www.rightmove.co.uk/properties/162571385", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16023/162571385/16023_1328232_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.032327", - "last_seen": "2025-06-01T22:05:58.259407", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17146, - 51.491665 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162571553", - "info": { - "identifier": 162571553, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162571553", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Eden Harper", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67498/162571553/67498_33917550_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.469186", - "last_seen": "2025-06-01T22:06:13.003349", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14967, - 51.47683 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.38, - "qmprice": 43.14, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162571724", - "info": { - "identifier": 162571724, - "sqm_ocr": 68.38, - "price": 2950.0, - "price_per_sqm": 43.14126937701082, - "url": "https://www.rightmove.co.uk/properties/162571724", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15954/162571724/15954_1328228_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.957587", - "last_seen": "2025-06-01T22:05:53.774119", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109887, - 51.55077 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.28, - "qmprice": 63.24, - "rooms": 2, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/162571742", - "info": { - "identifier": 162571742, - "sqm_ocr": 47.28, - "price": 2990.0, - "price_per_sqm": 63.24027072758037, - "url": "https://www.rightmove.co.uk/properties/162571742", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/162571742/15942_1328241_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.367264", - "last_seen": "2025-06-01T22:05:58.001278", - "price": 2990.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179313, - 51.485798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.14, - "qmprice": 27.74, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162571826", - "info": { - "identifier": 162571826, - "sqm_ocr": 108.14, - "price": 3000.0, - "price_per_sqm": 27.74181616423155, - "url": "https://www.rightmove.co.uk/properties/162571826", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/87k/86639/162571826/86639_CLI163598_L_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.172835", - "last_seen": "2025-06-01T22:06:04.386136", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.266828, - 51.460205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162572039", - "info": { - "identifier": 162572039, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162572039", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84833/162572039/84833_33917571_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.624726", - "last_seen": "2025-06-01T22:05:48.408977", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.241435, - 51.50187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.6, - "qmprice": 37.19, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162572045", - "info": { - "identifier": 162572045, - "sqm_ocr": 72.6, - "price": 2700.0, - "price_per_sqm": 37.1900826446281, - "url": "https://www.rightmove.co.uk/properties/162572045", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286493/162572045/286493_33861834_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.981899", - "last_seen": "2025-06-01T22:06:05.371043", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.048659, - 51.50013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.7, - "qmprice": 25.29, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162572165", - "info": { - "identifier": 162572165, - "sqm_ocr": 110.7, - "price": 2800.0, - "price_per_sqm": 25.293586269196023, - "url": "https://www.rightmove.co.uk/properties/162572165", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ash Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269957/162572165/269957_RX586469_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.452383", - "last_seen": "2025-06-01T22:05:51.343887", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.437211, - 51.50017 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162572318", - "info": { - "identifier": 162572318, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162572318", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "CROWN LUXURY HOMES LIMITED", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267257/162572318/267257_33917584_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.149032", - "last_seen": "2025-06-01T22:05:47.951816", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0937, - 51.569557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/162572741", - "info": { - "identifier": 162572741, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162572741", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162572741/191744_RL4103_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.278885", - "last_seen": "2025-06-01T22:05:49.329715", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225406, - 51.487247 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 45.9, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162572849", - "info": { - "identifier": 162572849, - "sqm_ocr": 61.0, - "price": 2800.0, - "price_per_sqm": 45.90163934426229, - "url": "https://www.rightmove.co.uk/properties/162572849", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hanley Estates Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72329/162572849/72329_158_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.926329", - "last_seen": "2025-06-01T22:05:53.733223", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12011, - 51.5678 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162573044", - "info": { - "identifier": 162573044, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162573044", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162573044/87187_61821_IMG_00_0000_max_656x437.png", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.398468", - "last_seen": "2025-06-01T22:06:10.338048", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.003691, - 51.51583 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162573098", - "info": { - "identifier": 162573098, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162573098", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Patrick Henry", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106402/162573098/106402_8203345_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.508365", - "last_seen": "2025-06-01T22:05:59.749282", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.134206, - 51.44501 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162573440", - "info": { - "identifier": 162573440, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162573440", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162573440/96668_243135726032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.053161", - "last_seen": "2025-06-01T22:05:50.810733", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.362616, - 51.58766 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.2, - "qmprice": 41.49, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162573512", - "info": { - "identifier": 162573512, - "sqm_ocr": 48.2, - "price": 2000.0, - "price_per_sqm": 41.49377593360995, - "url": "https://www.rightmove.co.uk/properties/162573512", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162573512/96668_245091514042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.012629", - "last_seen": "2025-06-01T22:05:40.988309", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209024, - 51.54321 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162573842", - "info": { - "identifier": 162573842, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162573842", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Evans & Company", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29484/162573842/29484_33917638_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.779548", - "last_seen": "2025-06-01T22:05:51.676023", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.476896, - 51.524353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162573866", - "info": { - "identifier": 162573866, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162573866", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162573866/96668_248849619052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.152426", - "last_seen": "2025-06-01T22:05:40.984638", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22267, - 51.549988 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162573941", - "info": { - "identifier": 162573941, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162573941", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162573941/96668_247915410052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.750331", - "last_seen": "2025-06-01T22:06:11.826478", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.033022, - 51.569996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162574046", - "info": { - "identifier": 162574046, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162574046", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/38k/37163/162574046/37163_P98067_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.093693", - "last_seen": "2025-06-01T22:06:01.004346", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04582, - 51.44536 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162574067", - "info": { - "identifier": 162574067, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162574067", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162574067/96668_249935628052025_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.786201", - "last_seen": "2025-06-01T22:05:44.751781", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267324, - 51.515755 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.7, - "qmprice": 38.4, - "rooms": 2, - "total_price": 2715.0, - "url": "https://www.rightmove.co.uk/properties/162574730", - "info": { - "identifier": 162574730, - "sqm_ocr": 70.7, - "price": 2715.0, - "price_per_sqm": 38.401697312588404, - "url": "https://www.rightmove.co.uk/properties/162574730", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Knight Frank Lettings (ILM)", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137825/162574730/137825_BIQ012556656_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.235056", - "last_seen": "2025-06-01T22:05:38.742228", - "price": 2715.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217119, - 51.575974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 40.32, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162574895", - "info": { - "identifier": 162574895, - "sqm_ocr": 62.0, - "price": 2500.0, - "price_per_sqm": 40.32258064516129, - "url": "https://www.rightmove.co.uk/properties/162574895", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57956/162574895/57956_LAD140198_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.135653", - "last_seen": "2025-06-01T22:05:57.864392", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21355, - 51.52707 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162574973", - "info": { - "identifier": 162574973, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162574973", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157817/162574973/157817_2702294_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.841708", - "last_seen": "2025-06-01T22:06:08.163367", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025445, - 51.502277 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162575186", - "info": { - "identifier": 162575186, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162575186", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Rentmyhome.co.uk", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242747/162575186/242747_33917653_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.821329", - "last_seen": "2025-06-01T22:05:50.058988", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088256, - 51.600384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162575429", - "info": { - "identifier": 162575429, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162575429", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51286/162575429/51286_CLL170043_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.886008", - "last_seen": "2025-06-01T22:05:51.848439", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.258188, - 51.4928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.4, - "qmprice": 35.42, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162575471", - "info": { - "identifier": 162575471, - "sqm_ocr": 73.4, - "price": 2600.0, - "price_per_sqm": 35.422343324250676, - "url": "https://www.rightmove.co.uk/properties/162575471", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Highcastle Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198884/162575471/198884_RL0112_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.317384", - "last_seen": "2025-06-01T22:05:40.213650", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.294892, - 51.552975 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 145.0, - "qmprice": 24.1, - "rooms": 4, - "total_price": 3495.0, - "url": "https://www.rightmove.co.uk/properties/162575663", - "info": { - "identifier": 162575663, - "sqm_ocr": 145.0, - "price": 3495.0, - "price_per_sqm": 24.103448275862068, - "url": "https://www.rightmove.co.uk/properties/162575663", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84812/162575663/84812_33917702_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.833060", - "last_seen": "2025-06-01T22:05:58.855505", - "price": 3495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.311657, - 51.387012 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162575720", - "info": { - "identifier": 162575720, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162575720", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162575720/270461_JAX220556_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.354235", - "last_seen": "2025-06-01T22:06:10.273541", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068165, - 51.51942 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162575750", - "info": { - "identifier": 162575750, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162575750", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "CityWharf Property Investment Consultancy", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206597/162575750/206597_RL1725_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.027339", - "last_seen": "2025-06-01T22:06:00.715883", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.036271, - 51.4918 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.1, - "qmprice": 36.46, - "rooms": 3, - "total_price": 3795.0, - "url": "https://www.rightmove.co.uk/properties/162575864", - "info": { - "identifier": 162575864, - "sqm_ocr": 104.1, - "price": 3795.0, - "price_per_sqm": 36.455331412103746, - "url": "https://www.rightmove.co.uk/properties/162575864", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Knight Frank Lettings (ILM)", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137825/162575864/137825_BIQ012505430_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.264745", - "last_seen": "2025-06-01T22:05:38.770443", - "price": 3795.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.213911, - 51.57639 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.73, - "qmprice": 41.79, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/162575993", - "info": { - "identifier": 162575993, - "sqm_ocr": 59.73, - "price": 2496.0, - "price_per_sqm": 41.788046207935714, - "url": "https://www.rightmove.co.uk/properties/162575993", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39741/162575993/39741_33917731_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.684654", - "last_seen": "2025-06-01T22:06:14.331434", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198927, - 51.528923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 51.41, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/162576083", - "info": { - "identifier": 162576083, - "sqm_ocr": 71.0, - "price": 3650.0, - "price_per_sqm": 51.40845070422535, - "url": "https://www.rightmove.co.uk/properties/162576083", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Nova Haus London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240566/162576083/240566_NOV240127_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.525879", - "last_seen": "2025-06-01T22:05:53.240509", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093387, - 51.537422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.3, - "qmprice": 38.24, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162576218", - "info": { - "identifier": 162576218, - "sqm_ocr": 52.3, - "price": 2000.0, - "price_per_sqm": 38.24091778202677, - "url": "https://www.rightmove.co.uk/properties/162576218", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57985/162576218/57985_KCW252010_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.482586", - "last_seen": "2025-06-01T22:06:05.564230", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0457, - 51.504738 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/162576230", - "info": { - "identifier": 162576230, - "sqm_ocr": null, - "price": 2383.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162576230", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Oakhill", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/141k/140510/162576230/140510_WES180209_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.814206", - "last_seen": "2025-06-01T22:05:40.474923", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.229668, - 51.562107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.78, - "qmprice": 42.53, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162576431", - "info": { - "identifier": 162576431, - "sqm_ocr": 58.78, - "price": 2500.0, - "price_per_sqm": 42.53147329023477, - "url": "https://www.rightmove.co.uk/properties/162576431", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92503/162576431/92503_CLI250746_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.114217", - "last_seen": "2025-06-01T22:05:49.050682", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209644, - 51.46787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.3, - "qmprice": 36.9, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162576491", - "info": { - "identifier": 162576491, - "sqm_ocr": 81.3, - "price": 3000.0, - "price_per_sqm": 36.90036900369004, - "url": "https://www.rightmove.co.uk/properties/162576491", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91855/162576491/91855_EHL250025_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.662149", - "last_seen": "2025-06-01T22:05:58.786263", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300587, - 51.39829 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/162576686", - "info": { - "identifier": 162576686, - "sqm_ocr": null, - "price": 2990.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162576686", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/162576686/78429_LON-411_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.028045", - "last_seen": "2025-06-01T22:05:47.544423", - "price": 2990.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0828, - 51.53194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.4, - "qmprice": 30.39, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162576743", - "info": { - "identifier": 162576743, - "sqm_ocr": 123.4, - "price": 3750.0, - "price_per_sqm": 30.38897893030794, - "url": "https://www.rightmove.co.uk/properties/162576743", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/162576743/101522_1328254_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.387353", - "last_seen": "2025-06-01T22:05:47.966448", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075172, - 51.54905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162576767", - "info": { - "identifier": 162576767, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162576767", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107905/162576767/107905_DEL110085_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.102352", - "last_seen": "2025-06-01T22:06:00.757499", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023312, - 51.474022 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 131.8, - "qmprice": 26.56, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162576782", - "info": { - "identifier": 162576782, - "sqm_ocr": 131.8, - "price": 3500.0, - "price_per_sqm": 26.555386949924124, - "url": "https://www.rightmove.co.uk/properties/162576782", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/162576782/149153_1328188_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.815485", - "last_seen": "2025-06-01T22:05:58.824296", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.270196, - 51.40983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162576797", - "info": { - "identifier": 162576797, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162576797", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Daniels", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/25k/24347/162576797/24347_33917776_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.177772", - "last_seen": "2025-06-01T22:05:41.195374", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276939, - 51.560867 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.2, - "qmprice": 42.13, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162576815", - "info": { - "identifier": 162576815, - "sqm_ocr": 90.2, - "price": 3800.0, - "price_per_sqm": 42.12860310421286, - "url": "https://www.rightmove.co.uk/properties/162576815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/162576815/100423_1325070_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.476756", - "last_seen": "2025-06-01T22:06:04.817823", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.304301, - 51.4603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 51.95, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162576833", - "info": { - "identifier": 162576833, - "sqm_ocr": 77.0, - "price": 4000.0, - "price_per_sqm": 51.94805194805195, - "url": "https://www.rightmove.co.uk/properties/162576833", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/162576833/60927_000005406b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.993322", - "last_seen": "2025-06-01T22:05:49.536940", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22553, - 51.48761 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3207.0, - "url": "https://www.rightmove.co.uk/properties/162576872", - "info": { - "identifier": 162576872, - "sqm_ocr": null, - "price": 3207.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162576872", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/162576872/49784_39438_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.100338", - "last_seen": "2025-06-01T22:06:06.109076", - "price": 3206 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09956, - 51.49292 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.6, - "qmprice": 53.56, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162576944", - "info": { - "identifier": 162576944, - "sqm_ocr": 52.6, - "price": 2817.0, - "price_per_sqm": 53.555133079847906, - "url": "https://www.rightmove.co.uk/properties/162576944", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/162576944/15945_1328209_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.440270", - "last_seen": "2025-06-01T22:06:15.755057", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190677, - 51.514874 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.7, - "qmprice": 33.49, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162576962", - "info": { - "identifier": 162576962, - "sqm_ocr": 62.7, - "price": 2100.0, - "price_per_sqm": 33.49282296650718, - "url": "https://www.rightmove.co.uk/properties/162576962", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137369/162576962/137369_1327861_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.660009", - "last_seen": "2025-06-01T22:06:11.919029", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009741, - 51.58731 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.82, - "qmprice": 50.86, - "rooms": 2, - "total_price": 3449.0, - "url": "https://www.rightmove.co.uk/properties/162577064", - "info": { - "identifier": 162577064, - "sqm_ocr": 67.82, - "price": 3449.0, - "price_per_sqm": 50.85520495429078, - "url": "https://www.rightmove.co.uk/properties/162577064", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hudsons Property", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75559/162577064/75559_CHS250066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.930736", - "last_seen": "2025-06-01T22:06:15.403622", - "price": 3449 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135992, - 51.51852 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162577397", - "info": { - "identifier": 162577397, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162577397", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162577397/238265_L110136_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.462131", - "last_seen": "2025-06-01T22:05:46.303023", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.104887, - 51.478283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.6, - "qmprice": 27.59, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162577538", - "info": { - "identifier": 162577538, - "sqm_ocr": 90.6, - "price": 2500.0, - "price_per_sqm": 27.593818984547465, - "url": "https://www.rightmove.co.uk/properties/162577538", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Groves Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74977/162577538/74977_3019_GROV_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.771776", - "last_seen": "2025-06-01T22:05:58.739392", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.263861, - 51.400696 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 30.3, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162578354", - "info": { - "identifier": 162578354, - "sqm_ocr": 66.0, - "price": 2000.0, - "price_per_sqm": 30.303030303030305, - "url": "https://www.rightmove.co.uk/properties/162578354", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Godfrey And Barr", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56618/162578354/56618_5144_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.121343", - "last_seen": "2025-06-01T22:05:38.543485", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173767, - 51.58488 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 38.18, - "rooms": 2, - "total_price": 2596.0, - "url": "https://www.rightmove.co.uk/properties/162578366", - "info": { - "identifier": 162578366, - "sqm_ocr": 68.0, - "price": 2596.0, - "price_per_sqm": 38.1764705882353, - "url": "https://www.rightmove.co.uk/properties/162578366", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "White Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55629/162578366/55629_32225497_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.625980", - "last_seen": "2025-06-01T22:05:57.498757", - "price": 2595 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187862, - 51.488106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162578435", - "info": { - "identifier": 162578435, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162578435", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Invest & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219485/162578435/219485_103426000342_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.538679", - "last_seen": "2025-06-01T22:06:15.256287", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17784, - 51.53858 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 140.1, - "qmprice": 24.27, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162578528", - "info": { - "identifier": 162578528, - "sqm_ocr": 140.1, - "price": 3400.0, - "price_per_sqm": 24.26837972876517, - "url": "https://www.rightmove.co.uk/properties/162578528", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238829/162578528/238829_33917876_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.597813", - "last_seen": "2025-06-01T22:06:01.691535", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.156249, - 51.4104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2405.0, - "url": "https://www.rightmove.co.uk/properties/162578564", - "info": { - "identifier": 162578564, - "sqm_ocr": null, - "price": 2405.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162578564", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162578564/213815_705837_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.331263", - "last_seen": "2025-06-01T22:05:51.046270", - "price": 2405 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.203602, - 51.513897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162578582", - "info": { - "identifier": 162578582, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162578582", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17888/162578582/17888_17123_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.418785", - "last_seen": "2025-06-01T22:05:43.036121", - "price": 2275 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1315, - 51.54685 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.1, - "qmprice": 35.14, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162578678", - "info": { - "identifier": 162578678, - "sqm_ocr": 81.1, - "price": 2850.0, - "price_per_sqm": 35.14180024660913, - "url": "https://www.rightmove.co.uk/properties/162578678", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57985/162578678/57985_KCW251037_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.192557", - "last_seen": "2025-06-01T22:06:06.209852", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.048702, - 51.49854 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162578954", - "info": { - "identifier": 162578954, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162578954", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Ealing", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91315/162578954/91315_000011954c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.542113", - "last_seen": "2025-06-01T22:05:44.286358", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3068, - 51.51399 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2325.0, - "url": "https://www.rightmove.co.uk/properties/162579062", - "info": { - "identifier": 162579062, - "sqm_ocr": null, - "price": 2325.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162579062", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286454/162579062/286454_P62273_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.282545", - "last_seen": "2025-06-01T22:05:43.881657", - "price": 2325.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31884, - 51.5352 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.51, - "qmprice": 36.87, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/162579179", - "info": { - "identifier": 162579179, - "sqm_ocr": 74.51, - "price": 2747.0, - "price_per_sqm": 36.867534559119576, - "url": "https://www.rightmove.co.uk/properties/162579179", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/162579179/163859_2481018_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.499549", - "last_seen": "2025-06-01T22:06:02.401216", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.029842, - 51.499752 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.75, - "qmprice": 50.08, - "rooms": 2, - "total_price": 3493.0, - "url": "https://www.rightmove.co.uk/properties/162579347", - "info": { - "identifier": 162579347, - "sqm_ocr": 69.75, - "price": 3493.0, - "price_per_sqm": 50.07885304659498, - "url": "https://www.rightmove.co.uk/properties/162579347", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50701/162579347/50701_33917926_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.392873", - "last_seen": "2025-06-01T22:05:58.046569", - "price": 3492 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183854, - 51.496735 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.5, - "qmprice": 44.69, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162579389", - "info": { - "identifier": 162579389, - "sqm_ocr": 89.5, - "price": 4000.0, - "price_per_sqm": 44.6927374301676, - "url": "https://www.rightmove.co.uk/properties/162579389", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157376/162579389/157376_33917932_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.946046", - "last_seen": "2025-06-01T22:06:11.193505", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070212, - 51.528503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 41.36, - "qmprice": 72.53, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162579392", - "info": { - "identifier": 162579392, - "sqm_ocr": 41.36, - "price": 3000.0, - "price_per_sqm": 72.53384912959382, - "url": "https://www.rightmove.co.uk/properties/162579392", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157376/162579392/157376_33917933_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.008453", - "last_seen": "2025-06-01T22:05:47.764151", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084843, - 51.52997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.7, - "qmprice": 22.88, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162579395", - "info": { - "identifier": 162579395, - "sqm_ocr": 102.7, - "price": 2350.0, - "price_per_sqm": 22.88218111002921, - "url": "https://www.rightmove.co.uk/properties/162579395", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84836/162579395/84836_33899350_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.010323", - "last_seen": "2025-06-01T22:05:52.302614", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.388221, - 51.444927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162579419", - "info": { - "identifier": 162579419, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162579419", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162579419/96668_248844419052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.535325", - "last_seen": "2025-06-01T22:05:42.150294", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.156107, - 51.550716 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162579521", - "info": { - "identifier": 162579521, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162579521", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162579521/96668_249989429052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.997501", - "last_seen": "2025-06-01T22:05:50.510205", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.372597, - 51.57028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162579662", - "info": { - "identifier": 162579662, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162579662", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84803/162579662/84803_33917943_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.994522", - "last_seen": "2025-06-01T22:06:13.527406", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.236986, - 51.44773 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162579674", - "info": { - "identifier": 162579674, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162579674", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cranbrook Lettings & Sales", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/237k/236963/162579674/236963_cranbrook_691040182_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.019870", - "last_seen": "2025-06-01T22:06:04.014556", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0531, - 51.58174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162579767", - "info": { - "identifier": 162579767, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162579767", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50960/162579767/50960_P4234E3226_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.761054", - "last_seen": "2025-06-01T22:05:43.554035", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08465, - 51.33572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.7, - "qmprice": 27.89, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162579788", - "info": { - "identifier": 162579788, - "sqm_ocr": 71.7, - "price": 2000.0, - "price_per_sqm": 27.89400278940028, - "url": "https://www.rightmove.co.uk/properties/162579788", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105241/162579788/105241_P1976I4707_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.767717", - "last_seen": "2025-06-01T22:05:43.564611", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11266, - 51.37802 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 44.83, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162580124", - "info": { - "identifier": 162580124, - "sqm_ocr": 58.0, - "price": 2600.0, - "price_per_sqm": 44.827586206896555, - "url": "https://www.rightmove.co.uk/properties/162580124", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hotblack Desiato", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48488/162580124/48488_HIG190193_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.825284", - "last_seen": "2025-06-01T22:05:54.348221", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098788, - 51.5547 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 123.1, - "qmprice": 28.43, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162580148", - "info": { - "identifier": 162580148, - "sqm_ocr": 123.1, - "price": 3500.0, - "price_per_sqm": 28.432168968318443, - "url": "https://www.rightmove.co.uk/properties/162580148", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43829/162580148/43829_P301533_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.127371", - "last_seen": "2025-06-01T20:19:58.594635", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0749, - 51.52093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 38.3, - "qmprice": 54.75, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162580193", - "info": { - "identifier": 162580193, - "sqm_ocr": 38.3, - "price": 2097.0, - "price_per_sqm": 54.75195822454309, - "url": "https://www.rightmove.co.uk/properties/162580193", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/162580193/105856_3423_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.039838", - "last_seen": "2025-06-01T22:06:07.187385", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.087152, - 51.497223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.99, - "qmprice": 51.29, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162580226", - "info": { - "identifier": 162580226, - "sqm_ocr": 77.99, - "price": 4000.0, - "price_per_sqm": 51.28862674701885, - "url": "https://www.rightmove.co.uk/properties/162580226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "tlc Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18984/162580226/18984_ELL250046_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.147669", - "last_seen": "2025-06-01T22:05:49.122087", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22747, - 51.4942 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.8, - "qmprice": 36.05, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162580232", - "info": { - "identifier": 162580232, - "sqm_ocr": 63.8, - "price": 2300.0, - "price_per_sqm": 36.05015673981191, - "url": "https://www.rightmove.co.uk/properties/162580232", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106618/162580232/106618_KDB230083_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.592522", - "last_seen": "2025-06-01T22:05:59.866499", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121166, - 51.47311 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162580325", - "info": { - "identifier": 162580325, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162580325", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Malixons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38340/162580325/38340_5c0e3dc7-7162-4049-b0b7-20f698d9213d_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.310771", - "last_seen": "2025-06-01T22:05:59.205988", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132291, - 51.435577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.2, - "qmprice": 38.62, - "rooms": 4, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162580367", - "info": { - "identifier": 162580367, - "sqm_ocr": 89.2, - "price": 3445.0, - "price_per_sqm": 38.62107623318386, - "url": "https://www.rightmove.co.uk/properties/162580367", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Unihood", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289043/162580367/289043_30BarnwoodClose_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.715205", - "last_seen": "2025-06-01T22:06:14.614250", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18841, - 51.52283 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.1, - "qmprice": 34.51, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162580499", - "info": { - "identifier": 162580499, - "sqm_ocr": 68.1, - "price": 2350.0, - "price_per_sqm": 34.50807635829663, - "url": "https://www.rightmove.co.uk/properties/162580499", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156782/162580499/156782_KAE230029_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.464508", - "last_seen": "2025-06-01T22:06:13.044373", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.147644, - 51.47112 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.0, - "qmprice": 31.88, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162580580", - "info": { - "identifier": 162580580, - "sqm_ocr": 69.0, - "price": 2200.0, - "price_per_sqm": 31.884057971014492, - "url": "https://www.rightmove.co.uk/properties/162580580", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210116/162580580/210116_P301428_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "03/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.414301", - "last_seen": "2025-06-01T22:05:43.029769", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19375, - 51.55187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.0, - "qmprice": 63.82, - "rooms": 2, - "total_price": 3510.0, - "url": "https://www.rightmove.co.uk/properties/162580589", - "info": { - "identifier": 162580589, - "sqm_ocr": 55.0, - "price": 3510.0, - "price_per_sqm": 63.81818181818182, - "url": "https://www.rightmove.co.uk/properties/162580589", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Tavistock Bow", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/111k/110768/162580589/110768_101184000465_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.274937", - "last_seen": "2025-06-01T22:06:15.871477", - "price": 3510 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120769, - 51.51273 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.6, - "qmprice": 64.1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162580634", - "info": { - "identifier": 162580634, - "sqm_ocr": 54.6, - "price": 3500.0, - "price_per_sqm": 64.1025641025641, - "url": "https://www.rightmove.co.uk/properties/162580634", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238280/162580634/238280_L110184_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.452340", - "last_seen": "2025-06-01T22:05:59.691837", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12013, - 51.49199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162580901", - "info": { - "identifier": 162580901, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162580901", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Waterview", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/199k/198539/162580901/198539_33918016_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.488620", - "last_seen": "2025-06-01T22:06:09.384795", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01729, - 51.487194 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162580982", - "info": { - "identifier": 162580982, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162580982", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Wentworth Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76835/162580982/76835_WENT_001503_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.998212", - "last_seen": "2025-06-01T22:06:03.812779", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.036839, - 51.60827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 53.08, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162581096", - "info": { - "identifier": 162581096, - "sqm_ocr": 65.0, - "price": 3450.0, - "price_per_sqm": 53.07692307692308, - "url": "https://www.rightmove.co.uk/properties/162581096", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77514/162581096/77514_GER251001_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.688872", - "last_seen": "2025-06-01T22:06:14.342770", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13612, - 51.5185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162581135", - "info": { - "identifier": 162581135, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162581135", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CITY REALTOR LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/179k/178868/162581135/178868_33918028_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:56.293767", - "last_seen": "2025-06-01T22:06:09.316119", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.050258, - 51.528416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.6, - "qmprice": 29.8, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162581234", - "info": { - "identifier": 162581234, - "sqm_ocr": 90.6, - "price": 2700.0, - "price_per_sqm": 29.80132450331126, - "url": "https://www.rightmove.co.uk/properties/162581234", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212408/162581234/212408_P156180_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.157735", - "last_seen": "2025-06-01T22:06:07.699958", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00789, - 51.53051 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.4, - "qmprice": 45.81, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162581306", - "info": { - "identifier": 162581306, - "sqm_ocr": 76.4, - "price": 3500.0, - "price_per_sqm": 45.81151832460733, - "url": "https://www.rightmove.co.uk/properties/162581306", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41340/162581306/41340_06721254_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.022417", - "last_seen": "2025-06-01T22:06:15.529830", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174113, - 51.51323 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162581324", - "info": { - "identifier": 162581324, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162581324", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224522/162581324/224522_P193431_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.415026", - "last_seen": "2025-06-01T22:06:07.582492", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01156, - 51.54313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.54, - "qmprice": 43.61, - "rooms": 2, - "total_price": 3120.0, - "url": "https://www.rightmove.co.uk/properties/162581381", - "info": { - "identifier": 162581381, - "sqm_ocr": 71.54, - "price": 3120.0, - "price_per_sqm": 43.61196533407883, - "url": "https://www.rightmove.co.uk/properties/162581381", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/162581381/15957_1327495_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.248289", - "last_seen": "2025-06-01T22:05:42.813923", - "price": 3120.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16285, - 51.556744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.1, - "qmprice": 55.2, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162581585", - "info": { - "identifier": 162581585, - "sqm_ocr": 47.1, - "price": 2600.0, - "price_per_sqm": 55.20169851380042, - "url": "https://www.rightmove.co.uk/properties/162581585", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/162581585/15948_1327408_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.766921", - "last_seen": "2025-06-01T22:05:48.635630", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195004, - 51.478325 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.1, - "qmprice": 82.8, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162581603", - "info": { - "identifier": 162581603, - "sqm_ocr": 47.1, - "price": 3900.0, - "price_per_sqm": 82.80254777070063, - "url": "https://www.rightmove.co.uk/properties/162581603", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/162581603/15948_1328263_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.204050", - "last_seen": "2025-06-01T22:05:48.517776", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195004, - 51.478325 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.22, - "qmprice": 41.07, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162581627", - "info": { - "identifier": 162581627, - "sqm_ocr": 85.22, - "price": 3500.0, - "price_per_sqm": 41.07017132128608, - "url": "https://www.rightmove.co.uk/properties/162581627", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/162581627/15975_1328229_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.567052", - "last_seen": "2025-06-01T22:06:01.486414", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210405, - 51.42328 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 131.1, - "qmprice": 19.07, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162581876", - "info": { - "identifier": 162581876, - "sqm_ocr": 131.1, - "price": 2500.0, - "price_per_sqm": 19.06941266209001, - "url": "https://www.rightmove.co.uk/properties/162581876", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Robert Cooper & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15002/162581876/15002_RUI210113_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.950474", - "last_seen": "2025-06-01T22:05:50.704321", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.38916, - 51.5833 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.2, - "qmprice": 37.76, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162581933", - "info": { - "identifier": 162581933, - "sqm_ocr": 66.2, - "price": 2500.0, - "price_per_sqm": 37.764350453172206, - "url": "https://www.rightmove.co.uk/properties/162581933", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Folio London", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97670/162581933/97670_CFE210047_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.301709", - "last_seen": "2025-06-01T22:06:07.244887", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00178, - 51.5453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162582056", - "info": { - "identifier": 162582056, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162582056", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162582056/87187_72213_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.175052", - "last_seen": "2025-06-01T22:06:13.835306", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131571, - 51.479977 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162582080", - "info": { - "identifier": 162582080, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162582080", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hue Homes Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/110k/109994/162582080/109994_bramcote05_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.075561", - "last_seen": "2025-06-01T22:06:06.667425", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05704, - 51.48673 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.2, - "qmprice": 37.08, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/162582101", - "info": { - "identifier": 162582101, - "sqm_ocr": 67.2, - "price": 2492.0, - "price_per_sqm": 37.08333333333333, - "url": "https://www.rightmove.co.uk/properties/162582101", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209807/162582101/209807_CDL160357_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.720655", - "last_seen": "2025-06-01T22:06:08.554098", - "price": 2492.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006732, - 51.506657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162582335", - "info": { - "identifier": 162582335, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162582335", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Austin Chambers", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7034/162582335/7034_715_AUSC_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.157043", - "last_seen": "2025-06-01T22:05:39.690052", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.160707, - 51.62651 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162582716", - "info": { - "identifier": 162582716, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162582716", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55362/162582716/55362_33918115_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.114710", - "last_seen": "2025-06-01T22:06:15.011201", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179327, - 51.519276 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162582806", - "info": { - "identifier": 162582806, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162582806", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/162582806/82537_33918123_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.041041", - "last_seen": "2025-06-01T17:39:04.534379", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01714, - 51.48688 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.6, - "qmprice": 45.94, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162582821", - "info": { - "identifier": 162582821, - "sqm_ocr": 56.6, - "price": 2600.0, - "price_per_sqm": 45.936395759717314, - "url": "https://www.rightmove.co.uk/properties/162582821", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Peter Woods (London) Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18219/162582821/18219_FLM000525_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.937718", - "last_seen": "2025-06-01T22:05:49.464463", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2018, - 51.4733 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 36.79, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162582845", - "info": { - "identifier": 162582845, - "sqm_ocr": 57.0, - "price": 2097.0, - "price_per_sqm": 36.78947368421053, - "url": "https://www.rightmove.co.uk/properties/162582845", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39741/162582845/39741_33918130_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.866357", - "last_seen": "2025-06-01T22:06:16.075548", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197675, - 51.527985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.5, - "qmprice": 37.74, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162583100", - "info": { - "identifier": 162583100, - "sqm_ocr": 79.5, - "price": 3000.0, - "price_per_sqm": 37.735849056603776, - "url": "https://www.rightmove.co.uk/properties/162583100", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Thirzie Hull", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250190/162583100/250190_Textile_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.303293", - "last_seen": "2025-06-01T22:05:47.747461", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05121, - 51.54581 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 32.97, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162583262", - "info": { - "identifier": 162583262, - "sqm_ocr": 91.0, - "price": 3000.0, - "price_per_sqm": 32.967032967032964, - "url": "https://www.rightmove.co.uk/properties/162583262", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77505/162583262/77505_HCL250004_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.745872", - "last_seen": "2025-06-01T22:06:11.597161", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020034, - 51.58429 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 29.73, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162583361", - "info": { - "identifier": 162583361, - "sqm_ocr": 74.0, - "price": 2200.0, - "price_per_sqm": 29.72972972972973, - "url": "https://www.rightmove.co.uk/properties/162583361", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "SECOMBE Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272036/162583361/272036_33918169_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.869875", - "last_seen": "2025-06-01T22:06:00.631213", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016299, - 51.425495 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162583379", - "info": { - "identifier": 162583379, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162583379", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "AbbeySpring", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285695/162583379/285695_RL0525_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.995663", - "last_seen": "2025-06-01T22:05:57.771458", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171273, - 51.49188 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 37.31, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162583490", - "info": { - "identifier": 162583490, - "sqm_ocr": 67.0, - "price": 2500.0, - "price_per_sqm": 37.3134328358209, - "url": "https://www.rightmove.co.uk/properties/162583490", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77490/162583490/77490_GER252858_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.437025", - "last_seen": "2025-06-01T22:05:47.877608", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05012, - 51.565113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.6, - "qmprice": 31.53, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162583661", - "info": { - "identifier": 162583661, - "sqm_ocr": 66.6, - "price": 2100.0, - "price_per_sqm": 31.531531531531535, - "url": "https://www.rightmove.co.uk/properties/162583661", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/208k/207812/162583661/207812_BHL100192_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.027902", - "last_seen": "2025-06-01T22:05:59.360298", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12661, - 51.44632 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 31.08, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162583766", - "info": { - "identifier": 162583766, - "sqm_ocr": 74.0, - "price": 2300.0, - "price_per_sqm": 31.08108108108108, - "url": "https://www.rightmove.co.uk/properties/162583766", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "David Daniels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76481/162583766/76481_Varley-t-4776_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.104868", - "last_seen": "2025-06-01T22:06:02.069852", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.029114, - 51.513756 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.8, - "qmprice": 49.39, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162583817", - "info": { - "identifier": 162583817, - "sqm_ocr": 70.8, - "price": 3497.0, - "price_per_sqm": 49.39265536723164, - "url": "https://www.rightmove.co.uk/properties/162583817", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Wapping", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32766/162583817/32766_000005135b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:57.275758", - "last_seen": "2025-06-01T22:06:09.360493", - "price": 3497.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07281, - 51.51595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.0, - "qmprice": 29.01, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162583877", - "info": { - "identifier": 162583877, - "sqm_ocr": 86.0, - "price": 2495.0, - "price_per_sqm": 29.011627906976745, - "url": "https://www.rightmove.co.uk/properties/162583877", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84836/162583877/84836_33918195_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.268177", - "last_seen": "2025-06-01T22:05:51.958048", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.393849, - 51.444206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162583880", - "info": { - "identifier": 162583880, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162583880", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212357/162583880/212357_P160846_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.076110", - "last_seen": "2025-06-01T22:06:00.499272", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02415, - 51.47135 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162583943", - "info": { - "identifier": 162583943, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162583943", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117466/162583943/117466_CLI156503_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.523219", - "last_seen": "2025-06-01T22:06:14.089852", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183892, - 51.46432 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.7, - "qmprice": 36.59, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162584096", - "info": { - "identifier": 162584096, - "sqm_ocr": 97.7, - "price": 3575.0, - "price_per_sqm": 36.59160696008188, - "url": "https://www.rightmove.co.uk/properties/162584096", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43739/162584096/43739_P301539_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.132421", - "last_seen": "2025-06-01T22:06:14.584006", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17919, - 51.51918 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.7, - "qmprice": 38.64, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162584123", - "info": { - "identifier": 162584123, - "sqm_ocr": 64.7, - "price": 2500.0, - "price_per_sqm": 38.63987635239567, - "url": "https://www.rightmove.co.uk/properties/162584123", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98363/162584123/98363_P301265_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.125879", - "last_seen": "2025-06-01T22:06:14.066504", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15397, - 51.44172 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 33.58, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162584300", - "info": { - "identifier": 162584300, - "sqm_ocr": 67.0, - "price": 2250.0, - "price_per_sqm": 33.582089552238806, - "url": "https://www.rightmove.co.uk/properties/162584300", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156782/162584300/156782_KAE220097_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.056492", - "last_seen": "2025-06-01T22:06:12.606250", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146577, - 51.472225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/162584345", - "info": { - "identifier": 162584345, - "sqm_ocr": null, - "price": 3650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162584345", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162584345/96668_248452815052025_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.888051", - "last_seen": "2025-06-01T22:05:47.291465", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068474, - 51.54013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162584543", - "info": { - "identifier": 162584543, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162584543", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "COZEE", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262232/162584543/262232_bf878121-1ab1-4119-a166-33c686a9fb01_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.00565, - 51.51564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162584546", - "info": { - "identifier": 162584546, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162584546", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Huttons & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257087/162584546/257087_HLO-9364643_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.021768, - 51.50045 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162584558", - "info": { - "identifier": 162584558, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162584558", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162584558/96668_249733927052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.126389", - "last_seen": "2025-06-01T22:06:10.126389", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009769, - 51.506626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162584615", - "info": { - "identifier": 162584615, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162584615", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162584615/96668_249994029052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.053514", - "last_seen": "2025-06-01T22:05:43.201352", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131578, - 51.547516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162584618", - "info": { - "identifier": 162584618, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162584618", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41340/162584618/41340_06724593_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.891592", - "last_seen": "2025-06-01T22:06:16.099160", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192856, - 51.511383 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162584729", - "info": { - "identifier": 162584729, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162584729", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Urban Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41919/162584729/41919_32491657_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.194782", - "last_seen": "2025-06-01T22:06:13.799729", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.174287, - 51.4704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3425.0, - "url": "https://www.rightmove.co.uk/properties/162584753", - "info": { - "identifier": 162584753, - "sqm_ocr": null, - "price": 3425.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162584753", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "A2Dominion Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101431/162584753/101431_65_7_Ex_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.072135", - "last_seen": "2025-06-01T22:05:59.938505", - "price": 3425.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12579, - 51.48219 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.5, - "qmprice": 41.72, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162584801", - "info": { - "identifier": 162584801, - "sqm_ocr": 75.5, - "price": 3150.0, - "price_per_sqm": 41.72185430463576, - "url": "https://www.rightmove.co.uk/properties/162584801", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Complete Prime Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53946/162584801/53946_966_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.452217", - "last_seen": "2025-06-01T22:05:42.026434", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170854, - 51.546185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162584948", - "info": { - "identifier": 162584948, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162584948", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167687/162584948/167687_2707200_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.513730", - "last_seen": "2025-06-01T22:05:38.865747", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24387, - 51.58126 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.0, - "qmprice": 28.57, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162584993", - "info": { - "identifier": 162584993, - "sqm_ocr": 77.0, - "price": 2200.0, - "price_per_sqm": 28.571428571428573, - "url": "https://www.rightmove.co.uk/properties/162584993", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Madison Brook", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83178/162584993/83178_33918241_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.670772", - "last_seen": "2025-06-01T22:06:04.441789", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.349462, - 51.44358 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162585020", - "info": { - "identifier": 162585020, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162585020", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kings Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/29k/28985/162585020/28985_33812123_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.445237", - "last_seen": "2025-06-01T22:06:11.584322", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020034, - 51.58429 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162585098", - "info": { - "identifier": 162585098, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162585098", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247697/162585098/247697_102708025803_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.759685", - "last_seen": "2025-06-01T22:05:56.877826", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10044, - 51.53762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/162585209", - "info": { - "identifier": 162585209, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162585209", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167687/162585209/167687_2706052_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.142336", - "last_seen": "2025-06-01T22:05:39.645034", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24387, - 51.58126 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162585215", - "info": { - "identifier": 162585215, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162585215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Pedder", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21470/162585215/21470_33918259_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.118365", - "last_seen": "2025-06-01T22:06:00.893142", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.036437, - 51.442993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162586214", - "info": { - "identifier": 162586214, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162586214", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/162586214/80340_a1G4J0000025zcpUAA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.036418", - "last_seen": "2025-06-01T22:05:47.564173", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05465, - 51.53957 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3495.0, - "url": "https://www.rightmove.co.uk/properties/162586394", - "info": { - "identifier": 162586394, - "sqm_ocr": null, - "price": 3495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162586394", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Rosewood Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63096/162586394/63096_Heath33_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.074982", - "last_seen": "2025-06-01T22:06:13.990682", - "price": 3495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21629, - 51.45448 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162586472", - "info": { - "identifier": 162586472, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162586472", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "D", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.539485", - "last_seen": "2025-06-01T22:05:44.641377", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.366837, - 51.5263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/162586511", - "info": { - "identifier": 162586511, - "sqm_ocr": null, - "price": 2595.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162586511", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84803/162586511/84803_33877357_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.160163", - "last_seen": "2025-06-01T22:06:13.851094", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.235651, - 51.464214 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.39, - "qmprice": 38.92, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/162586559", - "info": { - "identifier": 162586559, - "sqm_ocr": 77.39, - "price": 3012.0, - "price_per_sqm": 38.91975707455744, - "url": "https://www.rightmove.co.uk/properties/162586559", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Onslows Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49389/162586559/49389_ONS1780378_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.023569", - "last_seen": "2025-06-01T22:05:57.681740", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20152, - 51.49381 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 51.7, - "rooms": 3, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/162586901", - "info": { - "identifier": 162586901, - "sqm_ocr": 57.0, - "price": 2947.0, - "price_per_sqm": 51.70175438596491, - "url": "https://www.rightmove.co.uk/properties/162586901", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/162586901/80796_435_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.523255", - "last_seen": "2025-06-01T22:05:59.779705", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11354, - 51.46149 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162586928", - "info": { - "identifier": 162586928, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162586928", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kurtis Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34830/162586928/34830_33918351_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.981834", - "last_seen": "2025-06-01T22:06:04.009092", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.111682, - 51.55743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162586976", - "info": { - "identifier": 162586976, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162586976", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Equity Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35516/162586976/35516_EEL250064_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.054904", - "last_seen": "2025-06-01T22:05:45.835751", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.080062, - 51.66444 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2190.0, - "url": "https://www.rightmove.co.uk/properties/162587120", - "info": { - "identifier": 162587120, - "sqm_ocr": null, - "price": 2190.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162587120", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hilton & Fox", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237869/162587120/237869_hilton_1565226734_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.014321", - "last_seen": "2025-06-01T22:05:40.994189", - "price": 2190.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.316772, - 51.5538 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.61, - "qmprice": 41.15, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/162587243", - "info": { - "identifier": 162587243, - "sqm_ocr": 71.61, - "price": 2947.0, - "price_per_sqm": 41.15347018572825, - "url": "https://www.rightmove.co.uk/properties/162587243", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Garton Jones", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108373/162587243/108373_33918377_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.960261", - "last_seen": "2025-06-01T22:05:59.255939", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121323, - 51.49214 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162587288", - "info": { - "identifier": 162587288, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162587288", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162587288/191744_RL5015_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.134421", - "last_seen": "2025-06-01T22:05:46.164435", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.030279, - 51.4581 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 34.48, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162587486", - "info": { - "identifier": 162587486, - "sqm_ocr": 58.0, - "price": 2000.0, - "price_per_sqm": 34.48275862068966, - "url": "https://www.rightmove.co.uk/properties/162587486", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Paramount", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62636/162587486/62636_PAR160175_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.797905", - "last_seen": "2025-06-01T22:05:44.915296", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.278394, - 51.50745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.2, - "qmprice": 28.05, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162587507", - "info": { - "identifier": 162587507, - "sqm_ocr": 121.2, - "price": 3400.0, - "price_per_sqm": 28.05280528052805, - "url": "https://www.rightmove.co.uk/properties/162587507", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Coopers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50181/162587507/50181_33918400_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.549833", - "last_seen": "2025-06-01T22:05:51.680789", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.432494, - 51.584667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/162587597", - "info": { - "identifier": 162587597, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162587597", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Japan Letting Agency", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258848/162587597/258848_33918407_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.499531", - "last_seen": "2025-06-01T22:05:44.594059", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265966, - 51.519344 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3282.0, - "url": "https://www.rightmove.co.uk/properties/162587657", - "info": { - "identifier": 162587657, - "sqm_ocr": null, - "price": 3282.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162587657", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162587657/156986_CGF30019_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.513321", - "last_seen": "2025-06-01T22:05:41.130916", - "price": 3282.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27641, - 51.55856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2919.0, - "url": "https://www.rightmove.co.uk/properties/162587723", - "info": { - "identifier": 162587723, - "sqm_ocr": null, - "price": 2919.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162587723", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162587723/156986_FQE30019_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.307682", - "last_seen": "2025-06-01T22:05:40.210066", - "price": 2919.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2841, - 51.55512 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.1, - "qmprice": 46.97, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162587768", - "info": { - "identifier": 162587768, - "sqm_ocr": 51.1, - "price": 2400.0, - "price_per_sqm": 46.96673189823875, - "url": "https://www.rightmove.co.uk/properties/162587768", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78410/162587768/78410_33918418_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.466277", - "last_seen": "2025-06-01T22:06:12.296560", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163234, - 51.46576 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.9, - "qmprice": 28.45, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162587774", - "info": { - "identifier": 162587774, - "sqm_ocr": 94.9, - "price": 2700.0, - "price_per_sqm": 28.45100105374078, - "url": "https://www.rightmove.co.uk/properties/162587774", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/249k/248528/162587774/248528_33918419_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.118539", - "last_seen": "2025-06-01T22:05:57.315180", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.305533, - 51.48519 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.7, - "qmprice": 44.96, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162587777", - "info": { - "identifier": 162587777, - "sqm_ocr": 66.7, - "price": 2999.0, - "price_per_sqm": 44.96251874062968, - "url": "https://www.rightmove.co.uk/properties/162587777", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84788/162587777/84788_33900408_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.323385", - "last_seen": "2025-06-01T22:05:57.307241", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26512, - 51.501015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.82, - "qmprice": 50.86, - "rooms": 2, - "total_price": 3449.0, - "url": "https://www.rightmove.co.uk/properties/162587801", - "info": { - "identifier": 162587801, - "sqm_ocr": 67.82, - "price": 3449.0, - "price_per_sqm": 50.85520495429078, - "url": "https://www.rightmove.co.uk/properties/162587801", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "LDG", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50021/162587801/50021_LDG250066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.438824", - "last_seen": "2025-06-01T22:06:15.215557", - "price": 3449 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135547, - 51.51743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/162587957", - "info": { - "identifier": 162587957, - "sqm_ocr": null, - "price": 3748.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162587957", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Nelsons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230450/162587957/230450_12aurora_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.00639, - 51.5054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162588068", - "info": { - "identifier": 162588068, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162588068", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "NEXIS Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272531/162588068/272531_MYR250080_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.330289", - "last_seen": "2025-06-01T22:05:46.398591", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.066535, - 51.49454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162588122", - "info": { - "identifier": 162588122, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162588122", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "RiverHomes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11121/162588122/11121_33918447_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.306008", - "last_seen": "2025-06-01T22:05:49.362215", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183289, - 51.46983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.71, - "qmprice": 29.27, - "rooms": 4, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162588239", - "info": { - "identifier": 162588239, - "sqm_ocr": 83.71, - "price": 2450.0, - "price_per_sqm": 29.267709951021384, - "url": "https://www.rightmove.co.uk/properties/162588239", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66783/162588239/66783_P4613H3011_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.500642", - "last_seen": "2025-06-01T22:06:01.481485", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19588, - 51.40316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162588266", - "info": { - "identifier": 162588266, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162588266", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162588266/96668_249135221052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.777585", - "last_seen": "2025-06-01T22:05:58.745221", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.244375, - 51.38663 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2395.0, - "url": "https://www.rightmove.co.uk/properties/162588392", - "info": { - "identifier": 162588392, - "sqm_ocr": null, - "price": 2395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162588392", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29165/162588392/29165_BRN200537_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.188151", - "last_seen": "2025-06-01T22:05:38.653302", - "price": 2395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18901, - 51.649017 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.86, - "qmprice": 26.26, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162588470", - "info": { - "identifier": 162588470, - "sqm_ocr": 81.86, - "price": 2150.0, - "price_per_sqm": 26.264353774737355, - "url": "https://www.rightmove.co.uk/properties/162588470", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63509/162588470/63509_P4277G0201_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.316858", - "last_seen": "2025-06-01T22:06:13.280750", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16272, - 51.43412 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.49, - "qmprice": 47.77, - "rooms": 2, - "total_price": 3367.0, - "url": "https://www.rightmove.co.uk/properties/162588608", - "info": { - "identifier": 162588608, - "sqm_ocr": 70.49, - "price": 3367.0, - "price_per_sqm": 47.765640516385304, - "url": "https://www.rightmove.co.uk/properties/162588608", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50969/162588608/50969_P1777B3815_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.825297", - "last_seen": "2025-06-01T22:06:16.031929", - "price": 3367 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12868, - 51.51002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2125.0, - "url": "https://www.rightmove.co.uk/properties/162588614", - "info": { - "identifier": 162588614, - "sqm_ocr": null, - "price": 2125.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162588614", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/162588614/54730_WLL250242_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.391982", - "last_seen": "2025-06-01T22:05:45.241123", - "price": 2125.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375651, - 51.504913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.32, - "qmprice": 64.62, - "rooms": 2, - "total_price": 3510.0, - "url": "https://www.rightmove.co.uk/properties/162588680", - "info": { - "identifier": 162588680, - "sqm_ocr": 54.32, - "price": 3510.0, - "price_per_sqm": 64.61708394698086, - "url": "https://www.rightmove.co.uk/properties/162588680", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80905/162588680/80905_WES140831_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.898180", - "last_seen": "2025-06-01T22:06:16.102948", - "price": 3510 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12075, - 51.512646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.0, - "qmprice": 37.12, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162588746", - "info": { - "identifier": 162588746, - "sqm_ocr": 66.0, - "price": 2450.0, - "price_per_sqm": 37.121212121212125, - "url": "https://www.rightmove.co.uk/properties/162588746", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "SECOMBE Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272036/162588746/272036_33895596_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.127515", - "last_seen": "2025-06-01T22:05:59.874484", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10638, - 51.43066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.3, - "qmprice": 42.78, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162588827", - "info": { - "identifier": 162588827, - "sqm_ocr": 78.3, - "price": 3350.0, - "price_per_sqm": 42.784163473818644, - "url": "https://www.rightmove.co.uk/properties/162588827", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "ML Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45180/162588827/45180_MICLE_002880_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.328811", - "last_seen": "2025-06-01T22:06:14.713611", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181287, - 51.535183 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.67, - "qmprice": 31.38, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162588938", - "info": { - "identifier": 162588938, - "sqm_ocr": 79.67, - "price": 2500.0, - "price_per_sqm": 31.379440190786994, - "url": "https://www.rightmove.co.uk/properties/162588938", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Radstock Property", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224099/162588938/224099_BAP240030_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.102692", - "last_seen": "2025-06-01T22:05:57.802529", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185564, - 51.487286 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162588965", - "info": { - "identifier": 162588965, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162588965", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22344/162588965/22344_CSG250233_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.456106", - "last_seen": "2025-06-01T22:06:15.217702", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200306, - 51.518913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.7, - "qmprice": 48.5, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162589307", - "info": { - "identifier": 162589307, - "sqm_ocr": 56.7, - "price": 2750.0, - "price_per_sqm": 48.500881834215164, - "url": "https://www.rightmove.co.uk/properties/162589307", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/162589307/77511_SXX090338_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.292379", - "last_seen": "2025-06-01T22:06:10.163067", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076052, - 51.516563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162589562", - "info": { - "identifier": 162589562, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162589562", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162589562/257522_0039-grace-RUwfzt_IMG_00_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.718163", - "last_seen": "2025-06-01T22:05:56.274975", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2795, - 51.54246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 31.25, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162589628", - "info": { - "identifier": 162589628, - "sqm_ocr": 88.0, - "price": 2750.0, - "price_per_sqm": 31.25, - "url": "https://www.rightmove.co.uk/properties/162589628", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210116/162589628/210116_P301508_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.360035", - "last_seen": "2025-06-01T22:05:42.296568", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18532, - 51.54634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.4, - "qmprice": 24.27, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162589652", - "info": { - "identifier": 162589652, - "sqm_ocr": 82.4, - "price": 2000.0, - "price_per_sqm": 24.271844660194173, - "url": "https://www.rightmove.co.uk/properties/162589652", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Brooks Estate Agents", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49201/162589652/49201_STR220081_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.427269", - "last_seen": "2025-06-01T22:05:59.392866", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131826, - 51.417637 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.7, - "qmprice": 40.23, - "rooms": 3, - "total_price": 3770.0, - "url": "https://www.rightmove.co.uk/properties/162589850", - "info": { - "identifier": 162589850, - "sqm_ocr": 93.7, - "price": 3770.0, - "price_per_sqm": 40.23479188900747, - "url": "https://www.rightmove.co.uk/properties/162589850", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/162589850/76585_1328300_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.074718", - "last_seen": "2025-06-01T22:06:15.588016", - "price": 3770.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166745, - 51.523457 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162589883", - "info": { - "identifier": 162589883, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162589883", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "MoveHome", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78299/162589883/78299_Pen9_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.018502", - "last_seen": "2025-06-01T22:05:53.882935", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11573, - 51.53059 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162589922", - "info": { - "identifier": 162589922, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162589922", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Alex Crown Lettings & Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102122/162589922/102122_8370_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.468038", - "last_seen": "2025-06-01T22:05:53.162349", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11149, - 51.55282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 127.8, - "qmprice": 28.17, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162589943", - "info": { - "identifier": 162589943, - "sqm_ocr": 127.8, - "price": 3600.0, - "price_per_sqm": 28.169014084507044, - "url": "https://www.rightmove.co.uk/properties/162589943", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212357/162589943/212357_P161219_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.151892", - "last_seen": "2025-06-01T22:05:46.201744", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01256, - 51.47619 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.08, - "qmprice": 59.45, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162590027", - "info": { - "identifier": 162590027, - "sqm_ocr": 63.08, - "price": 3750.0, - "price_per_sqm": 59.448319594166136, - "url": "https://www.rightmove.co.uk/properties/162590027", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162590027/26207_IUL240259_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.465023", - "last_seen": "2025-06-01T22:05:53.404686", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114567, - 51.539173 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 43.86, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162590030", - "info": { - "identifier": 162590030, - "sqm_ocr": 57.0, - "price": 2500.0, - "price_per_sqm": 43.85964912280702, - "url": "https://www.rightmove.co.uk/properties/162590030", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44645/162590030/44645_FWL200117_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.527657", - "last_seen": "2025-06-01T22:05:48.535067", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20386, - 51.475338 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 30.49, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162590141", - "info": { - "identifier": 162590141, - "sqm_ocr": 82.0, - "price": 2500.0, - "price_per_sqm": 30.48780487804878, - "url": "https://www.rightmove.co.uk/properties/162590141", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Gibson Lane", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22316/162590141/22316_33918592_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.082121", - "last_seen": "2025-06-01T22:06:14.003837", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.241264, - 51.44756 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162590198", - "info": { - "identifier": 162590198, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162590198", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82086/162590198/82086_1328247_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.601177", - "last_seen": "2025-06-01T22:05:39.764311", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247562, - 51.59603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.19, - "qmprice": 33.79, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162590216", - "info": { - "identifier": 162590216, - "sqm_ocr": 59.19, - "price": 2000.0, - "price_per_sqm": 33.78949146815341, - "url": "https://www.rightmove.co.uk/properties/162590216", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/162590216/15969_1328169_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.531467", - "last_seen": "2025-06-01T22:05:44.639175", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37554, - 51.499336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/162590285", - "info": { - "identifier": 162590285, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162590285", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/162590285/191255_33918605_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.563036", - "last_seen": "2025-06-01T22:06:10.763055", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038781, - 51.51208 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162590288", - "info": { - "identifier": 162590288, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162590288", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191255/162590288/191255_32565795_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.564697", - "last_seen": "2025-06-01T22:06:10.774723", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.054676, - 51.505096 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162590393", - "info": { - "identifier": 162590393, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162590393", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/162590393/84889_1327000_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.323008", - "last_seen": "2025-06-01T22:06:14.859231", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14526, - 51.492718 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162590621", - "info": { - "identifier": 162590621, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162590621", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "CHARLES WILLIAM PROPERTY INVESTMENT", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252278/162590621/252278_RL0535_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.145235", - "last_seen": "2025-06-01T22:05:47.947228", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089342, - 51.5717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3542.0, - "url": "https://www.rightmove.co.uk/properties/162590648", - "info": { - "identifier": 162590648, - "sqm_ocr": null, - "price": 3542.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162590648", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dolphin Square", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58030/162590648/58030_BEA612_V4_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.859899", - "last_seen": "2025-06-01T22:06:16.071395", - "price": 3542.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13607, - 51.48549 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.5, - "qmprice": 25.6, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162590651", - "info": { - "identifier": 162590651, - "sqm_ocr": 103.5, - "price": 2650.0, - "price_per_sqm": 25.603864734299517, - "url": "https://www.rightmove.co.uk/properties/162590651", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58000/162590651/58000_KCJ250161_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.452375", - "last_seen": "2025-06-01T22:06:01.786959", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.201902, - 51.43027 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162590699", - "info": { - "identifier": 162590699, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162590699", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Squires Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87277/162590699/87277_33918638_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.693872", - "last_seen": "2025-06-01T22:05:39.873210", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212872, - 51.587685 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.38, - "qmprice": 57.31, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162590795", - "info": { - "identifier": 162590795, - "sqm_ocr": 62.38, - "price": 3575.0, - "price_per_sqm": 57.31003526771401, - "url": "https://www.rightmove.co.uk/properties/162590795", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139751/162590795/139751_ECL230075_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.068322", - "last_seen": "2025-06-01T22:05:58.187744", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196266, - 51.49152 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162590858", - "info": { - "identifier": 162590858, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162590858", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34082/162590858/34082_KBS171491_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.342472", - "last_seen": "2025-06-01T22:05:40.239320", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283388, - 51.56104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162590918", - "info": { - "identifier": 162590918, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162590918", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84797/162590918/84797_33918656_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.035845", - "last_seen": "2025-06-01T22:05:52.140828", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.393849, - 51.444206 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/162590927", - "info": { - "identifier": 162590927, - "sqm_ocr": null, - "price": 2197.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162590927", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146498/162590927/146498_33918658_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.432570", - "last_seen": "2025-06-01T22:06:05.839025", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099188, - 51.476795 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 134.0, - "qmprice": 29.1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162591038", - "info": { - "identifier": 162591038, - "sqm_ocr": 134.0, - "price": 3900.0, - "price_per_sqm": 29.104477611940297, - "url": "https://www.rightmove.co.uk/properties/162591038", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162591038/26207_IUL180127_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.421015", - "last_seen": "2025-06-01T22:05:53.111071", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099235, - 51.538208 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.08, - "qmprice": 51.52, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162591047", - "info": { - "identifier": 162591047, - "sqm_ocr": 63.08, - "price": 3250.0, - "price_per_sqm": 51.52187698161065, - "url": "https://www.rightmove.co.uk/properties/162591047", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/162591047/26207_HEA227460_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.414612", - "last_seen": "2025-06-01T22:05:53.100159", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114567, - 51.539173 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2284.0, - "url": "https://www.rightmove.co.uk/properties/162591272", - "info": { - "identifier": 162591272, - "sqm_ocr": null, - "price": 2284.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162591272", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22275/162591272/22275_BKG160226_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.287738", - "last_seen": "2025-06-01T22:05:49.349538", - "price": 2283 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211261, - 51.488605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3545.0, - "url": "https://www.rightmove.co.uk/properties/162591590", - "info": { - "identifier": 162591590, - "sqm_ocr": null, - "price": 3545.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162591590", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162591590/96668_245846122042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.846449", - "last_seen": "2025-06-01T22:05:55.600355", - "price": 3545.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129681, - 51.54809 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162591680", - "info": { - "identifier": 162591680, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162591680", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162591680/96668_247468506052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:56.483889", - "last_seen": "2025-06-01T22:06:09.021127", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07451, - 51.529198 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162591707", - "info": { - "identifier": 162591707, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162591707", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162591707/96668_248060812052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.223991", - "last_seen": "2025-06-01T22:05:41.271674", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.263706, - 51.56671 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.72, - "qmprice": 42.42, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162591728", - "info": { - "identifier": 162591728, - "sqm_ocr": 70.72, - "price": 3000.0, - "price_per_sqm": 42.42081447963801, - "url": "https://www.rightmove.co.uk/properties/162591728", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139424/162591728/139424_100783009293_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.123145", - "last_seen": "2025-06-01T22:06:14.064520", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18325, - 51.4643 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162591800", - "info": { - "identifier": 162591800, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162591800", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162591800/96668_249697627052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.266362", - "last_seen": "2025-06-01T22:05:47.706544", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094175, - 51.57335 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 125.32, - "qmprice": 22.33, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/162591806", - "info": { - "identifier": 162591806, - "sqm_ocr": 125.32, - "price": 2799.0, - "price_per_sqm": 22.334822853495055, - "url": "https://www.rightmove.co.uk/properties/162591806", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/162591806/136148_2714176_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.504360", - "last_seen": "2025-06-01T22:06:01.521487", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23573, - 51.40233 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3380.0, - "url": "https://www.rightmove.co.uk/properties/162592085", - "info": { - "identifier": 162592085, - "sqm_ocr": null, - "price": 3380.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162592085", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71134/162592085/71134_33918750_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.526477", - "last_seen": "2025-06-01T22:05:43.292028", - "price": 3380 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092992, - 51.518867 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162592196", - "info": { - "identifier": 162592196, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162592196", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "NEXIS Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272531/162592196/272531_MYR250081_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.864621", - "last_seen": "2025-06-01T22:05:47.267013", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092298, - 51.57106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.54, - "qmprice": 42.49, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162592256", - "info": { - "identifier": 162592256, - "sqm_ocr": 63.54, - "price": 2700.0, - "price_per_sqm": 42.492917847025495, - "url": "https://www.rightmove.co.uk/properties/162592256", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ashley King", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71212/162592256/71212_L15723_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.563577", - "last_seen": "2025-06-01T22:06:09.841658", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020176, - 51.498184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 38.24, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162592538", - "info": { - "identifier": 162592538, - "sqm_ocr": 68.0, - "price": 2600.0, - "price_per_sqm": 38.23529411764706, - "url": "https://www.rightmove.co.uk/properties/162592538", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77508/162592538/77508_LBL220069_L_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.874208", - "last_seen": "2025-06-01T22:06:00.821093", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037155, - 51.491356 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 133.2, - "qmprice": 29.28, - "rooms": 4, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162592631", - "info": { - "identifier": 162592631, - "sqm_ocr": 133.2, - "price": 3900.0, - "price_per_sqm": 29.279279279279283, - "url": "https://www.rightmove.co.uk/properties/162592631", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143039/162592631/143039_CEI242771_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.406475", - "last_seen": "2025-06-01T22:06:00.422502", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035153, - 51.4877 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162592748", - "info": { - "identifier": 162592748, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162592748", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62634/162592748/62634_33918791_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.396897", - "last_seen": "2025-06-01T22:06:01.271788", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175609, - 51.42244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162592844", - "info": { - "identifier": 162592844, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162592844", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Steed Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/286k/285482/162592844/285482_R172894_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.047409", - "last_seen": "2025-06-01T22:06:04.093882", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.08895, - 51.562096 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.2, - "qmprice": 26.27, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162592895", - "info": { - "identifier": 162592895, - "sqm_ocr": 114.2, - "price": 3000.0, - "price_per_sqm": 26.26970227670753, - "url": "https://www.rightmove.co.uk/properties/162592895", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/162592895/264404_RX581893_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.683735", - "last_seen": "2025-06-01T22:06:06.930700", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.053566, - 51.48379 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2895.0, - "url": "https://www.rightmove.co.uk/properties/162592940", - "info": { - "identifier": 162592940, - "sqm_ocr": null, - "price": 2895.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162592940", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Henry Wiltshire", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256595/162592940/256595_24224_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.606930", - "last_seen": "2025-06-01T22:05:51.405921", - "price": 2895.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.437807, - 51.500374 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162592982", - "info": { - "identifier": 162592982, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162592982", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/162592982/54730_WLL250246_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.586801", - "last_seen": "2025-06-01T22:05:44.759228", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375651, - 51.504913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 138.33, - "qmprice": 28.92, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162593024", - "info": { - "identifier": 162593024, - "sqm_ocr": 138.33, - "price": 4000.0, - "price_per_sqm": 28.91635943034772, - "url": "https://www.rightmove.co.uk/properties/162593024", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Rochford Stokes", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95104/162593024/95104_RCH_BTT_LFSYCL_654_848421726_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.058380", - "last_seen": "2025-06-01T22:06:13.974908", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153654, - 51.46254 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162593108", - "info": { - "identifier": 162593108, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162593108", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Citiland Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282164/162593108/282164_F202LSHE1_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.413691", - "last_seen": "2025-06-01T22:06:10.407361", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04018, - 51.51721 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.75, - "qmprice": 30.24, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162593291", - "info": { - "identifier": 162593291, - "sqm_ocr": 72.75, - "price": 2200.0, - "price_per_sqm": 30.240549828178693, - "url": "https://www.rightmove.co.uk/properties/162593291", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/162593291/48994_CNL200060_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.164811", - "last_seen": "2025-06-01T22:05:46.219893", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.030783, - 51.45725 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162593297", - "info": { - "identifier": 162593297, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162593297", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hemmingfords", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201083/162593297/201083_33918836_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.321088", - "last_seen": "2025-06-01T22:06:14.852843", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169997, - 51.53309 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162593429", - "info": { - "identifier": 162593429, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162593429", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/162593429/54730_WLL250247_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.658500", - "last_seen": "2025-06-01T22:05:44.187281", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375804, - 51.505135 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162593546", - "info": { - "identifier": 162593546, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162593546", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/162593546/176261_102708000026_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.833518", - "last_seen": "2025-06-01T22:05:54.369614", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11997, - 51.56411 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162593735", - "info": { - "identifier": 162593735, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162593735", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Davis & Gibbs Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213929/162593735/213929_20151946_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.290196", - "last_seen": "2025-06-01T22:05:59.196435", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.113587, - 51.476807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.77, - "qmprice": 39.27, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162594119", - "info": { - "identifier": 162594119, - "sqm_ocr": 82.77, - "price": 3250.0, - "price_per_sqm": 39.26543433611212, - "url": "https://www.rightmove.co.uk/properties/162594119", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240920/162594119/240920_WID240107_L_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.582523", - "last_seen": "2025-06-01T22:06:01.552432", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203942, - 51.41803 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162594263", - "info": { - "identifier": 162594263, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162594263", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162594263/257522_0041-grace-RUwfzt_IMG_02_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.950372", - "last_seen": "2025-06-01T22:05:40.835952", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2795, - 51.54246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162594323", - "info": { - "identifier": 162594323, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162594323", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96278/162594323/96278_BRL240003_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.684479", - "last_seen": "2025-06-01T22:05:49.281947", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209166, - 51.48877 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162594368", - "info": { - "identifier": 162594368, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162594368", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/162594368/257522_0042-grace-RUwfzt_IMG_04_0000_max_656x437.png", - "let_date_available": "14/11/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.468631", - "last_seen": "2025-06-01T22:05:40.437229", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2795, - 51.54246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162594389", - "info": { - "identifier": 162594389, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162594389", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238841/162594389/238841_P301555_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.589013", - "last_seen": "2025-06-01T22:05:43.401206", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1118, - 51.3781 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.3, - "qmprice": 42.64, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/162594476", - "info": { - "identifier": 162594476, - "sqm_ocr": 50.3, - "price": 2145.0, - "price_per_sqm": 42.6441351888668, - "url": "https://www.rightmove.co.uk/properties/162594476", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22275/162594476/22275_BKL070424_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.863963", - "last_seen": "2025-06-01T22:05:56.026100", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22, - 51.5 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.1, - "qmprice": 37.44, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162594593", - "info": { - "identifier": 162594593, - "sqm_ocr": 68.1, - "price": 2550.0, - "price_per_sqm": 37.44493392070485, - "url": "https://www.rightmove.co.uk/properties/162594593", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111325/162594593/111325_KDP240017_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.782127", - "last_seen": "2025-06-01T22:05:49.646332", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150561, - 51.578728 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162594629", - "info": { - "identifier": 162594629, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162594629", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Elkay Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52868/162594629/52868_102387001256_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.05965, - 51.52715 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.85, - "qmprice": 43.91, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/162594698", - "info": { - "identifier": 162594698, - "sqm_ocr": 80.85, - "price": 3550.0, - "price_per_sqm": 43.90847247990106, - "url": "https://www.rightmove.co.uk/properties/162594698", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51322/162594698/51322_HEA730982_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.850052", - "last_seen": "2025-06-01T22:06:16.058852", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141729, - 51.4954 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.94, - "qmprice": 42.35, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162594725", - "info": { - "identifier": 162594725, - "sqm_ocr": 64.94, - "price": 2750.0, - "price_per_sqm": 42.34678164459501, - "url": "https://www.rightmove.co.uk/properties/162594725", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96392/162594725/96392_LTA230065_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.034344", - "last_seen": "2025-06-01T22:06:15.540852", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166066, - 51.534496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.4, - "qmprice": 37.62, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162594740", - "info": { - "identifier": 162594740, - "sqm_ocr": 86.4, - "price": 3250.0, - "price_per_sqm": 37.61574074074074, - "url": "https://www.rightmove.co.uk/properties/162594740", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39741/162594740/39741_33918914_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.059464", - "last_seen": "2025-06-01T22:06:15.562597", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190446, - 51.526325 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.41, - "qmprice": 35.93, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162594779", - "info": { - "identifier": 162594779, - "sqm_ocr": 78.41, - "price": 2817.0, - "price_per_sqm": 35.92653998214514, - "url": "https://www.rightmove.co.uk/properties/162594779", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "tlc Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18984/162594779/18984_ERL190041_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.403818", - "last_seen": "2025-06-01T22:05:58.060701", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195731, - 51.48953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 39.67, - "rooms": 2, - "total_price": 3293.0, - "url": "https://www.rightmove.co.uk/properties/162594806", - "info": { - "identifier": 162594806, - "sqm_ocr": 83.0, - "price": 3293.0, - "price_per_sqm": 39.674698795180724, - "url": "https://www.rightmove.co.uk/properties/162594806", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/162594806/212327_P159360_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.989430", - "last_seen": "2025-06-01T22:06:08.947117", - "price": 3293 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01354, - 51.50003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 40.54, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162594827", - "info": { - "identifier": 162594827, - "sqm_ocr": 74.0, - "price": 3000.0, - "price_per_sqm": 40.54054054054054, - "url": "https://www.rightmove.co.uk/properties/162594827", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/42k/41337/162594827/41337_06741422_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.332780", - "last_seen": "2025-06-01T22:06:14.877170", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183, - 51.534 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162594878", - "info": { - "identifier": 162594878, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162594878", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Maalems", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42021/162594878/42021_30634557_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.596763", - "last_seen": "2025-06-01T22:06:12.532303", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198747, - 51.44602 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2695.0, - "url": "https://www.rightmove.co.uk/properties/162594968", - "info": { - "identifier": 162594968, - "sqm_ocr": null, - "price": 2695.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162594968", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/162594968/176261_102708013667_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.524926", - "last_seen": "2025-06-01T22:05:49.835682", - "price": 2695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13901, - 51.57142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162595064", - "info": { - "identifier": 162595064, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162595064", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162595064/238769_BH3b29052025vac_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.377010", - "last_seen": "2025-06-01T22:05:40.298460", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27554, - 51.55553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.1, - "qmprice": 45.09, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162595124", - "info": { - "identifier": 162595124, - "sqm_ocr": 84.1, - "price": 3792.0, - "price_per_sqm": 45.089179548156956, - "url": "https://www.rightmove.co.uk/properties/162595124", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/162595124/212327_P161232_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.607661", - "last_seen": "2025-06-01T22:06:09.994792", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02553, - 51.50266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.0, - "qmprice": 45.92, - "rooms": 2, - "total_price": 2296.0, - "url": "https://www.rightmove.co.uk/properties/162595298", - "info": { - "identifier": 162595298, - "sqm_ocr": 50.0, - "price": 2296.0, - "price_per_sqm": 45.92, - "url": "https://www.rightmove.co.uk/properties/162595298", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/162595298/15948_1328304_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.261934", - "last_seen": "2025-06-01T22:05:49.295417", - "price": 2296.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.224364, - 51.489834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.8, - "qmprice": 38.33, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162595307", - "info": { - "identifier": 162595307, - "sqm_ocr": 84.8, - "price": 3250.0, - "price_per_sqm": 38.32547169811321, - "url": "https://www.rightmove.co.uk/properties/162595307", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62634/162595307/62634_33918956_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.456532", - "last_seen": "2025-06-01T22:06:01.805719", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184545, - 51.41523 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162595334", - "info": { - "identifier": 162595334, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162595334", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Target Property", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74120/162595334/74120_33719803_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.024846", - "last_seen": "2025-06-01T22:05:45.939208", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.032258, - 51.67557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.8, - "qmprice": 39.43, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162595640", - "info": { - "identifier": 162595640, - "sqm_ocr": 55.8, - "price": 2200.0, - "price_per_sqm": 39.426523297491045, - "url": "https://www.rightmove.co.uk/properties/162595640", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111050/162595640/111050_1326042_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.410983", - "last_seen": "2025-06-01T22:06:01.276611", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173478, - 51.422028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 37.42, - "qmprice": 64.14, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162595670", - "info": { - "identifier": 162595670, - "sqm_ocr": 37.42, - "price": 2400.0, - "price_per_sqm": 64.13682522715125, - "url": "https://www.rightmove.co.uk/properties/162595670", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/162595670/87812_1328312_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.418185", - "last_seen": "2025-06-01T22:05:38.842609", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186964, - 51.570625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.8, - "qmprice": 46.36, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162595787", - "info": { - "identifier": 162595787, - "sqm_ocr": 81.8, - "price": 3792.0, - "price_per_sqm": 46.35696821515893, - "url": "https://www.rightmove.co.uk/properties/162595787", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/162595787/212327_P161233_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.02553, - 51.50266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2095.0, - "url": "https://www.rightmove.co.uk/properties/162595895", - "info": { - "identifier": 162595895, - "sqm_ocr": null, - "price": 2095.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162595895", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Drayton Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18369/162595895/18369_DRN1002070_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.590487", - "last_seen": "2025-06-01T22:05:44.782316", - "price": 2095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25243, - 51.51481 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2095.0, - "url": "https://www.rightmove.co.uk/properties/162595904", - "info": { - "identifier": 162595904, - "sqm_ocr": null, - "price": 2095.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162595904", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Drayton Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18369/162595904/18369_DRN1002083_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.050133", - "last_seen": "2025-06-01T22:05:44.256067", - "price": 2095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25243, - 51.51481 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2199.0, - "url": "https://www.rightmove.co.uk/properties/162595910", - "info": { - "identifier": 162595910, - "sqm_ocr": null, - "price": 2199.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162595910", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Drayton Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18369/162595910/18369_DRN1002064_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.038295", - "last_seen": "2025-06-01T22:05:44.246802", - "price": 2199.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32077, - 51.5141 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162595919", - "info": { - "identifier": 162595919, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162595919", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Drayton Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18369/162595919/18369_DRN1002061_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.032190", - "last_seen": "2025-06-01T22:05:44.244847", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30949, - 51.49577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162596267", - "info": { - "identifier": 162596267, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162596267", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/219k/218198/162596267/218198_P66833_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.251290", - "last_seen": "2025-06-01T22:05:54.583662", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26133, - 51.52348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.5, - "qmprice": 37.93, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162596342", - "info": { - "identifier": 162596342, - "sqm_ocr": 72.5, - "price": 2750.0, - "price_per_sqm": 37.93103448275862, - "url": "https://www.rightmove.co.uk/properties/162596342", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/162596342/48994_CLI206563_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:08.222903", - "last_seen": "2025-06-01T22:06:08.222903", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021071, - 51.50039 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162596360", - "info": { - "identifier": 162596360, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162596360", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Peter Martin", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202550/162596360/202550_PMLL_003727_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.292519", - "last_seen": "2025-06-01T22:05:42.464712", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186317, - 51.552036 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.09, - "qmprice": 37.6, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162596366", - "info": { - "identifier": 162596366, - "sqm_ocr": 93.09, - "price": 3500.0, - "price_per_sqm": 37.59802341819744, - "url": "https://www.rightmove.co.uk/properties/162596366", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Peter Martin", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202550/162596366/202550_PMLL_004299_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.294235", - "last_seen": "2025-06-01T22:05:42.448223", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186317, - 51.552036 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162596438", - "info": { - "identifier": 162596438, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162596438", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162596438/238769_2b57e29052025vac_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.152576", - "last_seen": "2025-06-01T22:05:47.959143", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07578, - 51.54792 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2420.0, - "url": "https://www.rightmove.co.uk/properties/162596483", - "info": { - "identifier": 162596483, - "sqm_ocr": null, - "price": 2420.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162596483", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286454/162596483/286454_P62359_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.439354", - "last_seen": "2025-06-01T22:05:45.322203", - "price": 2420.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31884, - 51.5352 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162596627", - "info": { - "identifier": 162596627, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162596627", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Filey Properties", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54554/162596627/54554_2714409_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.426662", - "last_seen": "2025-06-01T22:06:11.616413", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.000847, - 51.605076 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.1, - "qmprice": 34.04, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162596717", - "info": { - "identifier": 162596717, - "sqm_ocr": 88.1, - "price": 2999.0, - "price_per_sqm": 34.04086265607265, - "url": "https://www.rightmove.co.uk/properties/162596717", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Anderson Rose", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79087/162596717/79087_TOW250081_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.445669", - "last_seen": "2025-06-01T22:06:05.850761", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072993, - 51.50241 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.1, - "qmprice": 35.93, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162596939", - "info": { - "identifier": 162596939, - "sqm_ocr": 82.1, - "price": 2950.0, - "price_per_sqm": 35.93179049939099, - "url": "https://www.rightmove.co.uk/properties/162596939", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57118/162596939/57118_P214666_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.107316", - "last_seen": "2025-06-01T22:06:06.133291", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07379, - 51.496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.47, - "qmprice": 32.54, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162596942", - "info": { - "identifier": 162596942, - "sqm_ocr": 61.47, - "price": 2000.0, - "price_per_sqm": 32.53619651862697, - "url": "https://www.rightmove.co.uk/properties/162596942", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162596942/238769_ph2b2952025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.582421", - "last_seen": "2025-06-01T22:05:51.380774", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.48546, - 51.55006 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162596963", - "info": { - "identifier": 162596963, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162596963", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Eldridge Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283214/162596963/283214_RL0321_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.264813", - "last_seen": "2025-06-01T22:05:39.970360", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.16336, - 51.4863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.5, - "qmprice": 30.39, - "rooms": 2, - "total_price": 2325.0, - "url": "https://www.rightmove.co.uk/properties/162597239", - "info": { - "identifier": 162597239, - "sqm_ocr": 76.5, - "price": 2325.0, - "price_per_sqm": 30.392156862745097, - "url": "https://www.rightmove.co.uk/properties/162597239", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77841/162597239/77841_46Gcr_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.964907", - "last_seen": "2025-06-01T22:05:52.389072", - "price": 2325.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35417, - 51.47132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.3, - "qmprice": 32.33, - "rooms": 2, - "total_price": 2305.0, - "url": "https://www.rightmove.co.uk/properties/162597311", - "info": { - "identifier": 162597311, - "sqm_ocr": 71.3, - "price": 2305.0, - "price_per_sqm": 32.32819074333801, - "url": "https://www.rightmove.co.uk/properties/162597311", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77841/162597311/77841_30Gt_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.122790", - "last_seen": "2025-06-01T22:05:51.757961", - "price": 2305.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35417, - 51.47132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162597404", - "info": { - "identifier": 162597404, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162597404", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247499/162597404/247499_P471373_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.092552", - "last_seen": "2025-06-01T22:05:57.736976", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19499, - 51.48874 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.5, - "qmprice": 30.0, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/162597431", - "info": { - "identifier": 162597431, - "sqm_ocr": 76.5, - "price": 2295.0, - "price_per_sqm": 30.0, - "url": "https://www.rightmove.co.uk/properties/162597431", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77841/162597431/77841_57Kor_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.328482", - "last_seen": "2025-06-01T22:05:52.050551", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35345, - 51.47113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2267.0, - "url": "https://www.rightmove.co.uk/properties/162597533", - "info": { - "identifier": 162597533, - "sqm_ocr": null, - "price": 2267.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162597533", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77841/162597533/77841_29Gt_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.376165", - "last_seen": "2025-06-01T22:05:52.572522", - "price": 2267.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35417, - 51.47132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162597575", - "info": { - "identifier": 162597575, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162597575", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Freder", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269027/162597575/269027_RL0446_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.469451", - "last_seen": "2025-06-01T22:05:47.044820", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.030279, - 51.4581 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 38.33, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162597689", - "info": { - "identifier": 162597689, - "sqm_ocr": 60.0, - "price": 2300.0, - "price_per_sqm": 38.333333333333336, - "url": "https://www.rightmove.co.uk/properties/162597689", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162597689/221711_1431_EAF_111753_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.875125", - "last_seen": "2025-06-01T22:06:13.715548", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171386, - 51.42495 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162597710", - "info": { - "identifier": 162597710, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162597710", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162597710/96668_249966629052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.610167", - "last_seen": "2025-06-01T22:05:48.381469", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209632, - 51.48939 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162597767", - "info": { - "identifier": 162597767, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162597767", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162597767/96668_250033629052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.777226", - "last_seen": "2025-06-01T22:06:03.799431", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.080406, - 51.5971 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162597794", - "info": { - "identifier": 162597794, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162597794", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162597794/96668_250025429052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.337208", - "last_seen": "2025-06-01T22:06:07.284441", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.000565, - 51.54669 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162598409", - "info": { - "identifier": 162598409, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162598409", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Landstones", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221669/162598409/221669_RL1879TTT_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.811126", - "last_seen": "2025-06-01T22:05:57.502100", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.203418, - 51.5151 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.9, - "qmprice": 27.58, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162598637", - "info": { - "identifier": 162598637, - "sqm_ocr": 126.9, - "price": 3500.0, - "price_per_sqm": 27.580772261623324, - "url": "https://www.rightmove.co.uk/properties/162598637", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48994/162598637/48994_CNL190101_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.02071, - 51.507286 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162598682", - "info": { - "identifier": 162598682, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162598682", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162598682/191744_RL4828_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.829204", - "last_seen": "2025-06-01T22:05:46.999204", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03044, - 51.45863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162598850", - "info": { - "identifier": 162598850, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162598850", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/162598850/32793_38774_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.428447", - "last_seen": "2025-06-01T22:05:40.371660", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23641, - 51.5527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162598853", - "info": { - "identifier": 162598853, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162598853", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/162598853/32793_39234_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.558243", - "last_seen": "2025-06-01T22:05:42.187501", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17337, - 51.54571 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162598898", - "info": { - "identifier": 162598898, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162598898", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84803/162598898/84803_33919167_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.035988", - "last_seen": "2025-06-01T22:06:12.580875", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223195, - 51.45345 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162598925", - "info": { - "identifier": 162598925, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162598925", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Sinton Andrews", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13712/162598925/13712_SINT_002922_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.281182", - "last_seen": "2025-06-01T22:05:55.745533", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.319377, - 51.514236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162599165", - "info": { - "identifier": 162599165, - "sqm_ocr": null, - "price": 3497.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162599165", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Noble Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263546/162599165/263546_2714341_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.224099", - "last_seen": "2025-06-01T22:05:58.953446", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.119889, - 51.484207 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.49, - "qmprice": 47.91, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162599297", - "info": { - "identifier": 162599297, - "sqm_ocr": 83.49, - "price": 4000.0, - "price_per_sqm": 47.90992933285424, - "url": "https://www.rightmove.co.uk/properties/162599297", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139751/162599297/139751_ECL250025_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.502064", - "last_seen": "2025-06-01T22:05:58.190602", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194024, - 51.493717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.34, - "qmprice": 48.11, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162599375", - "info": { - "identifier": 162599375, - "sqm_ocr": 62.34, - "price": 2999.0, - "price_per_sqm": 48.107154315046515, - "url": "https://www.rightmove.co.uk/properties/162599375", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/140k/139751/162599375/139751_ECL240054_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.277655", - "last_seen": "2025-06-01T22:05:58.464064", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192679, - 51.495018 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.4, - "qmprice": 38.84, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162599432", - "info": { - "identifier": 162599432, - "sqm_ocr": 100.4, - "price": 3900.0, - "price_per_sqm": 38.84462151394422, - "url": "https://www.rightmove.co.uk/properties/162599432", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75832/162599432/75832_SKQ012515234_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.439893", - "last_seen": "2025-06-01T22:05:58.113638", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191202, - 51.488987 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162599636", - "info": { - "identifier": 162599636, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162599636", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Goodfellows", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72253/162599636/72253_GCB220488_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.630841", - "last_seen": "2025-06-01T22:06:07.809266", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.144124, - 51.340477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.3, - "qmprice": 25.59, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162599669", - "info": { - "identifier": 162599669, - "sqm_ocr": 115.3, - "price": 2950.0, - "price_per_sqm": 25.585429314830876, - "url": "https://www.rightmove.co.uk/properties/162599669", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Ariston Property", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/22k/21035/162599669/21035_4432_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.635863", - "last_seen": "2025-06-01T22:05:53.448419", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11978, - 51.56168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/162599813", - "info": { - "identifier": 162599813, - "sqm_ocr": null, - "price": 2145.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162599813", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Homesforth Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280625/162599813/280625_HOMFR_001732_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.719103", - "last_seen": "2025-06-01T22:05:39.086524", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178336, - 51.590584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162599918", - "info": { - "identifier": 162599918, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162599918", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Sincere lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96983/162599918/96983_33919220_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.805632", - "last_seen": "2025-06-01T22:06:04.047301", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.08906, - 51.56192 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162600005", - "info": { - "identifier": 162600005, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162600005", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Address", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80743/162600005/80743_270cbcfd-780e-4350-b512-c388a0507371_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.279923", - "last_seen": "2025-06-01T22:05:41.616034", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01875, - 51.396435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.3, - "qmprice": 45.64, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162600089", - "info": { - "identifier": 162600089, - "sqm_ocr": 49.3, - "price": 2250.0, - "price_per_sqm": 45.63894523326572, - "url": "https://www.rightmove.co.uk/properties/162600089", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43754/162600089/43754_P301550_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.314004", - "last_seen": "2025-06-01T22:05:59.407449", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1257, - 51.46681 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162600125", - "info": { - "identifier": 162600125, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162600125", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Andrews Letting and Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34337/162600125/34337_MOR230003_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.601286", - "last_seen": "2025-06-01T22:06:01.730513", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.140259, - 51.400154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2149.0, - "url": "https://www.rightmove.co.uk/properties/162600149", - "info": { - "identifier": 162600149, - "sqm_ocr": null, - "price": 2149.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162600149", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Keating Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/146k/145427/162600149/145427_33919238_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.727370", - "last_seen": "2025-06-01T22:06:00.097730", - "price": 2149 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112398, - 51.459454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.2, - "qmprice": 40.46, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162600161", - "info": { - "identifier": 162600161, - "sqm_ocr": 69.2, - "price": 2800.0, - "price_per_sqm": 40.46242774566474, - "url": "https://www.rightmove.co.uk/properties/162600161", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Wigmore Jones", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92908/162600161/92908_33875361_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.056687", - "last_seen": "2025-06-01T22:06:14.049588", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214357, - 51.460064 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.43, - "qmprice": 38.04, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162600341", - "info": { - "identifier": 162600341, - "sqm_ocr": 85.43, - "price": 3250.0, - "price_per_sqm": 38.042842092941584, - "url": "https://www.rightmove.co.uk/properties/162600341", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51316/162600341/51316_HEA217344_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.398103", - "last_seen": "2025-06-01T22:06:14.945714", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189435, - 51.52588 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.0, - "qmprice": 24.75, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162600467", - "info": { - "identifier": 162600467, - "sqm_ocr": 101.0, - "price": 2500.0, - "price_per_sqm": 24.752475247524753, - "url": "https://www.rightmove.co.uk/properties/162600467", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162600467/221711_1657_EAF_113852_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.702514", - "last_seen": "2025-06-01T22:06:10.012458", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021382, - 51.53589 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162600476", - "info": { - "identifier": 162600476, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162600476", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/162600476/77511_SXX120518_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.087731", - "last_seen": "2025-06-01T22:05:47.596189", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.088765, - 51.528744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.8, - "qmprice": 27.03, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162600530", - "info": { - "identifier": 162600530, - "sqm_ocr": 88.8, - "price": 2400.0, - "price_per_sqm": 27.027027027027028, - "url": "https://www.rightmove.co.uk/properties/162600530", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44703/162600530/44703_BEK250262_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.325313", - "last_seen": "2025-06-01T22:05:41.498260", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.032611, - 51.407104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162600536", - "info": { - "identifier": 162600536, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162600536", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44610/162600536/44610_P5228E5211_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.725907", - "last_seen": "2025-06-01T22:05:58.502653", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2593, - 51.40646 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.39, - "qmprice": 45.52, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162600617", - "info": { - "identifier": 162600617, - "sqm_ocr": 71.39, - "price": 3250.0, - "price_per_sqm": 45.524583274968485, - "url": "https://www.rightmove.co.uk/properties/162600617", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/162600617/135416_KYC250193_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.130416", - "last_seen": "2025-06-01T22:06:14.146363", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179719, - 51.466564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162600671", - "info": { - "identifier": 162600671, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162600671", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162600671/96668_245611718042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.202590", - "last_seen": "2025-06-01T22:06:03.588388", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.020991, - 51.507893 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162600713", - "info": { - "identifier": 162600713, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162600713", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Samuel Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252779/162600713/252779_10520_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.823401", - "last_seen": "2025-06-01T22:06:13.727838", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146544, - 51.437595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162600734", - "info": { - "identifier": 162600734, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162600734", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162600734/96668_213417426062024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.765456", - "last_seen": "2025-06-01T22:05:50.024220", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056136, - 51.59875 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162600845", - "info": { - "identifier": 162600845, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162600845", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162600845/96668_250036629052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.147070", - "last_seen": "2025-06-01T22:05:46.148135", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005975, - 51.48231 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/162600959", - "info": { - "identifier": 162600959, - "sqm_ocr": null, - "price": 2496.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162600959", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/203k/202016/162600959/202016_33919279_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.183919", - "last_seen": "2025-06-01T22:05:44.397313", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.326222, - 51.511185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162601112", - "info": { - "identifier": 162601112, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162601112", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166334/162601112/166334_1328336_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.540801", - "last_seen": "2025-06-01T22:05:49.823043", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104667, - 51.593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.56, - "qmprice": 65.53, - "rooms": 2, - "total_price": 3510.0, - "url": "https://www.rightmove.co.uk/properties/162601130", - "info": { - "identifier": 162601130, - "sqm_ocr": 53.56, - "price": 3510.0, - "price_per_sqm": 65.53398058252426, - "url": "https://www.rightmove.co.uk/properties/162601130", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Greater London Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6474/162601130/6474_GRT_SH_LFSYCL_252_40097412_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.608280", - "last_seen": "2025-06-01T22:06:15.248261", - "price": 3510 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120739, - 51.51265 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.23, - "qmprice": 29.33, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162601181", - "info": { - "identifier": 162601181, - "sqm_ocr": 85.23, - "price": 2500.0, - "price_per_sqm": 29.332394696703037, - "url": "https://www.rightmove.co.uk/properties/162601181", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/162601181/57272_1328346_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.671833", - "last_seen": "2025-06-01T22:05:58.610097", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283495, - 51.416748 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2885.0, - "url": "https://www.rightmove.co.uk/properties/162601358", - "info": { - "identifier": 162601358, - "sqm_ocr": null, - "price": 2885.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162601358", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Get Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/181k/180173/162601358/180173_180173_p0192923_RAGL0906_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.093202", - "last_seen": "2025-06-01T22:06:06.197537", - "price": 2885.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098038, - 51.494476 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162601406", - "info": { - "identifier": 162601406, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162601406", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hub Of Homes", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281309/162601406/281309_28468_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.817452", - "last_seen": "2025-06-01T22:06:04.055142", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07819, - 51.55598 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162601442", - "info": { - "identifier": 162601442, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162601442", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162601442/96668_250054629052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.665766", - "last_seen": "2025-06-01T22:05:42.244232", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184205, - 51.54896 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162601457", - "info": { - "identifier": 162601457, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162601457", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162601457/96668_250041629052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.294162", - "last_seen": "2025-06-01T22:06:01.209071", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184296, - 51.414215 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.0, - "qmprice": 36.54, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162601472", - "info": { - "identifier": 162601472, - "sqm_ocr": 104.0, - "price": 3800.0, - "price_per_sqm": 36.53846153846154, - "url": "https://www.rightmove.co.uk/properties/162601472", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "BAARTZ", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/255k/254108/162601472/254108_RX579426_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.154807", - "last_seen": "2025-06-01T22:06:12.723924", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164424, - 51.473316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.7, - "qmprice": 29.34, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162601547", - "info": { - "identifier": 162601547, - "sqm_ocr": 76.7, - "price": 2250.0, - "price_per_sqm": 29.335071707953063, - "url": "https://www.rightmove.co.uk/properties/162601547", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78317/162601547/78317_KDS240204_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.718374", - "last_seen": "2025-06-01T22:05:58.510602", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.256223, - 51.43449 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.8, - "qmprice": 33.06, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162601550", - "info": { - "identifier": 162601550, - "sqm_ocr": 96.8, - "price": 3200.0, - "price_per_sqm": 33.057851239669425, - "url": "https://www.rightmove.co.uk/properties/162601550", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78317/162601550/78317_KDS251573_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.714726", - "last_seen": "2025-06-01T22:05:58.507272", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284857, - 51.41066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162601553", - "info": { - "identifier": 162601553, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162601553", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "KEY HAVEN ESTATES LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289103/162601553/289103_SE22_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.694624", - "last_seen": "2025-06-01T22:06:04.947992", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06719, - 51.45795 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.9, - "qmprice": 28.75, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162601556", - "info": { - "identifier": 162601556, - "sqm_ocr": 93.9, - "price": 2700.0, - "price_per_sqm": 28.75399361022364, - "url": "https://www.rightmove.co.uk/properties/162601556", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57979/162601556/57979_KCC250298_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.304615", - "last_seen": "2025-06-01T22:05:59.037307", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104969, - 51.43415 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 35.38, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162601562", - "info": { - "identifier": 162601562, - "sqm_ocr": 65.0, - "price": 2300.0, - "price_per_sqm": 35.38461538461539, - "url": "https://www.rightmove.co.uk/properties/162601562", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57979/162601562/57979_KCC250303_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.298543", - "last_seen": "2025-06-01T22:05:59.005575", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.104969, - 51.43415 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.1, - "qmprice": 24.05, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162601568", - "info": { - "identifier": 162601568, - "sqm_ocr": 108.1, - "price": 2600.0, - "price_per_sqm": 24.0518038852914, - "url": "https://www.rightmove.co.uk/properties/162601568", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57979/162601568/57979_KEH252095_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.296173", - "last_seen": "2025-06-01T22:05:59.003659", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102336, - 51.433376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/162601640", - "info": { - "identifier": 162601640, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162601640", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Primden Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261275/162601640/261275_14241_001363_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.678359", - "last_seen": "2025-06-01T22:05:53.316124", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11297, - 51.55469 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162601664", - "info": { - "identifier": 162601664, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162601664", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53537/162601664/53537_PIL150004_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.116032", - "last_seen": "2025-06-01T22:06:15.045788", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14559, - 51.49252 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3302.0, - "url": "https://www.rightmove.co.uk/properties/162601670", - "info": { - "identifier": 162601670, - "sqm_ocr": null, - "price": 3302.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162601670", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53537/162601670/53537_PIM190040_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.205903", - "last_seen": "2025-06-01T22:06:14.871225", - "price": 3302 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142256, - 51.493324 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162601682", - "info": { - "identifier": 162601682, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162601682", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162601682/238265_L110215_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.592974", - "last_seen": "2025-06-01T22:06:05.166620", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070082, - 51.493443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.1, - "qmprice": 36.07, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162601805", - "info": { - "identifier": 162601805, - "sqm_ocr": 90.1, - "price": 3250.0, - "price_per_sqm": 36.07103218645949, - "url": "https://www.rightmove.co.uk/properties/162601805", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/162601805/56751_1327818_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.490836", - "last_seen": "2025-06-01T22:05:59.790953", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117219, - 51.462185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.6, - "qmprice": 33.1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162601808", - "info": { - "identifier": 162601808, - "sqm_ocr": 84.6, - "price": 2800.0, - "price_per_sqm": 33.096926713947994, - "url": "https://www.rightmove.co.uk/properties/162601808", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162601808/48101_1328077_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.336499", - "last_seen": "2025-06-01T22:06:02.902757", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.014751, - 51.508327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162601928", - "info": { - "identifier": 162601928, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162601928", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Royal Arsenal Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13540/162601928/13540_102719000055_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.218394", - "last_seen": "2025-06-01T22:05:46.210355", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07325, - 51.49484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162602174", - "info": { - "identifier": 162602174, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162602174", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Devenports", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242942/162602174/242942_TWD250306_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.120064", - "last_seen": "2025-06-01T22:06:04.343565", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.367486, - 51.41382 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162602372", - "info": { - "identifier": 162602372, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162602372", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Folio London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97670/162602372/97670_RWE210002_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.570224", - "last_seen": "2025-06-01T22:06:03.131742", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.030088, - 51.50106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162603059", - "info": { - "identifier": 162603059, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162603059", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Truepenny's", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49874/162603059/49874_2887_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.798831", - "last_seen": "2025-06-01T22:05:46.985034", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.067373, - 51.49414 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3175.0, - "url": "https://www.rightmove.co.uk/properties/162604562", - "info": { - "identifier": 162604562, - "sqm_ocr": null, - "price": 3175.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162604562", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162604562/96668_249544625052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.522233", - "last_seen": "2025-06-01T22:05:59.377243", - "price": 3175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12619, - 51.48571 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162605786", - "info": { - "identifier": 162605786, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162605786", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54730/162605786/54730_WLL250243_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.851055", - "last_seen": "2025-06-01T22:05:45.182097", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375651, - 51.504913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.9, - "qmprice": 48.06, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162606071", - "info": { - "identifier": 162606071, - "sqm_ocr": 74.9, - "price": 3600.0, - "price_per_sqm": 48.06408544726301, - "url": "https://www.rightmove.co.uk/properties/162606071", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15951/162606071/15951_1326565_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.220143", - "last_seen": "2025-06-01T22:05:52.260012", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.313038, - 51.483185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162606125", - "info": { - "identifier": 162606125, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162606125", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stones Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287342/162606125/287342_RHL250236_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.960149", - "last_seen": "2025-06-01T22:05:51.944591", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.397507, - 51.484245 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.3, - "qmprice": 52.79, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162606152", - "info": { - "identifier": 162606152, - "sqm_ocr": 66.3, - "price": 3500.0, - "price_per_sqm": 52.79034690799397, - "url": "https://www.rightmove.co.uk/properties/162606152", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/162606152/15969_1327762_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.048471", - "last_seen": "2025-06-01T22:05:44.209656", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.312861, - 51.51232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.59, - "qmprice": 27.2, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162606155", - "info": { - "identifier": 162606155, - "sqm_ocr": 95.59, - "price": 2600.0, - "price_per_sqm": 27.199497855424205, - "url": "https://www.rightmove.co.uk/properties/162606155", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/162606155/87812_1328359_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.280149", - "last_seen": "2025-06-01T22:05:38.683261", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195597, - 51.567585 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.3, - "qmprice": 33.17, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162606158", - "info": { - "identifier": 162606158, - "sqm_ocr": 90.3, - "price": 2995.0, - "price_per_sqm": 33.1672203765227, - "url": "https://www.rightmove.co.uk/properties/162606158", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15969/162606158/15969_1327368_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.045197", - "last_seen": "2025-06-01T22:05:44.204637", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.287173, - 51.509495 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162606752", - "info": { - "identifier": 162606752, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162606752", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/162606752/115768_110cwhs_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "03/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.298840", - "last_seen": "2025-06-01T22:06:04.479881", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35822, - 51.4506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/162607028", - "info": { - "identifier": 162607028, - "sqm_ocr": null, - "price": 2708.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162607028", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Abacus Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26267/162607028/26267_ABAC_010997_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.123322", - "last_seen": "2025-06-01T22:05:41.191739", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20671, - 51.54975 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162607283", - "info": { - "identifier": 162607283, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162607283", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/162607283/115768_78456thefrank_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.211985", - "last_seen": "2025-06-01T22:06:09.039778", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02633, - 51.50079 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162607307", - "info": { - "identifier": 162607307, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162607307", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162607307/96668_249821927052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.746361", - "last_seen": "2025-06-01T22:06:03.712255", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.104895, - 51.562336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162607325", - "info": { - "identifier": 162607325, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162607325", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162607325/96668_250068329052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.346452", - "last_seen": "2025-06-01T22:05:51.109170", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.463564, - 51.519688 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162607358", - "info": { - "identifier": 162607358, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162607358", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162607358/96668_250061629052025_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.770029", - "last_seen": "2025-06-01T22:05:56.220319", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206601, - 51.53434 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 28.74, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162607514", - "info": { - "identifier": 162607514, - "sqm_ocr": 87.0, - "price": 2500.0, - "price_per_sqm": 28.735632183908045, - "url": "https://www.rightmove.co.uk/properties/162607514", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Rockley Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287891/162607514/287891_TheHelm_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.679714", - "last_seen": "2025-06-01T22:06:03.343300", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07291, - 51.50636 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162607946", - "info": { - "identifier": 162607946, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162607946", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Abacus Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26267/162607946/26267_ABAC_016046_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.291062", - "last_seen": "2025-06-01T22:05:43.228079", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196601, - 51.554657 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2295.0, - "url": "https://www.rightmove.co.uk/properties/162608921", - "info": { - "identifier": 162608921, - "sqm_ocr": null, - "price": 2295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162608921", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162608921/96668_250068729052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.963629", - "last_seen": "2025-06-01T20:19:46.833415", - "price": 2295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034267, - 51.463432 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162609188", - "info": { - "identifier": 162609188, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162609188", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162609188/96668_237089931012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.692741", - "last_seen": "2025-06-01T22:06:15.323748", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127586, - 51.507217 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.87, - "qmprice": 40.23, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162609212", - "info": { - "identifier": 162609212, - "sqm_ocr": 65.87, - "price": 2650.0, - "price_per_sqm": 40.23075755275543, - "url": "https://www.rightmove.co.uk/properties/162609212", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274244/162609212/274244_HAC180119_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.384195", - "last_seen": "2025-06-01T22:05:47.295666", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077441, - 51.555122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.68, - "qmprice": 28.69, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162609218", - "info": { - "identifier": 162609218, - "sqm_ocr": 76.68, - "price": 2200.0, - "price_per_sqm": 28.690662493479394, - "url": "https://www.rightmove.co.uk/properties/162609218", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/41k/40233/162609218/40233_SUQ220028_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.486143", - "last_seen": "2025-06-01T22:06:05.245608", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.033006, - 51.500416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162609542", - "info": { - "identifier": 162609542, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162609542", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Leonards of London (Property Maintenance) Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35351/162609542/35351_RL0536_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.834502", - "last_seen": "2025-06-01T22:06:00.441128", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034603, - 51.445183 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.9, - "qmprice": 49.37, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162609545", - "info": { - "identifier": 162609545, - "sqm_ocr": 70.9, - "price": 3500.0, - "price_per_sqm": 49.36530324400564, - "url": "https://www.rightmove.co.uk/properties/162609545", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Leonards of London (Property Maintenance) Ltd", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35351/162609545/35351_RL0618_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.813205", - "last_seen": "2025-06-01T22:05:59.182052", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.139178, - 51.4496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 148.1, - "qmprice": 23.63, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162611162", - "info": { - "identifier": 162611162, - "sqm_ocr": 148.1, - "price": 3500.0, - "price_per_sqm": 23.632680621201892, - "url": "https://www.rightmove.co.uk/properties/162611162", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162611162/96668_77680705052020_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.713868", - "last_seen": "2025-06-01T22:05:50.516509", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26807, - 51.597755 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162611504", - "info": { - "identifier": 162611504, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162611504", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162611504/249341_AVE11_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.209500", - "last_seen": "2025-06-01T22:05:38.597931", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17892, - 51.61187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162612362", - "info": { - "identifier": 162612362, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162612362", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162612362/96668_244507108042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.428989", - "last_seen": "2025-06-01T22:06:05.456545", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.036439, - 51.50132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.4, - "qmprice": 35.16, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162613040", - "info": { - "identifier": 162613040, - "sqm_ocr": 102.4, - "price": 3600.0, - "price_per_sqm": 35.15625, - "url": "https://www.rightmove.co.uk/properties/162613040", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/162613040/15966_1324714_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.923781", - "last_seen": "2025-06-01T22:06:14.167034", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168453, - 51.47215 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.47, - "qmprice": 54.73, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162613049", - "info": { - "identifier": 162613049, - "sqm_ocr": 58.47, - "price": 3200.0, - "price_per_sqm": 54.728920814092696, - "url": "https://www.rightmove.co.uk/properties/162613049", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/162613049/84889_1324756_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.144939", - "last_seen": "2025-06-01T22:06:16.097335", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138214, - 51.493477 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 49.97, - "qmprice": 50.03, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162613097", - "info": { - "identifier": 162613097, - "sqm_ocr": 49.97, - "price": 2500.0, - "price_per_sqm": 50.03001801080649, - "url": "https://www.rightmove.co.uk/properties/162613097", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/162613097/15945_1322256_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.508951", - "last_seen": "2025-06-01T22:05:58.306006", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205273, - 51.515312 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162613106", - "info": { - "identifier": 162613106, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162613106", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162613106/96668_140449003062022_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.814239", - "last_seen": "2025-06-01T22:05:54.418354", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122297, - 51.53757 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.99, - "qmprice": 51.29, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162613115", - "info": { - "identifier": 162613115, - "sqm_ocr": 77.99, - "price": 4000.0, - "price_per_sqm": 51.28862674701885, - "url": "https://www.rightmove.co.uk/properties/162613115", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/162613115/60927_000020548_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.935792", - "last_seen": "2025-06-01T22:05:49.520040", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23458, - 51.49575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162613370", - "info": { - "identifier": 162613370, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162613370", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hammersmith", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60927/162613370/60927_000013971b_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.500065", - "last_seen": "2025-06-01T22:05:57.253726", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22818, - 51.49424 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.3, - "qmprice": 24.43, - "rooms": 3, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162613718", - "info": { - "identifier": 162613718, - "sqm_ocr": 100.3, - "price": 2450.0, - "price_per_sqm": 24.426719840478565, - "url": "https://www.rightmove.co.uk/properties/162613718", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Oakhill", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88216/162613718/88216_8e2f9cce-92ed-4ee2-a354-aaaceaf72446_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.966422", - "last_seen": "2025-06-01T22:05:51.952887", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.335226, - 51.47394 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2097.0, - "url": "https://www.rightmove.co.uk/properties/162613838", - "info": { - "identifier": 162613838, - "sqm_ocr": null, - "price": 2097.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162613838", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Pearl & Coutts", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54010/162613838/54010_00000172_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.398294", - "last_seen": "2025-06-01T22:06:01.044531", - "price": 2097 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178095, - 51.423363 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.3, - "qmprice": 35.89, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162614018", - "info": { - "identifier": 162614018, - "sqm_ocr": 61.3, - "price": 2200.0, - "price_per_sqm": 35.88907014681892, - "url": "https://www.rightmove.co.uk/properties/162614018", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Independent London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91421/162614018/91421_102043001480_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.686306", - "last_seen": "2025-06-01T22:06:04.919949", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03438, - 51.5047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162614069", - "info": { - "identifier": 162614069, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162614069", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/169k/168029/162614069/168029_CGNL0010_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.742377", - "last_seen": "2025-06-01T22:05:53.613544", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09687, - 51.52983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162614354", - "info": { - "identifier": 162614354, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162614354", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/169k/168029/162614354/168029_CGNL0004_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.947392", - "last_seen": "2025-06-01T22:06:11.411891", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06859, - 51.51345 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.9, - "qmprice": 36.19, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162614906", - "info": { - "identifier": 162614906, - "sqm_ocr": 82.9, - "price": 3000.0, - "price_per_sqm": 36.18817852834741, - "url": "https://www.rightmove.co.uk/properties/162614906", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30575/162614906/30575_05313169_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.689736", - "last_seen": "2025-06-01T22:06:04.293799", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.296021, - 51.458443 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 107.9, - "qmprice": 21.32, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162615347", - "info": { - "identifier": 162615347, - "sqm_ocr": 107.9, - "price": 2300.0, - "price_per_sqm": 21.316033364226133, - "url": "https://www.rightmove.co.uk/properties/162615347", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Gibson Lane", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22316/162615347/22316_33919721_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.845482", - "last_seen": "2025-06-01T22:05:58.914276", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.301111, - 51.415337 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/162615356", - "info": { - "identifier": 162615356, - "sqm_ocr": null, - "price": 2496.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162615356", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105760/162615356/105760_33919722_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.298642", - "last_seen": "2025-06-01T22:06:16.014062", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143362, - 51.487804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3390.0, - "url": "https://www.rightmove.co.uk/properties/162615410", - "info": { - "identifier": 162615410, - "sqm_ocr": null, - "price": 3390.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162615410", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162615410/253604_186H3005_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.330850", - "last_seen": "2025-06-01T22:06:07.578460", - "price": 3390.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.91, - "qmprice": 31.4, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162615533", - "info": { - "identifier": 162615533, - "sqm_ocr": 101.91, - "price": 3200.0, - "price_per_sqm": 31.40025512707291, - "url": "https://www.rightmove.co.uk/properties/162615533", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Parkheath", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72716/162615533/72716_33540061_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.242595", - "last_seen": "2025-06-01T22:05:38.634507", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197275, - 51.564518 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3214.0, - "url": "https://www.rightmove.co.uk/properties/162615539", - "info": { - "identifier": 162615539, - "sqm_ocr": null, - "price": 3214.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162615539", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162615539/253604_29H3005_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.817258", - "last_seen": "2025-06-01T22:06:07.310425", - "price": 3214.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00607, - 51.54176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162615692", - "info": { - "identifier": 162615692, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162615692", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hampstead", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32760/162615692/32760_2bedlindleydreposr_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.464521", - "last_seen": "2025-06-01T22:05:38.956220", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24482, - 51.5821 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.3, - "qmprice": 31.59, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162615701", - "info": { - "identifier": 162615701, - "sqm_ocr": 82.3, - "price": 2600.0, - "price_per_sqm": 31.591737545565007, - "url": "https://www.rightmove.co.uk/properties/162615701", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Utile Dulci", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136451/162615701/136451_FiskeV_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.630557", - "last_seen": "2025-06-01T22:05:46.324213", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01652, - 51.49224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.4, - "qmprice": 34.2, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162615707", - "info": { - "identifier": 162615707, - "sqm_ocr": 80.4, - "price": 2750.0, - "price_per_sqm": 34.20398009950249, - "url": "https://www.rightmove.co.uk/properties/162615707", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162615707/87187_51383_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.242807", - "last_seen": "2025-06-01T22:05:52.048220", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.289404, - 51.490223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.3, - "qmprice": 31.59, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162615749", - "info": { - "identifier": 162615749, - "sqm_ocr": 82.3, - "price": 2600.0, - "price_per_sqm": 31.591737545565007, - "url": "https://www.rightmove.co.uk/properties/162615749", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Utile Dulci", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136451/162615749/136451_VFISKE_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.714224", - "last_seen": "2025-06-01T22:05:47.083307", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01652, - 51.49224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3376.0, - "url": "https://www.rightmove.co.uk/properties/162615803", - "info": { - "identifier": 162615803, - "sqm_ocr": null, - "price": 3376.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162615803", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162615803/253604_69S3005_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2834.0, - "url": "https://www.rightmove.co.uk/properties/162615971", - "info": { - "identifier": 162615971, - "sqm_ocr": null, - "price": 2834.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162615971", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162615971/156986_LML25_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.568070", - "last_seen": "2025-06-01T22:05:41.150234", - "price": 2834.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27676, - 51.5577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 43.9, - "qmprice": 62.64, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162616091", - "info": { - "identifier": 162616091, - "sqm_ocr": 43.9, - "price": 2750.0, - "price_per_sqm": 62.64236902050114, - "url": "https://www.rightmove.co.uk/properties/162616091", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162616091/156986_MPD13_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.906085", - "last_seen": "2025-06-01T22:06:15.438756", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169999, - 51.521275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.0, - "qmprice": 41.51, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162616106", - "info": { - "identifier": 162616106, - "sqm_ocr": 53.0, - "price": 2200.0, - "price_per_sqm": 41.509433962264154, - "url": "https://www.rightmove.co.uk/properties/162616106", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Visum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35298/162616106/35298_22461_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.368377", - "last_seen": "2025-06-01T22:05:41.691116", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.040457, - 51.40956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162616175", - "info": { - "identifier": 162616175, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162616175", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Austin Homes London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105559/162616175/105559_a6c0b40c-6071-4483-b4ce-9ac1bda5e264_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.977102", - "last_seen": "2025-06-01T22:05:47.815997", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089644, - 51.52798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.1, - "qmprice": 30.76, - "rooms": 2, - "total_price": 2095.0, - "url": "https://www.rightmove.co.uk/properties/162616193", - "info": { - "identifier": 162616193, - "sqm_ocr": 68.1, - "price": 2095.0, - "price_per_sqm": 30.763582966226142, - "url": "https://www.rightmove.co.uk/properties/162616193", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58464/162616193/58464_33885625_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.649034", - "last_seen": "2025-06-01T22:05:58.836096", - "price": 2095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.296473, - 51.416527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/162616226", - "info": { - "identifier": 162616226, - "sqm_ocr": null, - "price": 2747.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162616226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Global House Estates", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74713/162616226/74713_c0FicjBUelRvZlN2d1ZiRG5XNlZiUT09_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.311958", - "last_seen": "2025-06-01T22:06:08.385020", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027088, - 51.501945 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.1, - "qmprice": 39.16, - "rooms": 2, - "total_price": 2980.0, - "url": "https://www.rightmove.co.uk/properties/162616229", - "info": { - "identifier": 162616229, - "sqm_ocr": 76.1, - "price": 2980.0, - "price_per_sqm": 39.15900131406045, - "url": "https://www.rightmove.co.uk/properties/162616229", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/169k/168029/162616229/168029_CGNL0003_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.607327", - "last_seen": "2025-06-01T22:05:58.523586", - "price": 2980.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30351, - 51.40846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162616337", - "info": { - "identifier": 162616337, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162616337", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Three Oaks Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/141k/140444/162616337/140444_5ARHG_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.825894", - "last_seen": "2025-06-01T22:06:03.871285", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.12684, - 51.57824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162616427", - "info": { - "identifier": 162616427, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162616427", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Romans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156068/162616427/156068_UXC220136_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.792894", - "last_seen": "2025-06-01T22:05:51.594376", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.483164, - 51.535458 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.8, - "qmprice": 26.14, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162616565", - "info": { - "identifier": 162616565, - "sqm_ocr": 91.8, - "price": 2400.0, - "price_per_sqm": 26.143790849673202, - "url": "https://www.rightmove.co.uk/properties/162616565", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Cortland", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260993/162616565/260993_LIVGR_023144_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.170772", - "last_seen": "2025-06-01T22:06:06.307015", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.062566, - 51.47437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162616574", - "info": { - "identifier": 162616574, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162616574", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Cortland", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249947/162616574/249947_LIVGR_023146_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.325869", - "last_seen": "2025-06-01T22:06:02.905057", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.078036, - 51.50564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162616577", - "info": { - "identifier": 162616577, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162616577", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Cortland", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249947/162616577/249947_LIVGR_023147_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.329387", - "last_seen": "2025-06-01T22:06:02.914223", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.078036, - 51.50564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162616664", - "info": { - "identifier": 162616664, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162616664", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/162616664/44537_TOL250787_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.124995", - "last_seen": "2025-06-01T22:06:08.927375", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065739, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.04, - "qmprice": 39.98, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162616667", - "info": { - "identifier": 162616667, - "sqm_ocr": 75.04, - "price": 3000.0, - "price_per_sqm": 39.97867803837953, - "url": "https://www.rightmove.co.uk/properties/162616667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279224/162616667/279224_JCC250032_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.026734", - "last_seen": "2025-06-01T22:05:59.295854", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136111, - 51.46758 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 40.16, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162616703", - "info": { - "identifier": 162616703, - "sqm_ocr": 61.0, - "price": 2450.0, - "price_per_sqm": 40.16393442622951, - "url": "https://www.rightmove.co.uk/properties/162616703", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162616703/87187_42239_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.138052", - "last_seen": "2025-06-01T22:06:02.056750", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.010897, - 51.51666 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162616706", - "info": { - "identifier": 162616706, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162616706", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162616706/87187_53796_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.118339", - "last_seen": "2025-06-01T22:05:55.981883", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092606, - 51.569744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.7, - "qmprice": 34.55, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162616787", - "info": { - "identifier": 162616787, - "sqm_ocr": 76.7, - "price": 2650.0, - "price_per_sqm": 34.55019556714472, - "url": "https://www.rightmove.co.uk/properties/162616787", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Robsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50427/162616787/50427_2704323_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.459977", - "last_seen": "2025-06-01T22:05:51.334588", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.43759, - 51.61292 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 43.21, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162616955", - "info": { - "identifier": 162616955, - "sqm_ocr": 81.0, - "price": 3500.0, - "price_per_sqm": 43.20987654320987, - "url": "https://www.rightmove.co.uk/properties/162616955", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13096/162616955/13096_EAL250146_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.632670", - "last_seen": "2025-06-01T22:05:39.838170", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1696, - 51.6018 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.0, - "qmprice": 35.09, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162616988", - "info": { - "identifier": 162616988, - "sqm_ocr": 57.0, - "price": 2000.0, - "price_per_sqm": 35.08771929824562, - "url": "https://www.rightmove.co.uk/properties/162616988", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65794/162616988/65794_33919828_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.587216", - "last_seen": "2025-06-01T22:06:14.247923", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.182468, - 51.43461 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3038.0, - "url": "https://www.rightmove.co.uk/properties/162617102", - "info": { - "identifier": 162617102, - "sqm_ocr": null, - "price": 3038.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162617102", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162617102/156986_RQY20053_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.231404", - "last_seen": "2025-06-01T22:05:41.356710", - "price": 3038.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27668, - 51.55605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3295.0, - "url": "https://www.rightmove.co.uk/properties/162617228", - "info": { - "identifier": 162617228, - "sqm_ocr": null, - "price": 3295.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162617228", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/162617228/249692_RL4652_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.217189", - "last_seen": "2025-06-01T22:05:42.823804", - "price": 3295.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142487, - 51.54441 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162617261", - "info": { - "identifier": 162617261, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162617261", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/169k/168029/162617261/168029_CGNL00025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.446489", - "last_seen": "2025-06-01T22:06:03.105689", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02884, - 51.51019 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162617309", - "info": { - "identifier": 162617309, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162617309", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "The Stow Brothers", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/115k/114391/162617309/114391_33919844_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.633262", - "last_seen": "2025-06-01T22:06:11.623391", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00719, - 51.63278 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162617375", - "info": { - "identifier": 162617375, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162617375", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/162617375/252785_33919851_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.398632", - "last_seen": "2025-06-01T22:05:49.625625", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06105, - 51.58928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2333.0, - "url": "https://www.rightmove.co.uk/properties/162617381", - "info": { - "identifier": 162617381, - "sqm_ocr": null, - "price": 2333.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162617381", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162617381/156986_FQD40018_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.361531", - "last_seen": "2025-06-01T22:05:40.208127", - "price": 2333.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2841, - 51.55512 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162617516", - "info": { - "identifier": 162617516, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162617516", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162617516/156986_MHF10023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.371234", - "last_seen": "2025-06-01T22:06:07.625838", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021729, - 51.5459 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 132.85, - "qmprice": 29.36, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162617525", - "info": { - "identifier": 162617525, - "sqm_ocr": 132.85, - "price": 3900.0, - "price_per_sqm": 29.356417011667297, - "url": "https://www.rightmove.co.uk/properties/162617525", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55326/162617525/55326_ISL150075_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.069811", - "last_seen": "2025-06-01T22:05:54.068209", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099224, - 51.538204 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.59, - "qmprice": 33.02, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162617573", - "info": { - "identifier": 162617573, - "sqm_ocr": 63.59, - "price": 2100.0, - "price_per_sqm": 33.02406038685328, - "url": "https://www.rightmove.co.uk/properties/162617573", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25055/162617573/25055_BOW220308_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.009207, - 51.508217 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162617606", - "info": { - "identifier": 162617606, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162617606", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/162617606/252785_33919872_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.863758", - "last_seen": "2025-06-01T22:05:40.789324", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277879, - 51.56166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162617624", - "info": { - "identifier": 162617624, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162617624", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Elms Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71927/162617624/71927_33919869_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.228827", - "last_seen": "2025-06-01T22:06:10.276451", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057378, - 51.52728 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.7, - "qmprice": 51.83, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162617639", - "info": { - "identifier": 162617639, - "sqm_ocr": 62.7, - "price": 3250.0, - "price_per_sqm": 51.8341307814992, - "url": "https://www.rightmove.co.uk/properties/162617639", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/162617639/15966_1327849_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.662880", - "last_seen": "2025-06-01T22:06:13.367244", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1791, - 51.468792 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.34, - "qmprice": 38.01, - "rooms": 3, - "total_price": 3396.0, - "url": "https://www.rightmove.co.uk/properties/162617726", - "info": { - "identifier": 162617726, - "sqm_ocr": 89.34, - "price": 3396.0, - "price_per_sqm": 38.012088650100736, - "url": "https://www.rightmove.co.uk/properties/162617726", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162617726/156986_MQD10040_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.558206", - "last_seen": "2025-06-01T22:05:41.161153", - "price": 3396.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277941, - 51.55744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.5, - "qmprice": 34.01, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162617741", - "info": { - "identifier": 162617741, - "sqm_ocr": 73.5, - "price": 2500.0, - "price_per_sqm": 34.01360544217687, - "url": "https://www.rightmove.co.uk/properties/162617741", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Alexander Rose Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274886/162617741/274886_L110229_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.893524", - "last_seen": "2025-06-01T22:06:07.649164", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.012615, - 51.547123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162617960", - "info": { - "identifier": 162617960, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162617960", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/162617960/252785_33919900_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.763269", - "last_seen": "2025-06-01T22:05:40.454736", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277829, - 51.561695 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162618047", - "info": { - "identifier": 162618047, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162618047", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Elms Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71927/162618047/71927_33919905_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.924477", - "last_seen": "2025-06-01T22:06:08.090840", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.049778, - 51.527313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/162618053", - "info": { - "identifier": 162618053, - "sqm_ocr": null, - "price": 3142.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162618053", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Abacus Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26267/162618053/26267_ABAC_011603_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.592797", - "last_seen": "2025-06-01T22:05:56.399303", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196787, - 51.559933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2246.0, - "url": "https://www.rightmove.co.uk/properties/162618146", - "info": { - "identifier": 162618146, - "sqm_ocr": null, - "price": 2246.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162618146", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162618146/156986_CDF33_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.687973", - "last_seen": "2025-06-01T22:05:40.464471", - "price": 2246.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28318, - 51.55863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.47, - "qmprice": 52.63, - "rooms": 2, - "total_price": 2709.0, - "url": "https://www.rightmove.co.uk/properties/162618152", - "info": { - "identifier": 162618152, - "sqm_ocr": 51.47, - "price": 2709.0, - "price_per_sqm": 52.63260151544589, - "url": "https://www.rightmove.co.uk/properties/162618152", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/162618152/84889_1327196_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.591555", - "last_seen": "2025-06-01T22:06:15.078990", - "price": 2709.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137433, - 51.485767 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.47, - "qmprice": 73.83, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162618155", - "info": { - "identifier": 162618155, - "sqm_ocr": 51.47, - "price": 3800.0, - "price_per_sqm": 73.82941519331649, - "url": "https://www.rightmove.co.uk/properties/162618155", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84889/162618155/84889_1327195_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.582027", - "last_seen": "2025-06-01T22:06:15.076253", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137433, - 51.485767 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3980.0, - "url": "https://www.rightmove.co.uk/properties/162618191", - "info": { - "identifier": 162618191, - "sqm_ocr": null, - "price": 3980.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162618191", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162618191/156986_NKU10014_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.071180", - "last_seen": "2025-06-01T22:06:12.350000", - "price": 3980.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19061, - 51.46197 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.48, - "qmprice": 23.77, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162618308", - "info": { - "identifier": 162618308, - "sqm_ocr": 111.48, - "price": 2650.0, - "price_per_sqm": 23.77108001435235, - "url": "https://www.rightmove.co.uk/properties/162618308", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Castles Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257141/162618308/257141_2714271_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.039508", - "last_seen": "2025-06-01T22:05:45.756303", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10176, - 51.62029 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3297.0, - "url": "https://www.rightmove.co.uk/properties/162618560", - "info": { - "identifier": 162618560, - "sqm_ocr": null, - "price": 3297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162618560", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Joseph Scott", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17295/162618560/17295_12683323_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.493499", - "last_seen": "2025-06-01T22:05:38.987462", - "price": 3297.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210938, - 51.61377 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.5, - "qmprice": 29.24, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162618569", - "info": { - "identifier": 162618569, - "sqm_ocr": 85.5, - "price": 2500.0, - "price_per_sqm": 29.239766081871345, - "url": "https://www.rightmove.co.uk/properties/162618569", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12685/162618569/12685_GER212808_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.670447", - "last_seen": "2025-06-01T22:05:43.495447", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108577, - 51.372864 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/162618611", - "info": { - "identifier": 162618611, - "sqm_ocr": null, - "price": 2899.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162618611", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "LAND ROYALE PROPERTIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272384/162618611/272384_OGEDDDYCLOSE_IMG_00_0000_max_656x437.png", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.314567", - "last_seen": "2025-06-01T22:05:50.861126", - "price": 2899.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.15815, - 51.572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/162618644", - "info": { - "identifier": 162618644, - "sqm_ocr": null, - "price": 3012.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162618644", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Sandfords", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151142/162618644/151142_RPL250038_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.139255", - "last_seen": "2025-06-01T22:06:16.081193", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161822, - 51.52352 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.8, - "qmprice": 30.14, - "rooms": 2, - "total_price": 2375.0, - "url": "https://www.rightmove.co.uk/properties/162618818", - "info": { - "identifier": 162618818, - "sqm_ocr": 78.8, - "price": 2375.0, - "price_per_sqm": 30.139593908629443, - "url": "https://www.rightmove.co.uk/properties/162618818", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72234/162618818/72234_RWL170147_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.460423", - "last_seen": "2025-06-01T22:06:07.630196", - "price": 2375.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.012935, - 51.530468 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162618836", - "info": { - "identifier": 162618836, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162618836", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162618836/238769_JWu2897592785_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.059026", - "last_seen": "2025-06-01T22:05:41.110766", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27554, - 51.55553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 51.05, - "rooms": 2, - "total_price": 3012.0, - "url": "https://www.rightmove.co.uk/properties/162618905", - "info": { - "identifier": 162618905, - "sqm_ocr": 59.0, - "price": 3012.0, - "price_per_sqm": 51.05084745762712, - "url": "https://www.rightmove.co.uk/properties/162618905", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Robert Irving Burns", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75301/162618905/75301_RIB240009_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.435788", - "last_seen": "2025-06-01T22:05:53.015553", - "price": 3011 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09323, - 51.55145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162618908", - "info": { - "identifier": 162618908, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162618908", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162618908/156986_NOE20007_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.607899", - "last_seen": "2025-06-01T22:05:59.162753", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1025, - 51.46418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2513.0, - "url": "https://www.rightmove.co.uk/properties/162618914", - "info": { - "identifier": 162618914, - "sqm_ocr": null, - "price": 2513.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162618914", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162618914/213815_568448_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.478522", - "last_seen": "2025-06-01T22:06:08.426366", - "price": 2513 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01919, - 51.52594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162618920", - "info": { - "identifier": 162618920, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162618920", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162618920/156986_CAJ20014_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.359979", - "last_seen": "2025-06-01T22:05:40.203774", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28318, - 51.55863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.6, - "qmprice": 35.64, - "rooms": 4, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162619085", - "info": { - "identifier": 162619085, - "sqm_ocr": 92.6, - "price": 3300.0, - "price_per_sqm": 35.63714902807776, - "url": "https://www.rightmove.co.uk/properties/162619085", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162619085/249341_SPB2_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.104015", - "last_seen": "2025-06-01T22:05:59.977473", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10311, - 51.47729 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.37, - "qmprice": 30.21, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162619091", - "info": { - "identifier": 162619091, - "sqm_ocr": 89.37, - "price": 2700.0, - "price_per_sqm": 30.211480362537763, - "url": "https://www.rightmove.co.uk/properties/162619091", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/162619091/77511_SHO180378_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.318006", - "last_seen": "2025-06-01T20:19:57.387653", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057403, - 51.515816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.09, - "qmprice": 23.63, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162619124", - "info": { - "identifier": 162619124, - "sqm_ocr": 93.09, - "price": 2200.0, - "price_per_sqm": 23.63304329143839, - "url": "https://www.rightmove.co.uk/properties/162619124", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Gardiner Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75433/162619124/75433_3048_GARD_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.942456", - "last_seen": "2025-06-01T22:05:44.000038", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30756, - 51.517937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.64, - "qmprice": 30.55, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162619493", - "info": { - "identifier": 162619493, - "sqm_ocr": 73.64, - "price": 2250.0, - "price_per_sqm": 30.55404671374253, - "url": "https://www.rightmove.co.uk/properties/162619493", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Oaks Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201446/162619493/201446_STR240323_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.502779", - "last_seen": "2025-06-01T22:05:59.812330", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.128742, - 51.41434 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.31, - "qmprice": 45.33, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/162619676", - "info": { - "identifier": 162619676, - "sqm_ocr": 69.31, - "price": 3142.0, - "price_per_sqm": 45.33256384360121, - "url": "https://www.rightmove.co.uk/properties/162619676", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16226/162619676/16226_SKL220013_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.188057", - "last_seen": "2025-06-01T22:05:57.881011", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184387, - 51.496113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162619715", - "info": { - "identifier": 162619715, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162619715", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/162619715/176261_102708018467_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.794423", - "last_seen": "2025-06-01T22:05:49.675905", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1064, - 51.58871 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/162619730", - "info": { - "identifier": 162619730, - "sqm_ocr": null, - "price": 3142.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162619730", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Homesforth Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280625/162619730/280625_HOMFR_001079_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.164124", - "last_seen": "2025-06-01T22:05:41.982349", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196603, - 51.559982 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162620165", - "info": { - "identifier": 162620165, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162620165", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209807/162620165/209807_CDL200205_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.409498", - "last_seen": "2025-06-01T22:06:09.240400", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.024738, - 51.502014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.08, - "qmprice": 37.46, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162620186", - "info": { - "identifier": 162620186, - "sqm_ocr": 84.08, - "price": 3150.0, - "price_per_sqm": 37.46431969552807, - "url": "https://www.rightmove.co.uk/properties/162620186", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162620186/249341_WIC30025_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.807420", - "last_seen": "2025-06-01T22:05:49.661173", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06348, - 51.58881 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/162620486", - "info": { - "identifier": 162620486, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162620486", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/162620486/96542_ROCH_001466_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.199459", - "last_seen": "2025-06-01T22:05:38.578658", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.206605, - 51.57492 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 52.05, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162620600", - "info": { - "identifier": 162620600, - "sqm_ocr": 73.0, - "price": 3800.0, - "price_per_sqm": 52.054794520547944, - "url": "https://www.rightmove.co.uk/properties/162620600", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/162620600/281513_LDN240029_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.927510", - "last_seen": "2025-06-01T22:05:53.390137", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.095442, - 51.5268 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162620627", - "info": { - "identifier": 162620627, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162620627", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "The Chant Group", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222842/162620627/222842_TCT250050_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.027802", - "last_seen": "2025-06-01T22:05:53.793351", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105415, - 51.553715 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.9, - "qmprice": 48.64, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162620765", - "info": { - "identifier": 162620765, - "sqm_ocr": 71.9, - "price": 3497.0, - "price_per_sqm": 48.63699582753824, - "url": "https://www.rightmove.co.uk/properties/162620765", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77695/162620765/77695_33918994_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.873770", - "last_seen": "2025-06-01T22:06:15.396242", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143771, - 51.4888 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.56, - "qmprice": 56.46, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162620840", - "info": { - "identifier": 162620840, - "sqm_ocr": 57.56, - "price": 3250.0, - "price_per_sqm": 56.462821403752606, - "url": "https://www.rightmove.co.uk/properties/162620840", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3723/162620840/3723_PHL240032_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.720694", - "last_seen": "2025-06-01T22:05:42.891780", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.142617, - 51.5384 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162620855", - "info": { - "identifier": 162620855, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162620855", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162620855/238769_jjw77849264_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.336897", - "last_seen": "2025-06-01T22:06:06.594640", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10169, - 51.49317 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.6, - "qmprice": 39.25, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162620879", - "info": { - "identifier": 162620879, - "sqm_ocr": 58.6, - "price": 2300.0, - "price_per_sqm": 39.24914675767918, - "url": "https://www.rightmove.co.uk/properties/162620879", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Lixing", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/255k/254453/162620879/254453_RX586520_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.914185", - "last_seen": "2025-06-01T22:06:03.178124", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.003884, - 51.526527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.2, - "qmprice": 24.43, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162620888", - "info": { - "identifier": 162620888, - "sqm_ocr": 96.2, - "price": 2350.0, - "price_per_sqm": 24.428274428274428, - "url": "https://www.rightmove.co.uk/properties/162620888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247493/162620888/247493_P471231_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.108316", - "last_seen": "2025-06-01T22:05:59.972738", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13363, - 51.45237 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.0, - "qmprice": 34.48, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162620891", - "info": { - "identifier": 162620891, - "sqm_ocr": 58.0, - "price": 2000.0, - "price_per_sqm": 34.48275862068966, - "url": "https://www.rightmove.co.uk/properties/162620891", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13096/162620891/13096_EAL250138_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.347182", - "last_seen": "2025-06-01T22:05:39.590729", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180657, - 51.591427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 34.62, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162621746", - "info": { - "identifier": 162621746, - "sqm_ocr": 65.0, - "price": 2250.0, - "price_per_sqm": 34.61538461538461, - "url": "https://www.rightmove.co.uk/properties/162621746", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/162621746/51465_65815f7c5d95a_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.510380", - "last_seen": "2025-06-01T22:06:12.142006", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21221, - 51.44271 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 137.96, - "qmprice": 22.11, - "rooms": 2, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/162621752", - "info": { - "identifier": 162621752, - "sqm_ocr": 137.96, - "price": 3050.0, - "price_per_sqm": 22.107857349956507, - "url": "https://www.rightmove.co.uk/properties/162621752", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Unique Property Company", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91220/162621752/91220_P64_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/11/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.047639", - "last_seen": "2025-06-01T22:05:42.506683", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14405, - 51.54669 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3696.0, - "url": "https://www.rightmove.co.uk/properties/162621764", - "info": { - "identifier": 162621764, - "sqm_ocr": null, - "price": 3696.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162621764", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167687/162621764/167687_2706058_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.058623", - "last_seen": "2025-06-01T22:05:48.544989", - "price": 3696 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22289, - 51.51113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162621824", - "info": { - "identifier": 162621824, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162621824", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Essential Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/274k/273860/162621824/273860__dressage_court_1__IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.05602, - 51.52431 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 158.3, - "qmprice": 23.69, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162621830", - "info": { - "identifier": 162621830, - "sqm_ocr": 158.3, - "price": 3750.0, - "price_per_sqm": 23.689197725837015, - "url": "https://www.rightmove.co.uk/properties/162621830", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hawes & Co", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/195k/194036/162621830/194036_HWV250105_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.420039", - "last_seen": "2025-06-01T22:06:01.777984", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205744, - 51.418724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162621926", - "info": { - "identifier": 162621926, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162621926", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Hampstead", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32760/162621926/32760_lindleyhouse2bedparkingd_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.951816", - "last_seen": "2025-06-01T22:05:39.419774", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24482, - 51.5821 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162621950", - "info": { - "identifier": 162621950, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162621950", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162621950/238769_hdhedhieh7_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.431973", - "last_seen": "2025-06-01T22:06:07.615257", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00212, - 51.53971 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162622064", - "info": { - "identifier": 162622064, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162622064", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162622064/238769_jfhfjdkdcjkdk888_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.183511", - "last_seen": "2025-06-01T22:06:07.728891", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00133, - 51.53903 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162622166", - "info": { - "identifier": 162622166, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162622166", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/162622166/67576_RL1337_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.984122", - "last_seen": "2025-06-01T22:05:39.460531", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172798, - 51.617046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.5, - "qmprice": 58.14, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162622250", - "info": { - "identifier": 162622250, - "sqm_ocr": 64.5, - "price": 3750.0, - "price_per_sqm": 58.13953488372093, - "url": "https://www.rightmove.co.uk/properties/162622250", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Austin Homes London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105559/162622250/105559_616c3a7a-da8c-48a8-b272-9670d9ccc917_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.447492", - "last_seen": "2025-06-01T22:05:53.053984", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096727, - 51.52926 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 30.9, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162622409", - "info": { - "identifier": 162622409, - "sqm_ocr": 89.0, - "price": 2750.0, - "price_per_sqm": 30.89887640449438, - "url": "https://www.rightmove.co.uk/properties/162622409", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Antony Roberts", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36579/162622409/36579_KEW030042_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.599204", - "last_seen": "2025-06-01T22:06:04.585261", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27562, - 51.475574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3722.0, - "url": "https://www.rightmove.co.uk/properties/162622559", - "info": { - "identifier": 162622559, - "sqm_ocr": null, - "price": 3722.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162622559", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167687/162622559/167687_2706208_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.999403", - "last_seen": "2025-06-01T22:05:48.848720", - "price": 3722 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22289, - 51.51113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2037.0, - "url": "https://www.rightmove.co.uk/properties/162623045", - "info": { - "identifier": 162623045, - "sqm_ocr": null, - "price": 2037.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162623045", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49784/162623045/49784_38309_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.962323", - "last_seen": "2025-06-01T22:06:00.575244", - "price": 2036 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03181, - 51.49072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162623102", - "info": { - "identifier": 162623102, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162623102", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105656/162623102/105656_KCZ251115_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.336464", - "last_seen": "2025-06-01T22:05:52.549618", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.268515, - 51.478386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.5, - "qmprice": 34.01, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162623285", - "info": { - "identifier": 162623285, - "sqm_ocr": 73.5, - "price": 2500.0, - "price_per_sqm": 34.01360544217687, - "url": "https://www.rightmove.co.uk/properties/162623285", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/162623285/281513_LDN180109_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.042252", - "last_seen": "2025-06-01T22:06:00.781801", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.036272, - 51.491814 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162623531", - "info": { - "identifier": 162623531, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162623531", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209807/162623531/209807_CDL190272_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.518213", - "last_seen": "2025-06-01T22:06:07.663774", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013046, - 51.531628 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.3, - "qmprice": 28.05, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162623573", - "info": { - "identifier": 162623573, - "sqm_ocr": 71.3, - "price": 2000.0, - "price_per_sqm": 28.050490883590463, - "url": "https://www.rightmove.co.uk/properties/162623573", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12814/162623573/12814_HIV250910_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.720651", - "last_seen": "2025-06-01T22:05:44.821673", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.316282, - 51.514557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.6, - "qmprice": 38.11, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162623642", - "info": { - "identifier": 162623642, - "sqm_ocr": 65.6, - "price": 2500.0, - "price_per_sqm": 38.10975609756098, - "url": "https://www.rightmove.co.uk/properties/162623642", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156782/162623642/156782_KAE230037_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.602640", - "last_seen": "2025-06-01T22:06:13.297822", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.163212, - 51.472893 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 31.33, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162623723", - "info": { - "identifier": 162623723, - "sqm_ocr": 83.0, - "price": 2600.0, - "price_per_sqm": 31.325301204819276, - "url": "https://www.rightmove.co.uk/properties/162623723", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Andrew Nunn & Associates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87794/162623723/87794_33920199_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.637555", - "last_seen": "2025-06-01T22:05:44.905968", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265651, - 51.50631 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162623777", - "info": { - "identifier": 162623777, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162623777", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/162623777/15966_1328391_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.206066", - "last_seen": "2025-06-01T22:06:13.852881", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179008, - 51.459484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.6, - "qmprice": 31.12, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162623852", - "info": { - "identifier": 162623852, - "sqm_ocr": 99.6, - "price": 3100.0, - "price_per_sqm": 31.124497991967875, - "url": "https://www.rightmove.co.uk/properties/162623852", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/162623852/264326_Y78205_2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.990742", - "last_seen": "2025-06-01T22:06:12.311358", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197363, - 51.462193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.1, - "qmprice": 48.13, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162623864", - "info": { - "identifier": 162623864, - "sqm_ocr": 83.1, - "price": 4000.0, - "price_per_sqm": 48.13477737665464, - "url": "https://www.rightmove.co.uk/properties/162623864", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Pearl & Chance", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267452/162623864/267452_4de0b9a0-58c3-4a52-9c69-9fe2600672b0_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.123908", - "last_seen": "2025-06-01T22:05:38.456827", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1979, - 51.565483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.51, - "qmprice": 34.81, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162623918", - "info": { - "identifier": 162623918, - "sqm_ocr": 67.51, - "price": 2350.0, - "price_per_sqm": 34.80965782846985, - "url": "https://www.rightmove.co.uk/properties/162623918", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80340/162623918/80340_a1G4J0000025ztOUAQ_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.034223", - "last_seen": "2025-06-01T22:05:52.100812", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28455, - 51.48849 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2899.0, - "url": "https://www.rightmove.co.uk/properties/162624125", - "info": { - "identifier": 162624125, - "sqm_ocr": null, - "price": 2899.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162624125", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/162624125/105856_3463_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.434783", - "last_seen": "2025-06-01T22:06:05.680378", - "price": 2899 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096597, - 51.49644 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.3, - "qmprice": 42.42, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162624131", - "info": { - "identifier": 162624131, - "sqm_ocr": 94.3, - "price": 4000.0, - "price_per_sqm": 42.417815482502654, - "url": "https://www.rightmove.co.uk/properties/162624131", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57994/162624131/57994_KDI251303_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.425109", - "last_seen": "2025-06-01T22:06:05.665750", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076131, - 51.451595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.3, - "qmprice": 23.0, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162624149", - "info": { - "identifier": 162624149, - "sqm_ocr": 91.3, - "price": 2100.0, - "price_per_sqm": 23.001095290251918, - "url": "https://www.rightmove.co.uk/properties/162624149", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137360/162624149/137360_1328377_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.277186", - "last_seen": "2025-06-01T22:05:41.609742", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.020738, - 51.397285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.1, - "qmprice": 28.16, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162624356", - "info": { - "identifier": 162624356, - "sqm_ocr": 110.1, - "price": 3100.0, - "price_per_sqm": 28.15622161671208, - "url": "https://www.rightmove.co.uk/properties/162624356", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/162624356/15975_1328376_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.492113", - "last_seen": "2025-06-01T22:06:01.503417", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220561, - 51.408787 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162624434", - "info": { - "identifier": 162624434, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162624434", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/162624434/67576_RL0127_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.635769", - "last_seen": "2025-06-01T22:05:42.195899", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149803, - 51.55155 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 34.51, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162624458", - "info": { - "identifier": 162624458, - "sqm_ocr": 71.0, - "price": 2450.0, - "price_per_sqm": 34.50704225352113, - "url": "https://www.rightmove.co.uk/properties/162624458", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/162624458/100423_1328380_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.202537", - "last_seen": "2025-06-01T22:06:04.382175", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299789, - 51.46048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 54.93, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162624476", - "info": { - "identifier": 162624476, - "sqm_ocr": 71.0, - "price": 3900.0, - "price_per_sqm": 54.929577464788736, - "url": "https://www.rightmove.co.uk/properties/162624476", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100423/162624476/100423_1328379_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.191921", - "last_seen": "2025-06-01T22:06:04.371488", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299789, - 51.46048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 38.66, - "rooms": 2, - "total_price": 2915.0, - "url": "https://www.rightmove.co.uk/properties/162624500", - "info": { - "identifier": 162624500, - "sqm_ocr": 75.4, - "price": 2915.0, - "price_per_sqm": 38.660477453580896, - "url": "https://www.rightmove.co.uk/properties/162624500", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214295/162624500/214295_LCS250127_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.589514", - "last_seen": "2025-06-01T22:05:56.226456", - "price": 2915.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222233, - 51.570724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.4, - "qmprice": 39.72, - "rooms": 2, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162624656", - "info": { - "identifier": 162624656, - "sqm_ocr": 75.4, - "price": 2995.0, - "price_per_sqm": 39.72148541114058, - "url": "https://www.rightmove.co.uk/properties/162624656", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214295/162624656/214295_LCS250128_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.682409", - "last_seen": "2025-06-01T22:05:39.016277", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221439, - 51.571205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 27.63, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162624980", - "info": { - "identifier": 162624980, - "sqm_ocr": 76.0, - "price": 2100.0, - "price_per_sqm": 27.63157894736842, - "url": "https://www.rightmove.co.uk/properties/162624980", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162624980/221711_3530_EAF_185417_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.482037", - "last_seen": "2025-06-01T22:06:08.420433", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052338, - 51.51599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 45.49, - "rooms": 2, - "total_price": 3275.0, - "url": "https://www.rightmove.co.uk/properties/162625064", - "info": { - "identifier": 162625064, - "sqm_ocr": 72.0, - "price": 3275.0, - "price_per_sqm": 45.486111111111114, - "url": "https://www.rightmove.co.uk/properties/162625064", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Get Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57558/162625064/57558_57558_p0193753_HIGH007C_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.440125", - "last_seen": "2025-06-01T22:06:07.623734", - "price": 3275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01052, - 51.546146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.3, - "qmprice": 62.6, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162625073", - "info": { - "identifier": 162625073, - "sqm_ocr": 62.3, - "price": 3900.0, - "price_per_sqm": 62.60032102728732, - "url": "https://www.rightmove.co.uk/properties/162625073", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92356/162625073/92356_KNS190062_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.400279", - "last_seen": "2025-06-01T22:05:58.158925", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208702, - 51.505295 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 27.03, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162625175", - "info": { - "identifier": 162625175, - "sqm_ocr": 74.0, - "price": 2000.0, - "price_per_sqm": 27.027027027027028, - "url": "https://www.rightmove.co.uk/properties/162625175", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Complete Prime Residential Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53946/162625175/53946_38080_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.140336", - "last_seen": "2025-06-01T22:05:46.137032", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.063906, - 51.488773 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162625199", - "info": { - "identifier": 162625199, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162625199", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162625199/96668_248235313052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.807846", - "last_seen": "2025-06-01T22:06:00.420352", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017088, - 51.42956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162625319", - "info": { - "identifier": 162625319, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162625319", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162625319/96668_249657926052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.103775", - "last_seen": "2025-06-01T22:05:41.060304", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283809, - 51.542828 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162625397", - "info": { - "identifier": 162625397, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162625397", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26204/162625397/26204_33920287_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.593194", - "last_seen": "2025-06-01T22:06:01.727601", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.237194, - 51.39938 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162625517", - "info": { - "identifier": 162625517, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162625517", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162625517/96668_250109330052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.615067", - "last_seen": "2025-06-01T22:05:54.021420", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.091453, - 51.55193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3456.0, - "url": "https://www.rightmove.co.uk/properties/162625553", - "info": { - "identifier": 162625553, - "sqm_ocr": null, - "price": 3456.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162625553", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82758/162625553/82758_TGF47_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.076419", - "last_seen": "2025-06-01T22:05:59.367894", - "price": 3456.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12958, - 51.48108 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162625556", - "info": { - "identifier": 162625556, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162625556", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162625556/96668_250111830052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.674085", - "last_seen": "2025-06-01T22:05:42.242257", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194659, - 51.5513 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.8, - "qmprice": 34.98, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/162625652", - "info": { - "identifier": 162625652, - "sqm_ocr": 62.8, - "price": 2197.0, - "price_per_sqm": 34.98407643312102, - "url": "https://www.rightmove.co.uk/properties/162625652", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84791/162625652/84791_32398160_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.784834", - "last_seen": "2025-06-01T22:05:56.480669", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283435, - 51.532425 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162625745", - "info": { - "identifier": 162625745, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162625745", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Anthony Webb Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9316/162625745/9316_33920317_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.998271", - "last_seen": "2025-06-01T22:05:45.559848", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.103132, - 51.61692 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2903.0, - "url": "https://www.rightmove.co.uk/properties/162625763", - "info": { - "identifier": 162625763, - "sqm_ocr": null, - "price": 2903.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162625763", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162625763/213815_705889_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.437774", - "last_seen": "2025-06-01T22:06:09.257149", - "price": 2903 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018095, - 51.498302 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.32, - "qmprice": 25.96, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162625955", - "info": { - "identifier": 162625955, - "sqm_ocr": 96.32, - "price": 2500.0, - "price_per_sqm": 25.955149501661133, - "url": "https://www.rightmove.co.uk/properties/162625955", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Alliance London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77148/162625955/77148_190079_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.509179", - "last_seen": "2025-06-01T22:06:10.992703", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03425, - 51.51159 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162626057", - "info": { - "identifier": 162626057, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162626057", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162626057/238769_lg3bed30052025vac_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.619153", - "last_seen": "2025-06-01T22:06:06.986013", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09147, - 51.48667 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.78, - "qmprice": 41.45, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162626159", - "info": { - "identifier": 162626159, - "sqm_ocr": 74.78, - "price": 3100.0, - "price_per_sqm": 41.45493447445841, - "url": "https://www.rightmove.co.uk/properties/162626159", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Storeys", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176102/162626159/176102_33920368_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.195289", - "last_seen": "2025-06-01T22:05:42.784660", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125838, - 51.54214 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2625.0, - "url": "https://www.rightmove.co.uk/properties/162626174", - "info": { - "identifier": 162626174, - "sqm_ocr": null, - "price": 2625.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162626174", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Grainger", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262865/162626174/262865_a1G8d000002QBQNEA4_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.394581", - "last_seen": "2025-06-01T22:06:03.011816", - "price": 2625.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00996, - 51.51357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162626336", - "info": { - "identifier": 162626336, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162626336", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Streets Ahead", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181634/162626336/181634_SNW250002_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.680833", - "last_seen": "2025-06-01T22:05:43.514634", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.082559, - 51.404854 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162626375", - "info": { - "identifier": 162626375, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162626375", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25055/162626375/25055_BOW230434_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.621910", - "last_seen": "2025-06-01T22:06:09.783659", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02152, - 51.530045 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162626444", - "info": { - "identifier": 162626444, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162626444", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162626444/238769_3bwooler30052025vac_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.368749", - "last_seen": "2025-06-01T22:06:06.996963", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08897, - 51.4878 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.0, - "qmprice": 38.83, - "rooms": 4, - "total_price": 3999.0, - "url": "https://www.rightmove.co.uk/properties/162626447", - "info": { - "identifier": 162626447, - "sqm_ocr": 103.0, - "price": 3999.0, - "price_per_sqm": 38.8252427184466, - "url": "https://www.rightmove.co.uk/properties/162626447", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247487/162626447/247487_P285668_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.277836", - "last_seen": "2025-06-01T22:05:43.139331", - "price": 3999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14337, - 51.53858 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162626582", - "info": { - "identifier": 162626582, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162626582", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Excel Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99425/162626582/99425_102708041012_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.877362", - "last_seen": "2025-06-01T22:05:50.546144", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27661, - 51.58459 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162626633", - "info": { - "identifier": 162626633, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162626633", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162626633/238769_mnvcdcfghjpoiuytr1236654_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.309674", - "last_seen": "2025-06-01T22:06:06.539859", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09076, - 51.48639 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2881.0, - "url": "https://www.rightmove.co.uk/properties/162626672", - "info": { - "identifier": 162626672, - "sqm_ocr": null, - "price": 2881.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162626672", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288413/162626672/288413_3-Bed-F-232-300525_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.411903", - "last_seen": "2025-06-01T22:05:51.541196", - "price": 2881.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42424, - 51.50568 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.75, - "qmprice": 42.11, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162626705", - "info": { - "identifier": 162626705, - "sqm_ocr": 61.75, - "price": 2600.0, - "price_per_sqm": 42.10526315789474, - "url": "https://www.rightmove.co.uk/properties/162626705", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247487/162626705/247487_P288369_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.508941", - "last_seen": "2025-06-01T22:05:42.024297", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1315, - 51.54685 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162626828", - "info": { - "identifier": 162626828, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162626828", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Oyster Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19059/162626828/19059_99991c3d-5ea6-40ae-a7e3-a30eb31a9b4d_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.991473", - "last_seen": "2025-06-01T22:05:50.446748", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.281159, - 51.601788 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162626867", - "info": { - "identifier": 162626867, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162626867", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/162626867/281513_LDN200064_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.304466", - "last_seen": "2025-06-01T22:05:46.396562", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026932, - 51.461437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2839.0, - "url": "https://www.rightmove.co.uk/properties/162626894", - "info": { - "identifier": 162626894, - "sqm_ocr": null, - "price": 2839.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162626894", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288413/162626894/288413_3-Bed-F-263-300525_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.352174", - "last_seen": "2025-06-01T22:05:51.264802", - "price": 2839.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42424, - 51.50568 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2280.0, - "url": "https://www.rightmove.co.uk/properties/162626930", - "info": { - "identifier": 162626930, - "sqm_ocr": null, - "price": 2280.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162626930", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288413/162626930/288413_2-Bed-F-209-300525_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.790327", - "last_seen": "2025-06-01T22:05:51.596816", - "price": 2280.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42389, - 51.50553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2280.0, - "url": "https://www.rightmove.co.uk/properties/162626975", - "info": { - "identifier": 162626975, - "sqm_ocr": null, - "price": 2280.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162626975", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288413/162626975/288413_2-Bed-F-228-300525_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.799788", - "last_seen": "2025-06-01T22:05:51.623562", - "price": 2280.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42381, - 51.50547 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2290.0, - "url": "https://www.rightmove.co.uk/properties/162626984", - "info": { - "identifier": 162626984, - "sqm_ocr": null, - "price": 2290.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162626984", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162626984/238769_3052025VAC2BEDRR_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.839961", - "last_seen": "2025-06-01T22:05:45.168073", - "price": 2290.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26133, - 51.52348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.5, - "qmprice": 33.72, - "rooms": 2, - "total_price": 2175.0, - "url": "https://www.rightmove.co.uk/properties/162626996", - "info": { - "identifier": 162626996, - "sqm_ocr": 64.5, - "price": 2175.0, - "price_per_sqm": 33.72093023255814, - "url": "https://www.rightmove.co.uk/properties/162626996", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Absolute Property Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74249/162626996/74249_33853198_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.153863", - "last_seen": "2025-06-01T22:05:39.768256", - "price": 2175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.253373, - 51.6161 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.9, - "qmprice": 45.39, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162627290", - "info": { - "identifier": 162627290, - "sqm_ocr": 75.9, - "price": 3445.0, - "price_per_sqm": 45.388669301712774, - "url": "https://www.rightmove.co.uk/properties/162627290", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58979/162627290/58979_CHQ012562498_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.350316", - "last_seen": "2025-06-01T22:05:58.023141", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1803, - 51.4824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.4, - "qmprice": 39.38, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162627446", - "info": { - "identifier": 162627446, - "sqm_ocr": 58.4, - "price": 2300.0, - "price_per_sqm": 39.38356164383562, - "url": "https://www.rightmove.co.uk/properties/162627446", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/162627446/65785_33920459_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.430374", - "last_seen": "2025-06-01T22:06:12.090555", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.148182, - 51.440224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.8, - "qmprice": 34.82, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162627995", - "info": { - "identifier": 162627995, - "sqm_ocr": 71.8, - "price": 2500.0, - "price_per_sqm": 34.81894150417828, - "url": "https://www.rightmove.co.uk/properties/162627995", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Paramount", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62636/162627995/62636_WST100068_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.747371", - "last_seen": "2025-06-01T22:05:42.359577", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190529, - 51.547997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.6, - "qmprice": 29.37, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162628277", - "info": { - "identifier": 162628277, - "sqm_ocr": 76.6, - "price": 2250.0, - "price_per_sqm": 29.3733681462141, - "url": "https://www.rightmove.co.uk/properties/162628277", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Andrews Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/191k/190292/162628277/190292_101809019934_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.783174", - "last_seen": "2025-06-01T22:05:51.574712", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.44013, - 51.54704 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.8, - "qmprice": 27.7, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162628328", - "info": { - "identifier": 162628328, - "sqm_ocr": 75.8, - "price": 2100.0, - "price_per_sqm": 27.70448548812665, - "url": "https://www.rightmove.co.uk/properties/162628328", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Warren Bradley Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/3k/2973/162628328/2973_wbe_111367478_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.687932", - "last_seen": "2025-06-01T22:05:39.108007", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.210619, - 51.56709 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.64, - "qmprice": 34.72, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162628385", - "info": { - "identifier": 162628385, - "sqm_ocr": 80.64, - "price": 2800.0, - "price_per_sqm": 34.72222222222222, - "url": "https://www.rightmove.co.uk/properties/162628385", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162628385/43310_CWL230405_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.322083", - "last_seen": "2025-06-01T22:06:10.530188", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018168, - 51.50129 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.1, - "qmprice": 34.05, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162628427", - "info": { - "identifier": 162628427, - "sqm_ocr": 88.1, - "price": 3000.0, - "price_per_sqm": 34.0522133938706, - "url": "https://www.rightmove.co.uk/properties/162628427", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15966/162628427/15966_1328234_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.201789", - "last_seen": "2025-06-01T22:06:13.877670", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158676, - 51.45396 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162628466", - "info": { - "identifier": 162628466, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162628466", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89228/162628466/89228_WCL250103_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.509963", - "last_seen": "2025-06-01T22:05:40.431465", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276402, - 51.561123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.8, - "qmprice": 58.24, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162628493", - "info": { - "identifier": 162628493, - "sqm_ocr": 55.8, - "price": 3250.0, - "price_per_sqm": 58.24372759856631, - "url": "https://www.rightmove.co.uk/properties/162628493", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101522/162628493/101522_1328412_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.954330", - "last_seen": "2025-06-01T22:05:47.369439", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070235, - 51.545746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162628556", - "info": { - "identifier": 162628556, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162628556", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162628556/238769_3c969ac3-520f-4c02-804d-d0bb9a2e035d_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.937439", - "last_seen": "2025-06-01T22:05:56.465566", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14221, - 51.54197 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.29, - "qmprice": 26.37, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162628643", - "info": { - "identifier": 162628643, - "sqm_ocr": 104.29, - "price": 2750.0, - "price_per_sqm": 26.368779365231564, - "url": "https://www.rightmove.co.uk/properties/162628643", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269888/162628643/269888_NEW130176_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.969808", - "last_seen": "2025-06-01T22:06:00.578706", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.044587, - 51.4799 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/162628649", - "info": { - "identifier": 162628649, - "sqm_ocr": null, - "price": 3098.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162628649", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162628649/213815_704351_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.404682", - "last_seen": "2025-06-01T22:05:46.295290", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00616, - 51.50249 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.7, - "qmprice": 34.06, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162628664", - "info": { - "identifier": 162628664, - "sqm_ocr": 105.7, - "price": 3600.0, - "price_per_sqm": 34.058656575212865, - "url": "https://www.rightmove.co.uk/properties/162628664", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15981/162628664/15981_1327644_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.240265", - "last_seen": "2025-06-01T22:06:12.792906", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15064, - 51.452286 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.4, - "qmprice": 36.65, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162628697", - "info": { - "identifier": 162628697, - "sqm_ocr": 76.4, - "price": 2800.0, - "price_per_sqm": 36.64921465968586, - "url": "https://www.rightmove.co.uk/properties/162628697", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16050/162628697/16050_1328413_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.001821", - "last_seen": "2025-06-01T22:06:08.448698", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.041274, - 51.528046 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.3, - "qmprice": 37.65, - "rooms": 2, - "total_price": 2383.0, - "url": "https://www.rightmove.co.uk/properties/162628865", - "info": { - "identifier": 162628865, - "sqm_ocr": 63.3, - "price": 2383.0, - "price_per_sqm": 37.64612954186414, - "url": "https://www.rightmove.co.uk/properties/162628865", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77695/162628865/77695_33920542_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.009332", - "last_seen": "2025-06-01T22:06:15.606547", - "price": 2383 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.145968, - 51.489246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162629006", - "info": { - "identifier": 162629006, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162629006", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jayson Russell", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43502/162629006/43502_33920557_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.868344", - "last_seen": "2025-06-01T22:05:39.326023", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214968, - 51.58649 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 35.71, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162629294", - "info": { - "identifier": 162629294, - "sqm_ocr": 70.0, - "price": 2500.0, - "price_per_sqm": 35.714285714285715, - "url": "https://www.rightmove.co.uk/properties/162629294", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Paramount", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62636/162629294/62636_PAR170004_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.661886", - "last_seen": "2025-06-01T22:05:40.647231", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208159, - 51.540894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 30.14, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162629366", - "info": { - "identifier": 162629366, - "sqm_ocr": 73.0, - "price": 2200.0, - "price_per_sqm": 30.136986301369863, - "url": "https://www.rightmove.co.uk/properties/162629366", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "HOBARTS", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/32k/31274/162629366/31274_hobarts_452860520_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.064784", - "last_seen": "2025-06-01T22:05:49.932611", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116665, - 51.60857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162629426", - "info": { - "identifier": 162629426, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162629426", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "PMP International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240842/162629426/240842_33920615_IMG_00_0000_max_656x437.png", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.841274", - "last_seen": "2025-06-01T22:06:16.110980", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183845, - 51.53156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/162629561", - "info": { - "identifier": 162629561, - "sqm_ocr": null, - "price": 3098.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162629561", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162629561/213815_705895_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.297782", - "last_seen": "2025-06-01T22:05:46.833186", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.017953, - 51.49251 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 41.67, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162629717", - "info": { - "identifier": 162629717, - "sqm_ocr": 84.0, - "price": 3500.0, - "price_per_sqm": 41.666666666666664, - "url": "https://www.rightmove.co.uk/properties/162629717", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157376/162629717/157376_33920655_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.531312", - "last_seen": "2025-06-01T22:06:09.587536", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04843, - 51.530556 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/162629723", - "info": { - "identifier": 162629723, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162629723", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/162629723/191744_RL5016_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.571229", - "last_seen": "2025-06-01T22:06:15.198594", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.173668, - 51.51209 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.4, - "qmprice": 50.47, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162629987", - "info": { - "identifier": 162629987, - "sqm_ocr": 64.4, - "price": 3250.0, - "price_per_sqm": 50.46583850931677, - "url": "https://www.rightmove.co.uk/properties/162629987", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157394/162629987/157394_CNL170175_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.166482", - "last_seen": "2025-06-01T22:05:42.741227", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143331, - 51.53858 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.38, - "qmprice": 41.94, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162630005", - "info": { - "identifier": 162630005, - "sqm_ocr": 64.38, - "price": 2700.0, - "price_per_sqm": 41.938490214352285, - "url": "https://www.rightmove.co.uk/properties/162630005", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hyde Park Agencies", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77287/162630005/77287_33920657_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.352507", - "last_seen": "2025-06-01T22:06:14.750833", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187742, - 51.51728 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2910.0, - "url": "https://www.rightmove.co.uk/properties/162630035", - "info": { - "identifier": 162630035, - "sqm_ocr": null, - "price": 2910.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162630035", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Get Living", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57558/162630035/57558_57558_p0192993_LUNA0019_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.776429", - "last_seen": "2025-06-01T22:06:07.279256", - "price": 2910.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008613, - 51.545925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162630470", - "info": { - "identifier": 162630470, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162630470", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "EweMove", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264530/162630470/264530_10679542_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.321101", - "last_seen": "2025-06-01T22:05:38.772024", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175016, - 51.628918 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.32, - "qmprice": 49.71, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162630491", - "info": { - "identifier": 162630491, - "sqm_ocr": 54.32, - "price": 2700.0, - "price_per_sqm": 49.70544918998527, - "url": "https://www.rightmove.co.uk/properties/162630491", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162630491/238769_f4f11de0-1587-4832-8cee-f1f4a6bea77e_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.080068", - "last_seen": "2025-06-01T22:06:05.410319", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07907, - 51.50059 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162630557", - "info": { - "identifier": 162630557, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162630557", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3728/162630557/3728_CHE230048_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.218283", - "last_seen": "2025-06-01T22:05:57.424541", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175051, - 51.484585 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.3, - "qmprice": 49.74, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162630665", - "info": { - "identifier": 162630665, - "sqm_ocr": 58.3, - "price": 2900.0, - "price_per_sqm": 49.742710120068615, - "url": "https://www.rightmove.co.uk/properties/162630665", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156833/162630665/156833_RMQ012564364_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.056108", - "last_seen": "2025-06-01T22:05:51.972589", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27012, - 51.493416 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162630776", - "info": { - "identifier": 162630776, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162630776", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Gascoigne-Pees Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5145/162630776/5145_000076595_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.850251", - "last_seen": "2025-06-01T22:05:58.919687", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30118, - 51.41319 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162630785", - "info": { - "identifier": 162630785, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162630785", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162630785/238769_75415521-100c-42f5-8e78-61a962fc30a2_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.662266", - "last_seen": "2025-06-01T22:06:07.020144", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09637, - 51.49691 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.5, - "qmprice": 54.95, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162630800", - "info": { - "identifier": 162630800, - "sqm_ocr": 45.5, - "price": 2500.0, - "price_per_sqm": 54.94505494505494, - "url": "https://www.rightmove.co.uk/properties/162630800", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279227/162630800/279227_WLS210017_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.728190", - "last_seen": "2025-06-01T22:06:13.553764", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.155429, - 51.43791 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.38, - "qmprice": 33.97, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162630890", - "info": { - "identifier": 162630890, - "sqm_ocr": 85.38, - "price": 2900.0, - "price_per_sqm": 33.96579995315062, - "url": "https://www.rightmove.co.uk/properties/162630890", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233849/162630890/233849_2661219_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.239527", - "last_seen": "2025-06-01T22:05:52.298590", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30925, - 51.4824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162630893", - "info": { - "identifier": 162630893, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162630893", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247511/162630893/247511_P466495_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.569313", - "last_seen": "2025-06-01T22:06:11.191002", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05032, - 51.53284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/162630896", - "info": { - "identifier": 162630896, - "sqm_ocr": null, - "price": 3098.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162630896", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162630896/213815_552466_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.572222", - "last_seen": "2025-06-01T22:06:11.211811", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.011895, - 51.524326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.92, - "qmprice": 49.43, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162630926", - "info": { - "identifier": 162630926, - "sqm_ocr": 80.92, - "price": 4000.0, - "price_per_sqm": 49.431537320810676, - "url": "https://www.rightmove.co.uk/properties/162630926", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Storeys", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176102/162630926/176102_33920748_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.492026", - "last_seen": "2025-06-01T22:05:43.242040", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075948, - 51.51587 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.17, - "qmprice": 31.35, - "rooms": 4, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162631013", - "info": { - "identifier": 162631013, - "sqm_ocr": 70.17, - "price": 2200.0, - "price_per_sqm": 31.352429813310533, - "url": "https://www.rightmove.co.uk/properties/162631013", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "STONEBANKS UK LTD", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272417/162631013/272417_33920757_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.953151", - "last_seen": "2025-06-01T22:05:44.748129", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.263269, - 51.53282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162631079", - "info": { - "identifier": 162631079, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162631079", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Gibson Lane", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22316/162631079/22316_33920762_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.775964", - "last_seen": "2025-06-01T22:05:58.771920", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.293518, - 51.419174 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2399.0, - "url": "https://www.rightmove.co.uk/properties/162631100", - "info": { - "identifier": 162631100, - "sqm_ocr": null, - "price": 2399.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162631100", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219908/162631100/219908_4096_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.952511", - "last_seen": "2025-06-01T22:05:51.875442", - "price": 2399.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.341103, - 51.4738 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162631106", - "info": { - "identifier": 162631106, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162631106", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162631106/96668_233047421122024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.155453", - "last_seen": "2025-06-01T22:06:08.945357", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068687, - 51.5261 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.3, - "qmprice": 28.18, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162631160", - "info": { - "identifier": 162631160, - "sqm_ocr": 76.3, - "price": 2150.0, - "price_per_sqm": 28.17824377457405, - "url": "https://www.rightmove.co.uk/properties/162631160", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Gibson Lane", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22316/162631160/22316_33920770_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.625134", - "last_seen": "2025-06-01T22:05:58.547490", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.281022, - 51.41196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.25, - "qmprice": 49.83, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162631193", - "info": { - "identifier": 162631193, - "sqm_ocr": 75.25, - "price": 3750.0, - "price_per_sqm": 49.83388704318937, - "url": "https://www.rightmove.co.uk/properties/162631193", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Storeys", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176102/162631193/176102_33920771_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.947661", - "last_seen": "2025-06-01T22:06:08.719896", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.072925, - 51.52868 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.94, - "qmprice": 34.46, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162631241", - "info": { - "identifier": 162631241, - "sqm_ocr": 60.94, - "price": 2100.0, - "price_per_sqm": 34.4601247128323, - "url": "https://www.rightmove.co.uk/properties/162631241", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162631241/96668_247595907052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.354639", - "last_seen": "2025-06-01T22:06:13.215437", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166161, - 51.47708 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.4, - "qmprice": 29.68, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162631307", - "info": { - "identifier": 162631307, - "sqm_ocr": 99.4, - "price": 2950.0, - "price_per_sqm": 29.678068410462775, - "url": "https://www.rightmove.co.uk/properties/162631307", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Japan Services Rent", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94576/162631307/94576_RL0283_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.472836", - "last_seen": "2025-06-01T22:05:44.398890", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.272447, - 51.5232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162631352", - "info": { - "identifier": 162631352, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162631352", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "NEXIS Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272531/162631352/272531_MYR240091_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.464292", - "last_seen": "2025-06-01T22:05:58.443905", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200544, - 51.495113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162631406", - "info": { - "identifier": 162631406, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162631406", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Priory LM", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33060/162631406/33060_101524004560_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.370758", - "last_seen": "2025-06-01T22:05:45.314360", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.318, - 51.52287 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 110.6, - "qmprice": 20.16, - "rooms": 2, - "total_price": 2230.0, - "url": "https://www.rightmove.co.uk/properties/162631421", - "info": { - "identifier": 162631421, - "sqm_ocr": 110.6, - "price": 2230.0, - "price_per_sqm": 20.162748643761304, - "url": "https://www.rightmove.co.uk/properties/162631421", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162631421/96668_250115930052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.843572", - "last_seen": "2025-06-01T22:06:07.163534", - "price": 2230.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037822, - 51.4959 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 36.0, - "qmprice": 68.06, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162631436", - "info": { - "identifier": 162631436, - "sqm_ocr": 36.0, - "price": 2450.0, - "price_per_sqm": 68.05555555555556, - "url": "https://www.rightmove.co.uk/properties/162631436", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77511/162631436/77511_SHO161239_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.147637", - "last_seen": "2025-06-01T22:05:48.021116", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.083766, - 51.524063 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2210.0, - "url": "https://www.rightmove.co.uk/properties/162631439", - "info": { - "identifier": 162631439, - "sqm_ocr": null, - "price": 2210.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162631439", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162631439/213815_704354_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.064894", - "last_seen": "2025-06-01T20:19:58.648404", - "price": 2210 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052454, - 51.521107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.43, - "qmprice": 29.23, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162631511", - "info": { - "identifier": 162631511, - "sqm_ocr": 68.43, - "price": 2000.0, - "price_per_sqm": 29.22694724536022, - "url": "https://www.rightmove.co.uk/properties/162631511", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162631511/238769_668b43ee-0d5a-480a-857e-175970188638_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.054961", - "last_seen": "2025-06-01T22:06:00.804730", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01453, - 51.46399 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162631799", - "info": { - "identifier": 162631799, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162631799", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "NEXIS Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272531/162631799/272531_MYR240007_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.964654", - "last_seen": "2025-06-01T22:05:57.717441", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202803, - 51.495663 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.6, - "qmprice": 33.0, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162631865", - "info": { - "identifier": 162631865, - "sqm_ocr": 60.6, - "price": 2000.0, - "price_per_sqm": 33.003300330033, - "url": "https://www.rightmove.co.uk/properties/162631865", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Found Property London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228713/162631865/228713_FOUND_000006_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.006511, - 51.492836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162631904", - "info": { - "identifier": 162631904, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162631904", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146498/162631904/146498_33920818_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.077512", - "last_seen": "2025-06-01T22:06:06.195275", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107305, - 51.49438 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3870.0, - "url": "https://www.rightmove.co.uk/properties/162631937", - "info": { - "identifier": 162631937, - "sqm_ocr": null, - "price": 3870.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162631937", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162631937/238769_ALMA9083202198123_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.335465", - "last_seen": "2025-06-01T22:06:10.568272", - "price": 3870.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07097, - 51.51502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/162632204", - "info": { - "identifier": 162632204, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162632204", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Rochester Place", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96542/162632204/96542_ROCH_000277_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.667414", - "last_seen": "2025-06-01T22:05:42.231072", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133317, - 51.548363 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162632486", - "info": { - "identifier": 162632486, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162632486", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Lawson Rutter", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44364/162632486/44364_LRS2001D9A_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.124177", - "last_seen": "2025-06-01T22:05:48.673513", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204159, - 51.48128 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162632516", - "info": { - "identifier": 162632516, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162632516", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84839/162632516/84839_33920852_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.363213", - "last_seen": "2025-06-01T22:05:52.622627", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.346857, - 51.478718 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.3, - "qmprice": 49.53, - "rooms": 2, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/162632618", - "info": { - "identifier": 162632618, - "sqm_ocr": 78.3, - "price": 3878.0, - "price_per_sqm": 49.52745849297574, - "url": "https://www.rightmove.co.uk/properties/162632618", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54732/162632618/54732_STL230111_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.017536", - "last_seen": "2025-06-01T22:06:15.625009", - "price": 3878 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172437, - 51.524696 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.6, - "qmprice": 28.15, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162632621", - "info": { - "identifier": 162632621, - "sqm_ocr": 90.6, - "price": 2550.0, - "price_per_sqm": 28.145695364238414, - "url": "https://www.rightmove.co.uk/properties/162632621", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212357/162632621/212357_P161175_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.632875", - "last_seen": "2025-06-01T22:05:46.721981", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0176, - 51.48293 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 48.19, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162632810", - "info": { - "identifier": 162632810, - "sqm_ocr": 83.0, - "price": 4000.0, - "price_per_sqm": 48.19277108433735, - "url": "https://www.rightmove.co.uk/properties/162632810", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Knightsbridge International Real Estate", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238904/162632810/238904_33920885_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.824444", - "last_seen": "2025-06-01T22:05:48.643212", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.207717, - 51.488186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.2, - "qmprice": 32.1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162632885", - "info": { - "identifier": 162632885, - "sqm_ocr": 73.2, - "price": 2350.0, - "price_per_sqm": 32.10382513661202, - "url": "https://www.rightmove.co.uk/properties/162632885", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Royal Arsenal Residential", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13540/162632885/13540_102719000607_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.323421", - "last_seen": "2025-06-01T22:05:46.426655", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06819, - 51.49439 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.3, - "qmprice": 39.02, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162632981", - "info": { - "identifier": 162632981, - "sqm_ocr": 83.3, - "price": 3250.0, - "price_per_sqm": 39.015606242497, - "url": "https://www.rightmove.co.uk/properties/162632981", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Latymers Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74302/162632981/74302_LATYM_000248_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.249272", - "last_seen": "2025-06-01T22:05:49.357113", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218985, - 51.493282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162633038", - "info": { - "identifier": 162633038, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162633038", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162633038/238769_na308568968_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.663088", - "last_seen": "2025-06-01T22:05:40.650243", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29291, - 51.55398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.1, - "qmprice": 27.75, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162633065", - "info": { - "identifier": 162633065, - "sqm_ocr": 90.1, - "price": 2500.0, - "price_per_sqm": 27.74694783573807, - "url": "https://www.rightmove.co.uk/properties/162633065", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Royal Arsenal Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13540/162633065/13540_102719000608_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.331699", - "last_seen": "2025-06-01T22:05:46.446818", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07094, - 51.49156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.2, - "qmprice": 27.41, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162633068", - "info": { - "identifier": 162633068, - "sqm_ocr": 91.2, - "price": 2500.0, - "price_per_sqm": 27.412280701754383, - "url": "https://www.rightmove.co.uk/properties/162633068", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Marc and Partners", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201956/162633068/201956_MAY220206_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.193887", - "last_seen": "2025-06-01T22:05:44.406506", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.250062, - 51.513474 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162633071", - "info": { - "identifier": 162633071, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162633071", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162633071/238769_na75889_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.638045", - "last_seen": "2025-06-01T22:05:40.604164", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29291, - 51.55398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.79, - "qmprice": 31.78, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162633089", - "info": { - "identifier": 162633089, - "sqm_ocr": 70.79, - "price": 2250.0, - "price_per_sqm": 31.78415030371521, - "url": "https://www.rightmove.co.uk/properties/162633089", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162633089/43310_CWL250221_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.516049", - "last_seen": "2025-06-01T22:06:09.574330", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004999, - 51.51321 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162633125", - "info": { - "identifier": 162633125, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162633125", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162633125/238769_na20485084086_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.106907", - "last_seen": "2025-06-01T22:05:41.090413", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29291, - 51.55398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162633155", - "info": { - "identifier": 162633155, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162633155", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "URBAN BASE PROPERTIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287006/162633155/287006_33OVALROADNORTH_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.083809", - "last_seen": "2025-06-01T22:05:38.317168", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.15415, - 51.53282 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162633158", - "info": { - "identifier": 162633158, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162633158", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/162633158/281513_LDN200065_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.755848", - "last_seen": "2025-06-01T22:05:46.910089", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026932, - 51.461437 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162633362", - "info": { - "identifier": 162633362, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162633362", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/162633362/108947_1328371_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.963035", - "last_seen": "2025-06-01T22:05:50.358693", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.379438, - 51.566223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162633368", - "info": { - "identifier": 162633368, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162633368", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162633368/238769_na35366_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.327819", - "last_seen": "2025-06-01T22:05:38.780941", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24039, - 51.57676 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 138.7, - "qmprice": 21.63, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162633371", - "info": { - "identifier": 162633371, - "sqm_ocr": 138.7, - "price": 3000.0, - "price_per_sqm": 21.629416005767848, - "url": "https://www.rightmove.co.uk/properties/162633371", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/162633371/108947_1328041_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.958421", - "last_seen": "2025-06-01T22:05:50.354684", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.376013, - 51.567604 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.83, - "qmprice": 32.54, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162633380", - "info": { - "identifier": 162633380, - "sqm_ocr": 76.83, - "price": 2500.0, - "price_per_sqm": 32.539372640895486, - "url": "https://www.rightmove.co.uk/properties/162633380", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57118/162633380/57118_P214665_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.102479", - "last_seen": "2025-06-01T22:06:05.419037", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07869, - 51.4995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.8, - "qmprice": 48.52, - "rooms": 2, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162633407", - "info": { - "identifier": 162633407, - "sqm_ocr": 60.8, - "price": 2950.0, - "price_per_sqm": 48.51973684210527, - "url": "https://www.rightmove.co.uk/properties/162633407", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/162633407/56751_1328432_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.915268", - "last_seen": "2025-06-01T22:05:59.091480", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.120206, - 51.447308 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162633452", - "info": { - "identifier": 162633452, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162633452", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75148/162633452/75148_1325891_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.098723", - "last_seen": "2025-06-01T22:05:56.565219", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.023254, - 51.454296 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.2, - "qmprice": 37.06, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162633473", - "info": { - "identifier": 162633473, - "sqm_ocr": 74.2, - "price": 2750.0, - "price_per_sqm": 37.06199460916442, - "url": "https://www.rightmove.co.uk/properties/162633473", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162633473/98531_1327816_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.896920", - "last_seen": "2025-06-01T22:05:56.082079", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2323, - 51.509922 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.4, - "qmprice": 40.2, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162633488", - "info": { - "identifier": 162633488, - "sqm_ocr": 68.4, - "price": 2750.0, - "price_per_sqm": 40.2046783625731, - "url": "https://www.rightmove.co.uk/properties/162633488", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98531/162633488/98531_1326916_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.887435", - "last_seen": "2025-06-01T22:05:55.750888", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.237928, - 51.508606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3549.0, - "url": "https://www.rightmove.co.uk/properties/162633614", - "info": { - "identifier": 162633614, - "sqm_ocr": null, - "price": 3549.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162633614", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43751/162633614/43751_P301370_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.539841", - "last_seen": "2025-06-01T22:05:58.384677", - "price": 3549 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15656, - 51.49428 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.7, - "qmprice": 33.67, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/162633617", - "info": { - "identifier": 162633617, - "sqm_ocr": 63.7, - "price": 2145.0, - "price_per_sqm": 33.6734693877551, - "url": "https://www.rightmove.co.uk/properties/162633617", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111056/162633617/111056_1328430_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.656275", - "last_seen": "2025-06-01T22:06:03.332570", - "price": 2145.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.018179, - 51.50953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 40.6, - "qmprice": 56.65, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162633752", - "info": { - "identifier": 162633752, - "sqm_ocr": 40.6, - "price": 2300.0, - "price_per_sqm": 56.65024630541872, - "url": "https://www.rightmove.co.uk/properties/162633752", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Network Agencies", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53310/162633752/53310_kentishtownroad2133_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.183874", - "last_seen": "2025-06-01T22:05:42.769423", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14261, - 51.53965 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.25, - "qmprice": 34.06, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/162633872", - "info": { - "identifier": 162633872, - "sqm_ocr": 92.25, - "price": 3142.0, - "price_per_sqm": 34.05962059620596, - "url": "https://www.rightmove.co.uk/properties/162633872", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "ADN Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/284k/283532/162633872/283532_33920938_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.215574", - "last_seen": "2025-06-01T22:05:38.601814", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196732, - 51.559933 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.04, - "qmprice": 42.6, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162634103", - "info": { - "identifier": 162634103, - "sqm_ocr": 61.04, - "price": 2600.0, - "price_per_sqm": 42.595019659239846, - "url": "https://www.rightmove.co.uk/properties/162634103", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44538/162634103/44538_JBA090006_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.407347", - "last_seen": "2025-06-01T22:06:12.062046", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169183, - 51.461353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.86, - "qmprice": 29.79, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162634109", - "info": { - "identifier": 162634109, - "sqm_ocr": 73.86, - "price": 2200.0, - "price_per_sqm": 29.786081776333603, - "url": "https://www.rightmove.co.uk/properties/162634109", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/162634109/43310_CWL180025_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.743970", - "last_seen": "2025-06-01T22:06:10.059659", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034767, - 51.509655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.72, - "qmprice": 39.87, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162634118", - "info": { - "identifier": 162634118, - "sqm_ocr": 67.72, - "price": 2700.0, - "price_per_sqm": 39.87005316007088, - "url": "https://www.rightmove.co.uk/properties/162634118", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/162634118/44537_TOL242021_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.632484", - "last_seen": "2025-06-01T22:06:06.036344", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079772, - 51.49734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.24, - "qmprice": 42.28, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162634202", - "info": { - "identifier": 162634202, - "sqm_ocr": 79.24, - "price": 3350.0, - "price_per_sqm": 42.2766279656739, - "url": "https://www.rightmove.co.uk/properties/162634202", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Cluttons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57118/162634202/57118_P214638_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.056428", - "last_seen": "2025-06-01T22:06:05.795112", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07519, - 51.50385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 39.29, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162634232", - "info": { - "identifier": 162634232, - "sqm_ocr": 84.0, - "price": 3300.0, - "price_per_sqm": 39.285714285714285, - "url": "https://www.rightmove.co.uk/properties/162634232", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Regent Letting and Property Management", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87187/162634232/87187_27797_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.594609", - "last_seen": "2025-06-01T22:06:00.022714", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.111766, - 51.501385 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.6, - "qmprice": 37.15, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162634445", - "info": { - "identifier": 162634445, - "sqm_ocr": 64.6, - "price": 2400.0, - "price_per_sqm": 37.15170278637771, - "url": "https://www.rightmove.co.uk/properties/162634445", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Latymers Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74302/162634445/74302_LATYM_000877_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.888350", - "last_seen": "2025-06-01T22:06:13.814450", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242607, - 51.45825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162634526", - "info": { - "identifier": 162634526, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162634526", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "L&Q", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102784/162634526/102784_12683570_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.520872", - "last_seen": "2025-06-01T22:06:02.216074", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02783, - 51.5004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2440.0, - "url": "https://www.rightmove.co.uk/properties/162634805", - "info": { - "identifier": 162634805, - "sqm_ocr": null, - "price": 2440.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162634805", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Frestons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259079/162634805/259079_RL6087_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/10/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.909925", - "last_seen": "2025-06-01T22:05:40.840256", - "price": 2440.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.282057, - 51.5546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162634811", - "info": { - "identifier": 162634811, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162634811", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Frestons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259079/162634811/259079_RL6088_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/10/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.913932", - "last_seen": "2025-06-01T22:05:40.847121", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.282057, - 51.5546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.4, - "qmprice": 31.39, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162635201", - "info": { - "identifier": 162635201, - "sqm_ocr": 92.4, - "price": 2900.0, - "price_per_sqm": 31.385281385281385, - "url": "https://www.rightmove.co.uk/properties/162635201", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Mi Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/154k/153011/162635201/153011_102099002805_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.710111", - "last_seen": "2025-06-01T22:06:11.560444", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00672, - 51.55445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162635384", - "info": { - "identifier": 162635384, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162635384", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34082/162635384/34082_KBS240232_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.021745", - "last_seen": "2025-06-01T22:05:56.454503", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.260337, - 51.584682 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.96, - "qmprice": 51.52, - "rooms": 2, - "total_price": 3450.0, - "url": "https://www.rightmove.co.uk/properties/162635396", - "info": { - "identifier": 162635396, - "sqm_ocr": 66.96, - "price": 3450.0, - "price_per_sqm": 51.52329749103943, - "url": "https://www.rightmove.co.uk/properties/162635396", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Robert Irving Burns", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75301/162635396/75301_RIB250039_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.117332", - "last_seen": "2025-06-01T22:06:15.769997", - "price": 3450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13612, - 51.5185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162635774", - "info": { - "identifier": 162635774, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162635774", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57095/162635774/57095_P301423_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.265354", - "last_seen": "2025-06-01T22:06:13.080724", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23333, - 51.46461 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.7, - "qmprice": 31.88, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162635810", - "info": { - "identifier": 162635810, - "sqm_ocr": 84.7, - "price": 2700.0, - "price_per_sqm": 31.87721369539551, - "url": "https://www.rightmove.co.uk/properties/162635810", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162635810/96668_249157521052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.744430", - "last_seen": "2025-06-01T22:06:10.744430", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057647, - 51.50747 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2240.0, - "url": "https://www.rightmove.co.uk/properties/162635864", - "info": { - "identifier": 162635864, - "sqm_ocr": null, - "price": 2240.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162635864", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162635864/238769_SIENNA_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.460095", - "last_seen": "2025-06-01T22:06:07.862074", - "price": 2240.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19154, - 51.35985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162635987", - "info": { - "identifier": 162635987, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162635987", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162635987/238769_SPH1_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.396417", - "last_seen": "2025-06-01T22:06:07.828398", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19204, - 51.36183 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.66, - "qmprice": 36.91, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162636188", - "info": { - "identifier": 162636188, - "sqm_ocr": 63.66, - "price": 2350.0, - "price_per_sqm": 36.914860194784794, - "url": "https://www.rightmove.co.uk/properties/162636188", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50951/162636188/50951_P5036E1511_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.437425", - "last_seen": "2025-06-01T22:05:59.734808", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11165, - 51.48987 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.9, - "qmprice": 36.85, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162636263", - "info": { - "identifier": 162636263, - "sqm_ocr": 94.9, - "price": 3497.0, - "price_per_sqm": 36.84931506849315, - "url": "https://www.rightmove.co.uk/properties/162636263", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39741/162636263/39741_33921106_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.450080", - "last_seen": "2025-06-01T22:06:15.051075", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187471, - 51.524822 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162636428", - "info": { - "identifier": 162636428, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162636428", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162636428/238769_SUTTONSPH_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.330902", - "last_seen": "2025-06-01T22:06:07.775671", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19204, - 51.36183 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.6, - "qmprice": 82.16, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162636464", - "info": { - "identifier": 162636464, - "sqm_ocr": 42.6, - "price": 3500.0, - "price_per_sqm": 82.15962441314554, - "url": "https://www.rightmove.co.uk/properties/162636464", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Network Agencies", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/54k/53310/162636464/53310_ashfieldroad417_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.541927", - "last_seen": "2025-06-01T22:05:49.732097", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09074, - 51.57745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162636533", - "info": { - "identifier": 162636533, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162636533", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Your Move", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/32k/31359/162636533/31359_ABB250196_L_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.805112", - "last_seen": "2025-06-01T22:05:47.025688", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.112754, - 51.492577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162636545", - "info": { - "identifier": 162636545, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162636545", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chancellors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30575/162636545/30575_05311264_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.667078", - "last_seen": "2025-06-01T22:06:04.774008", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267, - 51.463 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162636575", - "info": { - "identifier": 162636575, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162636575", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "CHARLES WILLIAM PROPERTY INVESTMENT", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252278/162636575/252278_RL00120210_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.713269", - "last_seen": "2025-06-01T22:06:03.413801", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.006212, - 51.513817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2625.0, - "url": "https://www.rightmove.co.uk/properties/162636653", - "info": { - "identifier": 162636653, - "sqm_ocr": null, - "price": 2625.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162636653", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65785/162636653/65785_33921130_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.771960", - "last_seen": "2025-06-01T22:06:13.669954", - "price": 2625.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.154715, - 51.43372 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.2, - "qmprice": 36.7, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162637175", - "info": { - "identifier": 162637175, - "sqm_ocr": 87.2, - "price": 3200.0, - "price_per_sqm": 36.69724770642202, - "url": "https://www.rightmove.co.uk/properties/162637175", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237821/162637175/237821_KCU240018_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.477705", - "last_seen": "2025-06-01T22:05:58.011032", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199909, - 51.49475 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162637184", - "info": { - "identifier": 162637184, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162637184", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Falcon Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.045612", - "last_seen": "2025-06-01T22:05:39.438115", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24881, - 51.59047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2578.0, - "url": "https://www.rightmove.co.uk/properties/162637403", - "info": { - "identifier": 162637403, - "sqm_ocr": null, - "price": 2578.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162637403", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65872/162637403/65872_CWQ012502211_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.839049", - "last_seen": "2025-06-01T22:06:08.574599", - "price": 2578 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.007996, - 51.499847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 97.62, - "qmprice": 35.29, - "rooms": 2, - "total_price": 3445.0, - "url": "https://www.rightmove.co.uk/properties/162637454", - "info": { - "identifier": 162637454, - "sqm_ocr": 97.62, - "price": 3445.0, - "price_per_sqm": 35.2898996107355, - "url": "https://www.rightmove.co.uk/properties/162637454", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65872/162637454/65872_CWQ012528633_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.098851", - "last_seen": "2025-06-01T22:06:08.293805", - "price": 3445 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019168, - 51.501472 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 127.57, - "qmprice": 31.36, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162637664", - "info": { - "identifier": 162637664, - "sqm_ocr": 127.57, - "price": 4000.0, - "price_per_sqm": 31.355334326252255, - "url": "https://www.rightmove.co.uk/properties/162637664", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51465/162637664/51465_681b6f46848fa_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.607126", - "last_seen": "2025-06-01T22:06:01.740055", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.191324, - 51.422104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162638096", - "info": { - "identifier": 162638096, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162638096", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Roundtree Real Estate", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46965/162638096/46965_57871_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.256142", - "last_seen": "2025-06-01T22:05:38.657353", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2109, - 51.56697 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 49.22, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/162638291", - "info": { - "identifier": 162638291, - "sqm_ocr": 81.0, - "price": 3987.0, - "price_per_sqm": 49.22222222222222, - "url": "https://www.rightmove.co.uk/properties/162638291", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "CityZEN", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29861/162638291/29861_33921194_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.528345", - "last_seen": "2025-06-01T22:05:43.279229", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075563, - 51.512756 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162638294", - "info": { - "identifier": 162638294, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162638294", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162638294/238769_37271822-2e9c-457c-bd5e-444934d0dcf4_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.011915", - "last_seen": "2025-06-01T22:05:39.404774", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22003, - 51.61764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.2, - "qmprice": 47.19, - "rooms": 2, - "total_price": 3879.0, - "url": "https://www.rightmove.co.uk/properties/162638357", - "info": { - "identifier": 162638357, - "sqm_ocr": 82.2, - "price": 3879.0, - "price_per_sqm": 47.18978102189781, - "url": "https://www.rightmove.co.uk/properties/162638357", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48101/162638357/48101_1328366_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.969502", - "last_seen": "2025-06-01T17:39:04.483964", - "price": 3879.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.008384, - 51.504112 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 34.29, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162638372", - "info": { - "identifier": 162638372, - "sqm_ocr": 70.0, - "price": 2400.0, - "price_per_sqm": 34.285714285714285, - "url": "https://www.rightmove.co.uk/properties/162638372", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162638372/221711_3533_EAF_185430_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.352901", - "last_seen": "2025-06-01T22:06:00.225415", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109705, - 51.47343 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.8, - "qmprice": 33.14, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/162638465", - "info": { - "identifier": 162638465, - "sqm_ocr": 94.8, - "price": 3142.0, - "price_per_sqm": 33.143459915611814, - "url": "https://www.rightmove.co.uk/properties/162638465", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77514/162638465/77514_GER243642_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.229498", - "last_seen": "2025-06-01T22:05:42.850099", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196591, - 51.559048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162638471", - "info": { - "identifier": 162638471, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162638471", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162638471/238769_0119f575-a9ca-4c84-9a9c-42c6fe237f05_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.981611", - "last_seen": "2025-06-01T22:05:39.469552", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24829, - 51.59555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.9, - "qmprice": 53.11, - "rooms": 2, - "total_price": 3553.0, - "url": "https://www.rightmove.co.uk/properties/162638492", - "info": { - "identifier": 162638492, - "sqm_ocr": 66.9, - "price": 3553.0, - "price_per_sqm": 53.109118086696554, - "url": "https://www.rightmove.co.uk/properties/162638492", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Kensington", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32757/162638492/32757_000005513c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.417389", - "last_seen": "2025-06-01T22:05:58.178190", - "price": 3553.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17994, - 51.49671 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.1, - "qmprice": 46.08, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162638546", - "info": { - "identifier": 162638546, - "sqm_ocr": 65.1, - "price": 3000.0, - "price_per_sqm": 46.082949308755765, - "url": "https://www.rightmove.co.uk/properties/162638546", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47640/162638546/47640_33921205_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.892600", - "last_seen": "2025-06-01T22:05:47.262200", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.076111, - 51.52784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162638654", - "info": { - "identifier": 162638654, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162638654", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Frestons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/260k/259079/162638654/259079_RL6089_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.459829", - "last_seen": "2025-06-01T22:05:38.932573", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177683, - 51.5849 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162639053", - "info": { - "identifier": 162639053, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162639053", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162639053/238769_67377c02-5d4b-4c0e-ab0c-5057d07b5ad4_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.706326", - "last_seen": "2025-06-01T22:05:39.125292", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24842, - 51.59553 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162639344", - "info": { - "identifier": 162639344, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162639344", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "L&Q", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102784/162639344/102784_12675462_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "17/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.772840", - "last_seen": "2025-06-01T22:06:12.901438", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197788, - 51.44817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162639359", - "info": { - "identifier": 162639359, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162639359", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "L&Q", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102784/162639359/102784_12663824_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.403278", - "last_seen": "2025-06-01T22:06:12.854888", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19193, - 51.45589 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.54, - "qmprice": 32.5, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162639395", - "info": { - "identifier": 162639395, - "sqm_ocr": 61.54, - "price": 2000.0, - "price_per_sqm": 32.49918752031199, - "url": "https://www.rightmove.co.uk/properties/162639395", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Salter Rex", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75239/162639395/75239_33921244_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.068754", - "last_seen": "2025-06-01T22:05:45.477671", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136898, - 51.63671 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.7, - "qmprice": 63.26, - "rooms": 3, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/162639440", - "info": { - "identifier": 162639440, - "sqm_ocr": 53.7, - "price": 3397.0, - "price_per_sqm": 63.25884543761639, - "url": "https://www.rightmove.co.uk/properties/162639440", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Residential Realtors", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105856/162639440/105856_2247_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.595772", - "last_seen": "2025-06-01T22:06:06.950764", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094052, - 51.495857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162639551", - "info": { - "identifier": 162639551, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162639551", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Mischa & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64652/162639551/64652_29118702_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.979456", - "last_seen": "2025-06-01T22:05:41.024562", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.284304, - 51.548588 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2725.0, - "url": "https://www.rightmove.co.uk/properties/162639731", - "info": { - "identifier": 162639731, - "sqm_ocr": null, - "price": 2725.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162639731", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "L&Q", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102784/162639731/102784_12683636_IMG_09_0001_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.695905", - "last_seen": "2025-06-01T22:06:09.953085", - "price": 2725.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01671, - 51.52994 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.2, - "qmprice": 44.63, - "rooms": 2, - "total_price": 2910.0, - "url": "https://www.rightmove.co.uk/properties/162639740", - "info": { - "identifier": 162639740, - "sqm_ocr": 65.2, - "price": 2910.0, - "price_per_sqm": 44.6319018404908, - "url": "https://www.rightmove.co.uk/properties/162639740", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Living by Lendlease", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277814/162639740/277814_277814_p0195669_A-0607_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.595986", - "last_seen": "2025-06-01T22:06:05.982718", - "price": 2910.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096254, - 51.49232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.5, - "qmprice": 42.9, - "rooms": 2, - "total_price": 2810.0, - "url": "https://www.rightmove.co.uk/properties/162639779", - "info": { - "identifier": 162639779, - "sqm_ocr": 65.5, - "price": 2810.0, - "price_per_sqm": 42.900763358778626, - "url": "https://www.rightmove.co.uk/properties/162639779", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Living by Lendlease", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277814/162639779/277814_277814_p0195669_E-0306_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.543298", - "last_seen": "2025-06-01T22:06:05.856058", - "price": 2810.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096254, - 51.49232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.5, - "qmprice": 43.09, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162639806", - "info": { - "identifier": 162639806, - "sqm_ocr": 90.5, - "price": 3900.0, - "price_per_sqm": 43.0939226519337, - "url": "https://www.rightmove.co.uk/properties/162639806", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Living by Lendlease", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277814/162639806/277814_277814_p0195669_E-0107_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.054572", - "last_seen": "2025-06-01T22:06:05.781242", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096254, - 51.49232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3277.0, - "url": "https://www.rightmove.co.uk/properties/162639860", - "info": { - "identifier": 162639860, - "sqm_ocr": null, - "price": 3277.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162639860", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Living by Lendlease", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278564/162639860/278564_278564_p0193212_A-0707_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.393298", - "last_seen": "2025-06-01T22:06:06.103070", - "price": 3277.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09549, - 51.4941 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.1, - "qmprice": 33.99, - "rooms": 3, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/162639896", - "info": { - "identifier": 162639896, - "sqm_ocr": 94.1, - "price": 3198.0, - "price_per_sqm": 33.98512221041445, - "url": "https://www.rightmove.co.uk/properties/162639896", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82537/162639896/82537_33921284_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.021323, - 51.498035 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162639938", - "info": { - "identifier": 162639938, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162639938", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130954/162639938/130954_CWAG2B3105_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.630729", - "last_seen": "2025-06-01T22:05:50.195803", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11376, - 51.59224 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.0, - "qmprice": 25.5, - "rooms": 4, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162639977", - "info": { - "identifier": 162639977, - "sqm_ocr": 100.0, - "price": 2550.0, - "price_per_sqm": 25.5, - "url": "https://www.rightmove.co.uk/properties/162639977", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162639977/221711_3529_EAF_185432_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.425978", - "last_seen": "2025-06-01T22:05:44.570674", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.342672, - 51.558002 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162639995", - "info": { - "identifier": 162639995, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162639995", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Estate Inn", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281813/162639995/281813_30052025_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.743405", - "last_seen": "2025-06-01T22:05:43.559438", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11066, - 51.40227 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.7, - "qmprice": 42.21, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162639998", - "info": { - "identifier": 162639998, - "sqm_ocr": 68.7, - "price": 2900.0, - "price_per_sqm": 42.21251819505095, - "url": "https://www.rightmove.co.uk/properties/162639998", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "CORE Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247241/162639998/247241_COR250052_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.865254", - "last_seen": "2025-06-01T22:05:53.689815", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101719, - 51.52398 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.8, - "qmprice": 37.63, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162640094", - "info": { - "identifier": 162640094, - "sqm_ocr": 55.8, - "price": 2100.0, - "price_per_sqm": 37.634408602150536, - "url": "https://www.rightmove.co.uk/properties/162640094", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Davies & Davies", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22559/162640094/22559_33918207_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.542458", - "last_seen": "2025-06-01T22:05:53.160252", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.116666, - 51.565296 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 124.0, - "qmprice": 18.35, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162640184", - "info": { - "identifier": 162640184, - "sqm_ocr": 124.0, - "price": 2275.0, - "price_per_sqm": 18.346774193548388, - "url": "https://www.rightmove.co.uk/properties/162640184", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290072/162640184/290072_LewA34-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.950025", - "last_seen": "2025-06-01T22:06:00.684962", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01218, - 51.46503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3125.0, - "url": "https://www.rightmove.co.uk/properties/162640559", - "info": { - "identifier": 162640559, - "sqm_ocr": null, - "price": 3125.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162640559", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Way of Life", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288146/162640559/288146_EVER-2881462y10sD3BXiavOV0kpxqgZ2UfqeeS9DtFf0SEMzzgbnLpFEIWccb5IN6e_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.183368", - "last_seen": "2025-06-01T22:05:38.569407", - "price": 3125.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.239917, - 51.595554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162640565", - "info": { - "identifier": 162640565, - "sqm_ocr": null, - "price": 2495.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162640565", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290072/162640565/290072_LewA72-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.818698", - "last_seen": "2025-06-01T22:06:00.438677", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01218, - 51.46503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162640634", - "info": { - "identifier": 162640634, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162640634", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Latymers Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74302/162640634/74302_LATYM_000028_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.810769", - "last_seen": "2025-06-01T22:05:48.629029", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21901, - 51.49356 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162640670", - "info": { - "identifier": 162640670, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162640670", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115507/162640670/115507_P433724_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.273370", - "last_seen": "2025-06-01T22:06:13.084564", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14834, - 51.48021 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2565.0, - "url": "https://www.rightmove.co.uk/properties/162640688", - "info": { - "identifier": 162640688, - "sqm_ocr": null, - "price": 2565.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162640688", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290072/162640688/290072_LewA142-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.924242", - "last_seen": "2025-06-01T22:06:00.627093", - "price": 2565.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01218, - 51.46503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162640706", - "info": { - "identifier": 162640706, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162640706", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Broadway & West", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95332/162640706/95332_395_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.183594", - "last_seen": "2025-06-01T22:05:48.777129", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23578, - 51.4931 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2390.0, - "url": "https://www.rightmove.co.uk/properties/162640799", - "info": { - "identifier": 162640799, - "sqm_ocr": null, - "price": 2390.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162640799", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290072/162640799/290072_LewA64-3005_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.104235", - "last_seen": "2025-06-01T22:06:00.895833", - "price": 2390.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01218, - 51.46503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 135.0, - "qmprice": 18.81, - "rooms": 2, - "total_price": 2540.0, - "url": "https://www.rightmove.co.uk/properties/162641039", - "info": { - "identifier": 162641039, - "sqm_ocr": 135.0, - "price": 2540.0, - "price_per_sqm": 18.814814814814813, - "url": "https://www.rightmove.co.uk/properties/162641039", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290072/162641039/290072_LewB41-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.008125", - "last_seen": "2025-06-01T22:06:00.704333", - "price": 2540.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01218, - 51.46503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 118.0, - "qmprice": 21.48, - "rooms": 2, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/162641132", - "info": { - "identifier": 162641132, - "sqm_ocr": 118.0, - "price": 2535.0, - "price_per_sqm": 21.483050847457626, - "url": "https://www.rightmove.co.uk/properties/162641132", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290072/162641132/290072_LewB132-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.886350", - "last_seen": "2025-06-01T22:06:00.838576", - "price": 2535.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01218, - 51.46503 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.1, - "qmprice": 28.36, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162641207", - "info": { - "identifier": 162641207, - "sqm_ocr": 81.1, - "price": 2300.0, - "price_per_sqm": 28.36004932182491, - "url": "https://www.rightmove.co.uk/properties/162641207", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/162641207/281513_LDN210094_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.127307", - "last_seen": "2025-06-01T22:05:46.117046", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.031963, - 51.460243 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.08, - "qmprice": 49.24, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162641225", - "info": { - "identifier": 162641225, - "sqm_ocr": 71.08, - "price": 3500.0, - "price_per_sqm": 49.24029262802476, - "url": "https://www.rightmove.co.uk/properties/162641225", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "London Property Guru", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97850/162641225/97850_RX586940_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.729207", - "last_seen": "2025-06-01T22:06:12.277560", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153503, - 51.47528 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 151.6, - "qmprice": 22.63, - "rooms": 2, - "total_price": 3430.0, - "url": "https://www.rightmove.co.uk/properties/162641231", - "info": { - "identifier": 162641231, - "sqm_ocr": 151.6, - "price": 3430.0, - "price_per_sqm": 22.62532981530343, - "url": "https://www.rightmove.co.uk/properties/162641231", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157394/162641231/157394_PHL250015_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.443016", - "last_seen": "2025-06-01T22:05:57.060114", - "price": 3430.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.152087, - 51.54605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.07, - "qmprice": 35.18, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162641339", - "info": { - "identifier": 162641339, - "sqm_ocr": 71.07, - "price": 2500.0, - "price_per_sqm": 35.176586464049535, - "url": "https://www.rightmove.co.uk/properties/162641339", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Storeys", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176102/162641339/176102_33921374_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.031505", - "last_seen": "2025-06-01T22:06:09.338859", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.065572, - 51.518204 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162641381", - "info": { - "identifier": 162641381, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162641381", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/162641381/181787_181787_1092_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.512930", - "last_seen": "2025-06-01T22:06:05.454514", - "price": 2699 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05849, - 51.48991 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162641426", - "info": { - "identifier": 162641426, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162641426", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.661653", - "last_seen": "2025-06-01T22:06:04.760769", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23895, - 51.47963 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162641495", - "info": { - "identifier": 162641495, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162641495", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50933/162641495/50933_P0708F2730_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.580902", - "last_seen": "2025-06-01T22:05:58.428332", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20152, - 51.49381 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162641564", - "info": { - "identifier": 162641564, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162641564", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hiltons Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263948/162641564/263948_102736003945_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.118647", - "last_seen": "2025-06-01T22:05:50.642415", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.37896, - 51.5597 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.9, - "qmprice": 40.05, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162641669", - "info": { - "identifier": 162641669, - "sqm_ocr": 74.9, - "price": 3000.0, - "price_per_sqm": 40.053404539385845, - "url": "https://www.rightmove.co.uk/properties/162641669", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162641669/96668_245039213042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.989529", - "last_seen": "2025-06-01T22:06:05.248618", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092244, - 51.49244 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.93, - "qmprice": 27.93, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162641741", - "info": { - "identifier": 162641741, - "sqm_ocr": 85.93, - "price": 2400.0, - "price_per_sqm": 27.92971022925637, - "url": "https://www.rightmove.co.uk/properties/162641741", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68507/162641741/68507_VPR200088_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.687745", - "last_seen": "2025-06-01T22:06:09.921053", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017416, - 51.529236 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2492.0, - "url": "https://www.rightmove.co.uk/properties/162641744", - "info": { - "identifier": 162641744, - "sqm_ocr": null, - "price": 2492.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162641744", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Horton and Garton", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/82k/81801/162641744/81801_29117863_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.085992", - "last_seen": "2025-06-01T22:05:52.165688", - "price": 2491 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.272742, - 51.492844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162641765", - "info": { - "identifier": 162641765, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162641765", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162641765/96668_249877928052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.008830", - "last_seen": "2025-06-01T22:05:50.497619", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.346144, - 51.590687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162641774", - "info": { - "identifier": 162641774, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162641774", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162641774/96668_249537025052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.673539", - "last_seen": "2025-06-01T22:06:15.289097", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200725, - 51.531254 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162641780", - "info": { - "identifier": 162641780, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162641780", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162641780/96668_250012629052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.290390", - "last_seen": "2025-06-01T22:05:41.629313", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.062611, - 51.406136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162641789", - "info": { - "identifier": 162641789, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162641789", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162641789/96668_249110521052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.071785", - "last_seen": "2025-06-01T22:05:52.136819", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.402108, - 51.450237 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2308.0, - "url": "https://www.rightmove.co.uk/properties/162642053", - "info": { - "identifier": 162642053, - "sqm_ocr": null, - "price": 2308.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162642053", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290042/162642053/290042_CT24-3005_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.523103", - "last_seen": "2025-06-01T22:06:03.403969", - "price": 2308.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01066, - 51.51626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.94, - "qmprice": 45.31, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/162642260", - "info": { - "identifier": 162642260, - "sqm_ocr": 73.94, - "price": 3350.0, - "price_per_sqm": 45.30700568028131, - "url": "https://www.rightmove.co.uk/properties/162642260", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55326/162642260/55326_ISL150003_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.634050", - "last_seen": "2025-06-01T22:05:53.961450", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099465, - 51.537876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162642428", - "info": { - "identifier": 162642428, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162642428", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Moveli", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191324/162642428/191324_RX586330_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.123008", - "last_seen": "2025-06-01T22:05:57.769522", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195333, - 51.489258 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.1, - "qmprice": 28.88, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162642560", - "info": { - "identifier": 162642560, - "sqm_ocr": 83.1, - "price": 2400.0, - "price_per_sqm": 28.88086642599278, - "url": "https://www.rightmove.co.uk/properties/162642560", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "R Whitley & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9236/162642560/9236_33921438_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.795338", - "last_seen": "2025-06-01T22:05:51.617226", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.471861, - 51.50539 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2425.0, - "url": "https://www.rightmove.co.uk/properties/162642602", - "info": { - "identifier": 162642602, - "sqm_ocr": null, - "price": 2425.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162642602", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290042/162642602/290042_CT40-3005_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.247574", - "last_seen": "2025-06-01T22:06:02.769002", - "price": 2425.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01066, - 51.51626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.3, - "qmprice": 35.99, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162642608", - "info": { - "identifier": 162642608, - "sqm_ocr": 65.3, - "price": 2350.0, - "price_per_sqm": 35.987748851454825, - "url": "https://www.rightmove.co.uk/properties/162642608", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Daniel Cobb", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58939/162642608/58939_0ff84296-e88f-4b1d-99f4-abab948291f6_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.070802", - "last_seen": "2025-06-01T22:06:06.188970", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099092, - 51.490288 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162642644", - "info": { - "identifier": 162642644, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162642644", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Smart Move", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267176/162642644/267176_SLR-9745836_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.317480", - "last_seen": "2025-06-01T22:05:57.992673", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200544, - 51.495113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162642803", - "info": { - "identifier": 162642803, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162642803", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7189/162642803/7189_33921462_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.975808", - "last_seen": "2025-06-01T22:06:00.353241", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034324, - 51.439857 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162642914", - "info": { - "identifier": 162642914, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162642914", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Smart Move", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267176/162642914/267176_SLR-91668049_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.116225", - "last_seen": "2025-06-01T22:05:57.690517", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200544, - 51.495113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.4, - "qmprice": 33.16, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162643022", - "info": { - "identifier": 162643022, - "sqm_ocr": 78.4, - "price": 2600.0, - "price_per_sqm": 33.16326530612245, - "url": "https://www.rightmove.co.uk/properties/162643022", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57272/162643022/57272_1328452_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.713532", - "last_seen": "2025-06-01T22:05:58.505624", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.304258, - 51.413284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 32.14, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162643049", - "info": { - "identifier": 162643049, - "sqm_ocr": 70.0, - "price": 2250.0, - "price_per_sqm": 32.142857142857146, - "url": "https://www.rightmove.co.uk/properties/162643049", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247487/162643049/247487_P285736_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.765904", - "last_seen": "2025-06-01T22:05:55.378741", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12534, - 51.54594 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.7, - "qmprice": 52.41, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162643166", - "info": { - "identifier": 162643166, - "sqm_ocr": 47.7, - "price": 2500.0, - "price_per_sqm": 52.41090146750524, - "url": "https://www.rightmove.co.uk/properties/162643166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56751/162643166/56751_1328454_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.365031", - "last_seen": "2025-06-01T22:05:59.548200", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125961, - 51.460346 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2941.0, - "url": "https://www.rightmove.co.uk/properties/162643250", - "info": { - "identifier": 162643250, - "sqm_ocr": null, - "price": 2941.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162643250", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162643250/156986_RQC60021_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.795125", - "last_seen": "2025-06-01T22:05:41.388393", - "price": 2941.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27668, - 51.55605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2410.0, - "url": "https://www.rightmove.co.uk/properties/162643292", - "info": { - "identifier": 162643292, - "sqm_ocr": null, - "price": 2410.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162643292", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290084/162643292/290084_WAL-S2-3005_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.728046", - "last_seen": "2025-06-01T22:06:12.058057", - "price": 2410.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04087, - 51.58844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162643355", - "info": { - "identifier": 162643355, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162643355", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/162643355/281513_LDN180106_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.656428", - "last_seen": "2025-06-01T22:05:46.762113", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.023743, - 51.460304 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.64, - "qmprice": 35.89, - "rooms": 2, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/162643529", - "info": { - "identifier": 162643529, - "sqm_ocr": 70.64, - "price": 2535.0, - "price_per_sqm": 35.886183465458664, - "url": "https://www.rightmove.co.uk/properties/162643529", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290084/162643529/290084_WAL-Q11-3005_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.688555", - "last_seen": "2025-06-01T22:06:11.811261", - "price": 2535.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04087, - 51.58844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162643547", - "info": { - "identifier": 162643547, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162643547", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Smart Move", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267176/162643547/267176_SLR-61456234_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.144553", - "last_seen": "2025-06-01T22:05:57.800596", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200544, - 51.495113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2307.0, - "url": "https://www.rightmove.co.uk/properties/162643550", - "info": { - "identifier": 162643550, - "sqm_ocr": null, - "price": 2307.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162643550", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162643550/156986_CGB30022_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.659368", - "last_seen": "2025-06-01T22:05:40.618845", - "price": 2307.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27641, - 51.55856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2796.0, - "url": "https://www.rightmove.co.uk/properties/162643586", - "info": { - "identifier": 162643586, - "sqm_ocr": null, - "price": 2796.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162643586", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162643586/156986_RGG10022_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.631842", - "last_seen": "2025-06-01T22:05:40.595125", - "price": 2796.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28223, - 51.56023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.0, - "qmprice": 31.05, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162643604", - "info": { - "identifier": 162643604, - "sqm_ocr": 95.0, - "price": 2950.0, - "price_per_sqm": 31.05263157894737, - "url": "https://www.rightmove.co.uk/properties/162643604", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137369/162643604/137369_1299665_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.838324", - "last_seen": "2025-06-01T22:06:11.839057", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00886, - 51.591953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.8, - "qmprice": 32.14, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162643610", - "info": { - "identifier": 162643610, - "sqm_ocr": 91.8, - "price": 2950.0, - "price_per_sqm": 32.135076252723316, - "url": "https://www.rightmove.co.uk/properties/162643610", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/138k/137369/162643610/137369_1299667_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.839649", - "last_seen": "2025-06-01T22:06:11.874741", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00886, - 51.591953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 34.5, - "rooms": 2, - "total_price": 2415.0, - "url": "https://www.rightmove.co.uk/properties/162643667", - "info": { - "identifier": 162643667, - "sqm_ocr": 70.0, - "price": 2415.0, - "price_per_sqm": 34.5, - "url": "https://www.rightmove.co.uk/properties/162643667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290084/162643667/290084_WAL-R10-3005_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.853963", - "last_seen": "2025-06-01T22:06:11.945709", - "price": 2415.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04087, - 51.58844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162643694", - "info": { - "identifier": 162643694, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162643694", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Forest Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15011/162643694/15011_Fel000976_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.322430", - "last_seen": "2025-06-01T22:05:52.514620", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.397405, - 51.453644 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162643793", - "info": { - "identifier": 162643793, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162643793", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Payne & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29463/162643793/29463_33921532_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.929845", - "last_seen": "2025-06-01T22:06:04.002443", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.075565, - 51.594944 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 38.46, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162643928", - "info": { - "identifier": 162643928, - "sqm_ocr": 65.0, - "price": 2500.0, - "price_per_sqm": 38.46153846153846, - "url": "https://www.rightmove.co.uk/properties/162643928", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77496/162643928/77496_CSC201477_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.852839", - "last_seen": "2025-06-01T22:05:57.259778", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071122, - 51.546947 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3256.0, - "url": "https://www.rightmove.co.uk/properties/162643949", - "info": { - "identifier": 162643949, - "sqm_ocr": null, - "price": 3256.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162643949", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162643949/156986_RQK50030_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.306482", - "last_seen": "2025-06-01T22:05:40.130756", - "price": 3256.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27668, - 51.55605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3896.0, - "url": "https://www.rightmove.co.uk/properties/162644081", - "info": { - "identifier": 162644081, - "sqm_ocr": null, - "price": 3896.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162644081", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162644081/156986_LBG8_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.507411", - "last_seen": "2025-06-01T22:05:40.415999", - "price": 3896.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2812, - 51.56006 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.38, - "qmprice": 36.38, - "rooms": 2, - "total_price": 2415.0, - "url": "https://www.rightmove.co.uk/properties/162644117", - "info": { - "identifier": 162644117, - "sqm_ocr": 66.38, - "price": 2415.0, - "price_per_sqm": 36.38144019282917, - "url": "https://www.rightmove.co.uk/properties/162644117", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290084/162644117/290084_WAL-S23-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.875858", - "last_seen": "2025-06-01T22:06:11.571615", - "price": 2415.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0413, - 51.58845 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162644270", - "info": { - "identifier": 162644270, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162644270", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Smart Move", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267176/162644270/267176_SLR-50742843_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.064207", - "last_seen": "2025-06-01T22:05:47.415746", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075221, - 51.559563 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162644309", - "info": { - "identifier": 162644309, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162644309", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Groves Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74977/162644309/74977_3791_GROV_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.824428", - "last_seen": "2025-06-01T22:05:58.904314", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.267833, - 51.408546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 40.25, - "rooms": 2, - "total_price": 2415.0, - "url": "https://www.rightmove.co.uk/properties/162644372", - "info": { - "identifier": 162644372, - "sqm_ocr": 60.0, - "price": 2415.0, - "price_per_sqm": 40.25, - "url": "https://www.rightmove.co.uk/properties/162644372", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290084/162644372/290084_WAL-R38-3005_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.871813", - "last_seen": "2025-06-01T22:06:12.005802", - "price": 2415.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04087, - 51.58844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 111.26, - "qmprice": 29.21, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162644573", - "info": { - "identifier": 162644573, - "sqm_ocr": 111.26, - "price": 3250.0, - "price_per_sqm": 29.210857451015638, - "url": "https://www.rightmove.co.uk/properties/162644573", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/126k/125836/162644573/125836_ELL250086_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.994259", - "last_seen": "2025-06-01T22:05:44.143925", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303592, - 51.51047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162644645", - "info": { - "identifier": 162644645, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162644645", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "ila", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286424/162644645/286424_MW2EAPT63D250530_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.461535", - "last_seen": "2025-06-01T22:05:51.330862", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.4264, - 51.50418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 33.65, - "rooms": 2, - "total_price": 2490.0, - "url": "https://www.rightmove.co.uk/properties/162644750", - "info": { - "identifier": 162644750, - "sqm_ocr": 74.0, - "price": 2490.0, - "price_per_sqm": 33.648648648648646, - "url": "https://www.rightmove.co.uk/properties/162644750", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290084/162644750/290084_WAL-S39-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.808801", - "last_seen": "2025-06-01T22:06:11.987591", - "price": 2490.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0413, - 51.58845 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/162644891", - "info": { - "identifier": 162644891, - "sqm_ocr": null, - "price": 2708.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162644891", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/162644891/84866_33921586_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.974877", - "last_seen": "2025-06-01T22:05:48.784835", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238015, - 51.49114 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 35.0, - "qmprice": 107.14, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162644936", - "info": { - "identifier": 162644936, - "sqm_ocr": 35.0, - "price": 3750.0, - "price_per_sqm": 107.14285714285714, - "url": "https://www.rightmove.co.uk/properties/162644936", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36728/162644936/36728_0467_HRT046702047_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.291680", - "last_seen": "2025-06-01T22:06:06.522710", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075491, - 51.455402 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 42.08, - "rooms": 2, - "total_price": 2525.0, - "url": "https://www.rightmove.co.uk/properties/162645008", - "info": { - "identifier": 162645008, - "sqm_ocr": 60.0, - "price": 2525.0, - "price_per_sqm": 42.083333333333336, - "url": "https://www.rightmove.co.uk/properties/162645008", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290084/162645008/290084_WAL-R26-3005_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "13/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.719484", - "last_seen": "2025-06-01T22:06:12.046478", - "price": 2525.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04087, - 51.58844 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.56, - "qmprice": 22.21, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162645206", - "info": { - "identifier": 162645206, - "sqm_ocr": 94.56, - "price": 2100.0, - "price_per_sqm": 22.208121827411166, - "url": "https://www.rightmove.co.uk/properties/162645206", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Look Property Services Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/9k/8286/162645206/8286_5507616_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.898880", - "last_seen": "2025-06-01T22:06:08.586224", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058885, - 51.51482 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162645335", - "info": { - "identifier": 162645335, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162645335", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "H", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54922/162645335/54922_NEL190019_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.162874", - "last_seen": "2025-06-01T22:05:59.483258", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125651, - 51.485935 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.9, - "qmprice": 27.19, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162645533", - "info": { - "identifier": 162645533, - "sqm_ocr": 80.9, - "price": 2200.0, - "price_per_sqm": 27.194066749072928, - "url": "https://www.rightmove.co.uk/properties/162645533", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280928/162645533/280928_KYC250200_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.923385", - "last_seen": "2025-06-01T22:05:40.907199", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29287, - 51.554028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 105.3, - "qmprice": 28.73, - "rooms": 3, - "total_price": 3025.0, - "url": "https://www.rightmove.co.uk/properties/162645536", - "info": { - "identifier": 162645536, - "sqm_ocr": 105.3, - "price": 3025.0, - "price_per_sqm": 28.727445394112063, - "url": "https://www.rightmove.co.uk/properties/162645536", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280928/162645536/280928_KYC250201_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.924684", - "last_seen": "2025-06-01T22:05:40.909811", - "price": 3025.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29287, - 51.554028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.81, - "qmprice": 30.64, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162645551", - "info": { - "identifier": 162645551, - "sqm_ocr": 71.81, - "price": 2200.0, - "price_per_sqm": 30.636401615373902, - "url": "https://www.rightmove.co.uk/properties/162645551", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263693/162645551/263693_MRL120209_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.116178", - "last_seen": "2025-06-01T22:06:06.256403", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04, - 51.5 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 28.75, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162645572", - "info": { - "identifier": 162645572, - "sqm_ocr": 80.0, - "price": 2300.0, - "price_per_sqm": 28.75, - "url": "https://www.rightmove.co.uk/properties/162645572", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Go View London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50304/162645572/50304_33921637_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.516000", - "last_seen": "2025-06-01T22:05:44.735936", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.325381, - 51.5123 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162645644", - "info": { - "identifier": 162645644, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162645644", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Andre Joseph Estates Ltd", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74973/162645644/74973_449320_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.055927", - "last_seen": "2025-06-01T22:05:59.323592", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13095, - 51.46509 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2612.0, - "url": "https://www.rightmove.co.uk/properties/162645797", - "info": { - "identifier": 162645797, - "sqm_ocr": null, - "price": 2612.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162645797", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Way of Life", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256148/162645797/256148_EVER-2561482y10xiWSlqXG78srPaXSn643muSh6oXZCJqOkjFFLvE0XZG0s0pCKLu_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.709878", - "last_seen": "2025-06-01T22:06:09.973628", - "price": 2612.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01022, - 51.52516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162645815", - "info": { - "identifier": 162645815, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162645815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Anthony Martin Estate Agents", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96280/162645815/96280_LET250045_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.521091", - "last_seen": "2025-06-01T22:06:09.232441", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027215, - 51.497997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2585.0, - "url": "https://www.rightmove.co.uk/properties/162645818", - "info": { - "identifier": 162645818, - "sqm_ocr": null, - "price": 2585.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162645818", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "ila", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277565/162645818/277565_MY2AAPTE1006D250530_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.769064", - "last_seen": "2025-06-01T22:05:48.440096", - "price": 2585.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23498, - 51.52642 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2608.0, - "url": "https://www.rightmove.co.uk/properties/162645884", - "info": { - "identifier": 162645884, - "sqm_ocr": null, - "price": 2608.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162645884", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "ila", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277565/162645884/277565_MY2AAPTE1806D250530_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.073061", - "last_seen": "2025-06-01T22:05:48.453384", - "price": 2608.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23498, - 51.52642 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 30.22, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162645905", - "info": { - "identifier": 162645905, - "sqm_ocr": 91.0, - "price": 2750.0, - "price_per_sqm": 30.21978021978022, - "url": "https://www.rightmove.co.uk/properties/162645905", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162645905/238265_L4826_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.864409", - "last_seen": "2025-06-01T22:05:45.205257", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.304867, - 51.50897 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.87, - "qmprice": 32.33, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162646043", - "info": { - "identifier": 162646043, - "sqm_ocr": 61.87, - "price": 2000.0, - "price_per_sqm": 32.325844512687894, - "url": "https://www.rightmove.co.uk/properties/162646043", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48474/162646043/48474_33921660_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.302237", - "last_seen": "2025-06-01T22:05:51.785683", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.301362, - 51.48456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2585.0, - "url": "https://www.rightmove.co.uk/properties/162646196", - "info": { - "identifier": 162646196, - "sqm_ocr": null, - "price": 2585.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162646196", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "ila", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277565/162646196/277565_MY2AAPTE1006D250530TOP_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.826151", - "last_seen": "2025-06-01T22:05:41.445497", - "price": 2585.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23157, - 51.53257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2608.0, - "url": "https://www.rightmove.co.uk/properties/162646262", - "info": { - "identifier": 162646262, - "sqm_ocr": null, - "price": 2608.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162646262", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "ila", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277565/162646262/277565_MY2AAPTE1806D250530TOP_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.023395", - "last_seen": "2025-06-01T22:05:41.079529", - "price": 2608.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23157, - 51.53257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/162646487", - "info": { - "identifier": 162646487, - "sqm_ocr": null, - "price": 2708.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162646487", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65872/162646487/65872_CWQ012564432_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.991619", - "last_seen": "2025-06-01T22:06:02.556910", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.022985, - 51.508865 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2772.0, - "url": "https://www.rightmove.co.uk/properties/162646514", - "info": { - "identifier": 162646514, - "sqm_ocr": null, - "price": 2772.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162646514", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162646514/156986_LMJ25_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.098143", - "last_seen": "2025-06-01T22:05:40.926881", - "price": 2772.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27676, - 51.5577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162646529", - "info": { - "identifier": 162646529, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162646529", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Way of Life", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256148/162646529/256148_EVER-2561482y10Je4RB9Ca70412ulzsLDd2gHLPh4bex007cyUSZIXLm2OoXtjP_IMG_00_0000_max_656x437.png", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:11.196020", - "last_seen": "2025-06-01T22:06:11.196020", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01022, - 51.52516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2585.0, - "url": "https://www.rightmove.co.uk/properties/162646532", - "info": { - "identifier": 162646532, - "sqm_ocr": null, - "price": 2585.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162646532", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "ila", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277565/162646532/277565_MY2AAPTE1006D250530BTM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.209907", - "last_seen": "2025-06-01T22:05:49.208731", - "price": 2585.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22932, - 51.51617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162646556", - "info": { - "identifier": 162646556, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162646556", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7111/162646556/7111_P8331D281B_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.961955", - "last_seen": "2025-06-01T22:06:13.938976", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16424, - 51.44278 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2608.0, - "url": "https://www.rightmove.co.uk/properties/162646637", - "info": { - "identifier": 162646637, - "sqm_ocr": null, - "price": 2608.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162646637", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "ila", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277565/162646637/277565_MY2AAPTE1806D250530BTM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.977895", - "last_seen": "2025-06-01T22:05:48.787566", - "price": 2608.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22932, - 51.51617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2915.0, - "url": "https://www.rightmove.co.uk/properties/162646664", - "info": { - "identifier": 162646664, - "sqm_ocr": null, - "price": 2915.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162646664", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Way of Life", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256148/162646664/256148_EVER-2561482y106AETPcwVBDuCXI0MTB8ume51bXjwcCtTI3fkA69bYGbQsai2f3SdO_IMG_00_0000_max_656x437.png", - "let_date_available": "16/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.257844", - "last_seen": "2025-06-01T22:06:10.344449", - "price": 2915.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01022, - 51.52516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162646673", - "info": { - "identifier": 162646673, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162646673", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "ila", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284606/162646673/284606_EW2BAPTC206D250530_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.748842", - "last_seen": "2025-06-01T22:06:11.857378", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04216, - 51.58796 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 45.0, - "qmprice": 77.67, - "rooms": 4, - "total_price": 3495.0, - "url": "https://www.rightmove.co.uk/properties/162646691", - "info": { - "identifier": 162646691, - "sqm_ocr": 45.0, - "price": 3495.0, - "price_per_sqm": 77.66666666666667, - "url": "https://www.rightmove.co.uk/properties/162646691", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jorgensen Turner", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85507/162646691/85507_32942656_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.920309", - "last_seen": "2025-06-01T22:05:40.903346", - "price": 3495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19588, - 51.537598 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162646904", - "info": { - "identifier": 162646904, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162646904", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "URBAN BASE PROPERTIES", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287006/162646904/287006_105CCLAREMONTROAD_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.946019", - "last_seen": "2025-06-01T22:06:02.512955", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03737, - 51.54952 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162646913", - "info": { - "identifier": 162646913, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162646913", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "ila", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284606/162646913/284606_EW3BAPTD303D250530_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.670866", - "last_seen": "2025-06-01T22:06:11.709509", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04216, - 51.58796 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3630.0, - "url": "https://www.rightmove.co.uk/properties/162646925", - "info": { - "identifier": 162646925, - "sqm_ocr": null, - "price": 3630.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162646925", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Way of Life (Balfron Tower) LLP", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267971/162646925/267971_EVER-MWM3MGY5YjUtOWUyZi00MDU3LTliMjYtNjBiODM1M2E3NTcwLTIz_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.293611", - "last_seen": "2025-06-01T22:06:09.363641", - "price": 3630.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010127, - 51.513493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/162647108", - "info": { - "identifier": 162647108, - "sqm_ocr": null, - "price": 3050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162647108", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "ila", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/285k/284606/162647108/284606_EW3DAPTB207D250530_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.674085", - "last_seen": "2025-06-01T22:06:11.712936", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04216, - 51.58796 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3384.0, - "url": "https://www.rightmove.co.uk/properties/162647273", - "info": { - "identifier": 162647273, - "sqm_ocr": null, - "price": 3384.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162647273", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162647273/156986_LMO25_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.219334", - "last_seen": "2025-06-01T22:05:41.345945", - "price": 3384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27676, - 51.5577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.0, - "qmprice": 37.92, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162647462", - "info": { - "identifier": 162647462, - "sqm_ocr": 100.0, - "price": 3792.0, - "price_per_sqm": 37.92, - "url": "https://www.rightmove.co.uk/properties/162647462", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Goldschmidt & Howland", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73953/162647462/73953_2431319_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.564983", - "last_seen": "2025-06-01T22:05:42.097495", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18705, - 51.56067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.2, - "qmprice": 39.06, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162647978", - "info": { - "identifier": 162647978, - "sqm_ocr": 83.2, - "price": 3250.0, - "price_per_sqm": 39.0625, - "url": "https://www.rightmove.co.uk/properties/162647978", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/162647978/212327_P161257_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.919119", - "last_seen": "2025-06-01T22:06:08.234330", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01354, - 51.50003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.2, - "qmprice": 36.6, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162648245", - "info": { - "identifier": 162648245, - "sqm_ocr": 64.2, - "price": 2350.0, - "price_per_sqm": 36.60436137071651, - "url": "https://www.rightmove.co.uk/properties/162648245", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242966/162648245/242966_P161258_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.511943", - "last_seen": "2025-06-01T22:05:49.777128", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11237, - 51.59284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/162648356", - "info": { - "identifier": 162648356, - "sqm_ocr": null, - "price": 3650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162648356", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamlet Gardens", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270146/162648356/270146_RST254513_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.265629", - "last_seen": "2025-06-01T22:05:49.374474", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240799, - 51.49369 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.21, - "qmprice": 52.49, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162648608", - "info": { - "identifier": 162648608, - "sqm_ocr": 76.21, - "price": 4000.0, - "price_per_sqm": 52.486550321480124, - "url": "https://www.rightmove.co.uk/properties/162648608", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/162648608/80281_1328462_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.151206", - "last_seen": "2025-06-01T22:06:02.089042", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.025308, - 51.551014 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.4, - "qmprice": 32.38, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162649049", - "info": { - "identifier": 162649049, - "sqm_ocr": 66.4, - "price": 2150.0, - "price_per_sqm": 32.37951807228915, - "url": "https://www.rightmove.co.uk/properties/162649049", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Purplebricks", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166121/162649049/166121_1905747-2_IMG_00_0000_max_656x437.png", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.858118", - "last_seen": "2025-06-01T22:05:50.166051", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.111352, - 51.601566 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.5, - "qmprice": 26.52, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162649118", - "info": { - "identifier": 162649118, - "sqm_ocr": 90.5, - "price": 2400.0, - "price_per_sqm": 26.519337016574585, - "url": "https://www.rightmove.co.uk/properties/162649118", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/162649118/95098_P301622_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.378537", - "last_seen": "2025-06-01T22:06:03.006258", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01609, - 51.50861 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 35.0, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162649157", - "info": { - "identifier": 162649157, - "sqm_ocr": 80.0, - "price": 2800.0, - "price_per_sqm": 35.0, - "url": "https://www.rightmove.co.uk/properties/162649157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162649157/221711_3560_EAF_185444_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.221518", - "last_seen": "2025-06-01T22:05:42.838924", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.151709, - 51.54855 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.0, - "qmprice": 32.89, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162649181", - "info": { - "identifier": 162649181, - "sqm_ocr": 76.0, - "price": 2500.0, - "price_per_sqm": 32.89473684210526, - "url": "https://www.rightmove.co.uk/properties/162649181", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162649181/221711_3543_EAF_185443_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.269034", - "last_seen": "2025-06-01T22:06:06.490008", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057922, - 51.490158 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 32.93, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162649289", - "info": { - "identifier": 162649289, - "sqm_ocr": 82.0, - "price": 2700.0, - "price_per_sqm": 32.926829268292686, - "url": "https://www.rightmove.co.uk/properties/162649289", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fisks Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38558/162649289/38558_33921855_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.690180", - "last_seen": "2025-06-01T22:06:08.440920", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026238, - 51.499447 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.3, - "qmprice": 38.39, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162649310", - "info": { - "identifier": 162649310, - "sqm_ocr": 57.3, - "price": 2200.0, - "price_per_sqm": 38.39441535776614, - "url": "https://www.rightmove.co.uk/properties/162649310", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "One Move Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206921/162649310/206921_500ff5f7-aaef-4422-a977-4681a8f62545_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.073908", - "last_seen": "2025-06-01T22:06:02.629707", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02884, - 51.51019 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.31, - "qmprice": 36.69, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162649373", - "info": { - "identifier": 162649373, - "sqm_ocr": 95.31, - "price": 3497.0, - "price_per_sqm": 36.690798447172384, - "url": "https://www.rightmove.co.uk/properties/162649373", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Goldschmidt & Howland", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73965/162649373/73965_2418595_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.604477", - "last_seen": "2025-06-01T22:06:15.221389", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1869, - 51.52451 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162649520", - "info": { - "identifier": 162649520, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162649520", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "One Move Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/207k/206921/162649520/206921_7b594c73-63a8-40d2-8545-fd6db56fe40e_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.142574", - "last_seen": "2025-06-01T22:06:10.189203", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05683, - 51.51821 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.2, - "qmprice": 34.8, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162649787", - "info": { - "identifier": 162649787, - "sqm_ocr": 109.2, - "price": 3800.0, - "price_per_sqm": 34.798534798534796, - "url": "https://www.rightmove.co.uk/properties/162649787", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212408/162649787/212408_P161261_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.139233", - "last_seen": "2025-06-01T22:06:07.218712", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00814, - 51.54122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162649793", - "info": { - "identifier": 162649793, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162649793", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Inner City Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/104k/103850/162649793/103850_oajska_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.851455", - "last_seen": "2025-06-01T22:06:08.005732", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00864, - 51.50013 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3835.0, - "url": "https://www.rightmove.co.uk/properties/162649796", - "info": { - "identifier": 162649796, - "sqm_ocr": null, - "price": 3835.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162649796", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65896/162649796/65896_NHQ012528505_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.214147", - "last_seen": "2025-06-01T22:05:57.410592", - "price": 3835 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.223574, - 51.516872 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162650021", - "info": { - "identifier": 162650021, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162650021", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212357/162650021/212357_P161256_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.669564", - "last_seen": "2025-06-01T22:05:46.795912", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00055, - 51.48417 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.38, - "qmprice": 43.34, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162650039", - "info": { - "identifier": 162650039, - "sqm_ocr": 55.38, - "price": 2400.0, - "price_per_sqm": 43.33694474539545, - "url": "https://www.rightmove.co.uk/properties/162650039", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "LDB", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88034/162650039/88034_33921915_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.132168", - "last_seen": "2025-06-01T22:05:49.175242", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212888, - 51.478863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 33.6, - "qmprice": 69.94, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162650144", - "info": { - "identifier": 162650144, - "sqm_ocr": 33.6, - "price": 2350.0, - "price_per_sqm": 69.94047619047619, - "url": "https://www.rightmove.co.uk/properties/162650144", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Churchill Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10145/162650144/10145_33836485_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.457998", - "last_seen": "2025-06-01T22:06:11.577815", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02165, - 51.597454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162650147", - "info": { - "identifier": 162650147, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162650147", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Alex Crown Lettings & Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102122/162650147/102122_4553_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.439658", - "last_seen": "2025-06-01T22:06:14.541564", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19566, - 51.52924 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.7, - "qmprice": 37.68, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162650210", - "info": { - "identifier": 162650210, - "sqm_ocr": 63.7, - "price": 2400.0, - "price_per_sqm": 37.67660910518053, - "url": "https://www.rightmove.co.uk/properties/162650210", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77508/162650210/77508_SNE130052_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.491966", - "last_seen": "2025-06-01T22:06:05.759571", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0987, - 51.4953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162650213", - "info": { - "identifier": 162650213, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162650213", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "All in the postcode...SW19.com", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34619/162650213/34619_7698566_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.355206", - "last_seen": "2025-06-01T22:06:01.295535", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19232, - 51.4191 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162650252", - "info": { - "identifier": 162650252, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162650252", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "UNCLE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147557/162650252/147557_RST254515_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.427144", - "last_seen": "2025-06-01T22:06:05.662681", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102503, - 51.49254 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.0, - "qmprice": 43.14, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162650294", - "info": { - "identifier": 162650294, - "sqm_ocr": 51.0, - "price": 2200.0, - "price_per_sqm": 43.13725490196079, - "url": "https://www.rightmove.co.uk/properties/162650294", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Compton Reeback", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74510/162650294/74510_33921949_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.434295", - "last_seen": "2025-06-01T22:06:15.129021", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17829, - 51.526367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162650339", - "info": { - "identifier": 162650339, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162650339", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "UNCLE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147557/162650339/147557_RST254516_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.488107", - "last_seen": "2025-06-01T22:06:06.836244", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102503, - 51.49254 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.0, - "qmprice": 22.12, - "rooms": 4, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162650381", - "info": { - "identifier": 162650381, - "sqm_ocr": 104.0, - "price": 2300.0, - "price_per_sqm": 22.115384615384617, - "url": "https://www.rightmove.co.uk/properties/162650381", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30611/162650381/30611_P101140_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.411840", - "last_seen": "2025-06-01T22:05:41.739261", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06149, - 51.4021 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.0, - "qmprice": 35.71, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162650387", - "info": { - "identifier": 162650387, - "sqm_ocr": 91.0, - "price": 3250.0, - "price_per_sqm": 35.714285714285715, - "url": "https://www.rightmove.co.uk/properties/162650387", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77508/162650387/77508_CSC200296_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.558162", - "last_seen": "2025-06-01T22:06:06.911151", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.075862, - 51.499374 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162650492", - "info": { - "identifier": 162650492, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162650492", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "LDB", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88034/162650492/88034_33921966_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.062978", - "last_seen": "2025-06-01T22:05:49.024580", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.212538, - 51.474056 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.05, - "qmprice": 28.39, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162650606", - "info": { - "identifier": 162650606, - "sqm_ocr": 88.05, - "price": 2500.0, - "price_per_sqm": 28.392958546280525, - "url": "https://www.rightmove.co.uk/properties/162650606", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "LDB", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88034/162650606/88034_33921979_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.481102", - "last_seen": "2025-06-01T22:05:56.496001", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.220434, - 51.48055 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 30.46, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162650678", - "info": { - "identifier": 162650678, - "sqm_ocr": 87.0, - "price": 2650.0, - "price_per_sqm": 30.45977011494253, - "url": "https://www.rightmove.co.uk/properties/162650678", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "UNCLE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147557/162650678/147557_RST254519_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.958243", - "last_seen": "2025-06-01T22:06:00.693158", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.050549, - 51.47744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.6, - "qmprice": 37.64, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162650687", - "info": { - "identifier": 162650687, - "sqm_ocr": 103.6, - "price": 3900.0, - "price_per_sqm": 37.64478764478765, - "url": "https://www.rightmove.co.uk/properties/162650687", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43823/162650687/43823_P300670_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.868118", - "last_seen": "2025-06-01T22:05:48.715635", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23112, - 51.49938 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162650705", - "info": { - "identifier": 162650705, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162650705", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/57k/56906/162650705/56906_SML240066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.353628", - "last_seen": "2025-06-01T22:06:04.428543", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.326609, - 51.456318 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 27.78, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162650792", - "info": { - "identifier": 162650792, - "sqm_ocr": 81.0, - "price": 2250.0, - "price_per_sqm": 27.77777777777778, - "url": "https://www.rightmove.co.uk/properties/162650792", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "UNCLE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147557/162650792/147557_RST254520_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.037151", - "last_seen": "2025-06-01T22:06:00.320067", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.050549, - 51.47744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162650828", - "info": { - "identifier": 162650828, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162650828", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Anisten Homes", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50556/162650828/50556_102614002176_IMG_15_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.341218", - "last_seen": "2025-06-01T22:05:51.058602", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.2, - 51.56906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.3, - "qmprice": 40.73, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162650831", - "info": { - "identifier": 162650831, - "sqm_ocr": 93.3, - "price": 3800.0, - "price_per_sqm": 40.728831725616296, - "url": "https://www.rightmove.co.uk/properties/162650831", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/162650831/95098_P297768_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.3, - "qmprice": 40.73, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162650936", - "info": { - "identifier": 162650936, - "sqm_ocr": 93.3, - "price": 3800.0, - "price_per_sqm": 40.728831725616296, - "url": "https://www.rightmove.co.uk/properties/162650936", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/162650936/95098_P296125_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.544670", - "last_seen": "2025-06-01T22:06:11.143964", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162650951", - "info": { - "identifier": 162650951, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162650951", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Move Inn Estates Iver", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113317/162650951/113317_33922007_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.243944", - "last_seen": "2025-06-01T22:05:52.307658", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.403614, - 51.4856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/162650990", - "info": { - "identifier": 162650990, - "sqm_ocr": null, - "price": 2249.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162650990", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25214/162650990/25214_33855313_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.274378", - "last_seen": "2025-06-01T22:06:06.504352", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.049542, - 51.49936 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.85, - "qmprice": 30.27, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162651017", - "info": { - "identifier": 162651017, - "sqm_ocr": 90.85, - "price": 2750.0, - "price_per_sqm": 30.269675288937812, - "url": "https://www.rightmove.co.uk/properties/162651017", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/99k/98738/162651017/98738_ISQ012515785_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.167459", - "last_seen": "2025-06-01T22:05:54.267236", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.117078, - 51.554 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162651023", - "info": { - "identifier": 162651023, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162651023", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "1st Avenue", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12070/162651023/12070_29118055_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.820376", - "last_seen": "2025-06-01T22:05:47.048570", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.012543, - 51.49626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.3, - "qmprice": 41.8, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162651038", - "info": { - "identifier": 162651038, - "sqm_ocr": 93.3, - "price": 3900.0, - "price_per_sqm": 41.80064308681672, - "url": "https://www.rightmove.co.uk/properties/162651038", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/162651038/95098_P299536_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.2, - "qmprice": 36.54, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162651074", - "info": { - "identifier": 162651074, - "sqm_ocr": 60.2, - "price": 2200.0, - "price_per_sqm": 36.54485049833887, - "url": "https://www.rightmove.co.uk/properties/162651074", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Akelius Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102505/162651074/102505_40088-10_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.627471", - "last_seen": "2025-06-01T22:05:39.842085", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16741, - 51.59363 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 91.5, - "qmprice": 43.33, - "rooms": 2, - "total_price": 3965.0, - "url": "https://www.rightmove.co.uk/properties/162651086", - "info": { - "identifier": 162651086, - "sqm_ocr": 91.5, - "price": 3965.0, - "price_per_sqm": 43.333333333333336, - "url": "https://www.rightmove.co.uk/properties/162651086", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/162651086/95098_P296159_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.009965", - "last_seen": "2025-06-01T17:39:04.513771", - "price": 3965.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.3, - "qmprice": 42.5, - "rooms": 2, - "total_price": 3965.0, - "url": "https://www.rightmove.co.uk/properties/162651134", - "info": { - "identifier": 162651134, - "sqm_ocr": 93.3, - "price": 3965.0, - "price_per_sqm": 42.497320471597, - "url": "https://www.rightmove.co.uk/properties/162651134", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95098/162651134/95098_P296134_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.542904", - "last_seen": "2025-06-01T22:06:11.141731", - "price": 3965.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02807, - 51.5072 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/162651206", - "info": { - "identifier": 162651206, - "sqm_ocr": null, - "price": 2595.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162651206", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jackson-Stops", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52713/162651206/52713_33922035_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.077639", - "last_seen": "2025-06-01T22:06:12.552161", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242478, - 51.458557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2895.0, - "url": "https://www.rightmove.co.uk/properties/162651209", - "info": { - "identifier": 162651209, - "sqm_ocr": null, - "price": 2895.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162651209", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "The Property Company", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76256/162651209/76256_LET180175_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.909809", - "last_seen": "2025-06-01T22:05:47.286570", - "price": 2895.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098665, - 51.56746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162651215", - "info": { - "identifier": 162651215, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162651215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "London Property Guru", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97850/162651215/97850_RX586849_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.227697", - "last_seen": "2025-06-01T22:05:38.611465", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240498, - 51.577656 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162651272", - "info": { - "identifier": 162651272, - "sqm_ocr": null, - "price": 2297.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162651272", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Global House Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74713/162651272/74713_V3dVZXV5Z29DL2tpeXppWGdsMENhQT09_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.956412", - "last_seen": "2025-06-01T22:05:59.178646", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102099, - 51.47662 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.13, - "qmprice": 34.35, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162651344", - "info": { - "identifier": 162651344, - "sqm_ocr": 61.13, - "price": 2100.0, - "price_per_sqm": 34.35301815802388, - "url": "https://www.rightmove.co.uk/properties/162651344", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263693/162651344/263693_TOL190066_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.532253", - "last_seen": "2025-06-01T22:06:05.811540", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.032624, - 51.503548 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.1, - "qmprice": 26.42, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162651392", - "info": { - "identifier": 162651392, - "sqm_ocr": 104.1, - "price": 2750.0, - "price_per_sqm": 26.416906820365035, - "url": "https://www.rightmove.co.uk/properties/162651392", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55147/162651392/55147_WAN150333_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.681292", - "last_seen": "2025-06-01T22:06:11.727492", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.011609, - 51.56267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162651401", - "info": { - "identifier": 162651401, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162651401", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/162651401/136148_2340026_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.913138", - "last_seen": "2025-06-01T22:06:14.190161", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135012, - 51.481564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162651590", - "info": { - "identifier": 162651590, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162651590", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Atlas Property Letting & Services Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/125k/124174/162651590/124174_3195_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.892496", - "last_seen": "2025-06-01T22:05:53.758322", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09927, - 51.53814 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 41.85, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/162651686", - "info": { - "identifier": 162651686, - "sqm_ocr": 69.9, - "price": 2925.0, - "price_per_sqm": 41.84549356223176, - "url": "https://www.rightmove.co.uk/properties/162651686", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/162651686/281129_30052502_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.325321", - "last_seen": "2025-06-01T22:05:38.768367", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22111, - 51.57144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162651734", - "info": { - "identifier": 162651734, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162651734", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/162651734/174452_4863_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.113164", - "last_seen": "2025-06-01T22:05:57.150623", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00797, - 51.50093 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162651740", - "info": { - "identifier": 162651740, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162651740", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/162651740/174452_16333_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.105419", - "last_seen": "2025-06-01T22:05:56.962297", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0074, - 51.50121 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.3, - "qmprice": 54.57, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162651743", - "info": { - "identifier": 162651743, - "sqm_ocr": 73.3, - "price": 4000.0, - "price_per_sqm": 54.570259208731244, - "url": "https://www.rightmove.co.uk/properties/162651743", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Global House Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74713/162651743/74713_Q0hISXFhcDRsdTJTaTIxRFhOTWRrZz09_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.439920", - "last_seen": "2025-06-01T22:05:56.947167", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129799, - 51.531776 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162651857", - "info": { - "identifier": 162651857, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162651857", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Homelink Lettings & Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13040/162651857/13040_31755595_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.915489", - "last_seen": "2025-06-01T22:05:49.743040", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129938, - 51.612232 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2593.0, - "url": "https://www.rightmove.co.uk/properties/162652118", - "info": { - "identifier": 162652118, - "sqm_ocr": null, - "price": 2593.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162652118", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162652118/238769_hytg5r4ed3wsaerty67uio_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.814328", - "last_seen": "2025-06-01T22:05:45.148322", - "price": 2593.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25872, - 51.52281 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 28.47, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162652208", - "info": { - "identifier": 162652208, - "sqm_ocr": 72.0, - "price": 2050.0, - "price_per_sqm": 28.47222222222222, - "url": "https://www.rightmove.co.uk/properties/162652208", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233849/162652208/233849_2677857_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.503945", - "last_seen": "2025-06-01T22:05:44.732097", - "price": 2049 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.387587, - 51.506996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.86, - "qmprice": 25.6, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162652211", - "info": { - "identifier": 162652211, - "sqm_ocr": 89.86, - "price": 2300.0, - "price_per_sqm": 25.59537057645226, - "url": "https://www.rightmove.co.uk/properties/162652211", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kerr and Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47967/162652211/47967_KAC1001401_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.056912", - "last_seen": "2025-06-01T22:05:48.998305", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.237295, - 51.505848 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.5, - "qmprice": 31.42, - "rooms": 3, - "total_price": 3975.0, - "url": "https://www.rightmove.co.uk/properties/162652232", - "info": { - "identifier": 162652232, - "sqm_ocr": 126.5, - "price": 3975.0, - "price_per_sqm": 31.42292490118577, - "url": "https://www.rightmove.co.uk/properties/162652232", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/162652232/281129_300523_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.878287", - "last_seen": "2025-06-01T22:05:39.335763", - "price": 3975.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22083, - 51.57143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 101.4, - "qmprice": 32.05, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162652391", - "info": { - "identifier": 162652391, - "sqm_ocr": 101.4, - "price": 3250.0, - "price_per_sqm": 32.05128205128205, - "url": "https://www.rightmove.co.uk/properties/162652391", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/162652391/80105_9155_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.151801", - "last_seen": "2025-06-01T22:06:04.345519", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.339326, - 51.447395 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 28.92, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162652397", - "info": { - "identifier": 162652397, - "sqm_ocr": 83.0, - "price": 2400.0, - "price_per_sqm": 28.91566265060241, - "url": "https://www.rightmove.co.uk/properties/162652397", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/162652397/281513_LDN230057_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.193355", - "last_seen": "2025-06-01T22:05:46.166479", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.032444, - 51.45681 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162652415", - "info": { - "identifier": 162652415, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162652415", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162652415/238769_jyhtgrfdertyuikjhgrfd_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.297561", - "last_seen": "2025-06-01T22:05:44.538518", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25872, - 51.52281 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162652604", - "info": { - "identifier": 162652604, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162652604", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162652604/238769_ghytrertytgrfed_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.357498", - "last_seen": "2025-06-01T22:05:45.303293", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2588, - 51.52274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 40.77, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162652661", - "info": { - "identifier": 162652661, - "sqm_ocr": 69.9, - "price": 2850.0, - "price_per_sqm": 40.7725321888412, - "url": "https://www.rightmove.co.uk/properties/162652661", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/162652661/281129_300524_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.663487", - "last_seen": "2025-06-01T22:05:39.062419", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22083, - 51.57143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.7, - "qmprice": 42.05, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162652742", - "info": { - "identifier": 162652742, - "sqm_ocr": 54.7, - "price": 2300.0, - "price_per_sqm": 42.04753199268738, - "url": "https://www.rightmove.co.uk/properties/162652742", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "SeOUL Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73282/162652742/73282_10402_SR4U_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.531031", - "last_seen": "2025-06-01T22:06:01.634168", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.198933, - 51.41724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.32, - "qmprice": 39.11, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162652751", - "info": { - "identifier": 162652751, - "sqm_ocr": 70.32, - "price": 2750.0, - "price_per_sqm": 39.10693970420933, - "url": "https://www.rightmove.co.uk/properties/162652751", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247499/162652751/247499_P285098_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.144791", - "last_seen": "2025-06-01T22:05:49.202165", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21277, - 51.47509 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.1, - "qmprice": 30.76, - "rooms": 2, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162652832", - "info": { - "identifier": 162652832, - "sqm_ocr": 81.1, - "price": 2495.0, - "price_per_sqm": 30.764488286066587, - "url": "https://www.rightmove.co.uk/properties/162652832", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84800/162652832/84800_33917502_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.611343", - "last_seen": "2025-06-01T22:05:58.525211", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.306323, - 51.413925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162652967", - "info": { - "identifier": 162652967, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162652967", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162652967/213815_629943_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.463329", - "last_seen": "2025-06-01T22:06:09.444741", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057215, - 51.518917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162653093", - "info": { - "identifier": 162653093, - "sqm_ocr": null, - "price": 2817.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653093", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162653093/213815_546071_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.734285", - "last_seen": "2025-06-01T22:06:08.171228", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.054716, - 51.522266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.5, - "qmprice": 27.23, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162653180", - "info": { - "identifier": 162653180, - "sqm_ocr": 95.5, - "price": 2600.0, - "price_per_sqm": 27.225130890052355, - "url": "https://www.rightmove.co.uk/properties/162653180", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Belvoir", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235832/162653180/235832_P210_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.664727", - "last_seen": "2025-06-01T22:05:58.604202", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26429, - 51.40375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2903.0, - "url": "https://www.rightmove.co.uk/properties/162653237", - "info": { - "identifier": 162653237, - "sqm_ocr": null, - "price": 2903.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653237", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162653237/213815_624688_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.054214, - 51.51161 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2810.0, - "url": "https://www.rightmove.co.uk/properties/162653246", - "info": { - "identifier": 162653246, - "sqm_ocr": null, - "price": 2810.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653246", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "UNCLE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280358/162653246/280358_RST254522_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.788695", - "last_seen": "2025-06-01T22:05:45.091755", - "price": 2810.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.257296, - 51.522324 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2903.0, - "url": "https://www.rightmove.co.uk/properties/162653285", - "info": { - "identifier": 162653285, - "sqm_ocr": null, - "price": 2903.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653285", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162653285/213815_595139_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.044017, - 51.514088 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162653321", - "info": { - "identifier": 162653321, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653321", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "UNCLE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280358/162653321/280358_RST254523_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.461168", - "last_seen": "2025-06-01T22:05:44.635088", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.257296, - 51.522324 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162653342", - "info": { - "identifier": 162653342, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653342", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "AWOL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238379/162653342/238379_C3701I_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.479787", - "last_seen": "2025-06-01T22:05:44.702661", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26244, - 51.52216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162653393", - "info": { - "identifier": 162653393, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653393", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "AWOL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238379/162653393/238379_C2203M_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.525667", - "last_seen": "2025-06-01T22:05:44.762395", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26244, - 51.52216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162653432", - "info": { - "identifier": 162653432, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653432", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "AWOL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238379/162653432/238379_A4602F_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.090082", - "last_seen": "2025-06-01T22:05:44.236516", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26204, - 51.52252 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.5, - "qmprice": 29.63, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162653477", - "info": { - "identifier": 162653477, - "sqm_ocr": 67.5, - "price": 2000.0, - "price_per_sqm": 29.62962962962963, - "url": "https://www.rightmove.co.uk/properties/162653477", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OC Homes", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71060/162653477/71060_33922196_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.842420", - "last_seen": "2025-06-01T22:06:11.640272", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.002097, - 51.55269 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162653483", - "info": { - "identifier": 162653483, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653483", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "AWOL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238379/162653483/238379_A3006F_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.053552", - "last_seen": "2025-06-01T22:05:44.202648", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26166, - 51.52223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162653516", - "info": { - "identifier": 162653516, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653516", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "AWOL", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238379/162653516/238379_A4005I_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.342083", - "last_seen": "2025-06-01T22:05:56.290033", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.26166, - 51.52223 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162653525", - "info": { - "identifier": 162653525, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653525", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Cranbrook Lettings & Sales", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/237k/236963/162653525/236963_cranbrook_566511144_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.872154", - "last_seen": "2025-06-01T22:06:03.682480", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.073447, - 51.57883 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162653540", - "info": { - "identifier": 162653540, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653540", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "UNCLE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147557/162653540/147557_RST254526_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.320964", - "last_seen": "2025-06-01T22:05:43.854517", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375887, - 51.504913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 122.1, - "qmprice": 30.71, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162653648", - "info": { - "identifier": 162653648, - "sqm_ocr": 122.1, - "price": 3750.0, - "price_per_sqm": 30.712530712530715, - "url": "https://www.rightmove.co.uk/properties/162653648", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/122k/121234/162653648/121234_CPQ012542410_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.939658", - "last_seen": "2025-06-01T22:06:12.461445", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189948, - 51.463326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2125.0, - "url": "https://www.rightmove.co.uk/properties/162653675", - "info": { - "identifier": 162653675, - "sqm_ocr": null, - "price": 2125.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653675", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "UNCLE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147557/162653675/147557_RST254528_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.405971", - "last_seen": "2025-06-01T22:05:44.440058", - "price": 2125.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375887, - 51.504913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162653765", - "info": { - "identifier": 162653765, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653765", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "UNCLE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147557/162653765/147557_RST254529_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.354684", - "last_seen": "2025-06-01T22:05:45.296423", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375887, - 51.504913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2593.0, - "url": "https://www.rightmove.co.uk/properties/162653768", - "info": { - "identifier": 162653768, - "sqm_ocr": null, - "price": 2593.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653768", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/162653768/208253_PRL251153_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.356058", - "last_seen": "2025-06-01T22:05:45.299188", - "price": 2593.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.257906, - 51.52189 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 106.0, - "qmprice": 32.99, - "rooms": 2, - "total_price": 3497.0, - "url": "https://www.rightmove.co.uk/properties/162653795", - "info": { - "identifier": 162653795, - "sqm_ocr": 106.0, - "price": 3497.0, - "price_per_sqm": 32.990566037735846, - "url": "https://www.rightmove.co.uk/properties/162653795", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/118k/117766/162653795/117766_BEL130059_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.563125", - "last_seen": "2025-06-01T22:06:14.194134", - "price": 3497 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164613, - 51.47335 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2882.0, - "url": "https://www.rightmove.co.uk/properties/162653840", - "info": { - "identifier": 162653840, - "sqm_ocr": null, - "price": 2882.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653840", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162653840/213815_642484_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.041236", - "last_seen": "2025-06-01T22:06:00.789369", - "price": 2881 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.046848, - 51.47692 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2882.0, - "url": "https://www.rightmove.co.uk/properties/162653897", - "info": { - "identifier": 162653897, - "sqm_ocr": null, - "price": 2882.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653897", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162653897/213815_630225_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.057355", - "last_seen": "2025-06-01T22:06:00.812613", - "price": 2881 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.047262, - 51.476807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2714.0, - "url": "https://www.rightmove.co.uk/properties/162653906", - "info": { - "identifier": 162653906, - "sqm_ocr": null, - "price": 2714.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162653906", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/162653906/208253_PRL251154_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.006821", - "last_seen": "2025-06-01T22:05:44.167871", - "price": 2714.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.257906, - 51.52189 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.6, - "qmprice": 51.59, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162653921", - "info": { - "identifier": 162653921, - "sqm_ocr": 54.6, - "price": 2817.0, - "price_per_sqm": 51.59340659340659, - "url": "https://www.rightmove.co.uk/properties/162653921", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/162653921/108515_1326936_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.986857", - "last_seen": "2025-06-01T22:05:57.552413", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200242, - 51.490482 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 51.21, - "qmprice": 55.01, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162653930", - "info": { - "identifier": 162653930, - "sqm_ocr": 51.21, - "price": 2817.0, - "price_per_sqm": 55.00878734622144, - "url": "https://www.rightmove.co.uk/properties/162653930", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108515/162653930/108515_1326912_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.979212", - "last_seen": "2025-06-01T22:05:57.534615", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190133, - 51.4937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162654014", - "info": { - "identifier": 162654014, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654014", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57973/162654014/57973_KEG240188_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.999190", - "last_seen": "2025-06-01T22:06:15.600811", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175065, - 51.52836 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2480.0, - "url": "https://www.rightmove.co.uk/properties/162654017", - "info": { - "identifier": 162654017, - "sqm_ocr": null, - "price": 2480.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654017", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "UNCLE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253511/162654017/253511_RST254532_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.921115", - "last_seen": "2025-06-01T22:05:39.389939", - "price": 2480.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247832, - 51.59526 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.1, - "qmprice": 38.53, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162654032", - "info": { - "identifier": 162654032, - "sqm_ocr": 57.1, - "price": 2200.0, - "price_per_sqm": 38.52889667250438, - "url": "https://www.rightmove.co.uk/properties/162654032", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87815/162654032/87815_1328491_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.942010", - "last_seen": "2025-06-01T22:05:39.410533", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21388, - 51.59733 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/162654035", - "info": { - "identifier": 162654035, - "sqm_ocr": null, - "price": 2535.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654035", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162654035/213815_163618_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.540824", - "last_seen": "2025-06-01T22:06:11.139433", - "price": 2535 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017914, - 51.52081 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162654107", - "info": { - "identifier": 162654107, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654107", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162654107/96668_249619826052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.815853", - "last_seen": "2025-06-01T22:06:02.341883", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.022562, - 51.53225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.71, - "qmprice": 30.62, - "rooms": 2, - "total_price": 2318.0, - "url": "https://www.rightmove.co.uk/properties/162654110", - "info": { - "identifier": 162654110, - "sqm_ocr": 75.71, - "price": 2318.0, - "price_per_sqm": 30.616827367586847, - "url": "https://www.rightmove.co.uk/properties/162654110", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11351/162654110/11351_29119932_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.810051", - "last_seen": "2025-06-01T22:06:02.333332", - "price": 2318 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.019408, - 51.508446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162654116", - "info": { - "identifier": 162654116, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654116", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "UNCLE", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253511/162654116/253511_RST254533_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.230556", - "last_seen": "2025-06-01T22:05:38.613660", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247845, - 51.595333 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2513.0, - "url": "https://www.rightmove.co.uk/properties/162654143", - "info": { - "identifier": 162654143, - "sqm_ocr": null, - "price": 2513.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654143", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jack Barclay Estates", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/214k/213815/162654143/213815_667985_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.958557", - "last_seen": "2025-06-01T22:06:08.708135", - "price": 2513 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023024, - 51.533768 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162654155", - "info": { - "identifier": 162654155, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654155", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162654155/96668_250112730052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.901377", - "last_seen": "2025-06-01T22:05:50.284755", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.334426, - 51.598267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.39, - "qmprice": 22.29, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162654194", - "info": { - "identifier": 162654194, - "sqm_ocr": 114.39, - "price": 2550.0, - "price_per_sqm": 22.292158405455023, - "url": "https://www.rightmove.co.uk/properties/162654194", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/248k/247514/162654194/247514_P288410_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.438645", - "last_seen": "2025-06-01T22:05:53.002062", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11389, - 51.55762 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162654197", - "info": { - "identifier": 162654197, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654197", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162654197/96668_250129230052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.437438", - "last_seen": "2025-06-01T22:05:52.999764", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125743, - 51.5624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/162654215", - "info": { - "identifier": 162654215, - "sqm_ocr": null, - "price": 2496.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654215", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33140/162654215/33140_HAM250114_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.842908", - "last_seen": "2025-06-01T22:05:48.651122", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219261, - 51.50154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162654248", - "info": { - "identifier": 162654248, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654248", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162654248/96668_250135830052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.671853", - "last_seen": "2025-06-01T22:05:40.652264", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.237124, - 51.56696 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2652.0, - "url": "https://www.rightmove.co.uk/properties/162654266", - "info": { - "identifier": 162654266, - "sqm_ocr": null, - "price": 2652.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654266", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162654266/96668_250138230052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.509860", - "last_seen": "2025-06-01T22:06:05.778896", - "price": 2652.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101982, - 51.491463 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162654278", - "info": { - "identifier": 162654278, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654278", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162654278/96668_250157230052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.059012", - "last_seen": "2025-06-01T22:05:47.517383", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066738, - 51.54589 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.3, - "qmprice": 43.15, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162654296", - "info": { - "identifier": 162654296, - "sqm_ocr": 53.3, - "price": 2300.0, - "price_per_sqm": 43.151969981238274, - "url": "https://www.rightmove.co.uk/properties/162654296", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15948/162654296/15948_1327599_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.775352", - "last_seen": "2025-06-01T22:05:48.559171", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217014, - 51.48625 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3498.0, - "url": "https://www.rightmove.co.uk/properties/162654374", - "info": { - "identifier": 162654374, - "sqm_ocr": null, - "price": 3498.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654374", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/162654374/208253_PRL251155_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.756792", - "last_seen": "2025-06-01T22:05:45.041007", - "price": 3498.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.257906, - 51.52189 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.5, - "qmprice": 37.21, - "rooms": 2, - "total_price": 3293.0, - "url": "https://www.rightmove.co.uk/properties/162654398", - "info": { - "identifier": 162654398, - "sqm_ocr": 88.5, - "price": 3293.0, - "price_per_sqm": 37.2090395480226, - "url": "https://www.rightmove.co.uk/properties/162654398", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Liv International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54583/162654398/54583_LIVH_004299_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.343402", - "last_seen": "2025-06-01T22:05:43.023946", - "price": 3293 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172343, - 51.543346 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 112.5, - "qmprice": 19.56, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162654455", - "info": { - "identifier": 162654455, - "sqm_ocr": 112.5, - "price": 2200.0, - "price_per_sqm": 19.555555555555557, - "url": "https://www.rightmove.co.uk/properties/162654455", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/162654455/264326_Y68705_1_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.466320", - "last_seen": "2025-06-01T22:06:01.429817", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161501, - 51.40316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162654524", - "info": { - "identifier": 162654524, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654524", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jeremy Jacob Letting Specialists", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/117k/116941/162654524/116941_ARU-790316_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.081012", - "last_seen": "2025-06-01T22:05:58.232854", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180904, - 51.485874 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162654542", - "info": { - "identifier": 162654542, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654542", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Andrew Reeves", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20738/162654542/20738_000912594_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.272755", - "last_seen": "2025-06-01T22:06:00.846129", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03587, - 51.42868 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2225.0, - "url": "https://www.rightmove.co.uk/properties/162654566", - "info": { - "identifier": 162654566, - "sqm_ocr": null, - "price": 2225.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654566", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/237k/236303/162654566/236303_P65891_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.336063", - "last_seen": "2025-06-01T22:05:39.608380", - "price": 2225.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24717, - 51.59407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.3, - "qmprice": 37.23, - "rooms": 3, - "total_price": 3660.0, - "url": "https://www.rightmove.co.uk/properties/162654779", - "info": { - "identifier": 162654779, - "sqm_ocr": 98.3, - "price": 3660.0, - "price_per_sqm": 37.23296032553408, - "url": "https://www.rightmove.co.uk/properties/162654779", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290048/162654779/290048_East-A114-3005_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.075830", - "last_seen": "2025-06-01T22:06:02.447823", - "price": 3660.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00951, - 51.51313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.4, - "qmprice": 34.77, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162654875", - "info": { - "identifier": 162654875, - "sqm_ocr": 60.4, - "price": 2100.0, - "price_per_sqm": 34.7682119205298, - "url": "https://www.rightmove.co.uk/properties/162654875", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Tilson & Spencer", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166970/162654875/166970_102489001829_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.848620", - "last_seen": "2025-06-01T22:05:50.151520", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08662, - 51.599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3390.0, - "url": "https://www.rightmove.co.uk/properties/162654947", - "info": { - "identifier": 162654947, - "sqm_ocr": null, - "price": 3390.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162654947", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290048/162654947/290048_EAST-B20-_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.338297", - "last_seen": "2025-06-01T22:06:02.939004", - "price": 3390.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00992, - 51.51258 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 126.5, - "qmprice": 31.42, - "rooms": 3, - "total_price": 3975.0, - "url": "https://www.rightmove.co.uk/properties/162654995", - "info": { - "identifier": 162654995, - "sqm_ocr": 126.5, - "price": 3975.0, - "price_per_sqm": 31.42292490118577, - "url": "https://www.rightmove.co.uk/properties/162654995", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/162654995/281129_300528_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.940645", - "last_seen": "2025-06-01T22:05:39.409011", - "price": 3975.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22083, - 51.57143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2775.0, - "url": "https://www.rightmove.co.uk/properties/162655040", - "info": { - "identifier": 162655040, - "sqm_ocr": null, - "price": 2775.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655040", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290048/162655040/290048_EAST-A156-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "11/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.671799", - "last_seen": "2025-06-01T22:06:03.355576", - "price": 2775.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00951, - 51.51313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162655046", - "info": { - "identifier": 162655046, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655046", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Keatons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25055/162655046/25055_BOW180590_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.047388, - 51.523373 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.19, - "qmprice": 41.79, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162655130", - "info": { - "identifier": 162655130, - "sqm_ocr": 68.19, - "price": 2850.0, - "price_per_sqm": 41.79498460184778, - "url": "https://www.rightmove.co.uk/properties/162655130", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68507/162655130/68507_HKR240022_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.422280", - "last_seen": "2025-06-01T22:06:10.760664", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.039628, - 51.533466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 39.2, - "qmprice": 89.29, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162655139", - "info": { - "identifier": 162655139, - "sqm_ocr": 39.2, - "price": 3500.0, - "price_per_sqm": 89.28571428571428, - "url": "https://www.rightmove.co.uk/properties/162655139", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48330/162655139/48330_BRI240067_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.486333", - "last_seen": "2025-06-01T22:05:59.796003", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12097, - 51.456997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2735.0, - "url": "https://www.rightmove.co.uk/properties/162655193", - "info": { - "identifier": 162655193, - "sqm_ocr": null, - "price": 2735.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655193", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290048/162655193/290048_EAST-A119-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.392215", - "last_seen": "2025-06-01T22:06:03.017838", - "price": 2735.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00951, - 51.51313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162655229", - "info": { - "identifier": 162655229, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655229", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/237k/236303/162655229/236303_P66713_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.287119", - "last_seen": "2025-06-01T22:05:38.676338", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24579, - 51.59393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/162655232", - "info": { - "identifier": 162655232, - "sqm_ocr": null, - "price": 3950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655232", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57934/162655232/57934_KDN220052_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.653508", - "last_seen": "2025-06-01T22:05:48.377476", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.219203, - 51.48804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162655241", - "info": { - "identifier": 162655241, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655241", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/167k/166331/162655241/166331_1328483_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.454502", - "last_seen": "2025-06-01T22:05:40.329195", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279053, - 51.55894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2715.0, - "url": "https://www.rightmove.co.uk/properties/162655295", - "info": { - "identifier": 162655295, - "sqm_ocr": null, - "price": 2715.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655295", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290048/162655295/290048_EAST-A11-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.790709", - "last_seen": "2025-06-01T22:06:02.306587", - "price": 2715.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00951, - 51.51313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2705.0, - "url": "https://www.rightmove.co.uk/properties/162655451", - "info": { - "identifier": 162655451, - "sqm_ocr": null, - "price": 2705.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655451", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290048/162655451/290048_EAST-A10-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.511981", - "last_seen": "2025-06-01T22:06:03.328020", - "price": 2705.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00951, - 51.51313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.7, - "qmprice": 33.47, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162655457", - "info": { - "identifier": 162655457, - "sqm_ocr": 71.7, - "price": 2400.0, - "price_per_sqm": 33.47280334728033, - "url": "https://www.rightmove.co.uk/properties/162655457", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "B&C Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281513/162655457/281513_LDN180053_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.708060", - "last_seen": "2025-06-01T22:05:47.019141", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.023743, - 51.460304 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162655475", - "info": { - "identifier": 162655475, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655475", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Andrew Reeves", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/21k/20732/162655475/20732_000784528_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.383082", - "last_seen": "2025-06-01T22:05:41.645737", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01896, - 51.41478 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.5, - "qmprice": 31.1, - "rooms": 2, - "total_price": 2690.0, - "url": "https://www.rightmove.co.uk/properties/162655502", - "info": { - "identifier": 162655502, - "sqm_ocr": 86.5, - "price": 2690.0, - "price_per_sqm": 31.09826589595376, - "url": "https://www.rightmove.co.uk/properties/162655502", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290048/162655502/290048_EAST-A64-3005_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.159396", - "last_seen": "2025-06-01T22:06:03.536129", - "price": 2690.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00951, - 51.51313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 31.65, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162655517", - "info": { - "identifier": 162655517, - "sqm_ocr": 79.0, - "price": 2500.0, - "price_per_sqm": 31.645569620253166, - "url": "https://www.rightmove.co.uk/properties/162655517", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280928/162655517/280928_KYC240479_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.360868", - "last_seen": "2025-06-01T22:05:45.312462", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.257906, - 51.52189 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162655523", - "info": { - "identifier": 162655523, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655523", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263693/162655523/263693_CDL240184_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.982042", - "last_seen": "2025-06-01T22:06:01.015925", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038726, - 51.491367 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.0, - "qmprice": 35.83, - "rooms": 3, - "total_price": 3690.0, - "url": "https://www.rightmove.co.uk/properties/162655538", - "info": { - "identifier": 162655538, - "sqm_ocr": 103.0, - "price": 3690.0, - "price_per_sqm": 35.8252427184466, - "url": "https://www.rightmove.co.uk/properties/162655538", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280928/162655538/280928_KYC240481_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.384246", - "last_seen": "2025-06-01T22:05:45.335578", - "price": 3690.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.257906, - 51.52189 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2605.0, - "url": "https://www.rightmove.co.uk/properties/162655631", - "info": { - "identifier": 162655631, - "sqm_ocr": null, - "price": 2605.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655631", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290048/162655631/290048_EAST-A56-3005_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.451896", - "last_seen": "2025-06-01T22:06:03.116291", - "price": 2605.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00951, - 51.51313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 40.77, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162655637", - "info": { - "identifier": 162655637, - "sqm_ocr": 69.9, - "price": 2850.0, - "price_per_sqm": 40.7725321888412, - "url": "https://www.rightmove.co.uk/properties/162655637", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/162655637/281129_300529_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.997142", - "last_seen": "2025-06-01T22:05:39.495679", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22083, - 51.57143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2570.0, - "url": "https://www.rightmove.co.uk/properties/162655715", - "info": { - "identifier": 162655715, - "sqm_ocr": null, - "price": 2570.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655715", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290048/162655715/290048_EAST-B26-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.883481", - "last_seen": "2025-06-01T22:06:02.248442", - "price": 2570.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00992, - 51.51258 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162655760", - "info": { - "identifier": 162655760, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655760", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "RCAM", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240482/162655760/240482_2bed3005CM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.352337", - "last_seen": "2025-06-01T22:05:40.187096", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22773, - 51.54969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2192.0, - "url": "https://www.rightmove.co.uk/properties/162655784", - "info": { - "identifier": 162655784, - "sqm_ocr": null, - "price": 2192.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655784", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162655784/156986_LBB20023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.337652", - "last_seen": "2025-06-01T22:05:40.151310", - "price": 2192.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2812, - 51.56006 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.7, - "qmprice": 42.96, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/162655793", - "info": { - "identifier": 162655793, - "sqm_ocr": 80.7, - "price": 3467.0, - "price_per_sqm": 42.96158612143742, - "url": "https://www.rightmove.co.uk/properties/162655793", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Battersea & Nine Elms Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143171/162655793/143171_33922335_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.754440", - "last_seen": "2025-06-01T22:06:12.272149", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.135284, - 51.479664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2560.0, - "url": "https://www.rightmove.co.uk/properties/162655817", - "info": { - "identifier": 162655817, - "sqm_ocr": null, - "price": 2560.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655817", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290048/162655817/290048_EAST-B25-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.007521", - "last_seen": "2025-06-01T22:06:02.578935", - "price": 2560.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00992, - 51.51258 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.5, - "qmprice": 54.26, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162655826", - "info": { - "identifier": 162655826, - "sqm_ocr": 64.5, - "price": 3500.0, - "price_per_sqm": 54.263565891472865, - "url": "https://www.rightmove.co.uk/properties/162655826", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237821/162655826/237821_KCU240024_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.128467", - "last_seen": "2025-06-01T22:05:57.777247", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199909, - 51.49475 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2921.0, - "url": "https://www.rightmove.co.uk/properties/162655898", - "info": { - "identifier": 162655898, - "sqm_ocr": null, - "price": 2921.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655898", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162655898/156986_LBE58_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.508529", - "last_seen": "2025-06-01T22:05:40.516328", - "price": 2921.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2812, - 51.56006 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162655934", - "info": { - "identifier": 162655934, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162655934", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162655934/238769_dgrtyuy65t4r3e_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.857691", - "last_seen": "2025-06-01T22:06:11.950579", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04216, - 51.58796 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 52.0, - "qmprice": 48.75, - "rooms": 2, - "total_price": 2535.0, - "url": "https://www.rightmove.co.uk/properties/162656045", - "info": { - "identifier": 162656045, - "sqm_ocr": 52.0, - "price": 2535.0, - "price_per_sqm": 48.75, - "url": "https://www.rightmove.co.uk/properties/162656045", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290048/162656045/290048_EAST-A38-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.974104", - "last_seen": "2025-06-01T22:06:02.536151", - "price": 2535.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00951, - 51.51313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3172.0, - "url": "https://www.rightmove.co.uk/properties/162656090", - "info": { - "identifier": 162656090, - "sqm_ocr": null, - "price": 3172.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162656090", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162656090/156986_LBC10045_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.547480", - "last_seen": "2025-06-01T22:05:40.519971", - "price": 3172.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2812, - 51.56006 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.9, - "qmprice": 41.56, - "rooms": 2, - "total_price": 2905.0, - "url": "https://www.rightmove.co.uk/properties/162656126", - "info": { - "identifier": 162656126, - "sqm_ocr": 69.9, - "price": 2905.0, - "price_per_sqm": 41.55937052932761, - "url": "https://www.rightmove.co.uk/properties/162656126", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Related Argent Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/282k/281129/162656126/281129_300531_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.087650", - "last_seen": "2025-06-01T22:05:39.656929", - "price": 2905.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22111, - 51.57144 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162656279", - "info": { - "identifier": 162656279, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162656279", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Right Now Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238769/162656279/238769_hy6t5r43e45_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.762936", - "last_seen": "2025-06-01T22:06:11.887389", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04216, - 51.58796 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.5, - "qmprice": 29.37, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162656387", - "info": { - "identifier": 162656387, - "sqm_ocr": 71.5, - "price": 2100.0, - "price_per_sqm": 29.37062937062937, - "url": "https://www.rightmove.co.uk/properties/162656387", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48330/162656387/48330_HEA220021_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.034680", - "last_seen": "2025-06-01T22:05:59.294357", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125038, - 51.45963 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162656408", - "info": { - "identifier": 162656408, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162656408", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Knights Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82394/162656408/82394_DWR001106_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.369962", - "last_seen": "2025-06-01T22:05:56.499857", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.064433, - 51.60156 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.0, - "qmprice": 42.62, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162656414", - "info": { - "identifier": 162656414, - "sqm_ocr": 61.0, - "price": 2600.0, - "price_per_sqm": 42.622950819672134, - "url": "https://www.rightmove.co.uk/properties/162656414", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Urban Spaces", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71612/162656414/71612_PB10884_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.753940", - "last_seen": "2025-06-01T22:06:04.949999", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09801, - 51.48987 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 36.9, - "qmprice": 101.63, - "rooms": 4, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162656456", - "info": { - "identifier": 162656456, - "sqm_ocr": 36.9, - "price": 3750.0, - "price_per_sqm": 101.6260162601626, - "url": "https://www.rightmove.co.uk/properties/162656456", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17946/162656456/17946_CLV221579_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.699926", - "last_seen": "2025-06-01T22:05:43.317016", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09843, - 51.31783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.2, - "qmprice": 40.36, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/162656498", - "info": { - "identifier": 162656498, - "sqm_ocr": 83.2, - "price": 3358.0, - "price_per_sqm": 40.36057692307692, - "url": "https://www.rightmove.co.uk/properties/162656498", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58979/162656498/58979_CHQ012542992_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.190946", - "last_seen": "2025-06-01T22:05:57.878555", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.183354, - 51.48323 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162656708", - "info": { - "identifier": 162656708, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162656708", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Fraser & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/267k/266348/162656708/266348_CLL250009_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.915485", - "last_seen": "2025-06-01T22:05:39.372638", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.251751, - 51.595078 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162656963", - "info": { - "identifier": 162656963, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162656963", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Roundtree Real Estate", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46965/162656963/46965_42212_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.534220", - "last_seen": "2025-06-01T22:05:49.805954", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.150382, - 51.59068 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162657020", - "info": { - "identifier": 162657020, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162657020", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Residential Links", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289685/162657020/289685_289685-72462_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.011394", - "last_seen": "2025-06-01T22:06:08.769857", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.027299, - 51.513737 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.8, - "qmprice": 28.41, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162657161", - "info": { - "identifier": 162657161, - "sqm_ocr": 96.8, - "price": 2750.0, - "price_per_sqm": 28.40909090909091, - "url": "https://www.rightmove.co.uk/properties/162657161", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67886/162657161/67886_FLQ012559275_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.794315", - "last_seen": "2025-06-01T22:05:48.575592", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.208444, - 51.47287 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 128.2, - "qmprice": 17.55, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162657215", - "info": { - "identifier": 162657215, - "sqm_ocr": 128.2, - "price": 2250.0, - "price_per_sqm": 17.550702028081126, - "url": "https://www.rightmove.co.uk/properties/162657215", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "jdm", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/169k/168275/162657215/168275_LLO200120_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.384760", - "last_seen": "2025-06-01T22:05:41.652399", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.088112, - 51.414623 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.7, - "qmprice": 39.46, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162657461", - "info": { - "identifier": 162657461, - "sqm_ocr": 88.7, - "price": 3500.0, - "price_per_sqm": 39.45885005636978, - "url": "https://www.rightmove.co.uk/properties/162657461", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54922/162657461/54922_NEL200033_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.092580", - "last_seen": "2025-06-01T22:06:00.001708", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127934, - 51.48163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162657581", - "info": { - "identifier": 162657581, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162657581", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Stones Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91151/162657581/91151_RHL250245_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.485542", - "last_seen": "2025-06-01T22:05:51.091191", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42154, - 51.497757 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2360.0, - "url": "https://www.rightmove.co.uk/properties/162657587", - "info": { - "identifier": 162657587, - "sqm_ocr": null, - "price": 2360.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162657587", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290078/162657587/290078_pop-501-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.899920", - "last_seen": "2025-06-01T22:06:08.034923", - "price": 2360.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02175, - 51.51348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3025.0, - "url": "https://www.rightmove.co.uk/properties/162657683", - "info": { - "identifier": 162657683, - "sqm_ocr": null, - "price": 3025.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162657683", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/291k/290081/162657683/290081_step-602-3005_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.544425", - "last_seen": "2025-06-01T22:06:09.227545", - "price": 3025.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04137, - 51.51957 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3632.0, - "url": "https://www.rightmove.co.uk/properties/162657737", - "info": { - "identifier": 162657737, - "sqm_ocr": null, - "price": 3632.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162657737", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Clay Life", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277505/162657737/277505_3binmont_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.193741", - "last_seen": "2025-06-01T22:05:41.294686", - "price": 3632.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28319, - 51.55914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.0, - "qmprice": 48.77, - "rooms": 2, - "total_price": 3950.0, - "url": "https://www.rightmove.co.uk/properties/162657809", - "info": { - "identifier": 162657809, - "sqm_ocr": 81.0, - "price": 3950.0, - "price_per_sqm": 48.76543209876543, - "url": "https://www.rightmove.co.uk/properties/162657809", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hurford Salvi Carr", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111509/162657809/111509_ISL230017_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.907992", - "last_seen": "2025-06-01T22:05:53.786881", - "price": 3950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096674, - 51.529755 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162657986", - "info": { - "identifier": 162657986, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162657986", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Major Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245513/162657986/245513_10679700_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.375391", - "last_seen": "2025-06-01T22:05:51.178111", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.455203, - 51.54 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2246.0, - "url": "https://www.rightmove.co.uk/properties/162658004", - "info": { - "identifier": 162658004, - "sqm_ocr": null, - "price": 2246.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162658004", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Clay Life", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277505/162658004/277505_availbleunit_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.937909", - "last_seen": "2025-06-01T22:05:40.949458", - "price": 2246.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28319, - 51.55914 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2246.0, - "url": "https://www.rightmove.co.uk/properties/162658097", - "info": { - "identifier": 162658097, - "sqm_ocr": null, - "price": 2246.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162658097", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Clay Life", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277505/162658097/277505_12dakavilnow_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.994758", - "last_seen": "2025-06-01T22:05:41.051437", - "price": 2246.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28321, - 51.55879 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.57, - "qmprice": 40.23, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162658163", - "info": { - "identifier": 162658163, - "sqm_ocr": 74.57, - "price": 3000.0, - "price_per_sqm": 40.23065575968889, - "url": "https://www.rightmove.co.uk/properties/162658163", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72842/162658163/72842_P4729C4020_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.259043", - "last_seen": "2025-06-01T22:06:12.557639", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20178, - 51.43958 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162658295", - "info": { - "identifier": 162658295, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162658295", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85697/162658295/85697_KDG251033_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.244809", - "last_seen": "2025-06-01T22:05:44.472739", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.311104, - 51.512028 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.6, - "qmprice": 27.24, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162658349", - "info": { - "identifier": 162658349, - "sqm_ocr": 82.6, - "price": 2250.0, - "price_per_sqm": 27.239709443099276, - "url": "https://www.rightmove.co.uk/properties/162658349", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stride and Son", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50935/162658349/50935_CHO240196_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.896751", - "last_seen": "2025-06-01T22:06:13.948815", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.205283, - 51.446003 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2772.0, - "url": "https://www.rightmove.co.uk/properties/162658373", - "info": { - "identifier": 162658373, - "sqm_ocr": null, - "price": 2772.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162658373", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Clay Life", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/278k/277505/162658373/277505_2binalto_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.087096", - "last_seen": "2025-06-01T22:05:40.802409", - "price": 2772.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28289, - 51.5595 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162658736", - "info": { - "identifier": 162658736, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162658736", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162658736/96668_250163030052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.955920", - "last_seen": "2025-06-01T22:06:11.722759", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004799, - 51.552902 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.0, - "qmprice": 34.8, - "rooms": 3, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/162658787", - "info": { - "identifier": 162658787, - "sqm_ocr": 102.0, - "price": 3550.0, - "price_per_sqm": 34.80392156862745, - "url": "https://www.rightmove.co.uk/properties/162658787", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RCAM", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240482/162658787/240482_3bed3005S_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.259087", - "last_seen": "2025-06-01T22:06:04.453915", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33029, - 51.44998 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162658946", - "info": { - "identifier": 162658946, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162658946", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/114k/113803/162658946/113803_SID250194_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.260448", - "last_seen": "2025-06-01T22:05:39.973282", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.092946, - 51.45436 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.2, - "qmprice": 37.38, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162659141", - "info": { - "identifier": 162659141, - "sqm_ocr": 64.2, - "price": 2400.0, - "price_per_sqm": 37.38317757009346, - "url": "https://www.rightmove.co.uk/properties/162659141", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271538/162659141/271538_KDR220014_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.098153", - "last_seen": "2025-06-01T22:06:06.238879", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101672, - 51.47818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.1, - "qmprice": 22.7, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162659177", - "info": { - "identifier": 162659177, - "sqm_ocr": 99.1, - "price": 2250.0, - "price_per_sqm": 22.70433905146317, - "url": "https://www.rightmove.co.uk/properties/162659177", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Andrew", - "council_tax_band": "A", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84953/162659177/84953_d9494916-eca3-472e-a96f-737b95958be5_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.911028", - "last_seen": "2025-06-01T22:05:53.795367", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133117, - 51.565533 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 46.73, - "qmprice": 49.22, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162659180", - "info": { - "identifier": 162659180, - "sqm_ocr": 46.73, - "price": 2300.0, - "price_per_sqm": 49.21891718382196, - "url": "https://www.rightmove.co.uk/properties/162659180", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jaffe Properties LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76282/162659180/76282_29108377_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.146686", - "last_seen": "2025-06-01T22:05:42.710913", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184446, - 51.551617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.29, - "qmprice": 32.83, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162659216", - "info": { - "identifier": 162659216, - "sqm_ocr": 85.29, - "price": 2800.0, - "price_per_sqm": 32.82917106343064, - "url": "https://www.rightmove.co.uk/properties/162659216", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RCAM", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240482/162659216/240482_2bed3005CV_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.228693", - "last_seen": "2025-06-01T22:06:04.407184", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33002, - 51.45047 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162659273", - "info": { - "identifier": 162659273, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162659273", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Andrews Letting and Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34352/162659273/34352_ROM140068_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.236566", - "last_seen": "2025-06-01T22:05:50.908983", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.241276, - 51.608654 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.0, - "qmprice": 25.69, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162659312", - "info": { - "identifier": 162659312, - "sqm_ocr": 109.0, - "price": 2800.0, - "price_per_sqm": 25.68807339449541, - "url": "https://www.rightmove.co.uk/properties/162659312", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162659312/221711_2371_EAF_139650_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.318689", - "last_seen": "2025-06-01T22:05:59.043560", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13014, - 51.46176 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162659489", - "info": { - "identifier": 162659489, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162659489", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "The Stow Brothers", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267587/162659489/267587_33922540_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.209053", - "last_seen": "2025-06-01T22:05:47.455371", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.036954, - 51.546967 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162659567", - "info": { - "identifier": 162659567, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162659567", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Susmans Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34004/162659567/34004_33922548_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.798836", - "last_seen": "2025-06-01T22:05:54.375721", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137053, - 51.56138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.9, - "qmprice": 31.59, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162659636", - "info": { - "identifier": 162659636, - "sqm_ocr": 83.9, - "price": 2650.0, - "price_per_sqm": 31.585220500595945, - "url": "https://www.rightmove.co.uk/properties/162659636", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RCAM", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240482/162659636/240482_3bed3005_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.644578", - "last_seen": "2025-06-01T22:05:51.491654", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.47494, - 51.51099 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.3, - "qmprice": 35.75, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162659645", - "info": { - "identifier": 162659645, - "sqm_ocr": 92.3, - "price": 3300.0, - "price_per_sqm": 35.75297941495125, - "url": "https://www.rightmove.co.uk/properties/162659645", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51295/162659645/51295_CHD250019_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.950535", - "last_seen": "2025-06-01T22:05:39.427021", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.244357, - 51.58297 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.3, - "qmprice": 29.52, - "rooms": 2, - "total_price": 2075.0, - "url": "https://www.rightmove.co.uk/properties/162659717", - "info": { - "identifier": 162659717, - "sqm_ocr": 70.3, - "price": 2075.0, - "price_per_sqm": 29.516358463726885, - "url": "https://www.rightmove.co.uk/properties/162659717", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "RCAM", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/241k/240482/162659717/240482_2bed3005AC_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.376739", - "last_seen": "2025-06-01T22:05:51.179702", - "price": 2075.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.47494, - 51.51099 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162659825", - "info": { - "identifier": 162659825, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162659825", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/162659825/67576_RL1386_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.713470", - "last_seen": "2025-06-01T22:05:53.499379", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121492, - 51.566708 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.71, - "qmprice": 42.79, - "rooms": 2, - "total_price": 2384.0, - "url": "https://www.rightmove.co.uk/properties/162659915", - "info": { - "identifier": 162659915, - "sqm_ocr": 55.71, - "price": 2384.0, - "price_per_sqm": 42.793035361694486, - "url": "https://www.rightmove.co.uk/properties/162659915", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64127/162659915/64127_1323652_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.280537", - "last_seen": "2025-06-01T22:05:42.639992", - "price": 2384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170713, - 51.540882 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.1, - "qmprice": 20.6, - "rooms": 4, - "total_price": 2495.0, - "url": "https://www.rightmove.co.uk/properties/162659924", - "info": { - "identifier": 162659924, - "sqm_ocr": 121.1, - "price": 2495.0, - "price_per_sqm": 20.60280759702725, - "url": "https://www.rightmove.co.uk/properties/162659924", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "The Stow Brothers", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/115k/114391/162659924/114391_33922575_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.840824", - "last_seen": "2025-06-01T22:06:11.899156", - "price": 2495.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021532, - 51.569572 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162659933", - "info": { - "identifier": 162659933, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162659933", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Andrews Letting and Management", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34358/162659933/34358_STR140168_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.629380", - "last_seen": "2025-06-01T22:05:59.877845", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130674, - 51.42996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.0, - "qmprice": 26.09, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162659990", - "info": { - "identifier": 162659990, - "sqm_ocr": 115.0, - "price": 3000.0, - "price_per_sqm": 26.08695652173913, - "url": "https://www.rightmove.co.uk/properties/162659990", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249341/162659990/249341_CWA10001_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.610249", - "last_seen": "2025-06-01T22:06:07.659111", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00454, - 51.54805 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3632.0, - "url": "https://www.rightmove.co.uk/properties/162660044", - "info": { - "identifier": 162660044, - "sqm_ocr": null, - "price": 3632.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162660044", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162660044/156986_CWC20004_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.957459", - "last_seen": "2025-06-01T22:05:41.000589", - "price": 3632.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.283166, - 51.5589 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.6, - "qmprice": 44.77, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162660059", - "info": { - "identifier": 162660059, - "sqm_ocr": 72.6, - "price": 3250.0, - "price_per_sqm": 44.76584022038568, - "url": "https://www.rightmove.co.uk/properties/162660059", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151658/162660059/151658_1323071_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.964613", - "last_seen": "2025-06-01T22:05:41.012185", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197434, - 51.53427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2333.0, - "url": "https://www.rightmove.co.uk/properties/162660131", - "info": { - "identifier": 162660131, - "sqm_ocr": null, - "price": 2333.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162660131", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162660131/156986_FQB30019_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.466714", - "last_seen": "2025-06-01T22:05:40.346739", - "price": 2333.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2841, - 51.55512 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 144.1, - "qmprice": 22.9, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162660173", - "info": { - "identifier": 162660173, - "sqm_ocr": 144.1, - "price": 3300.0, - "price_per_sqm": 22.900763358778626, - "url": "https://www.rightmove.co.uk/properties/162660173", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Daniel Cobb", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58939/162660173/58939_b26e294f-ab37-48c1-912c-08e55aace7bc_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.993291", - "last_seen": "2025-06-01T22:06:05.263903", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094303, - 51.48269 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162660272", - "info": { - "identifier": 162660272, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162660272", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/162660272/87812_1328349_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.525080", - "last_seen": "2025-06-01T22:05:39.008115", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.247562, - 51.59603 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.5, - "qmprice": 38.5, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/162660275", - "info": { - "identifier": 162660275, - "sqm_ocr": 98.5, - "price": 3792.0, - "price_per_sqm": 38.49746192893401, - "url": "https://www.rightmove.co.uk/properties/162660275", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65124/162660275/65124_CEI230280_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.850118", - "last_seen": "2025-06-01T22:05:48.658833", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18423, - 51.47484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 24.14, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162660410", - "info": { - "identifier": 162660410, - "sqm_ocr": 87.0, - "price": 2100.0, - "price_per_sqm": 24.137931034482758, - "url": "https://www.rightmove.co.uk/properties/162660410", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/162660410/66771_1327506_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.337465", - "last_seen": "2025-06-01T22:06:00.213202", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.114789, - 51.47995 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.5, - "qmprice": 34.83, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162660422", - "info": { - "identifier": 162660422, - "sqm_ocr": 100.5, - "price": 3500.0, - "price_per_sqm": 34.82587064676617, - "url": "https://www.rightmove.co.uk/properties/162660422", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66768/162660422/66768_1328499_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.809132", - "last_seen": "2025-06-01T22:06:07.125364", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.066788, - 51.46746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.9, - "qmprice": 21.67, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162660428", - "info": { - "identifier": 162660428, - "sqm_ocr": 96.9, - "price": 2100.0, - "price_per_sqm": 21.671826625386995, - "url": "https://www.rightmove.co.uk/properties/162660428", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/150k/149153/162660428/149153_1328502_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.375117", - "last_seen": "2025-06-01T22:06:07.893947", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196162, - 51.359104 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.7, - "qmprice": 56.58, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162660455", - "info": { - "identifier": 162660455, - "sqm_ocr": 70.7, - "price": 4000.0, - "price_per_sqm": 56.57708628005658, - "url": "https://www.rightmove.co.uk/properties/162660455", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162660455/15963_1328448_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.579213", - "last_seen": "2025-06-01T22:06:14.258567", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242794, - 51.45907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.7, - "qmprice": 35.36, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162660461", - "info": { - "identifier": 162660461, - "sqm_ocr": 70.7, - "price": 2500.0, - "price_per_sqm": 35.36067892503536, - "url": "https://www.rightmove.co.uk/properties/162660461", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162660461/15963_1328449_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.590484", - "last_seen": "2025-06-01T22:06:13.300803", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242794, - 51.45907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 32.18, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162660479", - "info": { - "identifier": 162660479, - "sqm_ocr": 87.0, - "price": 2800.0, - "price_per_sqm": 32.18390804597701, - "url": "https://www.rightmove.co.uk/properties/162660479", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Daniel Cobb", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58939/162660479/58939_5096dd0e-3029-4968-a4c0-f512ca54a60e_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.379382", - "last_seen": "2025-06-01T22:05:59.644506", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108327, - 51.457718 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.22, - "qmprice": 37.75, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162660647", - "info": { - "identifier": 162660647, - "sqm_ocr": 66.22, - "price": 2500.0, - "price_per_sqm": 37.75294472968891, - "url": "https://www.rightmove.co.uk/properties/162660647", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51322/162660647/51322_WEL230105_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.557667", - "last_seen": "2025-06-01T22:06:14.572265", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14244, - 51.487137 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162660818", - "info": { - "identifier": 162660818, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162660818", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "McHugh & Co", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/91k/90947/162660818/90947_33922609_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.333276", - "last_seen": "2025-06-01T22:05:42.993671", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143498, - 51.54057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 40.26, - "rooms": 3, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/162660878", - "info": { - "identifier": 162660878, - "sqm_ocr": 62.0, - "price": 2496.0, - "price_per_sqm": 40.25806451612903, - "url": "https://www.rightmove.co.uk/properties/162660878", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Abatoria", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/34k/33248/162660878/33248_3212_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.055002, - 51.5065 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.6, - "qmprice": 32.08, - "rooms": 2, - "total_price": 2201.0, - "url": "https://www.rightmove.co.uk/properties/162660899", - "info": { - "identifier": 162660899, - "sqm_ocr": 68.6, - "price": 2201.0, - "price_per_sqm": 32.08454810495627, - "url": "https://www.rightmove.co.uk/properties/162660899", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/147k/146498/162660899/146498_33922613_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.563004", - "last_seen": "2025-06-01T22:06:06.915397", - "price": 2201 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.106601, - 51.48394 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.57, - "qmprice": 25.78, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162660983", - "info": { - "identifier": 162660983, - "sqm_ocr": 77.57, - "price": 2000.0, - "price_per_sqm": 25.783163594173008, - "url": "https://www.rightmove.co.uk/properties/162660983", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Samuel Estates", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13711/162660983/13711_4359_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.490534", - "last_seen": "2025-06-01T22:06:01.529435", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179323, - 51.414165 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.65, - "qmprice": 30.97, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162661046", - "info": { - "identifier": 162661046, - "sqm_ocr": 93.65, - "price": 2900.0, - "price_per_sqm": 30.966364121729843, - "url": "https://www.rightmove.co.uk/properties/162661046", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72234/162661046/72234_RWL250861_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.628379", - "last_seen": "2025-06-01T22:06:03.245024", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.029586, - 51.500465 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.6, - "qmprice": 27.37, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162661160", - "info": { - "identifier": 162661160, - "sqm_ocr": 109.6, - "price": 3000.0, - "price_per_sqm": 27.37226277372263, - "url": "https://www.rightmove.co.uk/properties/162661160", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Portico", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74047/162661160/74047_P281076_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.493087", - "last_seen": "2025-06-01T22:05:44.725828", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24644, - 51.50582 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162661244", - "info": { - "identifier": 162661244, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162661244", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Austin Homes London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105559/162661244/105559_c3cad52b-bec5-47ef-b365-11f55f6fbeb8_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.962750", - "last_seen": "2025-06-01T22:05:47.376312", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089644, - 51.52798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2080.0, - "url": "https://www.rightmove.co.uk/properties/162661247", - "info": { - "identifier": 162661247, - "sqm_ocr": null, - "price": 2080.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162661247", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11351/162661247/11351_29120326_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.089939", - "last_seen": "2025-06-01T22:06:05.412512", - "price": 2080.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03877, - 51.50705 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.12, - "qmprice": 33.83, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162661265", - "info": { - "identifier": 162661265, - "sqm_ocr": 59.12, - "price": 2000.0, - "price_per_sqm": 33.82949932341001, - "url": "https://www.rightmove.co.uk/properties/162661265", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winchester White", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/127k/126934/162661265/126934_67d1b6d30eb17_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.148567", - "last_seen": "2025-06-01T22:06:12.659756", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190231, - 51.44323 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 30.99, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162661421", - "info": { - "identifier": 162661421, - "sqm_ocr": 71.0, - "price": 2200.0, - "price_per_sqm": 30.985915492957748, - "url": "https://www.rightmove.co.uk/properties/162661421", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162661421/221711_2369_EAF_139790_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.342907", - "last_seen": "2025-06-01T22:05:46.280912", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01837, - 51.481026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162661460", - "info": { - "identifier": 162661460, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162661460", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Belvoir", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224096/162661460/224096_P2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.126763", - "last_seen": "2025-06-01T22:05:56.362084", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25323, - 51.59575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162661463", - "info": { - "identifier": 162661463, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162661463", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Belvoir", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/225k/224096/162661463/224096_P574_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.131750", - "last_seen": "2025-06-01T22:05:56.038229", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25323, - 51.59575 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.91, - "qmprice": 30.81, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162661496", - "info": { - "identifier": 162661496, - "sqm_ocr": 64.91, - "price": 2000.0, - "price_per_sqm": 30.81189339084887, - "url": "https://www.rightmove.co.uk/properties/162661496", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Andrew", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84953/162661496/84953_d1740b3d-a2a6-4540-9128-738a8d560398_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.919129", - "last_seen": "2025-06-01T22:05:53.287706", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13135, - 51.56393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162661529", - "info": { - "identifier": 162661529, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162661529", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Curchods Estate Agents", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13985/162661529/13985_CKT250021_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.847825", - "last_seen": "2025-06-01T22:05:58.918400", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.259072, - 51.38906 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 38.71, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162661553", - "info": { - "identifier": 162661553, - "sqm_ocr": 62.0, - "price": 2400.0, - "price_per_sqm": 38.70967741935484, - "url": "https://www.rightmove.co.uk/properties/162661553", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "AP Living London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235805/162661553/235805_33922643_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.183133", - "last_seen": "2025-06-01T22:05:39.815962", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.241723, - 51.59605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2570.0, - "url": "https://www.rightmove.co.uk/properties/162661571", - "info": { - "identifier": 162661571, - "sqm_ocr": null, - "price": 2570.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162661571", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Major Estates", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245513/162661571/245513_10573682_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.047860", - "last_seen": "2025-06-01T22:05:50.838385", - "price": 2570.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.324927, - 51.60187 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.0, - "qmprice": 33.68, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162661589", - "info": { - "identifier": 162661589, - "sqm_ocr": 95.0, - "price": 3200.0, - "price_per_sqm": 33.68421052631579, - "url": "https://www.rightmove.co.uk/properties/162661589", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/125k/124141/162661589/124141_33922647_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.139906", - "last_seen": "2025-06-01T22:05:52.664091", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.287735, - 51.488827 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.13, - "qmprice": 40.53, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162661592", - "info": { - "identifier": 162661592, - "sqm_ocr": 56.13, - "price": 2275.0, - "price_per_sqm": 40.53091038660253, - "url": "https://www.rightmove.co.uk/properties/162661592", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hastings International", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11351/162661592/11351_29120380_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.459471", - "last_seen": "2025-06-01T22:05:47.090801", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017398, - 51.48153 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.7, - "qmprice": 34.19, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/162661751", - "info": { - "identifier": 162661751, - "sqm_ocr": 68.7, - "price": 2349.0, - "price_per_sqm": 34.19213973799126, - "url": "https://www.rightmove.co.uk/properties/162661751", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Avrasons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38414/162661751/38414_185310_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.979173", - "last_seen": "2025-06-01T22:05:59.191332", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11354, - 51.47893 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.25, - "qmprice": 34.05, - "rooms": 2, - "total_price": 3141.0, - "url": "https://www.rightmove.co.uk/properties/162661769", - "info": { - "identifier": 162661769, - "sqm_ocr": 92.25, - "price": 3141.0, - "price_per_sqm": 34.048780487804876, - "url": "https://www.rightmove.co.uk/properties/162661769", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Wayne & Silver", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91636/162661769/91636_33922657_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.526592", - "last_seen": "2025-06-01T22:05:42.031473", - "price": 3141.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196591, - 51.559048 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162661772", - "info": { - "identifier": 162661772, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162661772", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "We Haus", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264629/162661772/264629_2BF405_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.393213", - "last_seen": "2025-06-01T22:05:40.237222", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27864, - 51.56079 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2591.0, - "url": "https://www.rightmove.co.uk/properties/162661841", - "info": { - "identifier": 162661841, - "sqm_ocr": null, - "price": 2591.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162661841", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "HC-GB", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238694/162661841/238694_2WRFBluebell_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.678917", - "last_seen": "2025-06-01T22:05:40.658186", - "price": 2591.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28819, - 51.55362 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 43.0, - "qmprice": 83.14, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/162661880", - "info": { - "identifier": 162661880, - "sqm_ocr": 43.0, - "price": 3575.0, - "price_per_sqm": 83.13953488372093, - "url": "https://www.rightmove.co.uk/properties/162661880", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76585/162661880/76585_1328518_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.605734", - "last_seen": "2025-06-01T22:06:15.219480", - "price": 3575.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.156126, - 51.521122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3748.0, - "url": "https://www.rightmove.co.uk/properties/162661925", - "info": { - "identifier": 162661925, - "sqm_ocr": null, - "price": 3748.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162661925", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "We Haus", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264629/162661925/264629_2BF1609_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.095243", - "last_seen": "2025-06-01T22:05:40.942431", - "price": 3748 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27864, - 51.56079 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2813.0, - "url": "https://www.rightmove.co.uk/properties/162661931", - "info": { - "identifier": 162661931, - "sqm_ocr": null, - "price": 2813.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162661931", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Blackhorse Mills", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/216k/215234/162661931/215234_2BED62WheelhouseMR_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.841943", - "last_seen": "2025-06-01T22:06:11.908881", - "price": 2813.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04408, - 51.5876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2813.0, - "url": "https://www.rightmove.co.uk/properties/162661949", - "info": { - "identifier": 162661949, - "sqm_ocr": null, - "price": 2813.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162661949", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Blackhorse Mills", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/216k/215234/162661949/215234_2BED53FairleadsMR_IMG_00_0000_max_656x437.png", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.843194", - "last_seen": "2025-06-01T22:06:11.921459", - "price": 2813.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.04408, - 51.5876 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162662141", - "info": { - "identifier": 162662141, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162662141", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Way of Life (Balfron Tower) LLP", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267971/162662141/267971_EVER-2679712y106obiP5hwrBMKYLdfUVrIBeICPNZF3VP2lQqx3X8WyDZyyk9wDNypO_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:11.550061", - "last_seen": "2025-06-01T22:06:11.550061", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010127, - 51.513493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 33.13, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162662228", - "info": { - "identifier": 162662228, - "sqm_ocr": 83.0, - "price": 2750.0, - "price_per_sqm": 33.13253012048193, - "url": "https://www.rightmove.co.uk/properties/162662228", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162662228/96668_249599226052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.382522", - "last_seen": "2025-06-01T22:05:59.661097", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138339, - 51.444225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162662276", - "info": { - "identifier": 162662276, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162662276", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162662276/96668_250032229052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.450216", - "last_seen": "2025-06-01T22:05:44.613142", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.272752, - 51.501728 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162662309", - "info": { - "identifier": 162662309, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162662309", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162662309/96668_250163730052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.776461", - "last_seen": "2025-06-01T22:05:50.056148", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.107592, - 51.59573 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162662312", - "info": { - "identifier": 162662312, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162662312", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162662312/96668_250172030052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.395739", - "last_seen": "2025-06-01T22:05:39.536489", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.239474, - 51.617786 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/162662342", - "info": { - "identifier": 162662342, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162662342", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162662342/96668_250178630052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.726306", - "last_seen": "2025-06-01T22:05:49.291471", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23034, - 51.50691 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 121.0, - "qmprice": 26.86, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162662540", - "info": { - "identifier": 162662540, - "sqm_ocr": 121.0, - "price": 3250.0, - "price_per_sqm": 26.859504132231404, - "url": "https://www.rightmove.co.uk/properties/162662540", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Daniel Cobb", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58945/162662540/58945_548b4743-c46b-44ca-8beb-854bf19a3527_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.078049", - "last_seen": "2025-06-01T22:06:05.538489", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.082952, - 51.504025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.61, - "qmprice": 33.91, - "rooms": 2, - "total_price": 2496.0, - "url": "https://www.rightmove.co.uk/properties/162662582", - "info": { - "identifier": 162662582, - "sqm_ocr": 73.61, - "price": 2496.0, - "price_per_sqm": 33.90843635375629, - "url": "https://www.rightmove.co.uk/properties/162662582", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/141k/140183/162662582/140183_CSG250161_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.815772", - "last_seen": "2025-06-01T22:05:42.272496", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.202118, - 51.548912 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2095.0, - "url": "https://www.rightmove.co.uk/properties/162662684", - "info": { - "identifier": 162662684, - "sqm_ocr": null, - "price": 2095.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162662684", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Drayton Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18369/162662684/18369_DRN1002073_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.867443", - "last_seen": "2025-06-01T22:05:45.216390", - "price": 2095.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25243, - 51.51481 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/162662909", - "info": { - "identifier": 162662909, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162662909", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Way of Life (Balfron Tower) LLP", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267971/162662909/267971_EVER-2679712y10alBI67YLxO2gTaeSg9Pc78PQHiWVc51QXQ2T3ZMJt3jczQRxYqOq_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.790987", - "last_seen": "2025-06-01T22:06:07.938360", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010127, - 51.513493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.3, - "qmprice": 30.86, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162662972", - "info": { - "identifier": 162662972, - "sqm_ocr": 71.3, - "price": 2200.0, - "price_per_sqm": 30.85553997194951, - "url": "https://www.rightmove.co.uk/properties/162662972", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57275/162662972/57275_1328519_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.012444", - "last_seen": "2025-06-01T22:05:50.499572", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.346061, - 51.593777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162663335", - "info": { - "identifier": 162663335, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162663335", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Vonder", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79578/162663335/79578_22352612_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.816758", - "last_seen": "2025-06-01T22:05:41.430647", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27917, - 51.56209 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162663353", - "info": { - "identifier": 162663353, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162663353", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162663353/96668_245718620042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.199189", - "last_seen": "2025-06-01T22:06:03.619167", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.025067, - 51.500084 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2990.0, - "url": "https://www.rightmove.co.uk/properties/162663407", - "info": { - "identifier": 162663407, - "sqm_ocr": null, - "price": 2990.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162663407", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Apartment Property Management and Sales", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270371/162663407/270371_APM250015_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.650246", - "last_seen": "2025-06-01T22:05:46.767406", - "price": 2990 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.007275, - 51.501125 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162663422", - "info": { - "identifier": 162663422, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162663422", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162663422/96668_250135930052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.553902", - "last_seen": "2025-06-01T22:05:59.893062", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.143144, - 51.454838 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162663428", - "info": { - "identifier": 162663428, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162663428", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162663428/96668_250068229052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.561856", - "last_seen": "2025-06-01T22:05:59.894887", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12539, - 51.486336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162663431", - "info": { - "identifier": 162663431, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162663431", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162663431/96668_194704909012024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.615572", - "last_seen": "2025-06-01T22:05:44.900250", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.310289, - 51.495777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2017.0, - "url": "https://www.rightmove.co.uk/properties/162663440", - "info": { - "identifier": 162663440, - "sqm_ocr": null, - "price": 2017.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162663440", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Vonder", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/283k/282035/162663440/282035_8632241_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.793206", - "last_seen": "2025-06-01T22:05:58.801083", - "price": 2017.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.25002, - 51.41462 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.9, - "qmprice": 42.31, - "rooms": 3, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/162664253", - "info": { - "identifier": 162664253, - "sqm_ocr": 83.9, - "price": 3550.0, - "price_per_sqm": 42.31227651966627, - "url": "https://www.rightmove.co.uk/properties/162664253", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dutch & Dutch", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7616/162664253/7616_WHM250120_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.912074", - "last_seen": "2025-06-01T22:05:55.420372", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196781, - 51.55546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162664391", - "info": { - "identifier": 162664391, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162664391", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Relo Redac Strattons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/100k/99758/162664391/99758_2567027_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.205714", - "last_seen": "2025-06-01T22:05:51.979584", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29864, - 51.490326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162664826", - "info": { - "identifier": 162664826, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162664826", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162664826/96668_241739213032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.633545", - "last_seen": "2025-06-01T22:06:10.633545", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.068144, - 51.51319 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162665087", - "info": { - "identifier": 162665087, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162665087", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "London Property Guru", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97850/162665087/97850_RX586955_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.757442", - "last_seen": "2025-06-01T22:05:46.931465", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.068285, - 51.494377 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2788.0, - "url": "https://www.rightmove.co.uk/properties/162665090", - "info": { - "identifier": 162665090, - "sqm_ocr": null, - "price": 2788.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162665090", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "London Property Guru", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97850/162665090/97850_RX586896_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.140194", - "last_seen": "2025-06-01T22:05:41.236339", - "price": 2788.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28207, - 51.5598 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2067.0, - "url": "https://www.rightmove.co.uk/properties/162665108", - "info": { - "identifier": 162665108, - "sqm_ocr": null, - "price": 2067.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162665108", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "HC-GB", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238694/162665108/238694_2WRFCOSMOS16_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.841424", - "last_seen": "2025-06-01T22:05:40.764343", - "price": 2067.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28816, - 51.55364 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162665195", - "info": { - "identifier": 162665195, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162665195", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162665195/96668_250095830052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.050174", - "last_seen": "2025-06-01T22:05:38.259932", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.157487, - 51.55375 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162665231", - "info": { - "identifier": 162665231, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162665231", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162665231/96668_248308813052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.926296", - "last_seen": "2025-06-01T22:06:03.176248", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.021953, - 51.548393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162665513", - "info": { - "identifier": 162665513, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162665513", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162665513/96668_244778010042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.111152", - "last_seen": "2025-06-01T22:06:00.907234", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.031697, - 51.49067 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162665531", - "info": { - "identifier": 162665531, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162665531", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162665531/96668_181578530082023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.328051", - "last_seen": "2025-06-01T22:05:51.056189", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.189625, - 51.524113 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162665534", - "info": { - "identifier": 162665534, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162665534", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162665534/96668_250172730052025_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.188368", - "last_seen": "2025-06-01T22:05:41.287743", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.281757, - 51.54154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2175.0, - "url": "https://www.rightmove.co.uk/properties/162665558", - "info": { - "identifier": 162665558, - "sqm_ocr": null, - "price": 2175.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162665558", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162665558/96668_250177930052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.045607", - "last_seen": "2025-06-01T22:06:04.101715", - "price": 2175.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.051976, - 51.595516 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162665573", - "info": { - "identifier": 162665573, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162665573", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162665573/96668_193685530122023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.316056", - "last_seen": "2025-06-01T22:05:49.429074", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20977, - 51.485607 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162665585", - "info": { - "identifier": 162665585, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162665585", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162665585/96668_250184130052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.166505", - "last_seen": "2025-06-01T22:05:39.794267", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194251, - 51.59877 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.6, - "qmprice": 30.02, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162665618", - "info": { - "identifier": 162665618, - "sqm_ocr": 86.6, - "price": 2600.0, - "price_per_sqm": 30.02309468822171, - "url": "https://www.rightmove.co.uk/properties/162665618", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209807/162665618/209807_GER221335_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.377107", - "last_seen": "2025-06-01T22:06:10.683262", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023555, - 51.517624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2461.0, - "url": "https://www.rightmove.co.uk/properties/162665729", - "info": { - "identifier": 162665729, - "sqm_ocr": null, - "price": 2461.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162665729", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "HC-GB", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238694/162665729/238694_PENN61_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.291792", - "last_seen": "2025-06-01T22:05:38.678363", - "price": 2461.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16025, - 51.64927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162666821", - "info": { - "identifier": 162666821, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162666821", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Andrew Lloyd Estates Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25238/162666821/25238_10981_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.971429", - "last_seen": "2025-06-01T22:05:47.398138", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08403, - 51.52666 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162666851", - "info": { - "identifier": 162666851, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162666851", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Andrew Lloyd Estates Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25238/162666851/25238_10982_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.951833", - "last_seen": "2025-06-01T22:05:45.515453", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02997, - 51.67342 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162668792", - "info": { - "identifier": 162668792, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162668792", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162668792/96668_249411623052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.070371", - "last_seen": "2025-06-01T22:06:02.614847", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.025783, - 51.49969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 43.9, - "qmprice": 62.64, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162669404", - "info": { - "identifier": 162669404, - "sqm_ocr": 43.9, - "price": 2750.0, - "price_per_sqm": 62.64236902050114, - "url": "https://www.rightmove.co.uk/properties/162669404", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Add Living Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/275k/274040/162669404/274040_Miles122-Flat-type2_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.625085", - "last_seen": "2025-06-01T22:06:15.244240", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1706, - 51.5212 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162670556", - "info": { - "identifier": 162670556, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162670556", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Douglas and Gordon", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264326/162670556/264326_Y68949_1_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.748721", - "last_seen": "2025-06-01T22:06:13.623813", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.215402, - 51.448063 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.2, - "qmprice": 40.46, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162670847", - "info": { - "identifier": 162670847, - "sqm_ocr": 69.2, - "price": 2800.0, - "price_per_sqm": 40.46242774566474, - "url": "https://www.rightmove.co.uk/properties/162670847", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15963/162670847/15963_1324959_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.768377", - "last_seen": "2025-06-01T22:06:12.846023", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195648, - 51.46201 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162671117", - "info": { - "identifier": 162671117, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162671117", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Property World", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/7k/6232/162671117/6232_TARRAGON27_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.313077", - "last_seen": "2025-06-01T22:05:41.762639", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05163, - 51.42109 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3730.0, - "url": "https://www.rightmove.co.uk/properties/162671288", - "info": { - "identifier": 162671288, - "sqm_ocr": null, - "price": 3730.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162671288", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Allsop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250628/162671288/250628_B1005_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.221324", - "last_seen": "2025-06-01T22:06:13.847211", - "price": 3730.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13734, - 51.48106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3490.0, - "url": "https://www.rightmove.co.uk/properties/162671381", - "info": { - "identifier": 162671381, - "sqm_ocr": null, - "price": 3490.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162671381", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Allsop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/251k/250628/162671381/250628_A309_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.105697", - "last_seen": "2025-06-01T22:06:12.303273", - "price": 3490.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1372, - 51.48036 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.2, - "qmprice": 41.91, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162672053", - "info": { - "identifier": 162672053, - "sqm_ocr": 69.2, - "price": 2900.0, - "price_per_sqm": 41.90751445086705, - "url": "https://www.rightmove.co.uk/properties/162672053", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13325/162672053/13325_GER247377_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.888647", - "last_seen": "2025-06-01T22:05:55.546172", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.211085, - 51.490295 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.6, - "qmprice": 60.78, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/162672107", - "info": { - "identifier": 162672107, - "sqm_ocr": 60.6, - "price": 3683.0, - "price_per_sqm": 60.775577557755774, - "url": "https://www.rightmove.co.uk/properties/162672107", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/63k/62293/162672107/62293_33922988_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.677704", - "last_seen": "2025-06-01T22:06:15.103112", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.15863, - 51.514565 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162672371", - "info": { - "identifier": 162672371, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162672371", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/135k/134429/162672371/134429_0493_HRT049300836_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.419816", - "last_seen": "2025-06-01T22:06:03.074749", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.020202, - 51.550983 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162672449", - "info": { - "identifier": 162672449, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162672449", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Acorn", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50692/162672449/50692_P277143_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.953333", - "last_seen": "2025-06-01T22:06:05.211391", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0659, - 51.47132 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162672698", - "info": { - "identifier": 162672698, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162672698", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100906/162672698/100906_0630_HRT063001149_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.013260", - "last_seen": "2025-06-01T22:06:04.082882", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.062673, - 51.582886 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162673310", - "info": { - "identifier": 162673310, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162673310", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Butler & Stag", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/252k/251576/162673310/251576_33923039_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.863178", - "last_seen": "2025-06-01T22:06:11.970020", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006285, - 51.63248 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.0, - "qmprice": 35.71, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162673409", - "info": { - "identifier": 162673409, - "sqm_ocr": 84.0, - "price": 3000.0, - "price_per_sqm": 35.714285714285715, - "url": "https://www.rightmove.co.uk/properties/162673409", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/247k/246848/162673409/246848_GER253443_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.104267", - "last_seen": "2025-06-01T22:06:06.258293", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.086776, - 51.499687 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2246.0, - "url": "https://www.rightmove.co.uk/properties/162673541", - "info": { - "identifier": 162673541, - "sqm_ocr": null, - "price": 2246.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162673541", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162673541/156986_CDZ10052_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.463921", - "last_seen": "2025-06-01T22:05:40.340016", - "price": 2246.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28318, - 51.55863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162673595", - "info": { - "identifier": 162673595, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162673595", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162673595/96668_241476611032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.425052", - "last_seen": "2025-06-01T22:05:40.289619", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.288527, - 51.55359 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2834.0, - "url": "https://www.rightmove.co.uk/properties/162673661", - "info": { - "identifier": 162673661, - "sqm_ocr": null, - "price": 2834.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162673661", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162673661/156986_LMM21_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.702050", - "last_seen": "2025-06-01T22:05:40.719126", - "price": 2834.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27676, - 51.5577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162673670", - "info": { - "identifier": 162673670, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162673670", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162673670/96668_249811827052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.676634", - "last_seen": "2025-06-01T22:06:09.853105", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029143, - 51.532482 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162673727", - "info": { - "identifier": 162673727, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162673727", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Ellis & Co", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89228/162673727/89228_GRL250289_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.390483", - "last_seen": "2025-06-01T22:05:44.400875", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.381539, - 51.509502 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3384.0, - "url": "https://www.rightmove.co.uk/properties/162673931", - "info": { - "identifier": 162673931, - "sqm_ocr": null, - "price": 3384.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162673931", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162673931/156986_LMQ12_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.034306", - "last_seen": "2025-06-01T22:05:41.092555", - "price": 3384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27676, - 51.5577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162673940", - "info": { - "identifier": 162673940, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162673940", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Mann Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51234/162673940/51234_000453425_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.053561", - "last_seen": "2025-06-01T22:06:00.810448", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01453, - 51.46399 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3980.0, - "url": "https://www.rightmove.co.uk/properties/162673943", - "info": { - "identifier": 162673943, - "sqm_ocr": null, - "price": 3980.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162673943", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162673943/156986_NKM10012_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.858405", - "last_seen": "2025-06-01T22:06:13.790237", - "price": 3980.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19061, - 51.46197 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162673982", - "info": { - "identifier": 162673982, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162673982", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Leonard Leese", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/36k/35405/162673982/35405_33923073_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.372900", - "last_seen": "2025-06-01T22:06:06.617128", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.079662, - 51.503044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/162674000", - "info": { - "identifier": 162674000, - "sqm_ocr": null, - "price": 3750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162674000", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/162674000/174452_16365_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.835355", - "last_seen": "2025-06-01T22:05:47.063659", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00841, - 51.50051 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162674093", - "info": { - "identifier": 162674093, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162674093", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Andrew", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80996/162674093/80996_c58c8ef8-7c69-4c05-a51d-525a1a5582c5_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "24/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.842726", - "last_seen": "2025-06-01T22:05:53.643769", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098857, - 51.5591 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162674186", - "info": { - "identifier": 162674186, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162674186", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Lawsons & Daughters", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/43k/42473/162674186/42473_12437272_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.222555", - "last_seen": "2025-06-01T22:06:13.843633", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.240219, - 51.46264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162674420", - "info": { - "identifier": 162674420, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162674420", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/90k/89593/162674420/89593_000738904_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.836555", - "last_seen": "2025-06-01T22:05:43.699994", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09935, - 51.34543 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.7, - "qmprice": 34.15, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162674423", - "info": { - "identifier": 162674423, - "sqm_ocr": 93.7, - "price": 3200.0, - "price_per_sqm": 34.15154749199573, - "url": "https://www.rightmove.co.uk/properties/162674423", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greenwich Peninsula", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/175k/174452/162674423/174452_16324_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.753939", - "last_seen": "2025-06-01T22:05:46.928368", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00713, - 51.50166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3038.0, - "url": "https://www.rightmove.co.uk/properties/162674471", - "info": { - "identifier": 162674471, - "sqm_ocr": null, - "price": 3038.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162674471", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162674471/156986_ROD30053_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.163203", - "last_seen": "2025-06-01T22:05:41.260309", - "price": 3038.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27668, - 51.55605 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162674504", - "info": { - "identifier": 162674504, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162674504", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162674504/156986_MAK30042_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.176125", - "last_seen": "2025-06-01T22:06:07.498408", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02056, - 51.5458 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3071.0, - "url": "https://www.rightmove.co.uk/properties/162674534", - "info": { - "identifier": 162674534, - "sqm_ocr": null, - "price": 3071.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162674534", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162674534/156986_FQZ20015_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.907235", - "last_seen": "2025-06-01T22:05:40.850576", - "price": 3071.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2841, - 51.55512 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 43.9, - "qmprice": 62.64, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162674618", - "info": { - "identifier": 162674618, - "sqm_ocr": 43.9, - "price": 2750.0, - "price_per_sqm": 62.64236902050114, - "url": "https://www.rightmove.co.uk/properties/162674618", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162674618/156986_MPC14_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.468877", - "last_seen": "2025-06-01T22:06:15.055432", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169999, - 51.521275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.6, - "qmprice": 36.55, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162674633", - "info": { - "identifier": 162674633, - "sqm_ocr": 76.6, - "price": 2800.0, - "price_per_sqm": 36.55352480417755, - "url": "https://www.rightmove.co.uk/properties/162674633", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162674633/156986_MHB10006_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.970296", - "last_seen": "2025-06-01T22:06:07.347721", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02056, - 51.5458 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162674684", - "info": { - "identifier": 162674684, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162674684", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hawk & Eagle Property Consultants", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/255k/254153/162674684/254153_PRA10655_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.187290", - "last_seen": "2025-06-01T22:06:08.950548", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019226, - 51.492847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162674729", - "info": { - "identifier": 162674729, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162674729", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162674729/156986_CWG10004_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.291745", - "last_seen": "2025-06-01T22:05:40.111202", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.282862, - 51.55864 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3632.0, - "url": "https://www.rightmove.co.uk/properties/162674885", - "info": { - "identifier": 162674885, - "sqm_ocr": null, - "price": 3632.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162674885", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162674885/156986_TWF10012_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.804805", - "last_seen": "2025-06-01T22:05:40.627655", - "price": 3632.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.282862, - 51.55864 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.1, - "qmprice": 30.52, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162674978", - "info": { - "identifier": 162674978, - "sqm_ocr": 90.1, - "price": 2750.0, - "price_per_sqm": 30.521642619311876, - "url": "https://www.rightmove.co.uk/properties/162674978", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/66k/65794/162674978/65794_33923118_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.422697", - "last_seen": "2025-06-01T22:06:01.789043", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.196353, - 51.413967 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 38.46, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162674993", - "info": { - "identifier": 162674993, - "sqm_ocr": 65.0, - "price": 2500.0, - "price_per_sqm": 38.46153846153846, - "url": "https://www.rightmove.co.uk/properties/162674993", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/210k/209807/162674993/209807_CDL150497_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.988650", - "last_seen": "2025-06-01T17:39:04.498410", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026103, - 51.49907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3434.0, - "url": "https://www.rightmove.co.uk/properties/162675014", - "info": { - "identifier": 162675014, - "sqm_ocr": null, - "price": 3434.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162675014", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/162675014/156986_RGD30022_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.309251", - "last_seen": "2025-06-01T22:05:40.462435", - "price": 3434.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.280913, - 51.5607 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2135.0, - "url": "https://www.rightmove.co.uk/properties/162675044", - "info": { - "identifier": 162675044, - "sqm_ocr": null, - "price": 2135.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162675044", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222854/162675044/222854_301A-31-05-12-AM_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.094225, - 51.3743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2131.0, - "url": "https://www.rightmove.co.uk/properties/162675050", - "info": { - "identifier": 162675050, - "sqm_ocr": null, - "price": 2131.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162675050", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222854/162675050/222854_2003B-31-05-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.094225, - 51.3743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2104.0, - "url": "https://www.rightmove.co.uk/properties/162675056", - "info": { - "identifier": 162675056, - "sqm_ocr": null, - "price": 2104.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162675056", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222854/162675056/222854_2004A-31-05-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.094225, - 51.3743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2605.0, - "url": "https://www.rightmove.co.uk/properties/162675068", - "info": { - "identifier": 162675068, - "sqm_ocr": null, - "price": 2605.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162675068", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222854/162675068/222854_2003B-31-05-6-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.094225, - 51.3743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2714.0, - "url": "https://www.rightmove.co.uk/properties/162675098", - "info": { - "identifier": 162675098, - "sqm_ocr": null, - "price": 2714.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162675098", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222854/162675098/222854_2102A-31-05-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.094225, - 51.3743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 124.6, - "qmprice": 32.1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162675119", - "info": { - "identifier": 162675119, - "sqm_ocr": 124.6, - "price": 4000.0, - "price_per_sqm": 32.102728731942214, - "url": "https://www.rightmove.co.uk/properties/162675119", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79459/162675119/79459_GER250607_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.668819", - "last_seen": "2025-06-01T22:06:04.780961", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36346, - 51.448498 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.2, - "qmprice": 45.23, - "rooms": 2, - "total_price": 3582.0, - "url": "https://www.rightmove.co.uk/properties/162675122", - "info": { - "identifier": 162675122, - "sqm_ocr": 79.2, - "price": 3582.0, - "price_per_sqm": 45.22727272727273, - "url": "https://www.rightmove.co.uk/properties/162675122", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/198k/197981/162675122/197981_S-1902-31-05-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.01921, - 51.49923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.1, - "qmprice": 44.03, - "rooms": 2, - "total_price": 3615.0, - "url": "https://www.rightmove.co.uk/properties/162675125", - "info": { - "identifier": 162675125, - "sqm_ocr": 82.1, - "price": 3615.0, - "price_per_sqm": 44.03166869671133, - "url": "https://www.rightmove.co.uk/properties/162675125", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/198k/197981/162675125/197981_S-2302-31-05-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.01921, - 51.49923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.4, - "qmprice": 44.08, - "rooms": 2, - "total_price": 3720.0, - "url": "https://www.rightmove.co.uk/properties/162675128", - "info": { - "identifier": 162675128, - "sqm_ocr": 84.4, - "price": 3720.0, - "price_per_sqm": 44.07582938388625, - "url": "https://www.rightmove.co.uk/properties/162675128", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/198k/197981/162675128/197981_S-0705-31-05-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.01921, - 51.49923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 39.51, - "rooms": 2, - "total_price": 3279.0, - "url": "https://www.rightmove.co.uk/properties/162675179", - "info": { - "identifier": 162675179, - "sqm_ocr": 83.0, - "price": 3279.0, - "price_per_sqm": 39.506024096385545, - "url": "https://www.rightmove.co.uk/properties/162675179", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/198k/197981/162675179/197981_O-0202-31-05-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.019556, - 51.49956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.8, - "qmprice": 40.09, - "rooms": 2, - "total_price": 3560.0, - "url": "https://www.rightmove.co.uk/properties/162675185", - "info": { - "identifier": 162675185, - "sqm_ocr": 88.8, - "price": 3560.0, - "price_per_sqm": 40.090090090090094, - "url": "https://www.rightmove.co.uk/properties/162675185", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/198k/197981/162675185/197981_O-0901-31-05-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.019556, - 51.49956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.8, - "qmprice": 40.82, - "rooms": 2, - "total_price": 3625.0, - "url": "https://www.rightmove.co.uk/properties/162675194", - "info": { - "identifier": 162675194, - "sqm_ocr": 88.8, - "price": 3625.0, - "price_per_sqm": 40.822072072072075, - "url": "https://www.rightmove.co.uk/properties/162675194", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/198k/197981/162675194/197981_O-1203-31-05-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.019556, - 51.49956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.8, - "qmprice": 39.95, - "rooms": 2, - "total_price": 3548.0, - "url": "https://www.rightmove.co.uk/properties/162675203", - "info": { - "identifier": 162675203, - "sqm_ocr": 88.8, - "price": 3548.0, - "price_per_sqm": 39.95495495495496, - "url": "https://www.rightmove.co.uk/properties/162675203", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/198k/197981/162675203/197981_O-1903-31-05-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.019556, - 51.49956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.0, - "qmprice": 45.9, - "rooms": 2, - "total_price": 3810.0, - "url": "https://www.rightmove.co.uk/properties/162675206", - "info": { - "identifier": 162675206, - "sqm_ocr": 83.0, - "price": 3810.0, - "price_per_sqm": 45.903614457831324, - "url": "https://www.rightmove.co.uk/properties/162675206", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/198k/197981/162675206/197981_O-0202-31-05-6-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.019556, - 51.49956 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162675248", - "info": { - "identifier": 162675248, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162675248", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Oaktree West London", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237683/162675248/237683_OWL170026_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.581203", - "last_seen": "2025-06-01T22:05:44.838655", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28215, - 51.52 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162675401", - "info": { - "identifier": 162675401, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162675401", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162675401/96668_104332728022021_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.688841", - "last_seen": "2025-06-01T22:06:09.894067", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034588, - 51.5102 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162675467", - "info": { - "identifier": 162675467, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162675467", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "A. C. Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.257971", - "last_seen": "2025-06-01T22:05:50.949591", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.23006, - 51.57866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.0, - "qmprice": 31.25, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162675578", - "info": { - "identifier": 162675578, - "sqm_ocr": 72.0, - "price": 2250.0, - "price_per_sqm": 31.25, - "url": "https://www.rightmove.co.uk/properties/162675578", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13093/162675578/13093_WHL250170_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.071461", - "last_seen": "2025-06-01T22:05:39.632406", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.185693, - 51.607098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/162675623", - "info": { - "identifier": 162675623, - "sqm_ocr": null, - "price": 3700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162675623", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Lionsgate Property Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/160k/159428/162675623/159428_6245_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.156976", - "last_seen": "2025-06-01T22:05:47.629235", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08853, - 51.572304 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162675716", - "info": { - "identifier": 162675716, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162675716", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Peter Michael Estates & Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25176/162675716/25176_1082_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.058128", - "last_seen": "2025-06-01T22:05:45.853006", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13541, - 51.63818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.28, - "qmprice": 32.35, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162675734", - "info": { - "identifier": 162675734, - "sqm_ocr": 77.28, - "price": 2500.0, - "price_per_sqm": 32.34989648033126, - "url": "https://www.rightmove.co.uk/properties/162675734", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50951/162675734/50951_P3132F1522_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.124334", - "last_seen": "2025-06-01T22:05:59.957729", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1206, - 51.47527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162675779", - "info": { - "identifier": 162675779, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162675779", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Robinson Jackson", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/272k/271901/162675779/271901_PLL250014_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.273030", - "last_seen": "2025-06-01T22:05:46.883017", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.075061, - 51.495434 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162675995", - "info": { - "identifier": 162675995, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162675995", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Jeremy Leaf & Co", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7167/162675995/7167_29116268_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.480058", - "last_seen": "2025-06-01T22:05:38.792950", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.209602, - 51.5796 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.54, - "qmprice": 32.1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162676118", - "info": { - "identifier": 162676118, - "sqm_ocr": 68.54, - "price": 2200.0, - "price_per_sqm": 32.09804493726291, - "url": "https://www.rightmove.co.uk/properties/162676118", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Kallars", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289823/162676118/289823_64b648b4-075d-46b7-81f0-3fc073a60913_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.912789", - "last_seen": "2025-06-01T22:06:00.611308", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022832, - 51.462852 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.6, - "qmprice": 27.3, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162676250", - "info": { - "identifier": 162676250, - "sqm_ocr": 80.6, - "price": 2200.0, - "price_per_sqm": 27.29528535980149, - "url": "https://www.rightmove.co.uk/properties/162676250", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/162676250/66771_1328515_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.740362", - "last_seen": "2025-06-01T22:06:00.138379", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129205, - 51.476044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3498.0, - "url": "https://www.rightmove.co.uk/properties/162676346", - "info": { - "identifier": 162676346, - "sqm_ocr": null, - "price": 3498.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162676346", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "SJW property management limited", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/233k/232853/162676346/232853_bae5a38d-3b49-420b-aeb5-b4667f8c8c4c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.930862", - "last_seen": "2025-06-01T22:05:53.816481", - "price": 3498.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09479, - 51.528706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162676697", - "info": { - "identifier": 162676697, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162676697", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162676697/96668_243803601042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.931333", - "last_seen": "2025-06-01T22:06:13.595213", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137072, - 51.47551 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/162676721", - "info": { - "identifier": 162676721, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162676721", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162676721/96668_247632107052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.966834", - "last_seen": "2025-06-01T17:39:04.481763", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.026983, - 51.50141 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162676772", - "info": { - "identifier": 162676772, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162676772", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162676772/96668_201182306032024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.661249", - "last_seen": "2025-06-01T22:05:39.060575", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214564, - 51.64714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 103.3, - "qmprice": 24.69, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162676802", - "info": { - "identifier": 162676802, - "sqm_ocr": 103.3, - "price": 2550.0, - "price_per_sqm": 24.68538238141336, - "url": "https://www.rightmove.co.uk/properties/162676802", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Streets Ahead", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58139/162676802/58139_ADD150343_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.794902", - "last_seen": "2025-06-01T22:05:43.633937", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158185, - 51.318775 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.57, - "qmprice": 27.07, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162677129", - "info": { - "identifier": 162677129, - "sqm_ocr": 77.57, - "price": 2100.0, - "price_per_sqm": 27.072321773881658, - "url": "https://www.rightmove.co.uk/properties/162677129", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63329/162677129/63329_P5147D3711_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.110318", - "last_seen": "2025-06-01T22:06:04.328873", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31185, - 51.42027 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2210.0, - "url": "https://www.rightmove.co.uk/properties/162677225", - "info": { - "identifier": 162677225, - "sqm_ocr": null, - "price": 2210.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162677225", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Living Space Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237116/162677225/237116_582_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "26/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.779488", - "last_seen": "2025-06-01T22:05:42.399001", - "price": 2210 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13251, - 51.54326 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162677303", - "info": { - "identifier": 162677303, - "sqm_ocr": null, - "price": 3400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162677303", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Nobledom", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/243k/242789/162677303/242789_scpl_862336432_IMG_00_0000_max_656x437.png", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.729886", - "last_seen": "2025-06-01T22:05:45.028901", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.326226, - 51.524166 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162677366", - "info": { - "identifier": 162677366, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162677366", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Connells Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95882/162677366/95882_P0314M1805_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.184911", - "last_seen": "2025-06-01T22:05:50.770834", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33215, - 51.58102 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162677396", - "info": { - "identifier": 162677396, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162677396", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Connells Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95882/162677396/95882_ACprop2747_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.195212", - "last_seen": "2025-06-01T22:05:50.783727", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35087, - 51.57873 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162677417", - "info": { - "identifier": 162677417, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162677417", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Connells Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95882/162677417/95882_P1925H0918_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.079832", - "last_seen": "2025-06-01T22:05:50.571562", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33174, - 51.5808 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162677420", - "info": { - "identifier": 162677420, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162677420", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Connells Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/96k/95882/162677420/95882_P4750E4030_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.081904", - "last_seen": "2025-06-01T22:05:50.576120", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.345, - 51.58143 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.57, - "qmprice": 26.59, - "rooms": 3, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/162677459", - "info": { - "identifier": 162677459, - "sqm_ocr": 84.57, - "price": 2249.0, - "price_per_sqm": 26.59335461747665, - "url": "https://www.rightmove.co.uk/properties/162677459", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Avrasons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/39k/38414/162677459/38414_2676611_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.438951", - "last_seen": "2025-06-01T22:05:59.745063", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09808, - 51.42824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.15, - "qmprice": 45.05, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/162677606", - "info": { - "identifier": 162677606, - "sqm_ocr": 72.15, - "price": 3250.0, - "price_per_sqm": 45.04504504504504, - "url": "https://www.rightmove.co.uk/properties/162677606", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15942/162677606/15942_1318128_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.476486", - "last_seen": "2025-06-01T22:05:57.437079", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177383, - 51.49484 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162677684", - "info": { - "identifier": 162677684, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162677684", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Northwoods Residential", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18680/162677684/18680_NORT_004582_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.301516", - "last_seen": "2025-06-01T22:05:54.673923", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.061246, - 51.409958 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162677792", - "info": { - "identifier": 162677792, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162677792", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Ellisons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26204/162677792/26204_33923330_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.461889", - "last_seen": "2025-06-01T22:06:01.259468", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195799, - 51.40332 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162677828", - "info": { - "identifier": 162677828, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162677828", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Rolfe East", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/5k/4083/162677828/4083_33923334_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.858360", - "last_seen": "2025-06-01T22:05:45.212431", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.268993, - 51.513435 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162677885", - "info": { - "identifier": 162677885, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162677885", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64604/162677885/64604_000912833_IMG_06_0000_max_656x437.png", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.978426", - "last_seen": "2025-06-01T22:06:01.002204", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.03899, - 51.46773 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162677921", - "info": { - "identifier": 162677921, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162677921", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75091/162677921/75091_000907513_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.057274", - "last_seen": "2025-06-01T22:05:38.284940", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.11717, - 51.5473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2788.0, - "url": "https://www.rightmove.co.uk/properties/162677969", - "info": { - "identifier": 162677969, - "sqm_ocr": null, - "price": 2788.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162677969", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288413/162677969/288413_3-Bed-F-211-310525_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.657507", - "last_seen": "2025-06-01T22:05:51.494469", - "price": 2788.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42424, - 51.50568 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2758.0, - "url": "https://www.rightmove.co.uk/properties/162677993", - "info": { - "identifier": 162677993, - "sqm_ocr": null, - "price": 2758.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162677993", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288413/162677993/288413_3-Bed-F-214-310525_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.680329", - "last_seen": "2025-06-01T22:05:51.511791", - "price": 2758.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42353, - 51.50546 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2247.0, - "url": "https://www.rightmove.co.uk/properties/162678041", - "info": { - "identifier": 162678041, - "sqm_ocr": null, - "price": 2247.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162678041", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288413/162678041/288413_2-Bed-F-264-310525_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.834724", - "last_seen": "2025-06-01T22:05:51.644382", - "price": 2247.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42312, - 51.50512 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2124.0, - "url": "https://www.rightmove.co.uk/properties/162678047", - "info": { - "identifier": 162678047, - "sqm_ocr": null, - "price": 2124.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162678047", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288413/162678047/288413_2-Bed-F-221-310525_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.837591", - "last_seen": "2025-06-01T22:05:51.646935", - "price": 2124.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.42381, - 51.50547 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2075.0, - "url": "https://www.rightmove.co.uk/properties/162678050", - "info": { - "identifier": 162678050, - "sqm_ocr": null, - "price": 2075.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162678050", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162678050/96668_239335420022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.186696", - "last_seen": "2025-06-01T22:05:54.359120", - "price": 2075.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136693, - 51.56109 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/162678062", - "info": { - "identifier": 162678062, - "sqm_ocr": null, - "price": 2999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162678062", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162678062/96668_243314928032025_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.736973", - "last_seen": "2025-06-01T22:06:03.490533", - "price": 2999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.028825, - 51.512527 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162678101", - "info": { - "identifier": 162678101, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162678101", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162678101/96668_248326814052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.949714", - "last_seen": "2025-06-01T22:06:04.011818", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.086224, - 51.56677 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162678137", - "info": { - "identifier": 162678137, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162678137", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162678137/96668_52138610032019_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.198507", - "last_seen": "2025-06-01T22:05:42.798181", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153867, - 51.541294 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162678173", - "info": { - "identifier": 162678173, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162678173", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162678173/96668_245008113042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.361642", - "last_seen": "2025-06-01T22:05:41.682391", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.023438, - 51.37932 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/162678317", - "info": { - "identifier": 162678317, - "sqm_ocr": null, - "price": 3142.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162678317", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Interlet Sales and Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76342/162678317/76342_ISL536331_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.694459", - "last_seen": "2025-06-01T22:06:15.309782", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.199454, - 51.516205 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.5, - "qmprice": 29.63, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162678656", - "info": { - "identifier": 162678656, - "sqm_ocr": 67.5, - "price": 2000.0, - "price_per_sqm": 29.62962962962963, - "url": "https://www.rightmove.co.uk/properties/162678656", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/48k/47660/162678656/47660_33923372_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.485364", - "last_seen": "2025-06-01T22:05:50.076440", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.057048, - 51.588913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162678842", - "info": { - "identifier": 162678842, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162678842", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kings Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/163k/162170/162678842/162170_33923383_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.008348", - "last_seen": "2025-06-01T22:05:38.224562", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.121376, - 51.521736 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 68.0, - "qmprice": 32.35, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162679052", - "info": { - "identifier": 162679052, - "sqm_ocr": 68.0, - "price": 2200.0, - "price_per_sqm": 32.35294117647059, - "url": "https://www.rightmove.co.uk/properties/162679052", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Daniels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76481/162679052/76481_Hughan-t-4780_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.853988", - "last_seen": "2025-06-01T22:06:07.356851", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00328, - 51.550266 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162679097", - "info": { - "identifier": 162679097, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162679097", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stones Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/92k/91151/162679097/91151_RHL250242_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.447119", - "last_seen": "2025-06-01T22:05:51.258866", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.400596, - 51.526417 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.0, - "qmprice": 43.99, - "rooms": 2, - "total_price": 2947.0, - "url": "https://www.rightmove.co.uk/properties/162679349", - "info": { - "identifier": 162679349, - "sqm_ocr": 67.0, - "price": 2947.0, - "price_per_sqm": 43.985074626865675, - "url": "https://www.rightmove.co.uk/properties/162679349", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Property Inside London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270212/162679349/270212_John5_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.615288", - "last_seen": "2025-06-01T22:05:42.136407", - "price": 2946 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11562, - 51.52267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.94, - "qmprice": 53.13, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162679460", - "info": { - "identifier": 162679460, - "sqm_ocr": 48.94, - "price": 2600.0, - "price_per_sqm": 53.126277073968126, - "url": "https://www.rightmove.co.uk/properties/162679460", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Citydeal Estates", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96880/162679460/96880_RL2928_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.279843", - "last_seen": "2025-06-01T22:05:44.510653", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.280952, - 51.5177 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162679502", - "info": { - "identifier": 162679502, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162679502", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11308/162679502/11308_000663737_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.847912", - "last_seen": "2025-06-01T22:06:11.569436", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0123, - 51.56335 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.89, - "qmprice": 35.04, - "rooms": 3, - "total_price": 3395.0, - "url": "https://www.rightmove.co.uk/properties/162679544", - "info": { - "identifier": 162679544, - "sqm_ocr": 96.89, - "price": 3395.0, - "price_per_sqm": 35.03973578284653, - "url": "https://www.rightmove.co.uk/properties/162679544", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162679544/96668_236484025012025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.766743", - "last_seen": "2025-06-01T22:06:11.807703", - "price": 3395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.036673, - 51.59551 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162679571", - "info": { - "identifier": 162679571, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162679571", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162679571/96668_204773309042024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.671807", - "last_seen": "2025-06-01T22:05:45.282569", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.260947, - 51.51964 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162679589", - "info": { - "identifier": 162679589, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162679589", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162679589/96668_247166103052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.792945", - "last_seen": "2025-06-01T22:05:49.900826", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098226, - 51.59052 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162679610", - "info": { - "identifier": 162679610, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162679610", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162679610/96668_249540325052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.250603", - "last_seen": "2025-06-01T22:05:40.009848", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.163469, - 51.480637 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162679622", - "info": { - "identifier": 162679622, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162679622", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162679622/96668_191349530112023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.882941", - "last_seen": "2025-06-01T22:06:04.145831", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.070164, - 51.565037 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.9, - "qmprice": 38.77, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162679784", - "info": { - "identifier": 162679784, - "sqm_ocr": 61.9, - "price": 2400.0, - "price_per_sqm": 38.77221324717286, - "url": "https://www.rightmove.co.uk/properties/162679784", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Orchards Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9132/162679784/9132_a514ee60-0d35-44ac-85bd-37838d43ae77_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.223745", - "last_seen": "2025-06-01T22:06:13.841557", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.189677, - 51.459785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162679901", - "info": { - "identifier": 162679901, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162679901", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Gascoigne-Pees Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/6k/5145/162679901/5145_000838833_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.685612", - "last_seen": "2025-06-01T22:05:58.619442", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30929, - 51.36493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.4, - "qmprice": 31.25, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162679916", - "info": { - "identifier": 162679916, - "sqm_ocr": 86.4, - "price": 2700.0, - "price_per_sqm": 31.249999999999996, - "url": "https://www.rightmove.co.uk/properties/162679916", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210875/162679916/210875_GW702-310525_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.206850", - "last_seen": "2025-06-01T22:05:44.427358", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34379, - 51.54747 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.0, - "qmprice": 32.01, - "rooms": 3, - "total_price": 2625.0, - "url": "https://www.rightmove.co.uk/properties/162679934", - "info": { - "identifier": 162679934, - "sqm_ocr": 82.0, - "price": 2625.0, - "price_per_sqm": 32.01219512195122, - "url": "https://www.rightmove.co.uk/properties/162679934", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210875/162679934/210875_LD623-310525_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.197031", - "last_seen": "2025-06-01T22:05:44.389936", - "price": 2625.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34379, - 51.54747 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.4, - "qmprice": 37.83, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/162679943", - "info": { - "identifier": 162679943, - "sqm_ocr": 67.4, - "price": 2550.0, - "price_per_sqm": 37.83382789317507, - "url": "https://www.rightmove.co.uk/properties/162679943", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Una Living", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87553/162679943/87553_101435001929_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.267170", - "last_seen": "2025-06-01T22:06:13.067989", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17723, - 51.43111 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162679946", - "info": { - "identifier": 162679946, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162679946", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Breens", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/263k/262301/162679946/262301_33923449_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.682603", - "last_seen": "2025-06-01T22:06:11.724850", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00451, - 51.6077 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.4, - "qmprice": 29.72, - "rooms": 3, - "total_price": 2568.0, - "url": "https://www.rightmove.co.uk/properties/162680042", - "info": { - "identifier": 162680042, - "sqm_ocr": 86.4, - "price": 2568.0, - "price_per_sqm": 29.72222222222222, - "url": "https://www.rightmove.co.uk/properties/162680042", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210875/162680042/210875_GW530-3152025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.877377", - "last_seen": "2025-06-01T22:05:45.243142", - "price": 2568.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3426, - 51.54804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2384.0, - "url": "https://www.rightmove.co.uk/properties/162680066", - "info": { - "identifier": 162680066, - "sqm_ocr": null, - "price": 2384.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162680066", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/211k/210875/162680066/210875_GW610-31052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.893220", - "last_seen": "2025-06-01T22:05:45.275364", - "price": 2384.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3426, - 51.54804 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.7, - "qmprice": 25.77, - "rooms": 3, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/162680084", - "info": { - "identifier": 162680084, - "sqm_ocr": 100.7, - "price": 2595.0, - "price_per_sqm": 25.76961271102284, - "url": "https://www.rightmove.co.uk/properties/162680084", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Settle", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/245k/244682/162680084/244682_33923455_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.715117", - "last_seen": "2025-06-01T22:06:12.043624", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00178, - 51.596317 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162680117", - "info": { - "identifier": 162680117, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162680117", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Infinity Property Solutions", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/112k/111497/162680117/111497_29122116_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.113787", - "last_seen": "2025-06-01T22:05:50.638095", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32367, - 51.58428 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 43.84, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162680183", - "info": { - "identifier": 162680183, - "sqm_ocr": 73.0, - "price": 3200.0, - "price_per_sqm": 43.83561643835616, - "url": "https://www.rightmove.co.uk/properties/162680183", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/162680183/221711_3500_EAF_185508_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.291360", - "last_seen": "2025-06-01T22:05:47.772483", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.074947, - 51.546913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.0, - "qmprice": 30.77, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162680282", - "info": { - "identifier": 162680282, - "sqm_ocr": 78.0, - "price": 2400.0, - "price_per_sqm": 30.76923076923077, - "url": "https://www.rightmove.co.uk/properties/162680282", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/162680282/107533_1328547_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.161150", - "last_seen": "2025-06-01T22:05:46.150394", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.019542, - 51.474903 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.2, - "qmprice": 39.02, - "rooms": 2, - "total_price": 2349.0, - "url": "https://www.rightmove.co.uk/properties/162680429", - "info": { - "identifier": 162680429, - "sqm_ocr": 60.2, - "price": 2349.0, - "price_per_sqm": 39.01993355481727, - "url": "https://www.rightmove.co.uk/properties/162680429", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "ea2", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10387/162680429/10387_33923487_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.935748", - "last_seen": "2025-06-01T22:06:10.269459", - "price": 2348 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.060737, - 51.505974 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.7, - "qmprice": 41.88, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162680468", - "info": { - "identifier": 162680468, - "sqm_ocr": 59.7, - "price": 2500.0, - "price_per_sqm": 41.87604690117253, - "url": "https://www.rightmove.co.uk/properties/162680468", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71785/162680468/71785_33923492_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.641097", - "last_seen": "2025-06-01T22:06:00.027721", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141628, - 51.45246 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162680603", - "info": { - "identifier": 162680603, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162680603", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162680603/96668_250102830052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.314620", - "last_seen": "2025-06-01T22:05:47.792062", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089644, - 51.52798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162680612", - "info": { - "identifier": 162680612, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162680612", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162680612/96668_250222931052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.261304", - "last_seen": "2025-06-01T22:05:52.355642", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.352856, - 51.464745 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162680615", - "info": { - "identifier": 162680615, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162680615", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162680615/96668_250234331052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.022200", - "last_seen": "2025-06-01T22:05:53.953099", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102793, - 51.55959 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.12, - "qmprice": 41.19, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162680624", - "info": { - "identifier": 162680624, - "sqm_ocr": 80.12, - "price": 3300.0, - "price_per_sqm": 41.18821767348976, - "url": "https://www.rightmove.co.uk/properties/162680624", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162680624/96668_248363614052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.324949", - "last_seen": "2025-06-01T22:06:06.599598", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099783, - 51.49729 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/162680627", - "info": { - "identifier": 162680627, - "sqm_ocr": null, - "price": 2995.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162680627", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162680627/96668_250239931052025_IMG_04_0000_max_656x437.jpeg", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.375940", - "last_seen": "2025-06-01T22:06:06.615137", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.056019, - 51.492744 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162680630", - "info": { - "identifier": 162680630, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162680630", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162680630/96668_212950421062024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.896650", - "last_seen": "2025-06-01T22:06:00.832706", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.014082, - 51.46795 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162680639", - "info": { - "identifier": 162680639, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162680639", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hawk & Eagle Property Consultants", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/255k/254153/162680639/254153_PRA10660_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "27/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.933703", - "last_seen": "2025-06-01T22:06:03.174001", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.021575, - 51.50824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.6, - "qmprice": 35.94, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/162680666", - "info": { - "identifier": 162680666, - "sqm_ocr": 94.6, - "price": 3400.0, - "price_per_sqm": 35.94080338266385, - "url": "https://www.rightmove.co.uk/properties/162680666", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Urban Village", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/61k/60210/162680666/60210_101645003235_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.288286", - "last_seen": "2025-06-01T22:06:06.733845", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09041, - 51.46039 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162680924", - "info": { - "identifier": 162680924, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162680924", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/162680924/264404_RX587158_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.169682", - "last_seen": "2025-06-01T22:05:41.269643", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.274234, - 51.559235 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162680987", - "info": { - "identifier": 162680987, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162680987", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Michael Naik", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101870/162680987/101870_33923525_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.866770", - "last_seen": "2025-06-01T22:06:11.998025", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004129, - 51.630085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2380.0, - "url": "https://www.rightmove.co.uk/properties/162681080", - "info": { - "identifier": 162681080, - "sqm_ocr": null, - "price": 2380.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162681080", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/287k/286454/162681080/286454_P62457_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.899061", - "last_seen": "2025-06-01T22:05:44.297728", - "price": 2380.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.31884, - 51.5352 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162681128", - "info": { - "identifier": 162681128, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162681128", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94220/162681128/94220_P301638_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.807146", - "last_seen": "2025-06-01T22:05:45.140038", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29005, - 51.506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 28.12, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162681221", - "info": { - "identifier": 162681221, - "sqm_ocr": 80.0, - "price": 2250.0, - "price_per_sqm": 28.125, - "url": "https://www.rightmove.co.uk/properties/162681221", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12686/162681221/12686_NFL180044_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.099708", - "last_seen": "2025-06-01T22:05:50.613039", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.362225, - 51.566628 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.0, - "qmprice": 25.0, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162681377", - "info": { - "identifier": 162681377, - "sqm_ocr": 80.0, - "price": 2000.0, - "price_per_sqm": 25.0, - "url": "https://www.rightmove.co.uk/properties/162681377", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162681377/96668_247662208052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "09/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.819739", - "last_seen": "2025-06-01T22:06:02.350958", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.033905, - 51.51287 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.8, - "qmprice": 40.83, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162681419", - "info": { - "identifier": 162681419, - "sqm_ocr": 69.8, - "price": 2850.0, - "price_per_sqm": 40.83094555873926, - "url": "https://www.rightmove.co.uk/properties/162681419", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162681419/96668_250212331052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "23/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.677541", - "last_seen": "2025-06-01T22:06:04.866167", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069632, - 51.498363 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.9, - "qmprice": 46.03, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162681554", - "info": { - "identifier": 162681554, - "sqm_ocr": 86.9, - "price": 4000.0, - "price_per_sqm": 46.029919447640964, - "url": "https://www.rightmove.co.uk/properties/162681554", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162681554/238265_L110281_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.362847", - "last_seen": "2025-06-01T22:05:57.945158", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19512, - 51.49136 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/162681707", - "info": { - "identifier": 162681707, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162681707", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "S J Smith Estate Agents", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72819/162681707/72819_103010009915_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.234750", - "last_seen": "2025-06-01T22:05:52.304794", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.41788, - 51.44837 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.4, - "qmprice": 51.68, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/162681815", - "info": { - "identifier": 162681815, - "sqm_ocr": 77.4, - "price": 4000.0, - "price_per_sqm": 51.67958656330749, - "url": "https://www.rightmove.co.uk/properties/162681815", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Propertymade Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/281k/280319/162681815/280319_PRM250229_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.587556", - "last_seen": "2025-06-01T22:05:48.306999", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.222505, - 51.51196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162682211", - "info": { - "identifier": 162682211, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162682211", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162682211/96668_227479028102024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.815981", - "last_seen": "2025-06-01T22:05:50.094085", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070862, - 51.581135 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162682217", - "info": { - "identifier": 162682217, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162682217", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162682217/96668_184686127092023_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.065585", - "last_seen": "2025-06-01T22:05:39.630471", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214911, - 51.60784 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162682712", - "info": { - "identifier": 162682712, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162682712", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Folio London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97670/162682712/97670_SHE210268_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.682508", - "last_seen": "2025-06-01T22:06:07.704254", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006589, - 51.535168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.5, - "qmprice": 29.09, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162682949", - "info": { - "identifier": 162682949, - "sqm_ocr": 82.5, - "price": 2400.0, - "price_per_sqm": 29.09090909090909, - "url": "https://www.rightmove.co.uk/properties/162682949", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Folio London", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97670/162682949/97670_SHE210259_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "16/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.801431", - "last_seen": "2025-06-01T22:06:07.293738", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006589, - 51.535168 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/162683213", - "info": { - "identifier": 162683213, - "sqm_ocr": null, - "price": 3033.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162683213", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Reiss Samuels", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/116k/115768/162683213/115768_tapambassa_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.686087", - "last_seen": "2025-06-01T22:06:09.870624", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01766, - 51.49147 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.01, - "qmprice": 26.08, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162683231", - "info": { - "identifier": 162683231, - "sqm_ocr": 115.01, - "price": 3000.0, - "price_per_sqm": 26.08468828797496, - "url": "https://www.rightmove.co.uk/properties/162683231", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162683231/96668_223924026092024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.345691", - "last_seen": "2025-06-01T22:06:13.181121", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141196, - 51.424843 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162683249", - "info": { - "identifier": 162683249, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162683249", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162683249/96668_250254131052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.329641", - "last_seen": "2025-06-01T22:06:13.165110", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.171463, - 51.42425 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2253.0, - "url": "https://www.rightmove.co.uk/properties/162683297", - "info": { - "identifier": 162683297, - "sqm_ocr": null, - "price": 2253.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162683297", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/162683297/97423_CEI244316_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.576560", - "last_seen": "2025-06-01T22:06:09.626304", - "price": 2253 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.041426, - 51.52044 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 48.95, - "qmprice": 57.55, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/162683300", - "info": { - "identifier": 162683300, - "sqm_ocr": 48.95, - "price": 2817.0, - "price_per_sqm": 57.5485188968335, - "url": "https://www.rightmove.co.uk/properties/162683300", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/162683300/97423_CEI230113_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.320984", - "last_seen": "2025-06-01T22:05:47.887540", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077213, - 51.528915 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 69.7, - "qmprice": 32.96, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162683303", - "info": { - "identifier": 162683303, - "sqm_ocr": 69.7, - "price": 2297.0, - "price_per_sqm": 32.955523672883785, - "url": "https://www.rightmove.co.uk/properties/162683303", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": null, - "let_date_available": "09/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.108854", - "last_seen": "2025-06-01T22:06:15.907158", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166767, - 51.528584 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.92, - "qmprice": 28.39, - "rooms": 2, - "total_price": 2297.0, - "url": "https://www.rightmove.co.uk/properties/162683327", - "info": { - "identifier": 162683327, - "sqm_ocr": 80.92, - "price": 2297.0, - "price_per_sqm": 28.38606030647553, - "url": "https://www.rightmove.co.uk/properties/162683327", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/162683327/97423_CEI241331_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2026", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.027236", - "last_seen": "2025-06-01T22:05:39.099827", - "price": 2296 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179826, - 51.621056 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 50.47, - "rooms": 2, - "total_price": 3987.0, - "url": "https://www.rightmove.co.uk/properties/162683333", - "info": { - "identifier": 162683333, - "sqm_ocr": 79.0, - "price": 3987.0, - "price_per_sqm": 50.46835443037975, - "url": "https://www.rightmove.co.uk/properties/162683333", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/98k/97423/162683333/97423_CEI242282_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "19/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:10.595375", - "last_seen": "2025-06-01T22:06:10.595375", - "price": 3986 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071292, - 51.51427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/162683360", - "info": { - "identifier": 162683360, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162683360", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "eXp UK", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/239k/238265/162683360/238265_L110286_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.638393", - "last_seen": "2025-06-01T22:06:00.020235", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10696, - 51.492073 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162683435", - "info": { - "identifier": 162683435, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162683435", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30467/162683435/30467_000912138_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.734554", - "last_seen": "2025-06-01T22:06:11.841053", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00979, - 51.62418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162683606", - "info": { - "identifier": 162683606, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162683606", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162683606/96668_87720423082020_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.485828", - "last_seen": "2025-06-01T22:06:08.361706", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.020155, - 51.525925 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162683627", - "info": { - "identifier": 162683627, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162683627", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162683627/96668_240304901032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.417028", - "last_seen": "2025-06-01T22:05:52.920547", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100831, - 51.558456 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/162683750", - "info": { - "identifier": 162683750, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162683750", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Japan Letting Agency", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258848/162683750/258848_33923620_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.120473", - "last_seen": "2025-06-01T22:05:44.336665", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.311636, - 51.5211 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162683756", - "info": { - "identifier": 162683756, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162683756", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/31k/30467/162683756/30467_000912693_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.666220", - "last_seen": "2025-06-01T22:06:11.704224", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.00051, - 51.59386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/162684026", - "info": { - "identifier": 162684026, - "sqm_ocr": null, - "price": 3850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162684026", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162684026/96668_248079012052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.513268", - "last_seen": "2025-06-01T22:06:06.887875", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.059583, - 51.461506 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162684182", - "info": { - "identifier": 162684182, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162684182", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Way of Life (Balfron Tower) LLP", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/268k/267971/162684182/267971_EVER-2679712y10l2brp7oeRFsGvD0XqvVsHOQxIabK1NBpkIUFMyv4HKd8zjAhEmPeO_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.484642", - "last_seen": "2025-06-01T22:06:10.990282", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.010127, - 51.513493 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162684470", - "info": { - "identifier": 162684470, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162684470", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Brian Cox", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/289k/288164/162684470/288164_33923657_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.660213", - "last_seen": "2025-06-01T22:05:45.202787", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.32897, - 51.551376 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162684965", - "info": { - "identifier": 162684965, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162684965", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stones Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/288k/287342/162684965/287342_RHL250116_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.323933", - "last_seen": "2025-06-01T22:05:52.521910", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.358561, - 51.47225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162685058", - "info": { - "identifier": 162685058, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162685058", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162685058/96668_243779001042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.039154", - "last_seen": "2025-06-01T22:05:52.096908", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.265981, - 51.49091 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162685085", - "info": { - "identifier": 162685085, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162685085", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162685085/96668_248796018052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.507701", - "last_seen": "2025-06-01T22:05:49.768881", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090675, - 51.584217 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162685136", - "info": { - "identifier": 162685136, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162685136", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Streets Ahead", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257180/162685136/257180_SCR250079_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.837978", - "last_seen": "2025-06-01T22:05:43.704061", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09631, - 51.36213 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.9, - "qmprice": 43.26, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162685190", - "info": { - "identifier": 162685190, - "sqm_ocr": 80.9, - "price": 3500.0, - "price_per_sqm": 43.26328800988875, - "url": "https://www.rightmove.co.uk/properties/162685190", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "FMX PROPERTIES LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264155/162685190/264155_1516FairmontAvenue2bshortlet_IMG_02_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.00448, - 51.50626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162685232", - "info": { - "identifier": 162685232, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162685232", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162685232/96668_246479327042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.186929", - "last_seen": "2025-06-01T17:38:49.246908", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09614, - 51.56285 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162685349", - "info": { - "identifier": 162685349, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162685349", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Lionsgate Property Management", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/160k/159428/162685349/159428_243_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.664072", - "last_seen": "2025-06-01T22:05:42.210091", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129292, - 51.537228 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162685373", - "info": { - "identifier": 162685373, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162685373", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Lionsgate Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/160k/159428/162685373/159428_500_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.639470", - "last_seen": "2025-06-01T22:05:58.573070", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.303005, - 51.414066 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162685376", - "info": { - "identifier": 162685376, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162685376", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Lionsgate Property Management", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/160k/159428/162685376/159428_3328_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.638021", - "last_seen": "2025-06-01T22:05:58.571274", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.302963, - 51.413986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162685511", - "info": { - "identifier": 162685511, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162685511", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162685511/96668_250272531052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.726753", - "last_seen": "2025-06-01T22:05:59.399295", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132467, - 51.477016 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162685556", - "info": { - "identifier": 162685556, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162685556", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/162685556/249692_RL4653_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.882254", - "last_seen": "2025-06-01T22:05:42.091987", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.138753, - 51.532314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162685712", - "info": { - "identifier": 162685712, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162685712", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Stelfort", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67576/162685712/67576_RL1201_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.714857", - "last_seen": "2025-06-01T22:05:49.985030", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141777, - 51.572422 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162686792", - "info": { - "identifier": 162686792, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162686792", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162686792/96668_247320005052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.442532", - "last_seen": "2025-06-01T22:05:47.938395", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070843, - 51.54607 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.5, - "qmprice": 27.59, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162686870", - "info": { - "identifier": 162686870, - "sqm_ocr": 72.5, - "price": 2000.0, - "price_per_sqm": 27.586206896551722, - "url": "https://www.rightmove.co.uk/properties/162686870", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162686870/96668_154498807112022_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.897917", - "last_seen": "2025-06-01T22:05:39.365086", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177272, - 51.612606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 140.0, - "qmprice": 20.36, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/162686873", - "info": { - "identifier": 162686873, - "sqm_ocr": 140.0, - "price": 2850.0, - "price_per_sqm": 20.357142857142858, - "url": "https://www.rightmove.co.uk/properties/162686873", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162686873/96668_249998129052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.341890", - "last_seen": "2025-06-01T22:06:07.588109", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02026, - 51.53566 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162686876", - "info": { - "identifier": 162686876, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162686876", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162686876/96668_250283701062025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.954012", - "last_seen": "2025-06-01T22:05:53.837949", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096728, - 51.529255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3490.0, - "url": "https://www.rightmove.co.uk/properties/162688133", - "info": { - "identifier": 162688133, - "sqm_ocr": null, - "price": 3490.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162688133", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162688133/96668_250077929052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.995324", - "last_seen": "2025-06-01T22:05:48.888633", - "price": 3490.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.238617, - 51.507313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 31.25, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162688217", - "info": { - "identifier": 162688217, - "sqm_ocr": 64.0, - "price": 2000.0, - "price_per_sqm": 31.25, - "url": "https://www.rightmove.co.uk/properties/162688217", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Aspire", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50242/162688217/50242_FLS160007_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.715503", - "last_seen": "2025-06-01T22:05:49.308774", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18535, - 51.47041 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162688238", - "info": { - "identifier": 162688238, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162688238", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162688238/270461_JAX250557_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.891562", - "last_seen": "2025-06-01T22:06:02.434729", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.029334, - 51.499992 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/162688256", - "info": { - "identifier": 162688256, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162688256", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162688256/96668_250146330052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.265195", - "last_seen": "2025-06-01T22:06:09.076071", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.070753, - 51.5184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3800.0, - "url": "https://www.rightmove.co.uk/properties/162688259", - "info": { - "identifier": 162688259, - "sqm_ocr": null, - "price": 3800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162688259", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162688259/270461_JAX250558_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.262657", - "last_seen": "2025-06-01T22:06:09.064075", - "price": 3800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.069052, - 51.513756 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/162688505", - "info": { - "identifier": 162688505, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162688505", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162688505/96668_238343211022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.665250", - "last_seen": "2025-06-01T22:06:04.768532", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.268451, - 51.46905 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162688826", - "info": { - "identifier": 162688826, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162688826", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162688826/96668_249762127052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.086010", - "last_seen": "2025-06-01T22:05:47.572840", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.082137, - 51.525818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162688865", - "info": { - "identifier": 162688865, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162688865", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162688865/270461_JAX250559_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.233204", - "last_seen": "2025-06-01T22:05:44.446191", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.377434, - 51.504986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3550.0, - "url": "https://www.rightmove.co.uk/properties/162688877", - "info": { - "identifier": 162688877, - "sqm_ocr": null, - "price": 3550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162688877", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Claremont Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/271k/270461/162688877/270461_JAX250560_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.605933", - "last_seen": "2025-06-01T22:06:09.674937", - "price": 3550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071058, - 51.513996 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 134.9, - "qmprice": 16.68, - "rooms": 4, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162688910", - "info": { - "identifier": 162688910, - "sqm_ocr": 134.9, - "price": 2250.0, - "price_per_sqm": 16.679021497405486, - "url": "https://www.rightmove.co.uk/properties/162688910", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Reeds Rains", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46503/162688910/46503_PLA190221_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.506662", - "last_seen": "2025-06-01T22:06:07.708428", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.006601, - 51.532146 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 115.6, - "qmprice": 17.3, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162688913", - "info": { - "identifier": 162688913, - "sqm_ocr": 115.6, - "price": 2000.0, - "price_per_sqm": 17.301038062283737, - "url": "https://www.rightmove.co.uk/properties/162688913", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Reeds Rains", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46503/162688913/46503_PLA220088_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.509195", - "last_seen": "2025-06-01T22:06:03.452905", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.026292, - 51.52393 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2135.0, - "url": "https://www.rightmove.co.uk/properties/162689069", - "info": { - "identifier": 162689069, - "sqm_ocr": null, - "price": 2135.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689069", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222854/162689069/222854_301A-01-06-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.663898", - "last_seen": "2025-06-01T22:05:43.489962", - "price": 2135.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094225, - 51.3743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2131.0, - "url": "https://www.rightmove.co.uk/properties/162689072", - "info": { - "identifier": 162689072, - "sqm_ocr": null, - "price": 2131.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689072", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222854/162689072/222854_2003B-01-06-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.660374", - "last_seen": "2025-06-01T22:05:43.486962", - "price": 2131.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094225, - 51.3743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2104.0, - "url": "https://www.rightmove.co.uk/properties/162689078", - "info": { - "identifier": 162689078, - "sqm_ocr": null, - "price": 2104.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689078", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222854/162689078/222854_2004A-01-06-12-AM_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.657042", - "last_seen": "2025-06-01T22:05:43.482055", - "price": 2104.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094225, - 51.3743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2605.0, - "url": "https://www.rightmove.co.uk/properties/162689084", - "info": { - "identifier": 162689084, - "sqm_ocr": null, - "price": 2605.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689084", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222854/162689084/222854_2003B-01-06-6-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.655105", - "last_seen": "2025-06-01T22:05:43.473142", - "price": 2605.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094225, - 51.3743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2714.0, - "url": "https://www.rightmove.co.uk/properties/162689087", - "info": { - "identifier": 162689087, - "sqm_ocr": null, - "price": 2714.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689087", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/223k/222854/162689087/222854_2102A-01-06-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "08/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.651255", - "last_seen": "2025-06-01T22:05:43.470049", - "price": 2714.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094225, - 51.3743 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.2, - "qmprice": 45.23, - "rooms": 2, - "total_price": 3582.0, - "url": "https://www.rightmove.co.uk/properties/162689105", - "info": { - "identifier": 162689105, - "sqm_ocr": 79.2, - "price": 3582.0, - "price_per_sqm": 45.22727272727273, - "url": "https://www.rightmove.co.uk/properties/162689105", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/198k/197981/162689105/197981_S-1902-01-06-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.928382", - "last_seen": "2025-06-01T20:19:58.928382", - "price": 3582.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01921, - 51.49923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.1, - "qmprice": 44.03, - "rooms": 2, - "total_price": 3615.0, - "url": "https://www.rightmove.co.uk/properties/162689108", - "info": { - "identifier": 162689108, - "sqm_ocr": 82.1, - "price": 3615.0, - "price_per_sqm": 44.03166869671133, - "url": "https://www.rightmove.co.uk/properties/162689108", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/198k/197981/162689108/197981_S-2302-01-06-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.004587", - "last_seen": "2025-06-01T20:19:59.004587", - "price": 3615.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01921, - 51.49923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.4, - "qmprice": 44.08, - "rooms": 2, - "total_price": 3720.0, - "url": "https://www.rightmove.co.uk/properties/162689111", - "info": { - "identifier": 162689111, - "sqm_ocr": 84.4, - "price": 3720.0, - "price_per_sqm": 44.07582938388625, - "url": "https://www.rightmove.co.uk/properties/162689111", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/198k/197981/162689111/197981_S-0705-01-06-12-AM_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.382118", - "last_seen": "2025-06-01T20:19:59.382118", - "price": 3720.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01921, - 51.49923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162689129", - "info": { - "identifier": 162689129, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689129", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Statuum", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237224/162689129/237224_765_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.318021", - "last_seen": "2025-06-01T22:05:50.988090", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.195237, - 51.5497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/162689180", - "info": { - "identifier": 162689180, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689180", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Druce", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253310/162689180/253310_MAL250075_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.507729", - "last_seen": "2025-06-01T22:05:58.321140", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.194536, - 51.491764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2499.0, - "url": "https://www.rightmove.co.uk/properties/162689198", - "info": { - "identifier": 162689198, - "sqm_ocr": null, - "price": 2499.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689198", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162689198/96668_247559407052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.299224", - "last_seen": "2025-06-01T22:05:52.438859", - "price": 2499.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35899, - 51.47208 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3161.0, - "url": "https://www.rightmove.co.uk/properties/162689270", - "info": { - "identifier": 162689270, - "sqm_ocr": null, - "price": 3161.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689270", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Greystar", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253604/162689270/253604_144B0106_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.234718", - "last_seen": "2025-06-01T22:06:07.510659", - "price": 3161.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.00769, - 51.54196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162689321", - "info": { - "identifier": 162689321, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689321", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "L&Q", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102784/162689321/102784_12684502_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.475270", - "last_seen": "2025-06-01T22:06:07.640739", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.004141, - 51.53953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162689417", - "info": { - "identifier": 162689417, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689417", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Lawrence Rand", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/47k/46205/162689417/46205_2cfff3dc-6d5f-406f-ad6a-d812898b8319_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.357911", - "last_seen": "2025-06-01T22:05:51.131603", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.408445, - 51.572903 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162689435", - "info": { - "identifier": 162689435, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689435", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162689435/96668_245791621042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.058801", - "last_seen": "2025-06-01T22:05:59.088490", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.141065, - 51.46551 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/162689438", - "info": { - "identifier": 162689438, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689438", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162689438/96668_246472927042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.045775", - "last_seen": "2025-06-01T22:06:02.154641", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.058302, - 51.545162 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162689483", - "info": { - "identifier": 162689483, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689483", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162689483/96668_249673726052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.360758", - "last_seen": "2025-06-01T22:05:59.055579", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127202, - 51.435467 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/162689501", - "info": { - "identifier": 162689501, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689501", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162689501/96668_250277331052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.255254", - "last_seen": "2025-06-01T22:06:13.042368", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166588, - 51.4313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/162689960", - "info": { - "identifier": 162689960, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162689960", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162689960/96668_249799727052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.089001", - "last_seen": "2025-06-01T22:05:52.173515", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35366, - 51.48087 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/162690137", - "info": { - "identifier": 162690137, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162690137", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162690137/96668_247377706052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.250706", - "last_seen": "2025-06-01T22:06:10.412724", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015662, - 51.5298 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.13, - "qmprice": 27.17, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/162690161", - "info": { - "identifier": 162690161, - "sqm_ocr": 79.13, - "price": 2150.0, - "price_per_sqm": 27.1704789586756, - "url": "https://www.rightmove.co.uk/properties/162690161", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Cound", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85880/162690161/85880_COUND_006874_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.694120", - "last_seen": "2025-06-01T22:06:13.463784", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181503, - 51.460255 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3896.0, - "url": "https://www.rightmove.co.uk/properties/162690551", - "info": { - "identifier": 162690551, - "sqm_ocr": null, - "price": 3896.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162690551", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162690551/96668_245869922042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.545745", - "last_seen": "2025-06-01T22:05:43.309094", - "price": 3895 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09826, - 51.5185 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/162690590", - "info": { - "identifier": 162690590, - "sqm_ocr": null, - "price": 2275.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162690590", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162690590/96668_248698317052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.950306", - "last_seen": "2025-06-01T17:39:04.468242", - "price": 2275.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.025215, - 51.5313 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3649.0, - "url": "https://www.rightmove.co.uk/properties/162690878", - "info": { - "identifier": 162690878, - "sqm_ocr": null, - "price": 3649.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162690878", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162690878/96668_250290401062025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.808870", - "last_seen": "2025-06-01T22:05:48.587191", - "price": 3649.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.190694, - 51.479927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2595.0, - "url": "https://www.rightmove.co.uk/properties/162690890", - "info": { - "identifier": 162690890, - "sqm_ocr": null, - "price": 2595.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162690890", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162690890/96668_223133219092024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.297898", - "last_seen": "2025-06-01T22:06:13.090681", - "price": 2595.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166385, - 51.460648 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.55, - "qmprice": 37.01, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/162691085", - "info": { - "identifier": 162691085, - "sqm_ocr": 67.55, - "price": 2500.0, - "price_per_sqm": 37.00962250185048, - "url": "https://www.rightmove.co.uk/properties/162691085", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691085/96668_249564425052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.304076", - "last_seen": "2025-06-01T22:06:13.110210", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.169464, - 51.435986 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/162691100", - "info": { - "identifier": 162691100, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691100", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691100/96668_247366405052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.752178", - "last_seen": "2025-06-01T22:05:50.099509", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.109522, - 51.600193 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/162691106", - "info": { - "identifier": 162691106, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691106", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691106/96668_250325301062025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.365021", - "last_seen": "2025-06-01T22:05:41.721564", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.083631, - 51.3639 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/162691109", - "info": { - "identifier": 162691109, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691109", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691109/96668_250305201062025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.294775", - "last_seen": "2025-06-01T22:05:47.868601", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077015, - 51.52621 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/162691154", - "info": { - "identifier": 162691154, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691154", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Drewery Property Services", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9896/162691154/9896_102670009697_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.279851", - "last_seen": "2025-06-01T22:05:39.989915", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.11104, - 51.42717 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162691169", - "info": { - "identifier": 162691169, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691169", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benjamin Stevens", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93881/162691169/93881_BNJ_HB_LFSYCL_518_710423968_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:22.808921", - "last_seen": "2025-06-01T22:05:45.017602", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.341182, - 51.53589 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162691223", - "info": { - "identifier": 162691223, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691223", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691223/96668_244563708042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:24.811177", - "last_seen": "2025-06-01T22:05:46.517021", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.082278, - 51.45026 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/162691241", - "info": { - "identifier": 162691241, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691241", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691241/96668_248753618052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:20:02.465777", - "last_seen": "2025-06-01T22:06:13.343864", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17536, - 51.42929 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.0, - "qmprice": 33.97, - "rooms": 2, - "total_price": 2480.0, - "url": "https://www.rightmove.co.uk/properties/162691268", - "info": { - "identifier": 162691268, - "sqm_ocr": 73.0, - "price": 2480.0, - "price_per_sqm": 33.97260273972603, - "url": "https://www.rightmove.co.uk/properties/162691268", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691268/96668_250327701062025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.012598", - "last_seen": "2025-06-01T22:06:10.286140", - "price": 2480.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.009694, - 51.50478 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162691274", - "info": { - "identifier": 162691274, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691274", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691274/96668_250332301062025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:30.537479", - "last_seen": "2025-06-01T22:05:49.898696", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.101873, - 51.575138 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/162691277", - "info": { - "identifier": 162691277, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691277", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691277/96668_248804318052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:17.160640", - "last_seen": "2025-06-01T22:05:40.820791", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.273428, - 51.56348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/162691301", - "info": { - "identifier": 162691301, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691301", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691301/96668_250339401062025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:20:02.797093", - "last_seen": "2025-06-01T22:06:13.803639", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.217075, - 51.45785 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/162691460", - "info": { - "identifier": 162691460, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691460", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691460/96668_249585426052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:39.544981", - "last_seen": "2025-06-01T22:06:07.740329", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18389, - 51.355312 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162691487", - "info": { - "identifier": 162691487, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691487", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691487/96668_250313601062025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:38.548397", - "last_seen": "2025-06-01T22:06:14.431967", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130591, - 51.493793 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3999.0, - "url": "https://www.rightmove.co.uk/properties/162691670", - "info": { - "identifier": 162691670, - "sqm_ocr": null, - "price": 3999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691670", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691670/96668_198566612022024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:19.922591", - "last_seen": "2025-06-01T22:05:43.114448", - "price": 3999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129535, - 51.53184 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3999.0, - "url": "https://www.rightmove.co.uk/properties/162691679", - "info": { - "identifier": 162691679, - "sqm_ocr": null, - "price": 3999.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691679", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691679/96668_212159114062024_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:19.929738", - "last_seen": "2025-06-01T22:05:43.118491", - "price": 3999.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129871, - 51.52997 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.8, - "qmprice": 37.59, - "rooms": 4, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/162691841", - "info": { - "identifier": 162691841, - "sqm_ocr": 79.8, - "price": 3000.0, - "price_per_sqm": 37.59398496240602, - "url": "https://www.rightmove.co.uk/properties/162691841", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Castle Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/246k/245579/162691841/245579_856_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:05:44.198575", - "last_seen": "2025-06-01T22:05:44.198575", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33478, - 51.51331 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/162691889", - "info": { - "identifier": 162691889, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691889", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691889/96668_249000220052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:01.161121", - "last_seen": "2025-06-01T22:06:01.161121", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158728, - 51.417866 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/162691892", - "info": { - "identifier": 162691892, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691892", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691892/96668_250199830052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:12.541447", - "last_seen": "2025-06-01T22:06:12.541447", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136957, - 51.48256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/162691904", - "info": { - "identifier": 162691904, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/162691904", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/162691904/96668_250152730052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:05:45.408890", - "last_seen": "2025-06-01T22:05:55.499670", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.111286, - 51.612045 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.8, - "qmprice": 42.42, - "rooms": 3, - "total_price": 3597.0, - "url": "https://www.rightmove.co.uk/properties/162691976", - "info": { - "identifier": 162691976, - "sqm_ocr": 84.8, - "price": 3597.0, - "price_per_sqm": 42.41745283018868, - "url": "https://www.rightmove.co.uk/properties/162691976", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76478/162691976/76478_CEI244251_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "02/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:09.884917", - "last_seen": "2025-06-01T22:06:09.884917", - "price": 3596 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.018482, - 51.496006 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/17401944", - "info": { - "identifier": 17401944, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/17401944", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Adams and Styles", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32307/17401944/32307_7SAPP_IMG_25_0000_max_656x437.jpg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.902452", - "last_seen": "2025-06-01T22:05:45.937289", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08939, - 51.65345 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/18655442", - "info": { - "identifier": 18655442, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/18655442", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/18655442/55234_TURE9_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.897262", - "last_seen": "2025-06-01T22:05:47.891762", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0554, - 51.53877 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/19985129", - "info": { - "identifier": 19985129, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/19985129", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/19985129/55234_THRE31_IMG_07_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.353093", - "last_seen": "2025-06-01T22:06:09.646626", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0641, - 51.51734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/20793632", - "info": { - "identifier": 20793632, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/20793632", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/20793632/55234_THRE21_IMG_07_0000_max_656x437.jpg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.318331", - "last_seen": "2025-06-01T22:06:11.369987", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0641, - 51.51734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/21191981", - "info": { - "identifier": 21191981, - "sqm_ocr": null, - "price": 3650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/21191981", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/21191981/55234_PSRE17n_IMG_18_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.235836", - "last_seen": "2025-06-01T22:05:47.941580", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08858, - 51.52817 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/21949379", - "info": { - "identifier": 21949379, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/21949379", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/21949379/55234_OLREN_IMG_23_0000_max_656x437.jpg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.609303", - "last_seen": "2025-06-01T22:05:53.560173", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09714, - 51.52354 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/22178723", - "info": { - "identifier": 22178723, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/22178723", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/22178723/55234_THRE98_IMG_03_0000_max_656x437.jpg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.057747", - "last_seen": "2025-06-01T20:19:59.057747", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0641, - 51.51734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/22374932", - "info": { - "identifier": 22374932, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/22374932", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/22374932/55234_THRE33_IMG_22_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.014772", - "last_seen": "2025-06-01T17:39:04.518615", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0641, - 51.51734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/23649032", - "info": { - "identifier": 23649032, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/23649032", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lawlors Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19332/23649032/19332_Labu_IMG_00_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.439628", - "last_seen": "2025-06-01T22:05:51.106871", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.41892, - 51.49748 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/24937871", - "info": { - "identifier": 24937871, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/24937871", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Urtopia Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16298/24937871/16298_L0703097_IMG_00_0000_max_656x437.jpg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.313391", - "last_seen": "2025-06-01T22:05:46.505263", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0192, - 51.4825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/28240962", - "info": { - "identifier": 28240962, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/28240962", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/28240962/55234_WHRE62n_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.634598", - "last_seen": "2025-06-01T22:06:08.086449", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06677, - 51.51225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/28897225", - "info": { - "identifier": 28897225, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/28897225", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Adams and Styles", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32307/28897225/32307_23WES_IMG_08_0001_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.990682", - "last_seen": "2025-06-01T22:05:45.878897", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11736, - 51.61334 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.0, - "qmprice": 24.19, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/31056693", - "info": { - "identifier": 31056693, - "sqm_ocr": 93.0, - "price": 2250.0, - "price_per_sqm": 24.193548387096776, - "url": "https://www.rightmove.co.uk/properties/31056693", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11475/31056693/11475_0439_FJL043901535_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.517473", - "last_seen": "2025-06-01T22:06:10.339926", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.004037, - 51.493008 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/35180986", - "info": { - "identifier": 35180986, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/35180986", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Aynsley Property Services Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51124/35180986/51124_9WHIT_IMG_17_0000_max_656x437.JPG", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.249728", - "last_seen": "2025-06-01T22:06:13.219711", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17985, - 51.43034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.17, - "qmprice": 38.01, - "rooms": 2, - "total_price": 2249.0, - "url": "https://www.rightmove.co.uk/properties/38287515", - "info": { - "identifier": 38287515, - "sqm_ocr": 59.17, - "price": 2249.0, - "price_per_sqm": 38.009126246408655, - "url": "https://www.rightmove.co.uk/properties/38287515", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/38287515/119137_0613LJ_IMG_00_0000_max_656x437.jpg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.719429", - "last_seen": "2025-06-01T22:05:59.330770", - "price": 2249 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11385, - 51.45394 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/39624721", - "info": { - "identifier": 39624721, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/39624721", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/39624721/55234_81THRE100_IMG_07_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.240327", - "last_seen": "2025-06-01T20:19:58.440078", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0641, - 51.51734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/41755337", - "info": { - "identifier": 41755337, - "sqm_ocr": null, - "price": 2550.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/41755337", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/41755337/55234_OLREJ_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.441012", - "last_seen": "2025-06-01T22:05:54.214040", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09787, - 51.52319 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/42805212", - "info": { - "identifier": 42805212, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/42805212", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Lawlors Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19332/42805212/19332_DeC_IMG_00_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.414948", - "last_seen": "2025-06-01T22:05:44.028004", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.39134, - 51.5319 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/43000300", - "info": { - "identifier": 43000300, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/43000300", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "Lawlors Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19332/43000300/19332_SGs_IMG_02_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.421983", - "last_seen": "2025-06-01T22:05:51.129857", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.40376, - 51.52317 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.37, - "qmprice": 45.48, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/43385810", - "info": { - "identifier": 43385810, - "sqm_ocr": 59.37, - "price": 2700.0, - "price_per_sqm": 45.47751389590702, - "url": "https://www.rightmove.co.uk/properties/43385810", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/43385810/55234_1CARE16_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.250980", - "last_seen": "2025-06-01T22:05:47.703639", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07627, - 51.52608 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 52.81, - "rooms": 2, - "total_price": 3380.0, - "url": "https://www.rightmove.co.uk/properties/43620587", - "info": { - "identifier": 43620587, - "sqm_ocr": 64.0, - "price": 3380.0, - "price_per_sqm": 52.8125, - "url": "https://www.rightmove.co.uk/properties/43620587", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Arlington Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/18k/17067/43620587/17067_L530_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.044839", - "last_seen": "2025-06-01T22:05:54.324345", - "price": 3380 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12156, - 51.53257 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/44684369", - "info": { - "identifier": 44684369, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/44684369", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77524/44684369/77524_0428_FJL042800481_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.467661", - "last_seen": "2025-06-01T22:05:47.105898", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.010992, - 51.4856 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.8, - "qmprice": 30.84, - "rooms": 4, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/46939622", - "info": { - "identifier": 46939622, - "sqm_ocr": 90.8, - "price": 2800.0, - "price_per_sqm": 30.837004405286343, - "url": "https://www.rightmove.co.uk/properties/46939622", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11443/46939622/11443_0407_HRT040701940_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.180607", - "last_seen": "2025-06-01T22:05:52.185722", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.28159, - 51.5022 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.0, - "qmprice": 32.6, - "rooms": 3, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/48821664", - "info": { - "identifier": 48821664, - "sqm_ocr": 92.0, - "price": 2999.0, - "price_per_sqm": 32.59782608695652, - "url": "https://www.rightmove.co.uk/properties/48821664", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/48821664/119137_0613SHDHS_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.046553", - "last_seen": "2025-06-01T22:06:00.415036", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02641, - 51.47957 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/48861000", - "info": { - "identifier": 48861000, - "sqm_ocr": null, - "price": 3142.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/48861000", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Onslows Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49389/48861000/49389_ONS1000936_IMG_01_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.687237", - "last_seen": "2025-06-01T22:05:57.929435", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1944, - 51.49549 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.0, - "qmprice": 39.68, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/50007637", - "info": { - "identifier": 50007637, - "sqm_ocr": 71.0, - "price": 2817.0, - "price_per_sqm": 39.67605633802817, - "url": "https://www.rightmove.co.uk/properties/50007637", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "LCP Private Office", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92953/50007637/92953_12KR_IMG_00_0000_max_656x437.jpg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.301041", - "last_seen": "2025-06-01T22:05:58.404960", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17656, - 51.48389 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/50954235", - "info": { - "identifier": 50954235, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/50954235", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Onslows Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49389/50954235/49389_ONS1001866_IMG_08_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.579586", - "last_seen": "2025-06-01T22:05:58.052399", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1944, - 51.49549 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/50980075", - "info": { - "identifier": 50980075, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/50980075", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Abbeyway Estates Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/105k/104137/50980075/104137_P10050_IMG_08_0000_max_656x437.JPG", - "let_date_available": "24/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.148589", - "last_seen": "2025-06-01T22:05:55.719045", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13956, - 51.53672 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3878.0, - "url": "https://www.rightmove.co.uk/properties/51911166", - "info": { - "identifier": 51911166, - "sqm_ocr": null, - "price": 3878.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/51911166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Onslows Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49389/51911166/49389_ONS1001633_IMG_03_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.571234", - "last_seen": "2025-06-01T22:05:58.137862", - "price": 3878 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17134, - 51.49199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/52063046", - "info": { - "identifier": 52063046, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/52063046", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 67, - "status": null, - "last_seen": 0, - "agency": "Empire Chase Estate Agent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128062/52063046/128062_M12_IMG_14_0000_max_656x437.jpg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.206642", - "last_seen": "2025-06-01T22:05:40.388450", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29599, - 51.5525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/52162829", - "info": { - "identifier": 52162829, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/52162829", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 82, - "status": null, - "last_seen": 0, - "agency": "Empire Chase Estate Agent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128062/52162829/128062_589E_IMG_23_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.141504", - "last_seen": "2025-06-01T22:05:40.122534", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29599, - 51.5525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/52462260", - "info": { - "identifier": 52462260, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/52462260", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Onslows Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49389/52462260/49389_ONS1051370_IMG_08_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.240513", - "last_seen": "2025-06-01T22:05:57.958109", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17134, - 51.49199 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/52462374", - "info": { - "identifier": 52462374, - "sqm_ocr": null, - "price": 3792.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/52462374", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Onslows Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49389/52462374/49389_ONS1010124_IMG_09_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.405603", - "last_seen": "2025-06-01T22:05:57.924385", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1709, - 51.49216 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 48.92, - "rooms": 2, - "total_price": 3033.0, - "url": "https://www.rightmove.co.uk/properties/53779247", - "info": { - "identifier": 53779247, - "sqm_ocr": 62.0, - "price": 3033.0, - "price_per_sqm": 48.91935483870968, - "url": "https://www.rightmove.co.uk/properties/53779247", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Thackerays", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39899/53779247/39899_19KCM_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.890788", - "last_seen": "2025-06-01T22:05:57.876235", - "price": 3033 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18772, - 51.50025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3943.0, - "url": "https://www.rightmove.co.uk/properties/55260678", - "info": { - "identifier": 55260678, - "sqm_ocr": null, - "price": 3943.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/55260678", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Onslows Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49389/55260678/49389_ONS1001012_IMG_01_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.480538", - "last_seen": "2025-06-01T22:05:57.994114", - "price": 3943 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17697, - 51.49163 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2396.0, - "url": "https://www.rightmove.co.uk/properties/55490306", - "info": { - "identifier": 55490306, - "sqm_ocr": null, - "price": 2396.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/55490306", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/55490306/119137_0613MC1_IMG_26_0000_max_656x437.jpg", - "let_date_available": "31/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.141942", - "last_seen": "2025-06-01T22:06:04.925961", - "price": 2396 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.08065, - 51.49054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.8, - "qmprice": 36.62, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/55524840", - "info": { - "identifier": 55524840, - "sqm_ocr": 62.8, - "price": 2300.0, - "price_per_sqm": 36.62420382165605, - "url": "https://www.rightmove.co.uk/properties/55524840", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hendon Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/171k/170990/55524840/170990_HE_CR67F1_IMG_10_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.197779", - "last_seen": "2025-06-01T22:05:38.540696", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22386, - 51.58982 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.35, - "qmprice": 49.05, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/56594697", - "info": { - "identifier": 56594697, - "sqm_ocr": 71.35, - "price": 3500.0, - "price_per_sqm": 49.05395935529082, - "url": "https://www.rightmove.co.uk/properties/56594697", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CB Williams Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/190k/189878/56594697/189878_4RedLionSt_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "04/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.192524", - "last_seen": "2025-06-01T22:05:57.050849", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11692, - 51.51928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/56594937", - "info": { - "identifier": 56594937, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/56594937", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CB Williams Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/190k/189878/56594937/189878_7RedLionSt_IMG_00_0000_max_656x437.jpg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.055622", - "last_seen": "2025-06-01T22:05:42.675618", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11692, - 51.51928 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/58078041", - "info": { - "identifier": 58078041, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/58078041", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Beaufort Park Colindale", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/142k/141893/58078041/141893_000013863_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.025843", - "last_seen": "2025-06-01T22:05:57.031221", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2404, - 51.59511 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/58805975", - "info": { - "identifier": 58805975, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/58805975", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Empire Chase Estate Agent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128062/58805975/128062_NatashaBelgravecourt56_IMG_06_0001_max_656x437.jpg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.982541", - "last_seen": "2025-06-01T22:05:50.252942", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33158, - 51.58133 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.6, - "qmprice": 46.52, - "rooms": 3, - "total_price": 3098.0, - "url": "https://www.rightmove.co.uk/properties/60569018", - "info": { - "identifier": 60569018, - "sqm_ocr": 66.6, - "price": 3098.0, - "price_per_sqm": 46.51651651651652, - "url": "https://www.rightmove.co.uk/properties/60569018", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/60569018/119137_0613JP_IMG_11_0000_max_656x437.jpg", - "let_date_available": "01/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.526642", - "last_seen": "2025-06-01T22:06:05.164411", - "price": 3098 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10003, - 51.4922 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3590.0, - "url": "https://www.rightmove.co.uk/properties/60872980", - "info": { - "identifier": 60872980, - "sqm_ocr": null, - "price": 3590.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/60872980", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/60872980/80105_545_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.214562", - "last_seen": "2025-06-01T22:06:02.013603", - "price": 3590.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.016196, - 51.507496 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/61145498", - "info": { - "identifier": 61145498, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/61145498", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Mostyn Management", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74591/61145498/74591_Bron97_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.065059", - "last_seen": "2025-06-01T22:06:01.732189", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21758, - 51.4084 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.7, - "qmprice": 41.88, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/61455830", - "info": { - "identifier": 61455830, - "sqm_ocr": 59.7, - "price": 2500.0, - "price_per_sqm": 41.87604690117253, - "url": "https://www.rightmove.co.uk/properties/61455830", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11427/61455830/11427_0472_HRT040501553_IMG_08_0012_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.324727", - "last_seen": "2025-06-01T22:06:13.782253", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14516, - 51.44841 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/62018291", - "info": { - "identifier": 62018291, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/62018291", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "MS Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/84k/83081/62018291/83081_ms1211114_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.019738", - "last_seen": "2025-06-01T22:05:38.311462", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.12834, - 51.55483 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.33, - "qmprice": 33.4, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/63419007", - "info": { - "identifier": 63419007, - "sqm_ocr": 85.33, - "price": 2850.0, - "price_per_sqm": 33.399742177428806, - "url": "https://www.rightmove.co.uk/properties/63419007", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74966/63419007/74966_BOW190136_L_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.569069", - "last_seen": "2025-06-01T20:19:57.511953", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.030853, - 51.530888 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/64475930", - "info": { - "identifier": 64475930, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/64475930", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/64475930/55234_thre83_IMG_00_0000_max_656x437.png", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.158807", - "last_seen": "2025-06-01T22:06:07.983626", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0641, - 51.51734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/65130967", - "info": { - "identifier": 65130967, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/65130967", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/65130967/80105_8989_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.235342", - "last_seen": "2025-06-01T22:05:48.451268", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.181878, - 51.476604 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.0, - "qmprice": 32.31, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/65489783", - "info": { - "identifier": 65489783, - "sqm_ocr": 65.0, - "price": 2100.0, - "price_per_sqm": 32.30769230769231, - "url": "https://www.rightmove.co.uk/properties/65489783", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "NH Properties", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143456/65489783/143456_AYLESHAM_IMG_53_0000_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.672990", - "last_seen": "2025-06-01T22:05:39.163359", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23836, - 51.60533 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/65560344", - "info": { - "identifier": 65560344, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/65560344", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/94k/93848/65560344/93848_0619_HRT061900781_IMG_03_0003_max_656x437.jpeg", - "let_date_available": "29/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.833030", - "last_seen": "2025-06-01T22:06:11.977959", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.028422, - 51.599476 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/65870320", - "info": { - "identifier": 65870320, - "sqm_ocr": null, - "price": 3900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/65870320", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Residential Land Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3198/65870320/3198_5555_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.324444", - "last_seen": "2025-06-01T22:05:57.524155", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.17134, - 51.491913 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.4, - "qmprice": 32.21, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/66165846", - "info": { - "identifier": 66165846, - "sqm_ocr": 71.4, - "price": 2300.0, - "price_per_sqm": 32.212885154061624, - "url": "https://www.rightmove.co.uk/properties/66165846", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74966/66165846/74966_BOW190248_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.314279", - "last_seen": "2025-06-01T20:19:56.867673", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015561, - 51.523514 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.75, - "qmprice": 47.1, - "rooms": 3, - "total_price": 3050.0, - "url": "https://www.rightmove.co.uk/properties/66232217", - "info": { - "identifier": 66232217, - "sqm_ocr": 64.75, - "price": 3050.0, - "price_per_sqm": 47.1042471042471, - "url": "https://www.rightmove.co.uk/properties/66232217", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/66232217/55234_THRE104_IMG_10_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.489946", - "last_seen": "2025-06-01T17:39:04.983603", - "price": 3050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0641, - 51.51734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/67274252", - "info": { - "identifier": 67274252, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/67274252", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "Andrews And Stacey Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143252/67274252/143252_28THESQUARE_IMG_05_0001_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.891082", - "last_seen": "2025-06-01T22:05:49.101220", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22492, - 51.48968 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/67742861", - "info": { - "identifier": 67742861, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/67742861", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Lawlors Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19332/67742861/19332_Mns_IMG_00_0000_max_656x437.JPG", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.083814", - "last_seen": "2025-06-01T22:05:44.958774", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.36308, - 51.52396 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3395.0, - "url": "https://www.rightmove.co.uk/properties/69903009", - "info": { - "identifier": 69903009, - "sqm_ocr": null, - "price": 3395.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/69903009", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Atlantic Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/135k/134441/69903009/134441_73_Wentworth_St_E1_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.006644", - "last_seen": "2025-06-01T22:06:11.017209", - "price": 3395.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.073974, - 51.516994 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/70434627", - "info": { - "identifier": 70434627, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/70434627", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/70434627/119137_TF2NKR159_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.519761", - "last_seen": "2025-06-01T22:06:06.058698", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09216, - 51.49433 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/70888520", - "info": { - "identifier": 70888520, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/70888520", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/70888520/55234_WHRE14_IMG_11_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.369379", - "last_seen": "2025-06-01T22:06:10.542579", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06677, - 51.51225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 88.0, - "qmprice": 35.23, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/70972868", - "info": { - "identifier": 70972868, - "sqm_ocr": 88.0, - "price": 3100.0, - "price_per_sqm": 35.22727272727273, - "url": "https://www.rightmove.co.uk/properties/70972868", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Lord Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75139/70972868/75139_V-299L_IMG_01_0000_max_656x437.jpg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.843358", - "last_seen": "2025-06-01T22:05:44.431851", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30622, - 51.51407 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/70999712", - "info": { - "identifier": 70999712, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/70999712", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Abbeyway Estates Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/105k/104137/70999712/104137_BroadwayA_IMG_01_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.516737", - "last_seen": "2025-06-01T22:05:49.663108", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12262, - 51.58034 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.95, - "qmprice": 44.0, - "rooms": 2, - "total_price": 3298.0, - "url": "https://www.rightmove.co.uk/properties/71213983", - "info": { - "identifier": 71213983, - "sqm_ocr": 74.95, - "price": 3298.0, - "price_per_sqm": 44.00266844563042, - "url": "https://www.rightmove.co.uk/properties/71213983", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167687/71213983/167687_2350946_IMG_20_0001_max_656x437.jpeg", - "let_date_available": "16/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.813480", - "last_seen": "2025-06-01T22:05:43.000328", - "price": 3297 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192641, - 51.54694 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/71398646", - "info": { - "identifier": 71398646, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/71398646", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Abbeyway Estates Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/105k/104137/71398646/104137_FLAT510sph_IMG_00_0000_max_656x437.jpg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.044362", - "last_seen": "2025-06-01T22:05:45.503286", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12753, - 51.63284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 99.74, - "qmprice": 26.57, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/72087745", - "info": { - "identifier": 72087745, - "sqm_ocr": 99.74, - "price": 2650.0, - "price_per_sqm": 26.569079606978146, - "url": "https://www.rightmove.co.uk/properties/72087745", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Websters Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96821/72087745/96821_2500570_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "18/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.388964", - "last_seen": "2025-06-01T22:06:04.333204", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.34731, - 51.44586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/72109172", - "info": { - "identifier": 72109172, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/72109172", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Abbeyway Estates Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/105k/104137/72109172/104137_142_West_IMG_02_0000_max_656x437.JPG", - "let_date_available": "20/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.548514", - "last_seen": "2025-06-01T22:05:55.429360", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09575, - 51.59465 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.5, - "qmprice": 61.21, - "rooms": 3, - "total_price": 3397.0, - "url": "https://www.rightmove.co.uk/properties/72296549", - "info": { - "identifier": 72296549, - "sqm_ocr": 55.5, - "price": 3397.0, - "price_per_sqm": 61.207207207207205, - "url": "https://www.rightmove.co.uk/properties/72296549", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/72296549/119137_metro_IMG_02_0000_max_656x437.jpg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.672267", - "last_seen": "2025-06-01T22:06:04.854911", - "price": 3397 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09928, - 51.49624 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/72764648", - "info": { - "identifier": 72764648, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/72764648", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/72764648/80105_8956_IMG_03_0008_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.132301", - "last_seen": "2025-06-01T22:05:58.960661", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.100485, - 51.46555 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.06, - "qmprice": 33.93, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/73002383", - "info": { - "identifier": 73002383, - "sqm_ocr": 109.06, - "price": 3700.0, - "price_per_sqm": 33.92627911241518, - "url": "https://www.rightmove.co.uk/properties/73002383", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74963/73002383/74963_HAC180136_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.474024", - "last_seen": "2025-06-01T22:05:47.453309", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058851, - 51.549908 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/73252427", - "info": { - "identifier": 73252427, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/73252427", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/73252427/80105_9019_IMG_04_0008_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.114799", - "last_seen": "2025-06-01T22:06:13.458440", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170154, - 51.47091 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.4, - "qmprice": 49.63, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/73504718", - "info": { - "identifier": 73504718, - "sqm_ocr": 56.4, - "price": 2799.0, - "price_per_sqm": 49.62765957446808, - "url": "https://www.rightmove.co.uk/properties/73504718", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/73504718/119137_JP002_IMG_04_0000_max_656x437.jpg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.642376", - "last_seen": "2025-06-01T22:06:07.094091", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09343, - 51.49446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/74147693", - "info": { - "identifier": 74147693, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/74147693", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Gibson Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/178k/177572/74147693/177572_804040_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.142527", - "last_seen": "2025-06-01T22:06:14.177888", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18799, - 51.4427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/74177762", - "info": { - "identifier": 74177762, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/74177762", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Novus Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94804/74177762/94804_hemstal_IMG_00_0000_max_656x437.jpg", - "let_date_available": "17/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.717488", - "last_seen": "2025-06-01T22:05:43.075949", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1949, - 51.5446 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/74386362", - "info": { - "identifier": 74386362, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/74386362", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 84, - "status": null, - "last_seen": 0, - "agency": "Empire Chase Estate Agent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128062/74386362/128062_Natashametro43243_IMG_03_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.096449", - "last_seen": "2025-06-01T22:05:40.686119", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29599, - 51.5525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/74432840", - "info": { - "identifier": 74432840, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/74432840", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Gibson Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/178k/177572/74432840/177572_90404040_IMG_08_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.453520", - "last_seen": "2025-06-01T22:06:12.561751", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18799, - 51.4427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/74484644", - "info": { - "identifier": 74484644, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/74484644", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Pure Realty", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106120/74484644/106120_Taviton_IMG_00_0000_max_656x437.JPG", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.144047", - "last_seen": "2025-06-01T22:05:43.146179", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13178, - 51.52599 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/74484692", - "info": { - "identifier": 74484692, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/74484692", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Pure Realty", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106120/74484692/106120_CORAMST_IMG_00_0000_max_656x437.JPG", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.176372", - "last_seen": "2025-06-01T22:05:43.191384", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12565, - 51.52427 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/74484797", - "info": { - "identifier": 74484797, - "sqm_ocr": null, - "price": 3792.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/74484797", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Pure Realty", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106120/74484797/106120_KENTONST_IMG_00_0000_max_656x437.JPG", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.583006", - "last_seen": "2025-06-01T22:05:42.852614", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12489, - 51.52525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3358.0, - "url": "https://www.rightmove.co.uk/properties/74484860", - "info": { - "identifier": 74484860, - "sqm_ocr": null, - "price": 3358.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/74484860", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Pure Realty", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106120/74484860/106120_SANDWICHST_IMG_00_0000_max_656x437.JPG", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.885532", - "last_seen": "2025-06-01T22:05:42.039610", - "price": 3358 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12554, - 51.52688 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3575.0, - "url": "https://www.rightmove.co.uk/properties/74484944", - "info": { - "identifier": 74484944, - "sqm_ocr": null, - "price": 3575.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/74484944", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 60, - "status": null, - "last_seen": 0, - "agency": "Pure Realty", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/107k/106120/74484944/106120_Thanet_IMG_00_0000_max_656x437.JPG", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.003524", - "last_seen": "2025-06-01T22:05:42.461240", - "price": 3575 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12538, - 51.52741 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/74540546", - "info": { - "identifier": 74540546, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/74540546", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "LettingaProperty.com", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80105/74540546/80105_9076_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.386140", - "last_seen": "2025-06-01T22:06:05.330504", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.059294, - 51.498894 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/74580564", - "info": { - "identifier": 74580564, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/74580564", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "Lawlors Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19332/74580564/19332_hih_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.566670", - "last_seen": "2025-06-01T22:05:51.682660", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.4434, - 51.56552 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.0, - "qmprice": 40.32, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/74808761", - "info": { - "identifier": 74808761, - "sqm_ocr": 62.0, - "price": 2500.0, - "price_per_sqm": 40.32258064516129, - "url": "https://www.rightmove.co.uk/properties/74808761", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45899/74808761/45899_FUP170131_L_IMG_08_0002_max_656x437.jpeg", - "let_date_available": "22/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.852070", - "last_seen": "2025-06-01T22:05:48.554541", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18807, - 51.469734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.2, - "qmprice": 35.51, - "rooms": 2, - "total_price": 3700.0, - "url": "https://www.rightmove.co.uk/properties/74833808", - "info": { - "identifier": 74833808, - "sqm_ocr": 104.2, - "price": 3700.0, - "price_per_sqm": 35.50863723608445, - "url": "https://www.rightmove.co.uk/properties/74833808", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 63, - "status": null, - "last_seen": 0, - "agency": "Niche Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/197k/196184/74833808/196184_15_IMG_01_0000_max_656x437.jpg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.010441", - "last_seen": "2025-06-01T22:05:39.660393", - "price": 3700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23657, - 51.62329 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/75198347", - "info": { - "identifier": 75198347, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/75198347", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Gibson Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/178k/177572/75198347/177572_0310_IMG_10_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.500313", - "last_seen": "2025-06-01T22:05:59.458763", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13266, - 51.45154 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/76217897", - "info": { - "identifier": 76217897, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/76217897", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Zuker Property Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/148k/147848/76217897/147848_LFM0026_IMG_14_0000_max_656x437.jpeg", - "let_date_available": "28/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.276221", - "last_seen": "2025-06-01T22:06:13.400677", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1326, - 51.48122 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/76786099", - "info": { - "identifier": 76786099, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/76786099", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/76786099/181787_181787_233_IMG_02_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.024942", - "last_seen": "2025-06-01T22:05:41.340437", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27916, - 51.55891 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/77691716", - "info": { - "identifier": 77691716, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/77691716", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Wilkinson Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/17k/16082/77691716/16082_46LorneRoadE7_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.155948", - "last_seen": "2025-06-01T22:06:02.037747", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03274, - 51.55239 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/78822032", - "info": { - "identifier": 78822032, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/78822032", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/71k/70025/78822032/70025_0477_HRT047707063_IMG_02_0002_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.233956", - "last_seen": "2025-06-01T22:05:51.050155", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.209686, - 51.598015 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.1, - "qmprice": 31.44, - "rooms": 3, - "total_price": 2550.0, - "url": "https://www.rightmove.co.uk/properties/79199478", - "info": { - "identifier": 79199478, - "sqm_ocr": 81.1, - "price": 2550.0, - "price_per_sqm": 31.44266337854501, - "url": "https://www.rightmove.co.uk/properties/79199478", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/46k/45437/79199478/45437_HHI130254_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.021859", - "last_seen": "2025-06-01T22:06:06.074307", - "price": 2550.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09624, - 51.4568 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/79641942", - "info": { - "identifier": 79641942, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/79641942", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 124, - "status": null, - "last_seen": 0, - "agency": "Apple Property Services", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/152k/151424/79641942/151424_APV1000336_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.001100", - "last_seen": "2025-06-01T22:05:38.239479", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.17953, - 51.56045 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/79642871", - "info": { - "identifier": 79642871, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/79642871", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/79642871/55234_OHRE401_IMG_02_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.419104", - "last_seen": "2025-06-01T22:05:47.741835", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07353, - 51.55346 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/79717685", - "info": { - "identifier": 79717685, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/79717685", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Niche Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/197k/196184/79717685/196184_146_IMG_02_0000_max_656x437.jpg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.531217", - "last_seen": "2025-06-01T22:05:39.709142", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14728, - 51.61292 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/80685385", - "info": { - "identifier": 80685385, - "sqm_ocr": null, - "price": 2850.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/80685385", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "David Astburys Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/177k/176261/80685385/176261_102708021981_IMG_19_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.798271", - "last_seen": "2025-06-01T22:05:50.192459", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12014, - 51.58111 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3260.0, - "url": "https://www.rightmove.co.uk/properties/81948735", - "info": { - "identifier": 81948735, - "sqm_ocr": null, - "price": 3260.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/81948735", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/81948735/78429_LON-40_IMG_42_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.234136", - "last_seen": "2025-06-01T22:06:15.474954", - "price": 3260.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.187308, - 51.512325 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3125.0, - "url": "https://www.rightmove.co.uk/properties/83078792", - "info": { - "identifier": 83078792, - "sqm_ocr": null, - "price": 3125.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/83078792", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/83078792/55234_13WHRE_IMG_01_0000_max_656x437.jpg", - "let_date_available": "01/06/2025", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.06677, - 51.51225 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/83427809", - "info": { - "identifier": 83427809, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/83427809", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 37, - "status": null, - "last_seen": 0, - "agency": "Adams and Styles", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32307/83427809/32307_510SPH_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.953071", - "last_seen": "2025-06-01T22:05:45.908860", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12753, - 51.63284 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.7, - "qmprice": 44.33, - "rooms": 2, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/84743649", - "info": { - "identifier": 84743649, - "sqm_ocr": 76.7, - "price": 3400.0, - "price_per_sqm": 44.32855280312907, - "url": "https://www.rightmove.co.uk/properties/84743649", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chelwood Partners", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/226k/225794/84743649/225794_SWP220021_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "30/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.042800", - "last_seen": "2025-06-01T22:06:13.403203", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.165756, - 51.455322 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.1, - "qmprice": 48.64, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/85057539", - "info": { - "identifier": 85057539, - "sqm_ocr": 77.1, - "price": 3750.0, - "price_per_sqm": 48.63813229571985, - "url": "https://www.rightmove.co.uk/properties/85057539", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Alliance London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77148/85057539/77148_190247_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "26/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.951385", - "last_seen": "2025-06-01T22:05:47.234338", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09578, - 51.531418 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/85535402", - "info": { - "identifier": 85535402, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/85535402", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Lawlors Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19332/85535402/19332_Dds_IMG_00_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.200178", - "last_seen": "2025-06-01T22:05:40.000666", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.18303, - 51.44969 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/85643658", - "info": { - "identifier": 85643658, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/85643658", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Lawson Rutter", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44364/85643658/44364_LRL2001530_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.900834", - "last_seen": "2025-06-01T22:05:49.495204", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21441, - 51.476574 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 96.5, - "qmprice": 24.87, - "rooms": 3, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/85673280", - "info": { - "identifier": 85673280, - "sqm_ocr": 96.5, - "price": 2400.0, - "price_per_sqm": 24.870466321243523, - "url": "https://www.rightmove.co.uk/properties/85673280", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/19k/18281/85673280/18281_BNT220118_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.224769", - "last_seen": "2025-06-01T22:05:39.639840", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.164931, - 51.644386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.79, - "qmprice": 30.87, - "rooms": 2, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/85719930", - "info": { - "identifier": 85719930, - "sqm_ocr": 85.79, - "price": 2648.0, - "price_per_sqm": 30.866068306329407, - "url": "https://www.rightmove.co.uk/properties/85719930", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/85719930/163859_2372047_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.175749", - "last_seen": "2025-06-01T22:06:02.060708", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03047, - 51.50085 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.49, - "qmprice": 35.96, - "rooms": 2, - "total_price": 2643.0, - "url": "https://www.rightmove.co.uk/properties/85720041", - "info": { - "identifier": 85720041, - "sqm_ocr": 73.49, - "price": 2643.0, - "price_per_sqm": 35.964076745135394, - "url": "https://www.rightmove.co.uk/properties/85720041", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/164k/163859/85720041/163859_2548959_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.872333", - "last_seen": "2025-06-01T22:06:03.025431", - "price": 2643 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.030014, - 51.500404 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/85902027", - "info": { - "identifier": 85902027, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/85902027", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Mantlestates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/24k/23909/85902027/23909_mantlestates_895787184_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "15/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.053700", - "last_seen": "2025-06-01T22:05:45.890246", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129173, - 51.648834 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 76.02, - "qmprice": 51.3, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/85970820", - "info": { - "identifier": 85970820, - "sqm_ocr": 76.02, - "price": 3900.0, - "price_per_sqm": 51.302288871349646, - "url": "https://www.rightmove.co.uk/properties/85970820", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/137k/136148/85970820/136148_2511222_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.954174", - "last_seen": "2025-06-01T22:06:12.251118", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130297, - 51.481964 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/86074668", - "info": { - "identifier": 86074668, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/86074668", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Yours Link Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257522/86074668/257522_53Waterside_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "05/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.789133", - "last_seen": "2025-06-01T22:06:02.354668", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03663, - 51.50061 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.53, - "qmprice": 47.31, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/86136843", - "info": { - "identifier": 86136843, - "sqm_ocr": 65.53, - "price": 3100.0, - "price_per_sqm": 47.30657714024111, - "url": "https://www.rightmove.co.uk/properties/86136843", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Share of Freehold", - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Accommodate Management Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55623/86136843/55623_Santos_Road_55_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.903470", - "last_seen": "2025-06-01T22:06:13.666037", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.20127, - 51.45845 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.0, - "qmprice": 23.26, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/86622828", - "info": { - "identifier": 86622828, - "sqm_ocr": 86.0, - "price": 2000.0, - "price_per_sqm": 23.25581395348837, - "url": "https://www.rightmove.co.uk/properties/86622828", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Carter & Willow", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/60k/59646/86622828/59646_CW0633_IMG_12_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.024281", - "last_seen": "2025-06-01T22:05:38.327687", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.105, - 51.53672 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 39.0, - "qmprice": 53.85, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/86776491", - "info": { - "identifier": 86776491, - "sqm_ocr": 39.0, - "price": 2100.0, - "price_per_sqm": 53.84615384615385, - "url": "https://www.rightmove.co.uk/properties/86776491", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269888/86776491/269888_NEW170240_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "14/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.825906", - "last_seen": "2025-06-01T22:06:01.000175", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.038586, - 51.47802 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/86833986", - "info": { - "identifier": 86833986, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/86833986", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Short Lets", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/236k/235637/86833986/235637_JDW-SL-0002463_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.766977", - "last_seen": "2025-06-01T22:06:13.801828", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.22018, - 51.43953 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 134.6, - "qmprice": 23.03, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/86888307", - "info": { - "identifier": 86888307, - "sqm_ocr": 134.6, - "price": 3100.0, - "price_per_sqm": 23.031203566121842, - "url": "https://www.rightmove.co.uk/properties/86888307", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "iMove Property", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80566/86888307/80566_1455_IMG_26_0001_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.921755", - "last_seen": "2025-06-01T22:06:00.749328", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067226, - 51.42526 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/86893905", - "info": { - "identifier": 86893905, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/86893905", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "STONEBANKS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272417/86893905/272417_33162199_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.203841", - "last_seen": "2025-06-01T22:05:42.431188", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.137647, - 51.53765 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/86990466", - "info": { - "identifier": 86990466, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/86990466", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Waterfronts", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48795/86990466/48795_28131256_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.162750", - "last_seen": "2025-06-01T22:06:10.010975", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.067152, - 51.504887 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3467.0, - "url": "https://www.rightmove.co.uk/properties/87011610", - "info": { - "identifier": 87011610, - "sqm_ocr": null, - "price": 3467.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87011610", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Knight Frank - Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.273242", - "last_seen": "2025-06-01T22:06:14.635476", - "price": 3466 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.179918, - 51.519684 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/87037164", - "info": { - "identifier": 87037164, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87037164", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Mercier Gray", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/262k/261779/87037164/261779_MERCI_000318_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.964118", - "last_seen": "2025-06-01T22:06:16.038488", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.16784, - 51.529724 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3119.0, - "url": "https://www.rightmove.co.uk/properties/87039129", - "info": { - "identifier": 87039129, - "sqm_ocr": null, - "price": 3119.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87039129", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Wembley Park Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80783/87039129/80783_2535363_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.704608", - "last_seen": "2025-06-01T22:05:40.263856", - "price": 3119.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.276363, - 51.558353 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 154.12, - "qmprice": 25.95, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/87056178", - "info": { - "identifier": 87056178, - "sqm_ocr": 154.12, - "price": 4000.0, - "price_per_sqm": 25.95380223202699, - "url": "https://www.rightmove.co.uk/properties/87056178", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44537/87056178/44537_TOL180118_L_IMG_38_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.259915", - "last_seen": "2025-06-01T22:06:06.105250", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.059186, - 51.494316 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.1, - "qmprice": 61.37, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/87062724", - "info": { - "identifier": 87062724, - "sqm_ocr": 61.1, - "price": 3750.0, - "price_per_sqm": 61.37479541734861, - "url": "https://www.rightmove.co.uk/properties/87062724", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Parkheath", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72719/87062724/72719_33617342_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.510297", - "last_seen": "2025-06-01T22:05:42.915012", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170847, - 51.541397 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 50.8, - "qmprice": 61.85, - "rooms": 2, - "total_price": 3142.0, - "url": "https://www.rightmove.co.uk/properties/87067212", - "info": { - "identifier": 87067212, - "sqm_ocr": 50.8, - "price": 3142.0, - "price_per_sqm": 61.85039370078741, - "url": "https://www.rightmove.co.uk/properties/87067212", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22353/87067212/22353_NHL220284_L_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.266555", - "last_seen": "2025-06-01T22:05:58.333688", - "price": 3141 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.204551, - 51.516884 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 92.9, - "qmprice": 37.67, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/87067308", - "info": { - "identifier": 87067308, - "sqm_ocr": 92.9, - "price": 3500.0, - "price_per_sqm": 37.67491926803014, - "url": "https://www.rightmove.co.uk/properties/87067308", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Imperial Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85765/87067308/85765_Z631b_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.746399", - "last_seen": "2025-06-01T22:05:48.857999", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18202, - 51.47345 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/87069192", - "info": { - "identifier": 87069192, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87069192", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Waterfronts", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48795/87069192/48795_28612252_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.132385", - "last_seen": "2025-06-01T22:06:11.156508", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.001761, - 51.50979 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/87071460", - "info": { - "identifier": 87071460, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87071460", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Hamptons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/128k/127549/87071460/127549_P294117_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.659131", - "last_seen": "2025-06-01T22:06:14.183571", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19037, - 51.44057 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/87075144", - "info": { - "identifier": 87075144, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87075144", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 17, - "status": null, - "last_seen": 0, - "agency": "Hiltons Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/264k/263948/87075144/263948_102736003739_IMG_05_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.997725", - "last_seen": "2025-06-01T22:05:52.241608", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.40897, - 51.45634 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.4, - "qmprice": 34.88, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/87079554", - "info": { - "identifier": 87079554, - "sqm_ocr": 77.4, - "price": 2700.0, - "price_per_sqm": 34.883720930232556, - "url": "https://www.rightmove.co.uk/properties/87079554", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "Daniel Ford", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/229k/228512/87079554/228512_33194768_IMG_04_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.033005", - "last_seen": "2025-06-01T22:05:49.415665", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.231759, - 51.50508 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3650.0, - "url": "https://www.rightmove.co.uk/properties/87082326", - "info": { - "identifier": 87082326, - "sqm_ocr": null, - "price": 3650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87082326", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 9, - "status": null, - "last_seen": 0, - "agency": "BLUEGROUND FURNISHED APARTMENTS UK LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78429/87082326/78429_LON-84_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.487789", - "last_seen": "2025-06-01T22:05:43.294638", - "price": 3650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10802, - 51.51473 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.38, - "qmprice": 52.28, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/87082707", - "info": { - "identifier": 87082707, - "sqm_ocr": 57.38, - "price": 3000.0, - "price_per_sqm": 52.283025444405716, - "url": "https://www.rightmove.co.uk/properties/87082707", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71401/87082707/71401_1310058_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.053198", - "last_seen": "2025-06-01T22:05:40.829524", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221086, - 51.552544 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.6, - "qmprice": 24.85, - "rooms": 4, - "total_price": 2599.0, - "url": "https://www.rightmove.co.uk/properties/87086445", - "info": { - "identifier": 87086445, - "sqm_ocr": 104.6, - "price": 2599.0, - "price_per_sqm": 24.847036328871894, - "url": "https://www.rightmove.co.uk/properties/87086445", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 58, - "status": null, - "last_seen": 0, - "agency": "View Properties", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96736/87086445/96736_PRA14919_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.638232", - "last_seen": "2025-06-01T22:06:05.206179", - "price": 2599.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.084734, - 51.48586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.6, - "qmprice": 38.46, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/87086571", - "info": { - "identifier": 87086571, - "sqm_ocr": 67.6, - "price": 2600.0, - "price_per_sqm": 38.46153846153847, - "url": "https://www.rightmove.co.uk/properties/87086571", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68504/87086571/68504_HKR230003_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "06/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.333983", - "last_seen": "2025-06-01T22:05:47.519780", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.077454, - 51.536713 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.6, - "qmprice": 37.69, - "rooms": 2, - "total_price": 2397.0, - "url": "https://www.rightmove.co.uk/properties/87087936", - "info": { - "identifier": 87087936, - "sqm_ocr": 63.6, - "price": 2397.0, - "price_per_sqm": 37.68867924528302, - "url": "https://www.rightmove.co.uk/properties/87087936", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55101/87087936/55101_1319519_IMG_00_0011_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.983694", - "last_seen": "2025-06-01T22:06:06.502113", - "price": 2397.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.094928, - 51.486946 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.8, - "qmprice": 34.9, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/87088038", - "info": { - "identifier": 87088038, - "sqm_ocr": 78.8, - "price": 2750.0, - "price_per_sqm": 34.89847715736041, - "url": "https://www.rightmove.co.uk/properties/87088038", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/254k/253853/87088038/253853_1319553_IMG_00_0002_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.214307", - "last_seen": "2025-06-01T22:06:07.161010", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.099715, - 51.4927 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 80.4, - "qmprice": 34.2, - "rooms": 3, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/87088443", - "info": { - "identifier": 87088443, - "sqm_ocr": 80.4, - "price": 2750.0, - "price_per_sqm": 34.20398009950249, - "url": "https://www.rightmove.co.uk/properties/87088443", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": "removed", - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15975/87088443/15975_1319585_IMG_00_0008_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [] - } - }, - "geometry": { - "coordinates": [ - -0.191329, - 51.41796 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 39.19, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/87088710", - "info": { - "identifier": 87088710, - "sqm_ocr": 74.0, - "price": 2900.0, - "price_per_sqm": 39.189189189189186, - "url": "https://www.rightmove.co.uk/properties/87088710", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/123k/122989/87088710/122989_YLR160094_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.278951", - "last_seen": "2025-06-01T22:06:04.255821", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.295865, - 51.45591 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.16, - "qmprice": 54.99, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/87088782", - "info": { - "identifier": 87088782, - "sqm_ocr": 58.16, - "price": 3198.0, - "price_per_sqm": 54.98624484181568, - "url": "https://www.rightmove.co.uk/properties/87088782", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/158k/157817/87088782/157817_2698725_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.798182", - "last_seen": "2025-06-01T22:06:10.034481", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01879, - 51.50082 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/87089079", - "info": { - "identifier": 87089079, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87089079", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/87089079/96668_242481320032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.352411", - "last_seen": "2025-06-01T22:05:52.138662", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.346786, - 51.458004 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/87092619", - "info": { - "identifier": 87092619, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87092619", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Freder", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/270k/269027/87092619/269027_RL0458_IMG_01_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.689762", - "last_seen": "2025-06-01T22:06:02.644619", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.005738, - 51.5129 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/87093054", - "info": { - "identifier": 87093054, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87093054", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/87093054/96668_238367211022025_IMG_17_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.614939", - "last_seen": "2025-06-01T22:05:49.196997", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.225808, - 51.506824 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.64, - "qmprice": 45.96, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/87093207", - "info": { - "identifier": 87093207, - "sqm_ocr": 63.64, - "price": 2925.0, - "price_per_sqm": 45.96165933375236, - "url": "https://www.rightmove.co.uk/properties/87093207", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Berkshire Hathaway HomeServices London", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36213/87093207/36213_BDC220035_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:08.112210", - "last_seen": "2025-06-01T22:06:15.246235", - "price": 2925 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170242, - 51.513783 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/87100464", - "info": { - "identifier": 87100464, - "sqm_ocr": null, - "price": 2250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87100464", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84800/87100464/84800_33756362_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.722805", - "last_seen": "2025-06-01T22:05:58.901090", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.282424, - 51.408173 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.5, - "qmprice": 32.73, - "rooms": 2, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/87100506", - "info": { - "identifier": 87100506, - "sqm_ocr": 82.5, - "price": 2700.0, - "price_per_sqm": 32.72727272727273, - "url": "https://www.rightmove.co.uk/properties/87100506", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257069/87100506/257069_33756371_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.652024", - "last_seen": "2025-06-01T22:05:46.572624", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013504, - 51.482777 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 108.32, - "qmprice": 36.93, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/87100629", - "info": { - "identifier": 87100629, - "sqm_ocr": 108.32, - "price": 4000.0, - "price_per_sqm": 36.92762186115215, - "url": "https://www.rightmove.co.uk/properties/87100629", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/69k/68507/87100629/68507_CLV223262_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.816414", - "last_seen": "2025-06-01T22:06:09.099258", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022668, - 51.540497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/87101118", - "info": { - "identifier": 87101118, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87101118", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Urban Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69212/87101118/69212_0048684_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.666405", - "last_seen": "2025-06-01T22:06:14.114346", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24103, - 51.44423 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/87101181", - "info": { - "identifier": 87101181, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87101181", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Urban Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69212/87101181/69212_0048683_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.392068", - "last_seen": "2025-06-01T20:19:57.418330", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.05216, - 51.50671 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.0, - "qmprice": 33.9, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/87101253", - "info": { - "identifier": 87101253, - "sqm_ocr": 59.0, - "price": 2000.0, - "price_per_sqm": 33.898305084745765, - "url": "https://www.rightmove.co.uk/properties/87101253", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hello Neighbour", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/222k/221711/87101253/221711_1647_EAF_113847_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.248079", - "last_seen": "2025-06-01T22:05:46.764830", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.023687, - 51.48497 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/87101406", - "info": { - "identifier": 87101406, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87101406", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Galaxy Real Estate", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/220k/219908/87101406/219908_2459_IMG_00_0000_max_656x437.png", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.870842", - "last_seen": "2025-06-01T22:05:52.153756", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.375162, - 51.46569 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/87103584", - "info": { - "identifier": 87103584, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87103584", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Franklyn James", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/10k/9158/87103584/9158_33756552_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.980616", - "last_seen": "2025-06-01T22:06:08.903987", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.034185, - 51.51274 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/87103965", - "info": { - "identifier": 87103965, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87103965", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/215k/214793/87103965/214793_P64947_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.219599", - "last_seen": "2025-06-01T22:06:11.384593", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.01476, - 51.51507 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/87104157", - "info": { - "identifier": 87104157, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87104157", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/258k/257069/87104157/257069_33756595_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.853668", - "last_seen": "2025-06-01T22:06:00.796002", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.035164, - 51.487606 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 60.0, - "qmprice": 44.13, - "rooms": 2, - "total_price": 2648.0, - "url": "https://www.rightmove.co.uk/properties/87104319", - "info": { - "identifier": 87104319, - "sqm_ocr": 60.0, - "price": 2648.0, - "price_per_sqm": 44.13333333333333, - "url": "https://www.rightmove.co.uk/properties/87104319", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/40k/39741/87104319/39741_33756605_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.717103", - "last_seen": "2025-06-01T22:06:15.283631", - "price": 2647 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.192676, - 51.523895 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/87105000", - "info": { - "identifier": 87105000, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87105000", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 38, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/87105000/96668_242302919032025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:09.414528", - "last_seen": "2025-06-01T22:06:09.414528", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029776, - 51.51816 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/87107469", - "info": { - "identifier": 87107469, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87107469", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "James Kei London", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/80k/79893/87107469/79893_RL0214_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.983289", - "last_seen": "2025-06-01T22:05:53.742796", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133568, - 51.56825 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/87110667", - "info": { - "identifier": 87110667, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87110667", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/87110667/96668_72312111022020_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.088504", - "last_seen": "2025-06-01T20:19:55.831541", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015802, - 51.486256 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.4, - "qmprice": 40.06, - "rooms": 2, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/87112809", - "info": { - "identifier": 87112809, - "sqm_ocr": 72.4, - "price": 2900.0, - "price_per_sqm": 40.055248618784525, - "url": "https://www.rightmove.co.uk/properties/87112809", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/231k/230516/87112809/230516_KEL240346_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.303462", - "last_seen": "2025-06-01T22:06:06.271657", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090535, - 51.500847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.16, - "qmprice": 30.23, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/87114072", - "info": { - "identifier": 87114072, - "sqm_ocr": 66.16, - "price": 2000.0, - "price_per_sqm": 30.22974607013301, - "url": "https://www.rightmove.co.uk/properties/87114072", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 12, - "status": null, - "last_seen": 0, - "agency": "Alliance London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/78k/77148/87114072/77148_2002142_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.281758", - "last_seen": "2025-06-01T22:05:51.053732", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.185367, - 51.5764 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 86.9, - "qmprice": 32.91, - "rooms": 2, - "total_price": 2860.0, - "url": "https://www.rightmove.co.uk/properties/87115233", - "info": { - "identifier": 87115233, - "sqm_ocr": 86.9, - "price": 2860.0, - "price_per_sqm": 32.91139240506329, - "url": "https://www.rightmove.co.uk/properties/87115233", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JLL", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/213k/212327/87115233/212327_P159688_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.513676", - "last_seen": "2025-06-01T22:06:10.218598", - "price": 2860 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.0135, - 51.49761 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 100.33, - "qmprice": 39.87, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/87116175", - "info": { - "identifier": 87116175, - "sqm_ocr": 100.33, - "price": 4000.0, - "price_per_sqm": 39.86843416724808, - "url": "https://www.rightmove.co.uk/properties/87116175", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/52k/51295/87116175/51295_HAL160366_L_IMG_22_0000_max_656x437.jpeg", - "let_date_available": "25/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.444828", - "last_seen": "2025-06-01T22:05:42.486098", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175456, - 51.547672 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.35, - "qmprice": 26.47, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/87116919", - "info": { - "identifier": 87116919, - "sqm_ocr": 79.35, - "price": 2100.0, - "price_per_sqm": 26.465028355387524, - "url": "https://www.rightmove.co.uk/properties/87116919", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/279k/278060/87116919/278060_HEN190201_L_IMG_06_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.185061", - "last_seen": "2025-06-01T22:05:38.776775", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.242756, - 51.596466 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/87117813", - "info": { - "identifier": 87117813, - "sqm_ocr": null, - "price": 3600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87117813", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "SJW property management limited", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/233k/232853/87117813/232853_f9ab0bb6-03ab-409d-b34d-f15dbf451326_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.754779", - "last_seen": "2025-06-01T22:05:59.718375", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.125093, - 51.482586 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/87117879", - "info": { - "identifier": 87117879, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87117879", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 69, - "status": null, - "last_seen": 0, - "agency": "Japan Letting Agency", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/259k/258848/87117879/258848_33761386_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.348308", - "last_seen": "2025-06-01T22:05:45.044421", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.266427, - 51.507923 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.4, - "qmprice": 53.13, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/87119505", - "info": { - "identifier": 87119505, - "sqm_ocr": 73.4, - "price": 3900.0, - "price_per_sqm": 53.13351498637602, - "url": "https://www.rightmove.co.uk/properties/87119505", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/87119505/15957_1319886_IMG_02_0006_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.336317", - "last_seen": "2025-06-01T22:05:42.417218", - "price": 3900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.195962, - 51.544518 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.7, - "qmprice": 30.44, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/87120498", - "info": { - "identifier": 87120498, - "sqm_ocr": 65.7, - "price": 2000.0, - "price_per_sqm": 30.441400304414003, - "url": "https://www.rightmove.co.uk/properties/87120498", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71419/87120498/71419_1319903_IMG_02_0009_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.679483", - "last_seen": "2025-06-01T22:05:59.319207", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.132083, - 51.426357 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 122.9, - "qmprice": 23.19, - "rooms": 2, - "total_price": 2850.0, - "url": "https://www.rightmove.co.uk/properties/87120774", - "info": { - "identifier": 87120774, - "sqm_ocr": 122.9, - "price": 2850.0, - "price_per_sqm": 23.189585028478437, - "url": "https://www.rightmove.co.uk/properties/87120774", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84073/87120774/84073_1319858_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.388871", - "last_seen": "2025-06-01T22:05:53.140998", - "price": 2850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12176, - 51.559772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2799.0, - "url": "https://www.rightmove.co.uk/properties/87121485", - "info": { - "identifier": 87121485, - "sqm_ocr": null, - "price": 2799.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87121485", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "1 Ability Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/182k/181787/87121485/181787_181787_1039_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.268980", - "last_seen": "2025-06-01T22:05:43.965728", - "price": 2799 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.33775, - 51.50706 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 56.29, - "qmprice": 39.97, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/87122481", - "info": { - "identifier": 87122481, - "sqm_ocr": 56.29, - "price": 2250.0, - "price_per_sqm": 39.97157576834251, - "url": "https://www.rightmove.co.uk/properties/87122481", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/280k/279227/87122481/279227_WLS250158_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.143762", - "last_seen": "2025-06-01T22:06:13.773728", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186387, - 51.436264 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/87123747", - "info": { - "identifier": 87123747, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87123747", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 46, - "status": null, - "last_seen": 0, - "agency": "One London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/257k/256565/87123747/256565_BRR026_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.308891", - "last_seen": "2025-06-01T22:05:46.499552", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.03044, - 51.45863 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.0, - "qmprice": 52.7, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/87124098", - "info": { - "identifier": 87124098, - "sqm_ocr": 74.0, - "price": 3900.0, - "price_per_sqm": 52.7027027027027, - "url": "https://www.rightmove.co.uk/properties/87124098", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Battersea & Nine Elms Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143171/87124098/143171_33761735_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.086948", - "last_seen": "2025-06-01T22:06:13.737648", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.130355, - 51.48196 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 29.89, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/87124734", - "info": { - "identifier": 87124734, - "sqm_ocr": 87.0, - "price": 2600.0, - "price_per_sqm": 29.885057471264368, - "url": "https://www.rightmove.co.uk/properties/87124734", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/37k/36789/87124734/36789_NEL240056_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:03.902122", - "last_seen": "2025-06-01T22:06:09.101423", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006845, - 51.508835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/87125814", - "info": { - "identifier": 87125814, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87125814", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Wigmore Jones", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92908/87125814/92908_33761831_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.089329", - "last_seen": "2025-06-01T22:06:13.839277", - "price": 3250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.146208, - 51.479145 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.8, - "qmprice": 31.84, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/87128085", - "info": { - "identifier": 87128085, - "sqm_ocr": 84.8, - "price": 2700.0, - "price_per_sqm": 31.839622641509436, - "url": "https://www.rightmove.co.uk/properties/87128085", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52518/87128085/52518_CWL250249_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:58.991422", - "last_seen": "2025-06-01T22:06:09.535594", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.017486, - 51.48985 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 42.5, - "qmprice": 66.28, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/87128496", - "info": { - "identifier": 87128496, - "sqm_ocr": 42.5, - "price": 2817.0, - "price_per_sqm": 66.28235294117647, - "url": "https://www.rightmove.co.uk/properties/87128496", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64127/87128496/64127_1319521_IMG_01_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.008815", - "last_seen": "2025-06-01T22:05:42.382714", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129675, - 51.52964 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.8, - "qmprice": 43.47, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/87128511", - "info": { - "identifier": 87128511, - "sqm_ocr": 64.8, - "price": 2817.0, - "price_per_sqm": 43.47222222222222, - "url": "https://www.rightmove.co.uk/properties/87128511", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64127/87128511/64127_1319020_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.413073", - "last_seen": "2025-06-01T22:05:42.594743", - "price": 2817.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.129675, - 51.52964 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.3, - "qmprice": 40.98, - "rooms": 2, - "total_price": 2184.0, - "url": "https://www.rightmove.co.uk/properties/87128652", - "info": { - "identifier": 87128652, - "sqm_ocr": 53.3, - "price": 2184.0, - "price_per_sqm": 40.97560975609756, - "url": "https://www.rightmove.co.uk/properties/87128652", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71137/87128652/71137_33762026_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.225520", - "last_seen": "2025-06-01T22:06:06.149091", - "price": 2184 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.105815, - 51.49822 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 114.5, - "qmprice": 27.95, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/87129171", - "info": { - "identifier": 87129171, - "sqm_ocr": 114.5, - "price": 3200.0, - "price_per_sqm": 27.94759825327511, - "url": "https://www.rightmove.co.uk/properties/87129171", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80281/87129171/80281_1319936_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.566635", - "last_seen": "2025-06-01T22:06:07.353684", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.006845, - 51.53471 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 130.0, - "qmprice": 27.69, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/87129270", - "info": { - "identifier": 87129270, - "sqm_ocr": 130.0, - "price": 3600.0, - "price_per_sqm": 27.692307692307693, - "url": "https://www.rightmove.co.uk/properties/87129270", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84818/87129270/84818_33762073_IMG_10_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.475342", - "last_seen": "2025-06-01T22:06:04.785379", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.337305, - 51.444843 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.9, - "qmprice": 36.69, - "rooms": 2, - "total_price": 2675.0, - "url": "https://www.rightmove.co.uk/properties/87129762", - "info": { - "identifier": 87129762, - "sqm_ocr": 72.9, - "price": 2675.0, - "price_per_sqm": 36.69410150891632, - "url": "https://www.rightmove.co.uk/properties/87129762", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84803/87129762/84803_33762132_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.747614", - "last_seen": "2025-06-01T22:06:13.312133", - "price": 2675.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.239378, - 51.458096 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/87131964", - "info": { - "identifier": 87131964, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87131964", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11495/87131964/11495_0435_FJL043502236_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.718040", - "last_seen": "2025-06-01T22:06:08.337112", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015651, - 51.51312 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2450.0, - "url": "https://www.rightmove.co.uk/properties/87132336", - "info": { - "identifier": 87132336, - "sqm_ocr": null, - "price": 2450.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87132336", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 69, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/131k/130954/87132336/130954_CW4112B2403_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.335298", - "last_seen": "2025-06-01T22:06:00.072459", - "price": 2450.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.13183, - 51.45081 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.8, - "qmprice": 35.84, - "rooms": 2, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/87132696", - "info": { - "identifier": 87132696, - "sqm_ocr": 55.8, - "price": 2000.0, - "price_per_sqm": 35.842293906810035, - "url": "https://www.rightmove.co.uk/properties/87132696", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/101k/100624/87132696/100624_33762336_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.144672", - "last_seen": "2025-06-01T22:05:59.605515", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.121554, - 51.437397 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/87133935", - "info": { - "identifier": 87133935, - "sqm_ocr": null, - "price": 2300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87133935", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 69, - "status": null, - "last_seen": 0, - "agency": "Net Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43665/87133935/43665_101793001081_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.213042", - "last_seen": "2025-06-01T22:06:03.334426", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.04874, - 51.52019 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/87137100", - "info": { - "identifier": 87137100, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87137100", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.993758", - "last_seen": "2025-06-01T22:05:39.180902", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.279318, - 51.616547 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.05, - "qmprice": 48.16, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/87137412", - "info": { - "identifier": 87137412, - "sqm_ocr": 83.05, - "price": 4000.0, - "price_per_sqm": 48.1637567730283, - "url": "https://www.rightmove.co.uk/properties/87137412", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 8, - "status": null, - "last_seen": 0, - "agency": "Jonathan Arron Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/70k/69315/87137412/69315_JOW240151_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.108069", - "last_seen": "2025-06-01T22:05:39.039501", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.197246, - 51.564907 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.05, - "qmprice": 31.59, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/87137625", - "info": { - "identifier": 87137625, - "sqm_ocr": 87.05, - "price": 2750.0, - "price_per_sqm": 31.591039632395177, - "url": "https://www.rightmove.co.uk/properties/87137625", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/27k/26207/87137625/26207_IUL240117_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.952897", - "last_seen": "2025-06-01T22:05:47.777834", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055469, - 51.54607 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 70.0, - "qmprice": 30.71, - "rooms": 3, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/87137892", - "info": { - "identifier": 87137892, - "sqm_ocr": 70.0, - "price": 2150.0, - "price_per_sqm": 30.714285714285715, - "url": "https://www.rightmove.co.uk/properties/87137892", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Oakhill", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/89k/88216/87137892/88216_84e9ccfa-d757-4f59-819b-6637b91ffc7c_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.275880", - "last_seen": "2025-06-01T22:05:52.066016", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.343146, - 51.480453 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/87138168", - "info": { - "identifier": 87138168, - "sqm_ocr": null, - "price": 3150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87138168", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Flagstones Property Group", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/253k/252785/87138168/252785_33852254_IMG_13_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.623925", - "last_seen": "2025-06-01T22:05:50.119469", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.055575, - 51.588608 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/87138276", - "info": { - "identifier": 87138276, - "sqm_ocr": null, - "price": 3200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87138276", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "JOHNS&CO", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/234k/233849/87138276/233849_2656981_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.794272", - "last_seen": "2025-06-01T22:05:58.743085", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.30351, - 51.40846 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 116.4, - "qmprice": 30.07, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/87138732", - "info": { - "identifier": 87138732, - "sqm_ocr": 116.4, - "price": 3500.0, - "price_per_sqm": 30.06872852233677, - "url": "https://www.rightmove.co.uk/properties/87138732", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72056/87138732/72056_33852287_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.188303", - "last_seen": "2025-06-01T22:06:13.698864", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.166746, - 51.430912 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.3, - "qmprice": 65.54, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/87138888", - "info": { - "identifier": 87138888, - "sqm_ocr": 47.3, - "price": 3100.0, - "price_per_sqm": 65.53911205073996, - "url": "https://www.rightmove.co.uk/properties/87138888", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Stirling Ackroyd Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12685/87138888/12685_CRL160082_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.701858", - "last_seen": "2025-06-01T22:05:43.354366", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.090814, - 51.3847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 95.3, - "qmprice": 33.58, - "rooms": 3, - "total_price": 3200.0, - "url": "https://www.rightmove.co.uk/properties/87139221", - "info": { - "identifier": 87139221, - "sqm_ocr": 95.3, - "price": 3200.0, - "price_per_sqm": 33.5781741867786, - "url": "https://www.rightmove.co.uk/properties/87139221", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/8k/7189/87139221/7189_31925400_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.124338", - "last_seen": "2025-06-01T22:06:00.713624", - "price": 3200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.046323, - 51.438633 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.87, - "qmprice": 41.73, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/87139851", - "info": { - "identifier": 87139851, - "sqm_ocr": 83.87, - "price": 3500.0, - "price_per_sqm": 41.7312507452009, - "url": "https://www.rightmove.co.uk/properties/87139851", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves- Nine Elms", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/197k/196106/87139851/196106_000015207d_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.121732", - "last_seen": "2025-06-01T22:05:59.802574", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12827, - 51.48142 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.5, - "qmprice": 41.92, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/87140358", - "info": { - "identifier": 87140358, - "sqm_ocr": 83.5, - "price": 3500.0, - "price_per_sqm": 41.91616766467066, - "url": "https://www.rightmove.co.uk/properties/87140358", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Austin Homes London", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105559/87140358/105559_53e33119-95ff-4af1-aade-1d543688e4f3_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.884707", - "last_seen": "2025-06-01T22:05:47.371809", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.089644, - 51.52798 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2950.0, - "url": "https://www.rightmove.co.uk/properties/87140367", - "info": { - "identifier": 87140367, - "sqm_ocr": null, - "price": 2950.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87140367", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 31, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/87140367/96668_244819010042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.714111", - "last_seen": "2025-06-01T22:06:11.671047", - "price": 2950.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.033033, - 51.57 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/87140475", - "info": { - "identifier": 87140475, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87140475", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 19, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/79k/78395/87140475/78395_33852394_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.522695", - "last_seen": "2025-06-01T22:06:07.943077", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.052492, - 51.516632 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 54.2, - "qmprice": 40.54, - "rooms": 2, - "total_price": 2197.0, - "url": "https://www.rightmove.co.uk/properties/87141792", - "info": { - "identifier": 87141792, - "sqm_ocr": 54.2, - "price": 2197.0, - "price_per_sqm": 40.535055350553506, - "url": "https://www.rightmove.co.uk/properties/87141792", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Fletchers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84866/87141792/84866_33852470_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.989940", - "last_seen": "2025-06-01T22:05:49.448272", - "price": 2197 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.245182, - 51.492336 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 109.4, - "qmprice": 31.08, - "rooms": 4, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/87141807", - "info": { - "identifier": 87141807, - "sqm_ocr": 109.4, - "price": 3400.0, - "price_per_sqm": 31.078610603290674, - "url": "https://www.rightmove.co.uk/properties/87141807", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Jacksons Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72056/87141807/72056_33852472_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.860894", - "last_seen": "2025-06-01T22:06:13.480227", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.170438, - 51.43109 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.8, - "qmprice": 30.35, - "rooms": 2, - "total_price": 2999.0, - "url": "https://www.rightmove.co.uk/properties/87142023", - "info": { - "identifier": 87142023, - "sqm_ocr": 98.8, - "price": 2999.0, - "price_per_sqm": 30.35425101214575, - "url": "https://www.rightmove.co.uk/properties/87142023", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Freehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50713/87142023/50713_33852481_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.429453", - "last_seen": "2025-06-01T22:05:58.006834", - "price": 2998 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.218013, - 51.511818 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 102.6, - "qmprice": 30.21, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/87143196", - "info": { - "identifier": 87143196, - "sqm_ocr": 102.6, - "price": 3100.0, - "price_per_sqm": 30.21442495126706, - "url": "https://www.rightmove.co.uk/properties/87143196", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107533/87143196/107533_1324127_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.682237", - "last_seen": "2025-06-01T22:05:46.622036", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02218, - 51.480305 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2000.0, - "url": "https://www.rightmove.co.uk/properties/87144363", - "info": { - "identifier": 87144363, - "sqm_ocr": null, - "price": 2000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87144363", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "KEY HAVEN ESTATES LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/290k/289103/87144363/289103_TW2_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.156300", - "last_seen": "2025-06-01T22:06:04.688238", - "price": 2000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.35786, - 51.45276 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/87145242", - "info": { - "identifier": 87145242, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87145242", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 26, - "status": null, - "last_seen": 0, - "agency": "Rentr", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/261k/260789/87145242/260789_13c46a76-c6ad-47d4-af4f-0813cddaa6ac_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "04/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:59.019450", - "last_seen": "2025-06-01T22:06:08.629306", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.022011, - 51.490734 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2102.0, - "url": "https://www.rightmove.co.uk/properties/87146040", - "info": { - "identifier": 87146040, - "sqm_ocr": null, - "price": 2102.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87146040", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "ea2", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/11k/10387/87146040/10387_33852667_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T20:19:56.854034", - "last_seen": "2025-06-01T22:06:10.508871", - "price": 2101 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.058174, - 51.504917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/87146133", - "info": { - "identifier": 87146133, - "sqm_ocr": null, - "price": 4000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87146133", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/72k/71140/87146133/71140_33852673_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.529502", - "last_seen": "2025-06-01T22:05:42.221153", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.122396, - 51.523445 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 67.8, - "qmprice": 41.3, - "rooms": 2, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/87146226", - "info": { - "identifier": 87146226, - "sqm_ocr": 67.8, - "price": 2800.0, - "price_per_sqm": 41.29793510324484, - "url": "https://www.rightmove.co.uk/properties/87146226", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "B", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/106k/105644/87146226/105644_KCO250671_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.634620", - "last_seen": "2025-06-01T22:06:14.416031", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.184846, - 51.513054 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 72.3, - "qmprice": 29.05, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/87146253", - "info": { - "identifier": 87146253, - "sqm_ocr": 72.3, - "price": 2100.0, - "price_per_sqm": 29.04564315352697, - "url": "https://www.rightmove.co.uk/properties/87146253", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Romans & Partners", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/265k/264404/87146253/264404_RX576961_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.005828", - "last_seen": "2025-06-01T22:06:01.974307", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.078068, - 51.507664 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3449.0, - "url": "https://www.rightmove.co.uk/properties/87146400", - "info": { - "identifier": 87146400, - "sqm_ocr": null, - "price": 3449.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87146400", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55432/87146400/55432_KAV250766_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.853228", - "last_seen": "2025-06-01T22:05:54.228727", - "price": 3449.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112089, - 51.56593 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 87.0, - "qmprice": 34.48, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/87146412", - "info": { - "identifier": 87146412, - "sqm_ocr": 87.0, - "price": 3000.0, - "price_per_sqm": 34.48275862068966, - "url": "https://www.rightmove.co.uk/properties/87146412", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55432/87146412/55432_KAV250771_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.655553", - "last_seen": "2025-06-01T22:05:50.138310", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.112371, - 51.583847 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.1, - "qmprice": 42.98, - "rooms": 3, - "total_price": 3400.0, - "url": "https://www.rightmove.co.uk/properties/87146427", - "info": { - "identifier": 87146427, - "sqm_ocr": 79.1, - "price": 3400.0, - "price_per_sqm": 42.983565107458915, - "url": "https://www.rightmove.co.uk/properties/87146427", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55432/87146427/55432_KAV250780_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.667744", - "last_seen": "2025-06-01T22:05:50.149739", - "price": 3400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.108236, - 51.566975 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 62.8, - "qmprice": 33.44, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/87147642", - "info": { - "identifier": 87147642, - "sqm_ocr": 62.8, - "price": 2100.0, - "price_per_sqm": 33.439490445859875, - "url": "https://www.rightmove.co.uk/properties/87147642", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 30, - "status": null, - "last_seen": 0, - "agency": "John D Wood & Co. Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3720/87147642/3720_RIL230042_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "20/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.256125", - "last_seen": "2025-06-01T22:06:04.609206", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.300784, - 51.461807 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 47.9, - "qmprice": 45.93, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/87147645", - "info": { - "identifier": 87147645, - "sqm_ocr": 47.9, - "price": 2200.0, - "price_per_sqm": 45.92901878914405, - "url": "https://www.rightmove.co.uk/properties/87147645", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Gibbs Gillespie", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/13k/12814/87147645/12814_EAM230195_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:48.156744", - "last_seen": "2025-06-01T22:05:44.755429", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.2967, - 51.5092 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 78.6, - "qmprice": 38.1, - "rooms": 2, - "total_price": 2995.0, - "url": "https://www.rightmove.co.uk/properties/87148167", - "info": { - "identifier": 87148167, - "sqm_ocr": 78.6, - "price": 2995.0, - "price_per_sqm": 38.10432569974555, - "url": "https://www.rightmove.co.uk/properties/87148167", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Snellers", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/108k/107632/87148167/107632_33852796_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.656614", - "last_seen": "2025-06-01T22:06:04.736923", - "price": 2995.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.311741, - 51.454037 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/87148899", - "info": { - "identifier": 87148899, - "sqm_ocr": null, - "price": 2350.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87148899", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84812/87148899/84812_33852841_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.606054", - "last_seen": "2025-06-01T22:05:58.567639", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.277454, - 51.397346 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.3, - "qmprice": 36.9, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/87149109", - "info": { - "identifier": 87149109, - "sqm_ocr": 81.3, - "price": 3000.0, - "price_per_sqm": 36.90036900369004, - "url": "https://www.rightmove.co.uk/properties/87149109", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57904/87149109/57904_KCL251104_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "22/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.323424", - "last_seen": "2025-06-01T22:06:12.229124", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.158924, - 51.43738 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 83.6, - "qmprice": 29.9, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/87149268", - "info": { - "identifier": 87149268, - "sqm_ocr": 83.6, - "price": 2500.0, - "price_per_sqm": 29.904306220095695, - "url": "https://www.rightmove.co.uk/properties/87149268", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 5, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85706/87149268/85706_KDE250903_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.401988", - "last_seen": "2025-06-01T22:05:43.340251", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07071, - 51.414253 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/87149274", - "info": { - "identifier": 87149274, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87149274", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85706/87149274/85706_KDE250924_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.406239", - "last_seen": "2025-06-01T22:05:43.322009", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.051122, - 51.39222 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 94.5, - "qmprice": 30.95, - "rooms": 3, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/87149949", - "info": { - "identifier": 87149949, - "sqm_ocr": 94.5, - "price": 2925.0, - "price_per_sqm": 30.952380952380953, - "url": "https://www.rightmove.co.uk/properties/87149949", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15957/87149949/15957_1320943_IMG_02_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.569887", - "last_seen": "2025-06-01T22:05:42.921368", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.186917, - 51.55186 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.2, - "qmprice": 32.4, - "rooms": 2, - "total_price": 2145.0, - "url": "https://www.rightmove.co.uk/properties/87150075", - "info": { - "identifier": 87150075, - "sqm_ocr": 66.2, - "price": 2145.0, - "price_per_sqm": 32.40181268882175, - "url": "https://www.rightmove.co.uk/properties/87150075", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143039/87150075/143039_CEG240314_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.875668", - "last_seen": "2025-06-01T22:06:00.669047", - "price": 2145 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.013864, - 51.471317 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 128.4, - "qmprice": 19.47, - "rooms": 4, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/87150273", - "info": { - "identifier": 87150273, - "sqm_ocr": 128.4, - "price": 2500.0, - "price_per_sqm": 19.470404984423674, - "url": "https://www.rightmove.co.uk/properties/87150273", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Cockburn Estate Agents", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/125k/124243/87150273/124243_L107977_IMG_01_0000_max_656x437.jpeg", - "let_date_available": "29/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.595490", - "last_seen": "2025-06-01T22:05:47.118621", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.048674, - 51.434315 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 77.2, - "qmprice": 45.34, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/87150447", - "info": { - "identifier": 87150447, - "sqm_ocr": 77.2, - "price": 3500.0, - "price_per_sqm": 45.33678756476684, - "url": "https://www.rightmove.co.uk/properties/87150447", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Martin & Co", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/75k/74524/87150447/74524_100816002583_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.899893", - "last_seen": "2025-06-01T22:05:42.014103", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12672, - 51.52267 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 93.1, - "qmprice": 42.96, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/87150645", - "info": { - "identifier": 87150645, - "sqm_ocr": 93.1, - "price": 4000.0, - "price_per_sqm": 42.964554242749735, - "url": "https://www.rightmove.co.uk/properties/87150645", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 4, - "status": null, - "last_seen": 0, - "agency": "Marsh & Parsons", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/23k/22011/87150645/22011_CCT250878_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.222638", - "last_seen": "2025-06-01T22:05:58.338362", - "price": 3999 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.200282, - 51.4943 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.5, - "qmprice": 44.3, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/87150696", - "info": { - "identifier": 87150696, - "sqm_ocr": 74.5, - "price": 3300.0, - "price_per_sqm": 44.29530201342282, - "url": "https://www.rightmove.co.uk/properties/87150696", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/85k/84803/87150696/84803_33875372_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.580807", - "last_seen": "2025-06-01T22:06:14.034631", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214358, - 51.460064 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 57.9, - "qmprice": 55.23, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/87150849", - "info": { - "identifier": 87150849, - "sqm_ocr": 57.9, - "price": 3198.0, - "price_per_sqm": 55.23316062176166, - "url": "https://www.rightmove.co.uk/properties/87150849", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Dexters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/95k/94643/87150849/94643_33720341_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.967145", - "last_seen": "2025-06-01T22:05:57.667548", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.162533, - 51.487644 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/87151065", - "info": { - "identifier": 87151065, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87151065", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "NEXIS Property", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/273k/272531/87151065/272531_MYR240054_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.883085", - "last_seen": "2025-06-01T22:05:47.365087", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.092298, - 51.57106 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/87151077", - "info": { - "identifier": 87151077, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87151077", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Frank Harris & Co.", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/26k/25214/87151077/25214_33875398_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.688674", - "last_seen": "2025-06-01T22:06:05.386803", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09488, - 51.49797 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.0, - "qmprice": 29.11, - "rooms": 2, - "total_price": 2300.0, - "url": "https://www.rightmove.co.uk/properties/87151239", - "info": { - "identifier": 87151239, - "sqm_ocr": 79.0, - "price": 2300.0, - "price_per_sqm": 29.11392405063291, - "url": "https://www.rightmove.co.uk/properties/87151239", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Robsons", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50427/87151239/50427_2692762_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.764792", - "last_seen": "2025-06-01T22:05:51.262615", - "price": 2300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.43669, - 51.61371 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2650.0, - "url": "https://www.rightmove.co.uk/properties/87151386", - "info": { - "identifier": 87151386, - "sqm_ocr": null, - "price": 2650.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87151386", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Wigmore Jones", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/93k/92908/87151386/92908_33875422_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.724104", - "last_seen": "2025-06-01T22:05:39.826681", - "price": 2650.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.221506, - 51.571545 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/87151812", - "info": { - "identifier": 87151812, - "sqm_ocr": null, - "price": 2750.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87151812", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Lords Associates of London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29226/87151812/29226_12669217_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.587129", - "last_seen": "2025-06-01T22:05:51.352531", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.461567, - 51.522564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/87151818", - "info": { - "identifier": 87151818, - "sqm_ocr": null, - "price": 2800.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87151818", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "Hunters", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/74k/73310/87151818/73310_33875443_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.588699", - "last_seen": "2025-06-01T22:05:51.355826", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.393035, - 51.515327 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.0, - "qmprice": 42.73, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/87151923", - "info": { - "identifier": 87151923, - "sqm_ocr": 55.0, - "price": 2350.0, - "price_per_sqm": 42.72727272727273, - "url": "https://www.rightmove.co.uk/properties/87151923", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Akelius Residential Ltd", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/103k/102505/87151923/102505_40124-6A_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.018198", - "last_seen": "2025-06-01T22:05:59.936236", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.14254, - 51.46348 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 64.0, - "qmprice": 52.34, - "rooms": 2, - "total_price": 3350.0, - "url": "https://www.rightmove.co.uk/properties/87151968", - "info": { - "identifier": 87151968, - "sqm_ocr": 64.0, - "price": 3350.0, - "price_per_sqm": 52.34375, - "url": "https://www.rightmove.co.uk/properties/87151968", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Benham & Reeves - Imperial Wharf", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/86k/85765/87151968/85765_000010485a_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.619274", - "last_seen": "2025-06-01T22:05:49.301683", - "price": 3350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.18202, - 51.47345 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.89, - "qmprice": 57.83, - "rooms": 3, - "total_price": 3695.0, - "url": "https://www.rightmove.co.uk/properties/87152034", - "info": { - "identifier": 87152034, - "sqm_ocr": 63.89, - "price": 3695.0, - "price_per_sqm": 57.83377680388167, - "url": "https://www.rightmove.co.uk/properties/87152034", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Uni Living London", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/250k/249692/87152034/249692_RL4625_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/09/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.170578", - "last_seen": "2025-06-01T22:05:42.587047", - "price": 3695.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.133992, - 51.5331 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.9, - "qmprice": 24.16, - "rooms": 3, - "total_price": 2075.0, - "url": "https://www.rightmove.co.uk/properties/87152133", - "info": { - "identifier": 87152133, - "sqm_ocr": 85.9, - "price": 2075.0, - "price_per_sqm": 24.155995343422582, - "url": "https://www.rightmove.co.uk/properties/87152133", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Proctors", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/9k/8924/87152133/8924_29046904_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.587311", - "last_seen": "2025-06-01T22:05:43.676281", - "price": 2075.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.037864, - 51.3862 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 4, - "total_price": 3402.0, - "url": "https://www.rightmove.co.uk/properties/87152298", - "info": { - "identifier": 87152298, - "sqm_ocr": null, - "price": 3402.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87152298", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "parkinsonfarr", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/30k/29643/87152298/29643_484_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "13/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.664682", - "last_seen": "2025-06-01T22:05:56.260562", - "price": 3401 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23622, - 51.55386 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/87152349", - "info": { - "identifier": 87152349, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87152349", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Three Oaks Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/141k/140444/87152349/140444_EtRo47_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:00.001506", - "last_seen": "2025-06-01T22:06:03.857495", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.0922, - 51.55314 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.7, - "qmprice": 33.75, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/87152712", - "info": { - "identifier": 87152712, - "sqm_ocr": 63.7, - "price": 2150.0, - "price_per_sqm": 33.75196232339089, - "url": "https://www.rightmove.co.uk/properties/87152712", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/73k/72234/87152712/72234_RWL080009_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.989769", - "last_seen": "2025-06-01T22:06:01.883419", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.021575, - 51.50823 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/87152769", - "info": { - "identifier": 87152769, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87152769", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Smooth Move Estates", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52950/87152769/52950_33865502_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.249019", - "last_seen": "2025-06-01T22:05:50.978152", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.251443, - 51.545746 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 55.0, - "qmprice": 41.36, - "rooms": 2, - "total_price": 2275.0, - "url": "https://www.rightmove.co.uk/properties/87152868", - "info": { - "identifier": 87152868, - "sqm_ocr": 55.0, - "price": 2275.0, - "price_per_sqm": 41.36363636363637, - "url": "https://www.rightmove.co.uk/properties/87152868", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Lexadon Property Group", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/81k/80796/87152868/80796_256_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "29/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.723704", - "last_seen": "2025-06-01T22:06:00.074776", - "price": 2275 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12139, - 51.45613 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/87153246", - "info": { - "identifier": 87153246, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87153246", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "AIROPERATE LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/276k/275732/87153246/275732_3-Bed-Apartment_IMG_09_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.857067", - "last_seen": "2025-06-01T22:06:03.110173", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.07266, - 51.50788 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/87153345", - "info": { - "identifier": 87153345, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87153345", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "Bairstow Eves Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/4k/3305/87153345/3305_000766214_IMG_16_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.697871", - "last_seen": "2025-06-01T22:05:43.350101", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09613, - 51.3782 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.89, - "qmprice": 42.11, - "rooms": 2, - "total_price": 2817.0, - "url": "https://www.rightmove.co.uk/properties/87153447", - "info": { - "identifier": 87153447, - "sqm_ocr": 66.89, - "price": 2817.0, - "price_per_sqm": 42.113918373448946, - "url": "https://www.rightmove.co.uk/properties/87153447", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Onslows Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/50k/49389/87153447/49389_ONS1001630_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.555225", - "last_seen": "2025-06-01T22:05:57.773771", - "price": 2816 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.21781, - 51.50835 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.0, - "qmprice": 29.21, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/87153672", - "info": { - "identifier": 87153672, - "sqm_ocr": 89.0, - "price": 2600.0, - "price_per_sqm": 29.213483146067414, - "url": "https://www.rightmove.co.uk/properties/87153672", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Martyn Gerrard", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/14k/13096/87153672/13096_EAL250116_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.767871", - "last_seen": "2025-06-01T22:05:49.962071", - "price": 2600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.161107, - 51.58415 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/87153690", - "info": { - "identifier": 87153690, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87153690", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/87153690/96668_239562822022025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.316499", - "last_seen": "2025-06-01T22:05:47.708745", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.093606, - 51.52979 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 89.18, - "qmprice": 39.84, - "rooms": 2, - "total_price": 3553.0, - "url": "https://www.rightmove.co.uk/properties/87153810", - "info": { - "identifier": 87153810, - "sqm_ocr": 89.18, - "price": 3553.0, - "price_per_sqm": 39.84077147342453, - "url": "https://www.rightmove.co.uk/properties/87153810", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/44k/43310/87153810/43310_CWL160051_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.631867", - "last_seen": "2025-06-01T22:06:08.103048", - "price": 3553.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.021317, - 51.507107 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/87153843", - "info": { - "identifier": 87153843, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87153843", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 20, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/87153843/96668_244715010042025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.204440", - "last_seen": "2025-06-01T22:05:59.007225", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.096331, - 51.44544 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 98.0, - "qmprice": 28.57, - "rooms": 3, - "total_price": 2800.0, - "url": "https://www.rightmove.co.uk/properties/87154011", - "info": { - "identifier": 87154011, - "sqm_ocr": 98.0, - "price": 2800.0, - "price_per_sqm": 28.571428571428573, - "url": "https://www.rightmove.co.uk/properties/87154011", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/88k/87812/87154011/87812_1325898_IMG_02_0005_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.497581", - "last_seen": "2025-06-01T22:05:56.669211", - "price": 2800.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.241021, - 51.577557 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 53.8, - "qmprice": 46.47, - "rooms": 2, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/87154080", - "info": { - "identifier": 87154080, - "sqm_ocr": 53.8, - "price": 2500.0, - "price_per_sqm": 46.46840148698885, - "url": "https://www.rightmove.co.uk/properties/87154080", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/67k/66771/87154080/66771_1325927_IMG_00_0003_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.165723", - "last_seen": "2025-06-01T22:05:58.957565", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.115195, - 51.474976 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2900.0, - "url": "https://www.rightmove.co.uk/properties/87154146", - "info": { - "identifier": 87154146, - "sqm_ocr": null, - "price": 2900.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87154146", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 16, - "status": null, - "last_seen": 0, - "agency": "OpenRent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/97k/96668/87154146/96668_247693608052025_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:05.849373", - "last_seen": "2025-06-01T22:06:11.683247", - "price": 2900.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.029576, - 51.579884 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.83, - "qmprice": 36.66, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/87154170", - "info": { - "identifier": 87154170, - "sqm_ocr": 81.83, - "price": 3000.0, - "price_per_sqm": 36.66137113528046, - "url": "https://www.rightmove.co.uk/properties/87154170", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Hemmingfords", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/202k/201083/87154170/201083_33091618_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.393728", - "last_seen": "2025-06-01T22:05:56.971885", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.081865, - 51.532917 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.3, - "qmprice": 28.76, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/87154236", - "info": { - "identifier": 87154236, - "sqm_ocr": 104.3, - "price": 3000.0, - "price_per_sqm": 28.763183125599234, - "url": "https://www.rightmove.co.uk/properties/87154236", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/87154236/108947_1325934_IMG_00_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.076192", - "last_seen": "2025-06-01T22:05:50.818964", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.335617, - 51.579388 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 104.3, - "qmprice": 38.35, - "rooms": 3, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/87154251", - "info": { - "identifier": 87154251, - "sqm_ocr": 104.3, - "price": 4000.0, - "price_per_sqm": 38.350910834132314, - "url": "https://www.rightmove.co.uk/properties/87154251", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/109k/108947/87154251/108947_1325935_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.083166", - "last_seen": "2025-06-01T22:05:50.823121", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.335617, - 51.579388 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 85.8, - "qmprice": 31.56, - "rooms": 3, - "total_price": 2708.0, - "url": "https://www.rightmove.co.uk/properties/87154332", - "info": { - "identifier": 87154332, - "sqm_ocr": 85.8, - "price": 2708.0, - "price_per_sqm": 31.56177156177156, - "url": "https://www.rightmove.co.uk/properties/87154332", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chase Evans", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/144k/143039/87154332/143039_CED240339_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.279745", - "last_seen": "2025-06-01T22:05:46.690014", - "price": 2708 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.02097, - 51.46008 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.6, - "qmprice": 35.46, - "rooms": 2, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/87154341", - "info": { - "identifier": 87154341, - "sqm_ocr": 84.6, - "price": 3000.0, - "price_per_sqm": 35.46099290780142, - "url": "https://www.rightmove.co.uk/properties/87154341", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Foxtons", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/16k/15945/87154341/15945_1325658_IMG_02_0004_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.712903", - "last_seen": "2025-06-01T22:05:58.064383", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.214264, - 51.50305 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 71.3, - "qmprice": 51.65, - "rooms": 2, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/87154395", - "info": { - "identifier": 87154395, - "sqm_ocr": 71.3, - "price": 3683.0, - "price_per_sqm": 51.65497896213184, - "url": "https://www.rightmove.co.uk/properties/87154395", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "Savills Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/149k/148892/87154395/148892_CLV250508_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.417372", - "last_seen": "2025-06-01T22:06:15.705247", - "price": 3683.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.176154, - 51.523937 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/87154512", - "info": { - "identifier": 87154512, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87154512", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Black Katz", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/33k/32793/87154512/32793_35319_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.557020", - "last_seen": "2025-06-01T22:05:40.711433", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.23441, - 51.56714 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2855.0, - "url": "https://www.rightmove.co.uk/properties/87154983", - "info": { - "identifier": 87154983, - "sqm_ocr": null, - "price": 2855.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87154983", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Home Made", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/157k/156986/87154983/156986_LMK22_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.677003", - "last_seen": "2025-06-01T22:05:40.120939", - "price": 2855.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.27676, - 51.5577 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 79.8, - "qmprice": 45.11, - "rooms": 3, - "total_price": 3600.0, - "url": "https://www.rightmove.co.uk/properties/87155022", - "info": { - "identifier": 87155022, - "sqm_ocr": 79.8, - "price": 3600.0, - "price_per_sqm": 45.11278195488722, - "url": "https://www.rightmove.co.uk/properties/87155022", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Drivers & Norris", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/55k/54616/87155022/54616_DAN190735_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "15/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.544025", - "last_seen": "2025-06-01T22:05:53.957151", - "price": 3600.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.136841, - 51.56098 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.64, - "qmprice": 46.11, - "rooms": 2, - "total_price": 2750.0, - "url": "https://www.rightmove.co.uk/properties/87155106", - "info": { - "identifier": 87155106, - "sqm_ocr": 59.64, - "price": 2750.0, - "price_per_sqm": 46.10999329309188, - "url": "https://www.rightmove.co.uk/properties/87155106", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/58k/57904/87155106/57904_KCL251962_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "07/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.404705", - "last_seen": "2025-06-01T22:06:12.361602", - "price": 2750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.149787, - 51.446537 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.83, - "qmprice": 29.67, - "rooms": 2, - "total_price": 2250.0, - "url": "https://www.rightmove.co.uk/properties/87155124", - "info": { - "identifier": 87155124, - "sqm_ocr": 75.83, - "price": 2250.0, - "price_per_sqm": 29.671633917974418, - "url": "https://www.rightmove.co.uk/properties/87155124", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/87155124/208253_BSL250371_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.542517", - "last_seen": "2025-06-01T22:05:38.469309", - "price": 2250.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.248999, - 51.59549 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3792.0, - "url": "https://www.rightmove.co.uk/properties/87155184", - "info": { - "identifier": 87155184, - "sqm_ocr": null, - "price": 3792.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87155184", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hudsons Property", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/76k/75559/87155184/75559_CHS180040_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "10/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.638822", - "last_seen": "2025-06-01T22:06:14.430065", - "price": 3791 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.127308, - 51.51052 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 84.55, - "qmprice": 44.35, - "rooms": 2, - "total_price": 3750.0, - "url": "https://www.rightmove.co.uk/properties/87155235", - "info": { - "identifier": 87155235, - "sqm_ocr": 84.55, - "price": 3750.0, - "price_per_sqm": 44.352454169130695, - "url": "https://www.rightmove.co.uk/properties/87155235", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Hadleigh Residential", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/68k/67562/87155235/67562_HRE180172_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.259709", - "last_seen": "2025-06-01T22:05:42.324505", - "price": 3750.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.172522, - 51.549377 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/87155328", - "info": { - "identifier": 87155328, - "sqm_ocr": null, - "price": 3500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87155328", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Celestial Globe", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/238k/237452/87155328/237452_xxe_IMG_05_0000_max_656x437.png", - "let_date_available": "12/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.364033", - "last_seen": "2025-06-01T22:06:00.093621", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12579, - 51.4821 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2700.0, - "url": "https://www.rightmove.co.uk/properties/87155472", - "info": { - "identifier": 87155472, - "sqm_ocr": null, - "price": 2700.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87155472", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "CITY REALTOR LIMITED", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/179k/178868/87155472/178868_33917423_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:04.365670", - "last_seen": "2025-06-01T22:06:10.932677", - "price": 2700.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.050223, - 51.521023 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/87155502", - "info": { - "identifier": 87155502, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87155502", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "CBRE Residential, Letting Developments", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/209k/208253/87155502/208253_BSL250373_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.821537", - "last_seen": "2025-06-01T22:06:05.399091", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.102416, - 51.492596 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2050.0, - "url": "https://www.rightmove.co.uk/properties/87155526", - "info": { - "identifier": 87155526, - "sqm_ocr": null, - "price": 2050.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87155526", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "The Property Shop", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/168k/167138/87155526/167138_TPR1001509_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "30/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:44.152707", - "last_seen": "2025-06-01T22:05:38.700425", - "price": 2050.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.24867, - 51.59675 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2925.0, - "url": "https://www.rightmove.co.uk/properties/87155586", - "info": { - "identifier": 87155586, - "sqm_ocr": null, - "price": 2925.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87155586", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Life Residential", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/53k/52518/87155586/52518_CWL200059_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "11/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.640941", - "last_seen": "2025-06-01T22:06:08.804285", - "price": 2925.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.015877, - 51.496655 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 73.8, - "qmprice": 40.65, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/87155640", - "info": { - "identifier": 87155640, - "sqm_ocr": 73.8, - "price": 3000.0, - "price_per_sqm": 40.65040650406504, - "url": "https://www.rightmove.co.uk/properties/87155640", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Kinleigh Folkard & Hayward - Lettings", - "council_tax_band": "TBC", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/83k/82720/87155640/82720_KDU250201_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "03/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:01.421377", - "last_seen": "2025-06-01T22:06:06.038363", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.071171, - 51.490025 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 90.6, - "qmprice": 42.49, - "rooms": 2, - "total_price": 3850.0, - "url": "https://www.rightmove.co.uk/properties/87155838", - "info": { - "identifier": 87155838, - "sqm_ocr": 90.6, - "price": 3850.0, - "price_per_sqm": 42.49448123620309, - "url": "https://www.rightmove.co.uk/properties/87155838", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/64k/63031/87155838/63031_HEA254911_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "21/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.136570", - "last_seen": "2025-06-01T22:05:43.186596", - "price": 3850.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.131181, - 51.547653 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 74.35, - "qmprice": 53.8, - "rooms": 2, - "total_price": 4000.0, - "url": "https://www.rightmove.co.uk/properties/87155856", - "info": { - "identifier": 87155856, - "sqm_ocr": 74.35, - "price": 4000.0, - "price_per_sqm": 53.79959650302623, - "url": "https://www.rightmove.co.uk/properties/87155856", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chestertons", - "council_tax_band": "E", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/136k/135416/87155856/135416_BPL240065_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.717883", - "last_seen": "2025-06-01T22:06:14.198119", - "price": 4000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.177626, - 51.465767 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3000.0, - "url": "https://www.rightmove.co.uk/properties/87155940", - "info": { - "identifier": 87155940, - "sqm_ocr": null, - "price": 3000.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87155940", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "London Capital Homes Ltd", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/192k/191744/87155940/191744_RL0007_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:49.241774", - "last_seen": "2025-06-01T22:05:46.798961", - "price": 3000.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.016929, - 51.478622 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3250.0, - "url": "https://www.rightmove.co.uk/properties/87155949", - "info": { - "identifier": 87155949, - "sqm_ocr": null, - "price": 3250.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87155949", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Barnard Marcus Lettings", - "council_tax_band": "G", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/51k/50969/87155949/50969_P401708314_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "08/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.634418", - "last_seen": "2025-06-01T22:05:42.854601", - "price": 3250 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12416, - 51.51849 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 82.9, - "qmprice": 28.95, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/87274424", - "info": { - "identifier": 87274424, - "sqm_ocr": 82.9, - "price": 2400.0, - "price_per_sqm": 28.950542822677924, - "url": "https://www.rightmove.co.uk/properties/87274424", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 1, - "status": null, - "last_seen": 0, - "agency": "Winkworth", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/35k/34334/87274424/34334_STH180250_L_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "31/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:55.638290", - "last_seen": "2025-06-01T22:05:59.212907", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.123499, - 51.438633 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3100.0, - "url": "https://www.rightmove.co.uk/properties/8743422", - "info": { - "identifier": 8743422, - "sqm_ocr": null, - "price": 3100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/8743422", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Tower Quay Limited", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/56k/55234/8743422/55234_SHRE9_IMG_08_0000_max_656x437.jpeg", - "let_date_available": "12/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:50.417563", - "last_seen": "2025-06-01T22:05:56.788873", - "price": 3100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.07367, - 51.55346 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/87477544", - "info": { - "identifier": 87477544, - "sqm_ocr": null, - "price": 2600.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87477544", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Messila Residential", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.993031", - "last_seen": "2025-06-01T22:06:15.748792", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.178093, - 51.537197 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2150.0, - "url": "https://www.rightmove.co.uk/properties/87487624", - "info": { - "identifier": 87487624, - "sqm_ocr": null, - "price": 2150.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87487624", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Chase Buchanan", - "council_tax_band": "Ask agent", - "photo_thumbnail": null, - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:52.991926", - "last_seen": "2025-06-01T22:05:51.866883", - "price": 2150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.3233, - 51.46909 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3683.0, - "url": "https://www.rightmove.co.uk/properties/87657863", - "info": { - "identifier": 87657863, - "sqm_ocr": null, - "price": 3683.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/87657863", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "AWCHILDS LTD", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/178k/177749/87657863/177749_JIAN_IMG_00_0000_max_656x437.jpg", - "let_date_available": "07/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.607151", - "last_seen": "2025-06-01T22:05:52.904913", - "price": 3683 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10197, - 51.52875 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 147.2, - "qmprice": 14.27, - "rooms": 4, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/88676704", - "info": { - "identifier": 88676704, - "sqm_ocr": 147.2, - "price": 2100.0, - "price_per_sqm": 14.266304347826088, - "url": "https://www.rightmove.co.uk/properties/88676704", - "bedrooms": 4, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/45k/44655/88676704/44655_0478_HRT047800913_IMG_02_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.272354", - "last_seen": "2025-06-01T22:06:01.153872", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.168933, - 51.40564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 66.2, - "qmprice": 41.5, - "rooms": 3, - "total_price": 2747.0, - "url": "https://www.rightmove.co.uk/properties/89107640", - "info": { - "identifier": 89107640, - "sqm_ocr": 66.2, - "price": 2747.0, - "price_per_sqm": 41.49546827794562, - "url": "https://www.rightmove.co.uk/properties/89107640", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/89107640/119137_RailtonRoad3Bed_IMG_09_0000_max_656x437.jpg", - "let_date_available": "30/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:57.425732", - "last_seen": "2025-06-01T22:05:59.452910", - "price": 2747 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.10837, - 51.45772 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/89868754", - "info": { - "identifier": 89868754, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/89868754", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brockenhurst Property Specialists", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58355/89868754/58355_RL0184_IMG_00_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:51.891637", - "last_seen": "2025-06-01T22:05:50.240491", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.354535, - 51.562183 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 59.9, - "qmprice": 65.11, - "rooms": 2, - "total_price": 3900.0, - "url": "https://www.rightmove.co.uk/properties/90040688", - "info": { - "identifier": 90040688, - "sqm_ocr": 59.9, - "price": 3900.0, - "price_per_sqm": 65.1085141903172, - "url": "https://www.rightmove.co.uk/properties/90040688", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "F", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/49k/48606/90040688/48606_MYL200026_L_IMG_11_0000_max_656x437.jpg", - "let_date_available": "01/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.706732", - "last_seen": "2025-06-01T22:06:15.401665", - "price": 3900 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.153063, - 51.51582 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 75.23, - "qmprice": 41.87, - "rooms": 2, - "total_price": 3150.0, - "url": "https://www.rightmove.co.uk/properties/90234166", - "info": { - "identifier": 90234166, - "sqm_ocr": 75.23, - "price": 3150.0, - "price_per_sqm": 41.87159377907749, - "url": "https://www.rightmove.co.uk/properties/90234166", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Felicity J Lord", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11478/90234166/11478_0425_FJL042501732_IMG_03_0002_max_656x437.jpeg", - "let_date_available": "28/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:54.026823", - "last_seen": "2025-06-01T22:05:53.143111", - "price": 3150.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.098872, - 51.52615 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 61.31, - "qmprice": 34.28, - "rooms": 2, - "total_price": 2102.0, - "url": "https://www.rightmove.co.uk/properties/90346304", - "info": { - "identifier": 90346304, - "sqm_ocr": 61.31, - "price": 2102.0, - "price_per_sqm": 34.28478225411841, - "url": "https://www.rightmove.co.uk/properties/90346304", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Whitestone Estates", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/77k/76534/90346304/76534_Parsifal_IMG_02_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:46.512759", - "last_seen": "2025-06-01T22:05:42.134476", - "price": 2101 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.19235, - 51.55454 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.5, - "qmprice": 50.36, - "rooms": 2, - "total_price": 3198.0, - "url": "https://www.rightmove.co.uk/properties/90405923", - "info": { - "identifier": 90405923, - "sqm_ocr": 63.5, - "price": 3198.0, - "price_per_sqm": 50.36220472440945, - "url": "https://www.rightmove.co.uk/properties/90405923", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/90405923/119137_Baldwin_IMG_01_0000_max_656x437.jpg", - "let_date_available": "24/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.352143", - "last_seen": "2025-06-01T22:06:04.998731", - "price": 3198 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09643, - 51.49197 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 65.7, - "qmprice": 39.57, - "rooms": 2, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/90514388", - "info": { - "identifier": 90514388, - "sqm_ocr": 65.7, - "price": 2600.0, - "price_per_sqm": 39.5738203957382, - "url": "https://www.rightmove.co.uk/properties/90514388", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/90514388/119137_cokeStreet_IMG_27_0000_max_656x437.jpg", - "let_date_available": "18/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T22:06:09.806856", - "last_seen": "2025-06-01T22:06:09.806856", - "price": 2600 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.06677, - 51.51558 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 81.9, - "qmprice": 28.69, - "rooms": 2, - "total_price": 2350.0, - "url": "https://www.rightmove.co.uk/properties/93740816", - "info": { - "identifier": 93740816, - "sqm_ocr": 81.9, - "price": 2350.0, - "price_per_sqm": 28.69352869352869, - "url": "https://www.rightmove.co.uk/properties/93740816", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "John Thoma Bespoke Estate Agency", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/122k/121954/93740816/121954_JT2020WWH_IMG_10_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.845838", - "last_seen": "2025-06-01T22:06:03.995753", - "price": 2350.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.06764, - 51.60322 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/94465892", - "info": { - "identifier": 94465892, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/94465892", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "haart", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/12k/11427/94465892/11427_0620_HRT040500693_IMG_01_0002_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.575976", - "last_seen": "2025-06-01T22:06:13.654550", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.1683, - 51.45993 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2400.0, - "url": "https://www.rightmove.co.uk/properties/94609115", - "info": { - "identifier": 94609115, - "sqm_ocr": null, - "price": 2400.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/94609115", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 24, - "status": null, - "last_seen": 0, - "agency": "Lawlors Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/20k/19332/94609115/19332_Bak_IMG_00_0000_max_656x437.JPG", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:59.441770", - "last_seen": "2025-06-01T22:06:02.167716", - "price": 2400.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - 0.01066, - 51.51626 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/96640018", - "info": { - "identifier": 96640018, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/96640018", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 0, - "status": null, - "last_seen": 0, - "agency": "Brockenhurst Property Specialists", - "council_tax_band": "C", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/59k/58355/96640018/58355_RL0013_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.365837", - "last_seen": "2025-06-01T22:05:40.231328", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.299204, - 51.5617 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 2500.0, - "url": "https://www.rightmove.co.uk/properties/96664135", - "info": { - "identifier": 96664135, - "sqm_ocr": null, - "price": 2500.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/96664135", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 3, - "status": null, - "last_seen": 0, - "agency": "Leaders Lettings", - "council_tax_band": "D", - "photo_thumbnail": null, - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:47.565264", - "last_seen": "2025-06-01T22:05:43.351939", - "price": 2500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09666, - 51.4069 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 3, - "total_price": 3649.0, - "url": "https://www.rightmove.co.uk/properties/96664666", - "info": { - "identifier": 96664666, - "sqm_ocr": null, - "price": 3649.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/96664666", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 53, - "status": null, - "last_seen": 0, - "agency": "David Astburys", - "council_tax_band": "D", - "photo_thumbnail": null, - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:53.751832", - "last_seen": "2025-06-01T22:05:55.304181", - "price": 3649.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.11902, - 51.55564 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3163.0, - "url": "https://www.rightmove.co.uk/properties/97120148", - "info": { - "identifier": 97120148, - "sqm_ocr": null, - "price": 3163.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/97120148", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "PVL Properties", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/65k/64830/97120148/64830_ARU-240351_IMG_30_0000_max_656x437.jpeg", - "let_date_available": "04/08/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:07.301051", - "last_seen": "2025-06-01T22:06:16.042784", - "price": 3163 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.175281, - 51.51408 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 63.78, - "qmprice": 40.77, - "rooms": 3, - "total_price": 2600.0, - "url": "https://www.rightmove.co.uk/properties/97354898", - "info": { - "identifier": 97354898, - "sqm_ocr": 63.78, - "price": 2600.0, - "price_per_sqm": 40.76513013483851, - "url": "https://www.rightmove.co.uk/properties/97354898", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 13, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/97354898/119137_65Deloraine3_IMG_01_0000_max_656x437.JPG", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:58.122861", - "last_seen": "2025-06-01T22:06:00.662179", - "price": 2496 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.02754, - 51.47275 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 135.0, - "qmprice": 25.93, - "rooms": 2, - "total_price": 3500.0, - "url": "https://www.rightmove.co.uk/properties/97372658", - "info": { - "identifier": 97372658, - "sqm_ocr": 135.0, - "price": 3500.0, - "price_per_sqm": 25.925925925925927, - "url": "https://www.rightmove.co.uk/properties/97372658", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 2, - "status": null, - "last_seen": 0, - "agency": "Carter Jonas Lettings", - "council_tax_band": "D", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/221k/220400/97372658/220400_WAL170043_L_IMG_36_0000_max_656x437.jpg", - "let_date_available": "01/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:06.908512", - "last_seen": "2025-06-01T22:06:12.301223", - "price": 3500.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.180468, - 51.451263 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": 58.2, - "qmprice": 44.6, - "rooms": 3, - "total_price": 2596.0, - "url": "https://www.rightmove.co.uk/properties/97527149", - "info": { - "identifier": 97527149, - "sqm_ocr": 58.2, - "price": 2596.0, - "price_per_sqm": 44.60481099656357, - "url": "https://www.rightmove.co.uk/properties/97527149", - "bedrooms": 3, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": "Leasehold", - "updated_days": 11, - "status": null, - "last_seen": 0, - "agency": "Cubix Estate Agents", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/120k/119137/97527149/119137_24whcs_IMG_00_0000_max_656x437.jpeg", - "let_date_available": "05/07/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:37:02.183664", - "last_seen": "2025-06-01T22:06:06.917525", - "price": 2595 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.09407, - 51.49504 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2200.0, - "url": "https://www.rightmove.co.uk/properties/98376902", - "info": { - "identifier": 98376902, - "sqm_ocr": null, - "price": 2200.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/98376902", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 18, - "status": null, - "last_seen": 0, - "agency": "Empire Chase Estate Agent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128062/98376902/128062_jayxpx_IMG_00_0000_max_656x437.jpg", - "let_date_available": "Ask agent", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.681827", - "last_seen": "2025-06-01T22:05:40.990373", - "price": 2200.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29599, - 51.5525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/98544860", - "info": { - "identifier": 98544860, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/98544860", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 25, - "status": null, - "last_seen": 0, - "agency": "Empire Chase Estate Agent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128062/98544860/128062_Justyna11_IMG_00_0000_max_656x437.jpg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.296292", - "last_seen": "2025-06-01T22:05:41.010063", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29599, - 51.5525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 2100.0, - "url": "https://www.rightmove.co.uk/properties/98698664", - "info": { - "identifier": 98698664, - "sqm_ocr": null, - "price": 2100.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/98698664", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": true, - "tenure_type": null, - "updated_days": 33, - "status": null, - "last_seen": 0, - "agency": "Empire Chase Estate Agent", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/129k/128062/98698664/128062_wihdwsef2_IMG_09_0001_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:45.475390", - "last_seen": "2025-06-01T22:05:40.254565", - "price": 2100.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.29599, - 51.5525 - ], - "type": "Point" - } - }, - { - "type": "Feature", - "properties": { - "city": "London", - "country": "United Kingdom", - "qm": null, - "qmprice": -1, - "rooms": 2, - "total_price": 3300.0, - "url": "https://www.rightmove.co.uk/properties/98996573", - "info": { - "identifier": 98996573, - "sqm_ocr": null, - "price": 3300.0, - "price_per_sqm": -1, - "url": "https://www.rightmove.co.uk/properties/98996573", - "bedrooms": 2, - "travel_time_fastest": "", - "travel_time_second": "", - "lease_left": null, - "service_charge": null, - "development": false, - "tenure_type": null, - "updated_days": 10, - "status": null, - "last_seen": 0, - "agency": "A2Dominion Group", - "council_tax_band": "Ask agent", - "photo_thumbnail": "https://media.rightmove.co.uk/dir/102k/101431/98996573/101431_77_7_Ex_IMG_03_0000_max_656x437.jpeg", - "let_date_available": "01/06/2025", - "price_history": [ - { - "first_seen": "2025-06-01T17:36:56.955179", - "last_seen": "2025-06-01T22:05:59.332210", - "price": 3300.0 - } - ] - } - }, - "geometry": { - "coordinates": [ - -0.12579, - 51.48219 - ], - "type": "Point" - } - } - ] -} \ No newline at end of file diff --git a/immoweb/script.js b/immoweb/script.js index afc1446..81d52f0 100644 --- a/immoweb/script.js +++ b/immoweb/script.js @@ -149,6 +149,7 @@ var map = new mapboxgl.Map({ }); +console.log('ekekek'); map.on("load", function () { var crossData = data.features.map(function (d, i) { //clone properties @@ -215,28 +216,31 @@ function getListingDialogHTML(properties) { return styledResult; } function getPropertyHTML(property) { - const priceHistoryHTMLs = property.properties.info.price_history.map((d) => { + const priceHistoryHTMLs = property.properties.price_history.map((d) => { return `
  • ${d.last_seen.split('T')[0]}: £${d.price}
  • `; }); + let priceHistoryHTML = ''; if (priceHistoryHTMLs.length > 1) { priceHistoryHTML = ` + Price history:
    ` } + const lastSeenStr = property.properties.last_seen.split('T')[0]; + const lastSeenDays = Math.round((new Date() - new Date(lastSeenStr)) / (1000 * 60 * 60 * 24)); return `
    - +

    - Available from: ${property.properties.info.let_date_available} + Available from: ${property.properties.info.property.let_date_available}
    Price: £${property.properties.total_price}
    - Price history: ${priceHistoryHTML} Rooms: ${property.properties.rooms}
    @@ -244,9 +248,9 @@ function getPropertyHTML(property) {
    Price per area: £${property.properties.qmprice}/m²
    - Last seen: ${property.properties.info.last_seen} days ago + Last seen: ${lastSeenDays} days ago
    - Agency: ${property.properties.info.agency} + Agency: ${property.properties.agency}
    View Listing